diff --git a/.circleci/config.yml b/.circleci/config.yml
index bf39cff6ef..20743cf2ad 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -3,19 +3,19 @@ version: 2.1
executors:
node-maintenance:
docker:
- - image: cimg/node:21.7.3
+ - image: cimg/node:22.1.0
auth:
username: smarthrinc
password: $DOCKER_HUB_ACCESS_TOKEN
node-active-lts:
docker:
- - image: cimg/node:21.7.3
+ - image: cimg/node:22.1.0
auth:
username: smarthrinc
password: $DOCKER_HUB_ACCESS_TOKEN
node-active-lts-browsers:
docker:
- - image: cimg/node:21.7.3-browsers
+ - image: cimg/node:22.1.0-browsers
auth:
username: smarthrinc
password: $DOCKER_HUB_ACCESS_TOKEN
@@ -49,6 +49,7 @@ commands:
keys:
- pnpm-packages-reg-{{ checksum "pnpm-lock.yaml" }}
- run: pnpm ui install
+ - run: pnpm ui exec playwright install
- save_cache:
paths:
- ~/.cache/pnpm
@@ -65,11 +66,11 @@ commands:
run-chromatic:
steps:
- checkout
- - run: pnpm ui run chromatic --project-token=${CHROMATIC_PROJECT_TOKEN} --exit-zero-on-changes --only-changed
+ - run: pnpm ui run chromatic --project-token=${CHROMATIC_PROJECT_TOKEN} --exit-zero-on-changes --only-changed --storybook-base-dir=packages/smarthr-ui
run-chromatic-master:
steps:
- checkout
- - run: STORYBOOK_NODE_ENV="production" pnpm ui run chromatic --project-token=${CHROMATIC_PROJECT_TOKEN} --auto-accept-changes --only-changed
+ - run: STORYBOOK_NODE_ENV="production" pnpm ui run chromatic --project-token=${CHROMATIC_PROJECT_TOKEN} --auto-accept-changes --only-changed --storybook-base-dir=packages/smarthr-ui
install-noto-sans-cjk-jp:
steps:
- run:
diff --git a/.github/workflows/publishRelease.yml b/.github/workflows/publishRelease.yml
index 625d029af3..ade2dc7742 100644
--- a/.github/workflows/publishRelease.yml
+++ b/.github/workflows/publishRelease.yml
@@ -33,11 +33,11 @@ jobs:
if: ${{ env.IS_PRERELEASE == 'false' }}
- run: pnpm ui release --prerelease
if: ${{ env.IS_PRERELEASE == 'true' }}
- - run: pnpm publish --filter smarthr-ui
+ - run: pnpm publish --filter smarthr-ui --no-git-checks
if: ${{ env.IS_PRERELEASE == 'false' }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- - run: pnpm publish --filter smarthr-ui --tag prerelease
+ - run: pnpm publish --filter smarthr-ui --tag prerelease --no-git-checks
if: ${{ env.IS_PRERELEASE == 'true' }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
diff --git a/.node-version b/.node-version
index 87834047a6..62d44807d0 100644
--- a/.node-version
+++ b/.node-version
@@ -1 +1 @@
-20.12.2
+20.13.0
diff --git a/package.json b/package.json
index 4e2c436dff..f94a6d5c18 100644
--- a/package.json
+++ b/package.json
@@ -4,17 +4,17 @@
"description": "SmartHR ui components built with React.",
"author": "SmartHR-UI Team",
"devDependencies": {
- "@commitlint/cli": "^19.2.2",
+ "@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"eslint": "^8.57.0",
- "eslint-config-smarthr": "^6.28.0",
+ "eslint-config-smarthr": "^6.30.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-config-smarthr": "^1.0.0",
"prettier-plugin-tailwindcss": "^0.5.14",
- "stylelint": "^16.3.1",
+ "stylelint": "^16.5.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-smarthr": "^3.0.0",
"stylelint-config-standard": "^36.0.0",
@@ -30,7 +30,7 @@
"pnpm": {
"overrides": {
"@babel/helper-compilation-targets": "^7.23.6",
- "@types/react": "^18.3.1",
+ "@types/react": "^18.3.2",
"minimist": "1.2.8",
"react": "^18.3.1",
"react-dom": "^18.3.1"
diff --git a/packages/smarthr-ui/README.md b/packages/smarthr-ui/README.md
new file mode 100644
index 0000000000..1a8183e193
--- /dev/null
+++ b/packages/smarthr-ui/README.md
@@ -0,0 +1,85 @@
+
+
+
+
+SmartHR は、SmartHR 基本機能からはじまり、今では多くのオプション機能を提供しています。
+SmartHR UI はそのすべてのアプリケーションの UI コンポーネントを共通化して、開発生産性や完成度を向上させるための UI コンポーネントライブラリです。
+
+[![npm version](https://badge.fury.io/js/smarthr-ui.svg)](https://badge.fury.io/js/smarthr-ui)
+[![CircleCI](https://circleci.com/gh/kufu/smarthr-ui.svg?style=shield)](https://circleci.com/gh/kufu/smarthr-ui)
+![e2e](https://github.com/kufu/smarthr-ui/workflows/e2e/badge.svg)
+
+
+
+## コンポーネント
+
+`master`ブランチのコンポーネント一覧は Storybook から確認できます。
+https://story.smarthr-ui.dev
+
+## インストール
+
+SmartHR-UI は[npm package](https://www.npmjs.com/package/smarthr-ui)として提供しています。
+
+```sh
+// with npm
+npm install smarthr-ui
+
+// with yarn
+yarn add smarthr-ui
+
+// with pnpm
+pnpm add smarthr-ui
+```
+
+peerDependencies として React, React-DOM, styled-components が必要です。
+
+```sh
+// with npm
+npm install react react-dom styled-components
+
+// with yarn
+yarn add react react-dom styled-components
+
+// with pnpm
+pnpm add react react-dom styled-components
+```
+
+## 使いかた
+
+最もシンプルで簡単な使用例を紹介します。
+
+```tsx
+import React from 'react'
+import { createRoot } from 'react-dom/client'
+import { createTheme, ThemeProvider, Button } from 'smarthr-ui'
+import 'smarthr-ui/smarthr-ui.css'
+
+const theme = createTheme()
+
+const App: React.FC = () => (
+
+
+
+)
+
+const container = document.getElementById('app')
+const root = createRoot(container)
+root.render()
+```
+
+## コントリビュート
+
+SmartHR UI は OSS です。[コントリビュート](https://github.com/kufu/smarthr-ui/blob/master/CONTRIBUTING.md)をお待ちしています。
+
+## 更新履歴
+
+更新履歴は[Releases](https://github.com/kufu/smarthr-ui/releases)を確認してください。
+
+## デザイン・ロゴの利用について
+
+- SmartHR UI のデザインデータは[Figma](https://www.figma.com/community/file/978607227374353992/SmartHR-UI)で公開しています。
+- SmartHR のロゴを利用する場合は[SmartHR Design System](https://smarthr.design/)の利用規約を確認してください。
+
+## ライセンス
+
+このプロダクトは[MIT](https://github.com/kufu/smarthr-ui/blob/master/LICENSE)の条件に従ってライセンスされています。
diff --git a/packages/smarthr-ui/package.json b/packages/smarthr-ui/package.json
index ec8f68acd0..5d1058a81e 100644
--- a/packages/smarthr-ui/package.json
+++ b/packages/smarthr-ui/package.json
@@ -6,13 +6,13 @@
"dependencies": {
"@smarthr/wareki": "^1.2.0",
"css-loader": "^7.1.1",
- "dayjs": "^1.11.10",
+ "dayjs": "^1.11.11",
"lodash.merge": "^4.6.2",
"lodash.range": "^3.2.0",
"polished": "^4.3.0",
"postcss-loader": "^8.1.1",
"react-draggable": "^4.4.6",
- "react-icons": "^5.1.0",
+ "react-icons": "^5.2.1",
"react-innertext": "^1.1.5",
"react-transition-group": "^4.4.5",
"style-loader": "^4.0.0",
@@ -30,6 +30,7 @@
"@storybook/addon-interactions": "^8.0.10",
"@storybook/addon-storysource": "^8.0.10",
"@storybook/addon-styling": "^1.3.7",
+ "@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-viewport": "^8.0.10",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.0.10",
@@ -39,18 +40,17 @@
"@storybook/react-webpack5": "^8.0.10",
"@storybook/source-loader": "^8.0.10",
"@storybook/test": "^8.0.10",
- "@storybook/addon-styling-webpack": "^1.0.0",
- "@storybook/test-runner": "^0.17.0",
+ "@storybook/test-runner": "^0.18.0",
"@storybook/theming": "^8.0.10",
- "@swc/core": "^1.4.17",
+ "@swc/core": "^1.5.5",
"@swc/jest": "^0.2.36",
- "@testing-library/react": "^15.0.6",
+ "@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.range": "^3.2.9",
- "@types/node": "^20.12.8",
- "@types/react": "^18.3.1",
- "@types/react-dom": "^18.2.25",
+ "@types/node": "^20.12.11",
+ "@types/react": "^18.3.2",
+ "@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^17.0.9",
"@types/react-transition-group": "^4.4.10",
"@types/styled-components": "^5.1.34",
@@ -59,31 +59,32 @@
"babel-loader": "^9.1.3",
"babel-plugin-polyfill-corejs2": "^0.4.11",
"babel-plugin-polyfill-regenerator": "^0.6.2",
- "chromatic": "^11.3.0",
+ "chromatic": "^11.3.2",
"ecma-version-validator-webpack-plugin": "^1.2.1",
"fs-extra": "^11.2.0",
- "glob": "10.3.12",
+ "glob": "10.3.15",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"memory-fs": "^0.5.0",
"npm-run-all": "^4.1.5",
+ "playwright": "^1.44.0",
"postcss": "^8.4.38",
"postcss-styled-syntax": "^0.6.4",
"postcss-syntax": "^0.36.2",
- "puppeteer": "^22.6.5",
+ "puppeteer": "^22.8.0",
"react": "^18.3.1",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
- "react-test-renderer": "^18.2.0",
- "rimraf": "^5.0.5",
+ "react-test-renderer": "^18.3.1",
+ "rimraf": "^5.0.7",
"standard-version": "^9.3.2",
"storybook": "^8.0.10",
- "storybook-addon-pseudo-states": "^3.0.1",
+ "storybook-addon-pseudo-states": "^3.1.1",
"styled-components": "^5.3.11",
- "testcafe": "3.5.0",
+ "testcafe": "3.6.0",
"ts-loader": "^9.5.1",
"ttypescript": "^1.5.15",
"typescript-plugin-styled-components": "^3.0.0",
diff --git a/packages/smarthr-ui/src/components/DefinitionList/DefinitionList.stories.tsx b/packages/smarthr-ui/src/components/DefinitionList/DefinitionList.stories.tsx
index 1a87993cb8..7de112fa2f 100644
--- a/packages/smarthr-ui/src/components/DefinitionList/DefinitionList.stories.tsx
+++ b/packages/smarthr-ui/src/components/DefinitionList/DefinitionList.stories.tsx
@@ -115,6 +115,14 @@ export const All: StoryFn = () => (
>
),
description: '標準は subBlockTitle です。blockTitle と subBlockTitle があります。',
+ fullWidth: true,
+ },
+ {
+ term: '空文字の場合も line-height 込みの高さを保ちます。',
+ description: '',
+ },
+ {
+ term: 'undefined の場合',
},
]}
termStyleType="blockTitle"
diff --git a/packages/smarthr-ui/src/components/DefinitionList/DefinitionListItem.tsx b/packages/smarthr-ui/src/components/DefinitionList/DefinitionListItem.tsx
index 9637b1839f..d605ba7541 100644
--- a/packages/smarthr-ui/src/components/DefinitionList/DefinitionListItem.tsx
+++ b/packages/smarthr-ui/src/components/DefinitionList/DefinitionListItem.tsx
@@ -22,7 +22,7 @@ const definitionListItem = tv({
],
termEl: 'smarthr-ui-DefinitionListItem-term',
descriptionEl:
- 'smarthr-ui-DefinitionListItem-description shr-ms-[initial] shr-pb-0.25 min-h-[theme(lineHeight.normal)]',
+ 'smarthr-ui-DefinitionListItem-description shr-ms-[initial] shr-pb-0.25 shr-min-h-[calc(1em*theme(lineHeight.normal))]',
},
variants: {
fullWidth: {
diff --git a/packages/smarthr-ui/src/components/DropZone/DropZone.stories.tsx b/packages/smarthr-ui/src/components/DropZone/DropZone.stories.tsx
index 88744575ed..ea63a75bf1 100644
--- a/packages/smarthr-ui/src/components/DropZone/DropZone.stories.tsx
+++ b/packages/smarthr-ui/src/components/DropZone/DropZone.stories.tsx
@@ -26,7 +26,7 @@ export const All: StoryFn = () => (
With children
- ここにドラッグ&ドロップ
+ ここにドラッグアンドドロップ
または
@@ -36,7 +36,7 @@ export const All: StoryFn = () => (
Button accepting only image files
- ここにドラッグ&ドロップ
+ ここにドラッグアンドドロップ
または
diff --git a/packages/smarthr-ui/src/components/Dropdown/DropdownMenuButton/DropdownMenuButton.tsx b/packages/smarthr-ui/src/components/Dropdown/DropdownMenuButton/DropdownMenuButton.tsx
index 77dcf02214..2988942797 100644
--- a/packages/smarthr-ui/src/components/Dropdown/DropdownMenuButton/DropdownMenuButton.tsx
+++ b/packages/smarthr-ui/src/components/Dropdown/DropdownMenuButton/DropdownMenuButton.tsx
@@ -16,7 +16,6 @@ import { Dropdown, DropdownContent, DropdownScrollArea, DropdownTrigger } from '
import { AnchorButton, Button, BaseProps as ButtonProps } from '../../Button'
import { RemoteDialogTrigger } from '../../Dialog'
import { FaCaretDownIcon, FaEllipsisIcon } from '../../Icon'
-import { Stack } from '../../Layout'
type Actions = ActionItem | ActionItem[]
@@ -214,14 +213,12 @@ export const DropdownMenuButton: FC = ({
-
-
- {React.Children.map(children, (item, i) =>
- // MEMO: {flag && }のような書き方に対応させる為、型を変換する
- // itemの存在チェックでfalsyな値は弾かれている想定
- item ? {actionItem(item as ActionItemTruthyType)} : null,
- )}
-
+
+ {React.Children.map(children, (item, i) =>
+ // MEMO: {flag && }のような書き方に対応させる為、型を変換する
+ // itemの存在チェックでfalsyな値は弾かれている想定
+ item ? {actionItem(item as ActionItemTruthyType)} : null,
+ )}
diff --git a/packages/smarthr-ui/src/components/Dropdown/DropdownScrollArea.tsx b/packages/smarthr-ui/src/components/Dropdown/DropdownScrollArea.tsx
index 8f5f572d07..24ca55fe04 100644
--- a/packages/smarthr-ui/src/components/Dropdown/DropdownScrollArea.tsx
+++ b/packages/smarthr-ui/src/components/Dropdown/DropdownScrollArea.tsx
@@ -1,14 +1,18 @@
-import React, { ComponentProps, PropsWithChildren, useMemo } from 'react'
+import React, { ComponentProps, ElementType, PropsWithChildren, forwardRef, useMemo } from 'react'
import { tv } from 'tailwind-variants'
-type Props = PropsWithChildren>
+type Props = PropsWithChildren> & {
+ as?: ElementType
+}
const scrollArea = tv({
base: 'smarthr-ui-Dropdown-scrollArea shr-flex-auto shr-overflow-y-auto',
})
-export const DropdownScrollArea: React.FC = ({ className, ...props }) => {
- const styles = useMemo(() => scrollArea({ className }), [className])
+export const DropdownScrollArea = forwardRef(
+ ({ as: Component = 'div', className, ...props }, ref) => {
+ const styles = useMemo(() => scrollArea({ className }), [className])
- return
-}
+ return
+ },
+)
diff --git a/packages/smarthr-ui/src/components/FormControl/FormControl.stories.tsx b/packages/smarthr-ui/src/components/FormControl/FormControl.stories.tsx
index a47b4df48e..1706812296 100644
--- a/packages/smarthr-ui/src/components/FormControl/FormControl.stories.tsx
+++ b/packages/smarthr-ui/src/components/FormControl/FormControl.stories.tsx
@@ -39,7 +39,7 @@ export const All: StoryFn = () => (
title="氏名"
statusLabelProps={{ type: 'grey', children: '任意' }}
helpMessage="氏名を入力してください。"
- errorMessages={'氏名が入力されていません。'}
+ errorMessages="氏名が入力されていません。"
>
diff --git a/packages/smarthr-ui/src/components/FormControl/FormControl.tsx b/packages/smarthr-ui/src/components/FormControl/FormControl.tsx
index 79fda92b41..9a29751bfc 100644
--- a/packages/smarthr-ui/src/components/FormControl/FormControl.tsx
+++ b/packages/smarthr-ui/src/components/FormControl/FormControl.tsx
@@ -73,6 +73,7 @@ const formGroup = tv({
'shr-self-start',
'shr-px-[unset]',
],
+ errorList: ['shr-list-none'],
errorIcon: ['smarthr-ui-FormControl-errorMessage', 'shr-text-danger'],
},
})
@@ -160,15 +161,17 @@ export const ActualFormControl: React.FC = ({
return Array.isArray(errorMessages) ? errorMessages : [errorMessages]
}, [errorMessages])
- const { wrapperStyle, labelStyle, errorIconStyle, childrenWrapperStyle } = useMemo(() => {
- const { wrapper, label, errorIcon } = formGroup()
- return {
- wrapperStyle: wrapper({ className }),
- labelStyle: label({ className: dangerouslyTitleHidden ? visuallyHiddenText() : '' }),
- errorIconStyle: errorIcon(),
- childrenWrapperStyle: childrenWrapper({ innerMargin, isRoleGroup }),
- }
- }, [className, dangerouslyTitleHidden, innerMargin, isRoleGroup])
+ const { wrapperStyle, labelStyle, errorListStyle, errorIconStyle, childrenWrapperStyle } =
+ useMemo(() => {
+ const { wrapper, label, errorList, errorIcon } = formGroup()
+ return {
+ wrapperStyle: wrapper({ className }),
+ labelStyle: label({ className: dangerouslyTitleHidden ? visuallyHiddenText() : '' }),
+ errorListStyle: errorList(),
+ errorIconStyle: errorIcon(),
+ childrenWrapperStyle: childrenWrapper({ innerMargin, isRoleGroup }),
+ }
+ }, [className, dangerouslyTitleHidden, innerMargin, isRoleGroup])
return (
= ({
)}
{actualErrorMessages.length > 0 && (
-
+
{actualErrorMessages.map((message, index) => (
))}
-
+
)}
- {addIdToFirstInput(children, managedHtmlFor, describedbyIds)}
+ {decorateFirstInputElement(children, {
+ managedHtmlFor,
+ describedbyIds,
+ error: actualErrorMessages.length > 0,
+ })}
{supplementaryMessage && (
@@ -246,62 +253,93 @@ export const ActualFormControl: React.FC = ({
)
}
-const addIdToFirstInput = (children: ReactNode, managedHtmlFor: string, describedbyIds: string) => {
+type DecorateFirstInputElementParams = {
+ managedHtmlFor: string
+ describedbyIds: string
+ error: boolean
+}
+
+const decorateFirstInputElement = (
+ children: ReactNode,
+ params: DecorateFirstInputElementParams,
+) => {
+ const { managedHtmlFor, describedbyIds, error } = params
let foundFirstInput = false
- const addId = (targets: ReactNode): ReactNode[] | ReactNode =>
+ const decorate = (targets: ReactNode): ReactNode[] | ReactNode =>
React.Children.map(targets, (child) => {
if (foundFirstInput || !React.isValidElement(child)) {
return child
}
+ if (!isInputElement(child)) {
+ return React.cloneElement(child, {}, decorate(child.props.children))
+ }
- const { type } = child
-
- if (isInputElement(type)) {
- foundFirstInput = true
-
- const inputAttributes = {
- id: managedHtmlFor,
- ...(describedbyIds ? { 'aria-describedby': describedbyIds } : {}),
- }
+ foundFirstInput = true
- return React.cloneElement(child as ReactElement, {
- ...(isComboBoxElement(type) ? { inputAttributes } : inputAttributes),
- })
+ const inputAttributes: ComponentProps = {
+ id: managedHtmlFor,
+ }
+ if (error) {
+ inputAttributes.error = true
+ }
+ if (describedbyIds !== '') {
+ inputAttributes['aria-describedby'] = describedbyIds
}
- return React.cloneElement(child, {}, addId(child.props.children))
+ if (isComboBoxElement(child)) {
+ return React.cloneElement(child, { inputAttributes })
+ } else {
+ return React.cloneElement(child, inputAttributes)
+ }
})
- return addId(children)
+ return decorate(children)
}
+type InputComponent =
+ | typeof Input
+ | typeof CurrencyInput
+ | typeof Textarea
+ | typeof DatePicker
+ | typeof Select
+ | typeof SingleComboBox
+ | typeof MultiComboBox
+ | typeof InputFile
+ | typeof DropZone
+
/**
* - CheckBox / RadioButton は内部に label を含むため対象外
* - SearchInput は label を含むため対象外
* - InputWithTooltip は領域が狭く FormControl を置けない場所での使用を想定しているため対象外
*
- * @param type
+ * @param node
* @returns
*/
-const isInputElement = (type: string | React.JSXElementConstructor) => {
- const _type = isStyledComponent(type) ? type.target : type
+const isInputElement = (
+ element: ReactElement,
+): element is React.ReactComponentElement => {
+ const type = isStyledComponent(element.type) ? element.type.target : element.type
return (
- _type === Input ||
- _type === CurrencyInput ||
- _type === Textarea ||
- _type === DatePicker ||
- _type === Select ||
- _type === SingleComboBox ||
- _type === MultiComboBox ||
- _type === InputFile ||
- _type === DropZone
+ type === Input ||
+ type === CurrencyInput ||
+ type === Textarea ||
+ type === DatePicker ||
+ type === Select ||
+ type === SingleComboBox ||
+ type === MultiComboBox ||
+ type === InputFile ||
+ type === DropZone
)
}
-const isComboBoxElement = (type: string | React.JSXElementConstructor) => {
- const _type = isStyledComponent(type) ? type.target : type
- return _type === SingleComboBox || _type === MultiComboBox
+type ComboboxComponent = typeof SingleComboBox | typeof MultiComboBox
+
+const isComboBoxElement = (
+ element: ReactElement,
+): element is React.ReactComponentElement => {
+ const type = isStyledComponent(element.type) ? element.type.target : element.type
+ return type === SingleComboBox || type === MultiComboBox
}
export const FormControl: React.FC> = ActualFormControl
diff --git a/packages/smarthr-ui/src/components/Icon/Icon.stories.tsx b/packages/smarthr-ui/src/components/Icon/Icon.stories.tsx
index a287e87f67..40d36d620f 100644
--- a/packages/smarthr-ui/src/components/Icon/Icon.stories.tsx
+++ b/packages/smarthr-ui/src/components/Icon/Icon.stories.tsx
@@ -26,24 +26,24 @@ export const All: StoryFn = () => (
{Object.entries(Icons).map(([name, Icon]) => (
-
+
{name?.replace(/Icon$/, '')}
-
+
))}
旧名称(非推奨)
{Object.entries(DeprecatedIcons).map(([name, Icon]) => (
-
+
{name?.replace(/Icon$/, '')}
-
+
))}
@@ -158,7 +158,7 @@ export const GenerateIcon: StoryFn = () => {
)
}
-const ItemWrapper = styled(BaseColumn)`
+const StyledBaseColumn = styled(BaseColumn)`
${({ theme: { space } }) => css`
flex-basis: 10em;
diff --git a/packages/smarthr-ui/src/components/NotificationBar/NotificationBar.stories.tsx b/packages/smarthr-ui/src/components/NotificationBar/NotificationBar.stories.tsx
index 85233d397c..3ac1624c23 100644
--- a/packages/smarthr-ui/src/components/NotificationBar/NotificationBar.stories.tsx
+++ b/packages/smarthr-ui/src/components/NotificationBar/NotificationBar.stories.tsx
@@ -57,6 +57,7 @@ export const All: StoryFn = () => {
onClose={onClose}
/>
+
diff --git a/packages/smarthr-ui/src/components/NotificationBar/NotificationBar.tsx b/packages/smarthr-ui/src/components/NotificationBar/NotificationBar.tsx
index d509dd5a08..6f2e8dbacb 100644
--- a/packages/smarthr-ui/src/components/NotificationBar/NotificationBar.tsx
+++ b/packages/smarthr-ui/src/components/NotificationBar/NotificationBar.tsx
@@ -4,11 +4,12 @@ import { VariantProps, tv } from 'tailwind-variants'
import { Base } from '../Base'
import { Button } from '../Button'
import {
- FaCheckCircleIcon,
- FaExclamationCircleIcon,
- FaExclamationTriangleIcon,
- FaInfoCircleIcon,
- FaTimesIcon,
+ FaCircleCheckIcon,
+ FaCircleExclamationIcon,
+ FaCircleInfoIcon,
+ FaRotateIcon,
+ FaTriangleExclamationIcon,
+ FaXmarkIcon,
WarningIcon,
} from '../Icon'
import { Cluster } from '../Layout'
@@ -46,6 +47,9 @@ export const notificationBar = tv({
icon: 'shr-text-black',
},
error: {},
+ sync: {
+ icon: 'shr-text-main',
+ },
},
/** 強調するかどうか */
bold: {
@@ -61,7 +65,7 @@ export const notificationBar = tv({
},
compoundVariants: [
{
- type: ['info', 'success', 'warning', 'error'],
+ type: ['info', 'success', 'warning', 'error', 'sync'],
bold: false,
className: {
wrapper: 'shr-bg-white shr-text-black',
@@ -82,7 +86,7 @@ export const notificationBar = tv({
},
},
{
- type: 'info',
+ type: ['info', 'sync'],
bold: true,
className: {
wrapper: 'shr-bg-white',
@@ -142,7 +146,7 @@ export const NotificationBar: React.FC = ({
message,
onClose,
children,
- role = type === 'info' ? 'status' : 'alert',
+ role = type.match(/^(info|sync)$/) ? 'status' : 'alert',
base = 'none',
layer,
className,
@@ -151,15 +155,18 @@ export const NotificationBar: React.FC = ({
const Icon = useMemo(() => {
switch (type) {
case 'info':
- return FaInfoCircleIcon
+ return FaCircleInfoIcon
case 'success': {
- return FaCheckCircleIcon
+ return FaCircleCheckIcon
}
case 'warning': {
- return bold ? FaExclamationTriangleIcon : WarningIcon
+ return bold ? FaTriangleExclamationIcon : WarningIcon
}
case 'error': {
- return FaExclamationCircleIcon
+ return FaCircleExclamationIcon
+ }
+ case 'sync': {
+ return FaRotateIcon
}
}
}, [type, bold])
@@ -216,7 +223,7 @@ export const NotificationBar: React.FC = ({
{onClose && (
)}
diff --git a/packages/smarthr-ui/src/components/Switch/Switch.tsx b/packages/smarthr-ui/src/components/Switch/Switch.tsx
index af47f6c9ad..d5d5cb2e73 100644
--- a/packages/smarthr-ui/src/components/Switch/Switch.tsx
+++ b/packages/smarthr-ui/src/components/Switch/Switch.tsx
@@ -1,173 +1,58 @@
-import React, { InputHTMLAttributes, forwardRef } from 'react'
-import styled, { css } from 'styled-components'
+import React, { InputHTMLAttributes, forwardRef, useMemo } from 'react'
+import { tv } from 'tailwind-variants'
-import { Theme, useTheme } from '../../hooks/useTheme'
import { FaCheckIcon } from '../Icon'
-type Props = InputHTMLAttributes
-
-export const Switch = forwardRef(
- ({ disabled, className, ...props }, ref) => {
- const theme = useTheme()
- return (
-
- {/* eslint-disable-next-line smarthr/a11y-input-has-name-attribute */}
-
-
-
- )
+const switchStyle = tv({
+ slots: {
+ wrapper: [
+ // Switch 本体
+ 'shr-border-shorthand shr-relative shr-inline-flex shr-w-[calc(theme(fontSize.base)*2)] shr-items-center shr-rounded-full shr-bg-white',
+ // 理想的には padding: 2px; だが、box-shadow を outline で使用しているため、border と padding で2pxの疑似余白を作っている。
+ 'shr-p-px',
+ // :focus-visible-within の代替
+ 'has-[:focus-visible]:shr-focus-indicator',
+ 'has-[:checked]:shr-border-[theme(colors.main)] has-[:checked]:shr-bg-main',
+ 'has-[:disabled]:shr-border-[theme(borderColor.default)] has-[:disabled]:shr-bg-border',
+ 'forced-colors:has-[:disabled]:shr-border-[GrayText]',
+ 'supports-[not_selector(:has(+_*))]:shr-border-[revert] supports-[not_selector(:has(+_*))]:shr-bg-[revert]',
+
+ // Switch ツマミ
+ 'before:shr-box-border before:shr-inline-block before:shr-size-[theme(fontSize.base)] before:shr-scale-[calc(2/3)] before:shr-rounded-full before:shr-border before:shr-border-solid before:shr-border-[theme(colors.grey.30)] before:shr-bg-[theme(colors.grey.30)] before:shr-transition-[transform,margin] before:shr-duration-150 before:shr-ease-out before:shr-content-[""]',
+ 'has-[:checked]:before:shr-border-shorthand has-[:checked]:before:shr-ms-[theme(fontSize.base)] has-[:checked]:before:shr-scale-100 has-[:checked]:before:shr-bg-white',
+ 'forced-colors:has-[input:not(:disabled)]:before:shr-bg-[ButtonBorder]',
+ 'forced-colors:has-[:disabled:not(:checked)]:before:shr-border-solid forced-colors:has-[:disabled:not(:checked)]:before:shr-border-[GrayText]',
+ 'forced-colors:has-[:disabled:checked]:before:shr-border-[GrayText]',
+ 'supports-[not_selector(:has(+_*))]:before:hidden',
+ ],
+ input: [
+ 'shr-absolute shr-inset-0 shr-m-0 shr-h-full shr-w-full shr-cursor-pointer shr-appearance-none shr-rounded-full shr-opacity-0',
+ 'disabled:shr-cursor-[revert]',
+ 'supports-[not_selector(:has(+_*))]:shr-static supports-[not_selector(:has(+_*))]:shr-appearance-auto supports-[not_selector(:has(+_*))]:shr-opacity-100 supports-[not_selector(:has(+_*))]:shr-outline-[revert]',
+ ],
+ iconWrapper: [
+ 'shr-pointer-events-none shr-absolute shr-hidden shr-size-[theme(fontSize.base)] shr-items-center shr-justify-center',
+ '[:checked~&]:shr-flex',
+ ],
+ icon: [
+ '[:checked~*>&]:shr-fill-white',
+ 'forced-colors:[:checked~*>&]:shr-fill-[ButtonText]',
+ 'forced-colors:[:disabled~*>&]:shr-fill-[GrayText]',
+ ],
},
-)
-
-const Wrapper = styled.span<{ $disabled: Props['disabled']; themes: Theme }>`
- ${({ $disabled, themes: { border, color, fontSize, radius, shadow } }) => css`
- position: relative;
- display: inline-flex;
- align-items: center;
- border-radius: calc(${fontSize.M} * 1.25);
- border: ${border.shorthand};
- background-color: ${color.WHITE};
-
- /* 理想的には padding: 2px; だが、box-shadow を outline で使用しているため、border と padding で2pxの疑似余白を作っている。 */
- padding: 1px;
-
- /* :focus-visible-within の代替 */
- &:has(:focus-visible) {
- ${shadow.focusIndicatorStyles}
- }
-
- ::before,
- ::after {
- content: '';
- box-sizing: border-box;
- display: inline-block;
- border-radius: ${radius.full};
- border: ${border.shorthand};
- border-color: ${color.GREY_30};
- background-color: ${color.GREY_30};
- block-size: ${fontSize.M};
- inline-size: ${fontSize.M};
- transition-property: transform, scale;
- transition-duration: 150ms;
- transition-timing-function: ease-out;
- }
-
- ::before {
- scale: ${2 / 3};
- }
-
- /* ツマミが移動する余白のために存在している */
- ::after {
- visibility: hidden;
- }
-
- &:has(:checked) {
- border-color: ${color.MAIN};
- background-color: ${color.MAIN};
-
- ::before {
- scale: unset;
- transform: translateX(${fontSize.M});
- border-color: ${color.BORDER};
- background-color: ${color.WHITE};
- }
- }
-
- ${$disabled &&
- css`
- &&& {
- cursor: unset;
- border-color: ${color.BORDER};
- background-color: ${color.BORDER};
- }
- `}
-
- @media (forced-colors: active) {
- ${$disabled
- ? css`
- &&& {
- border-color: GrayText;
+})
- &::before,
- &::after {
- border-color: GrayText;
- }
- }
- `
- : css`
- /* ツマミを塗りつぶす https://developer.mozilla.org/en-US/docs/Web/CSS/system-color */
- &&&::before,
- &&&::after {
- background-color: ButtonBorder;
- }
- `}
- }
-
- @supports not selector(:has(+ *)) {
- border-style: revert;
- background-color: revert;
-
- ::before,
- ::after {
- display: none;
- }
-
- ${$disabled &&
- css`
- &&& {
- background-color: revert;
- }
- `}
- }
- `}
-`
-
-const CheckboxInput = styled.input`
- position: absolute;
- inset: 0;
- cursor: pointer;
- outline: none;
- opacity: 0;
- appearance: none;
-
- /* 古い iOS など inset が効かない環境で領域いっぱいに広げる */
- @supports not (inset: 0) {
- width: 100%;
- height: 100%;
- }
-
- :disabled {
- cursor: revert;
- }
-
- @supports not selector(:has(+ *)) {
- position: revert;
- opacity: revert;
- outline: revert;
- appearance: revert;
- }
-`
-
-const CheckIcon = styled(FaCheckIcon).attrs({ color: 'WHITE', size: 'XXS' })<{ $themes: Theme }>`
- ${({ $themes: { fontSize } }) => css`
- position: absolute;
- display: none;
-
- @supports selector(:has(+ *)) {
- [type='checkbox']:checked ~ & {
- display: unset;
- transform: translateX(calc((${fontSize.M} - ${fontSize.XXS}) / 2));
- pointer-events: none;
- }
- }
-
- /* 強制カラーモードの時に状態を判別するため */
- @media (forced-colors: active) {
- fill: ButtonText;
+type Props = InputHTMLAttributes
- [type='checkbox']:disabled ~ & {
- fill: GrayText;
- }
- }
- `}
-`
+export const Switch = forwardRef(({ className, ...props }, ref) => {
+ const { wrapper, input, icon, iconWrapper } = useMemo(() => switchStyle(), [])
+ return (
+
+ {/* eslint-disable-next-line smarthr/a11y-input-has-name-attribute */}
+
+
+
+
+
+ )
+})
diff --git a/packages/smarthr-ui/src/components/Table/TdCheckbox.tsx b/packages/smarthr-ui/src/components/Table/TdCheckbox.tsx
index 998783481e..f08f1c16e8 100644
--- a/packages/smarthr-ui/src/components/Table/TdCheckbox.tsx
+++ b/packages/smarthr-ui/src/components/Table/TdCheckbox.tsx
@@ -18,16 +18,18 @@ const tdCheckbox = tv({
slots: {
inner: 'shr-absolute shr-inset-0 [&:not(:has([disabled]))]:shr-cursor-pointer',
wrapper: 'shr-relative shr-w-[theme(fontSize.base)] [&]:shr-p-0.75',
+ checkbox: '[&]:shr-block',
},
})
export const TdCheckbox = forwardRef & Props>(
({ 'aria-labelledby': ariaLabelledby, children, className, ...others }, ref) => {
- const { wrapperStyle, innerStyle } = useMemo(() => {
- const { wrapper, inner } = tdCheckbox()
+ const { wrapperStyle, innerStyle, checkboxStyle } = useMemo(() => {
+ const { wrapper, inner, checkbox } = tdCheckbox()
return {
wrapperStyle: wrapper({ className }),
innerStyle: inner(),
+ checkboxStyle: checkbox(),
}
}, [className])
@@ -37,7 +39,12 @@ export const TdCheckbox = forwardRef
{/* 使う側で lint をかけるため無効化 */}
{/* eslint-disable-next-line smarthr/a11y-input-has-name-attribute */}
-
+
{children && {children}}
diff --git a/packages/smarthr-ui/src/components/Table/ThCheckbox.tsx b/packages/smarthr-ui/src/components/Table/ThCheckbox.tsx
index 3d071a7c13..7bd7916a76 100644
--- a/packages/smarthr-ui/src/components/Table/ThCheckbox.tsx
+++ b/packages/smarthr-ui/src/components/Table/ThCheckbox.tsx
@@ -19,16 +19,18 @@ const thCheckbox = tv({
slots: {
inner: 'shr-absolute shr-inset-0 [&:not(:has([disabled]))]:shr-cursor-pointer',
wrapper: 'shr-relative shr-w-[theme(fontSize.base)] [&]:shr-px-0.75',
+ checkbox: '[&]:shr-block',
},
})
export const ThCheckbox = forwardRef(
({ decorators, className, ...others }, ref) => {
- const { wrapperStyle, innerStyle } = useMemo(() => {
- const { wrapper, inner } = thCheckbox()
+ const { wrapperStyle, innerStyle, checkboxStyle } = useMemo(() => {
+ const { wrapper, inner, checkbox } = thCheckbox()
return {
wrapperStyle: wrapper({ className }),
innerStyle: inner(),
+ checkboxStyle: checkbox(),
}
}, [className])
@@ -38,7 +40,7 @@ export const ThCheckbox = forwardRef(
{/* 使う側で lint をかけるため無効化 */}
{/* eslint-disable-next-line smarthr/a11y-input-has-name-attribute */}
-
+
{decorators?.checkAllInvisibleLabel?.(CHECK_ALL_INVISIBLE_LABEL) ||
CHECK_ALL_INVISIBLE_LABEL}
diff --git a/packages/smarthr-ui/src/components/Textarea/Textarea.stories.tsx b/packages/smarthr-ui/src/components/Textarea/Textarea.stories.tsx
index 676a061c4a..dc2fc14f24 100644
--- a/packages/smarthr-ui/src/components/Textarea/Textarea.stories.tsx
+++ b/packages/smarthr-ui/src/components/Textarea/Textarea.stories.tsx
@@ -46,14 +46,18 @@ const Template: StoryFn = () => {
-
+
@@ -63,7 +67,7 @@ const Template: StoryFn = () => {
@@ -73,12 +77,12 @@ const Template: StoryFn = () => {
diff --git a/packages/smarthr-ui/src/components/Textarea/Textarea.tsx b/packages/smarthr-ui/src/components/Textarea/Textarea.tsx
index e4c4a83d05..9a082f08e5 100644
--- a/packages/smarthr-ui/src/components/Textarea/Textarea.tsx
+++ b/packages/smarthr-ui/src/components/Textarea/Textarea.tsx
@@ -10,6 +10,7 @@ import React, {
} from 'react'
import { tv } from 'tailwind-variants'
+import { useId } from '../../hooks/useId'
import { useTheme } from '../../hooks/useTailwindTheme'
import { defaultHtmlFontSize } from '../../themes/createFontSize'
@@ -28,8 +29,10 @@ type Props = {
maxRows?: number
/** 行数の初期値。省略した場合は2 */
rows?: number
+ /** 入力可能な最大文字数。あと何文字入力できるかの表示が追加される。html的なvalidateは発生しない */
+ maxLetters?: number
/** コンポーネント内の文言を変更するための関数を設定 */
- decorators?: DecoratorsType<'beforeMaxLengthCount' | 'afterMaxLengthCount'>
+ decorators?: DecoratorsType<'beforeMaxLettersCount' | 'afterMaxLettersCount'>
/**
* @deprecated placeholder属性は非推奨です。別途ヒント用要素の設置を検討してください。
*/
@@ -50,8 +53,8 @@ const getStringLength = (value: string | number | readonly string[]) => {
return formattedValue.length - (formattedValue.match(surrogatePairs) || []).length
}
-const TEXT_BEFORE_MAXlENGTH_COUNT = 'あと'
-const TEXT_AFTER_MAXlENGTH_COUNT = '文字'
+const TEXT_BEFORE_MAXLETTERS_COUNT = 'あと'
+const TEXT_AFTER_MAXLETTERS_COUNT = '文字'
const textarea = tv({
slots: {
@@ -87,7 +90,7 @@ export const Textarea = forwardRef(
(
{
autoFocus,
- maxLength,
+ maxLetters,
width,
className,
autoResize = false,
@@ -100,20 +103,24 @@ export const Textarea = forwardRef(
},
ref,
) => {
+ const maxLettersId = useId()
+ const actualMaxLettersId = maxLetters ? maxLettersId : undefined
+
const { lineHeight } = useTheme()
const textareaRef = useRef(null)
const currentValue = props.defaultValue || props.value
const [interimRows, setInterimRows] = useState(rows)
const [count, setCount] = useState(currentValue ? getStringLength(currentValue) : 0)
- const beforeMaxLengthCount = useMemo(
+ const beforeMaxLettersCount = useMemo(
() =>
- decorators?.beforeMaxLengthCount?.(TEXT_BEFORE_MAXlENGTH_COUNT) ||
- TEXT_BEFORE_MAXlENGTH_COUNT,
+ decorators?.beforeMaxLettersCount?.(TEXT_BEFORE_MAXLETTERS_COUNT) ||
+ TEXT_BEFORE_MAXLETTERS_COUNT,
[decorators],
)
- const afterMaxLengthCount = useMemo(
+ const afterMaxLettersCount = useMemo(
() =>
- decorators?.afterMaxLengthCount?.(TEXT_AFTER_MAXlENGTH_COUNT) || TEXT_AFTER_MAXlENGTH_COUNT,
+ decorators?.afterMaxLettersCount?.(TEXT_AFTER_MAXLETTERS_COUNT) ||
+ TEXT_AFTER_MAXLETTERS_COUNT,
[decorators],
)
@@ -128,9 +135,15 @@ export const Textarea = forwardRef(
}
}, [autoFocus])
- const handleKeyup = useCallback((event: React.KeyboardEvent) => {
- setCount(getStringLength(event.currentTarget.value))
- }, [])
+ const onKeyUp = useMemo(
+ () =>
+ maxLetters
+ ? (event: React.KeyboardEvent) => {
+ setCount(getStringLength(event.currentTarget.value))
+ }
+ : undefined,
+ [maxLetters],
+ )
const handleInput = useCallback(
(e: React.ChangeEvent) => {
if (!autoResize) {
@@ -165,30 +178,37 @@ export const Textarea = forwardRef(
style: { width: typeof width === 'number' ? `${width}px` : width },
},
counterStyle: counter(),
- counterTextStyle: counterText({ error: !!(maxLength && maxLength - count <= 0) }),
+ counterTextStyle: counterText({ error: !!(maxLetters && maxLetters - count <= 0) }),
}
- }, [className, count, error, maxLength, width])
-
- return (
- <>
- {/* eslint-disable-next-line smarthr/a11y-input-has-name-attribute */}
-
- {maxLength && (
-
- {beforeMaxLengthCount}
- {maxLength - count}
- {afterMaxLengthCount}
+ }, [className, count, error, maxLetters, width])
+
+ const body = (
+ // eslint-disable-next-line smarthr/a11y-input-has-name-attribute
+
+ )
+
+ return maxLetters ? (
+
+ {body}
+
+ {beforeMaxLettersCount}
+
+ {maxLetters - count}/{maxLetters}
- )}
- >
+ {afterMaxLettersCount}
+
+
+ ) : (
+ body
)
},
)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6d5604dfdd..f9d31eae3f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,7 +6,7 @@ settings:
overrides:
'@babel/helper-compilation-targets': ^7.23.6
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
minimist: 1.2.8
react: ^18.3.1
react-dom: ^18.3.1
@@ -16,8 +16,8 @@ importers:
.:
devDependencies:
'@commitlint/cli':
- specifier: ^19.2.2
- version: 19.2.2(@types/node@20.12.8)(typescript@5.4.5)
+ specifier: ^19.3.0
+ version: 19.3.0(@types/node@20.12.11)(typescript@5.4.5)
'@commitlint/config-conventional':
specifier: ^19.2.2
version: 19.2.2
@@ -25,8 +25,8 @@ importers:
specifier: ^8.57.0
version: 8.57.0
eslint-config-smarthr:
- specifier: ^6.28.0
- version: 6.28.0(eslint-plugin-smarthr@0.5.8)(eslint@8.57.0)(react@18.3.1)(typescript@5.4.5)
+ specifier: ^6.30.0
+ version: 6.30.0(eslint-plugin-smarthr@0.5.10)(eslint@8.57.0)(react@18.3.1)(typescript@5.4.5)
eslint-plugin-storybook:
specifier: ^0.8.0
version: 0.8.0(eslint@8.57.0)(typescript@5.4.5)
@@ -46,23 +46,23 @@ importers:
specifier: ^0.5.14
version: 0.5.14(prettier@3.2.5)
stylelint:
- specifier: ^16.3.1
- version: 16.3.1(typescript@5.4.5)
+ specifier: ^16.5.0
+ version: 16.5.0(typescript@5.4.5)
stylelint-config-prettier:
specifier: ^9.0.5
- version: 9.0.5(stylelint@16.3.1)
+ version: 9.0.5(stylelint@16.5.0)
stylelint-config-smarthr:
specifier: ^3.0.0
- version: 3.0.0(postcss-styled-syntax@0.5.0)(stylelint-config-standard@36.0.0)(stylelint@16.3.1)
+ version: 3.0.0(postcss-styled-syntax@0.5.0)(stylelint-config-standard@36.0.0)(stylelint@16.5.0)
stylelint-config-standard:
specifier: ^36.0.0
- version: 36.0.0(stylelint@16.3.1)
+ version: 36.0.0(stylelint@16.5.0)
stylelint-config-styled-components:
specifier: ^0.1.1
version: 0.1.1
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@swc/core@1.4.17)(@types/node@20.12.8)(typescript@5.4.5)
+ version: 10.9.2(@swc/core@1.5.5)(@types/node@20.12.11)(typescript@5.4.5)
typescript:
specifier: ^5.4.5
version: 5.4.5
@@ -76,8 +76,8 @@ importers:
specifier: ^7.1.1
version: 7.1.1(webpack@5.91.0)
dayjs:
- specifier: ^1.11.10
- version: 1.11.10
+ specifier: ^1.11.11
+ version: 1.11.11
lodash.merge:
specifier: ^4.6.2
version: 4.6.2
@@ -94,11 +94,11 @@ importers:
specifier: ^4.4.6
version: 4.4.6(react-dom@18.3.1)(react@18.3.1)
react-icons:
- specifier: ^5.1.0
- version: 5.1.0(react@18.3.1)
+ specifier: ^5.2.1
+ version: 5.2.1(react@18.3.1)
react-innertext:
specifier: ^1.1.5
- version: 1.1.5(@types/react@18.3.1)(react@18.3.1)
+ version: 1.1.5(@types/react@18.3.2)(react@18.3.1)
react-transition-group:
specifier: ^4.4.5
version: 4.4.5(react-dom@18.3.1)(react@18.3.1)
@@ -132,7 +132,7 @@ importers:
version: 8.0.10
'@storybook/addon-essentials':
specifier: ^8.0.10
- version: 8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
+ version: 8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
'@storybook/addon-interactions':
specifier: ^8.0.10
version: 8.0.10(@types/jest@29.5.12)(jest@29.7.0)
@@ -141,7 +141,7 @@ importers:
version: 8.0.10
'@storybook/addon-styling':
specifier: ^1.3.7
- version: 1.3.7(@types/react-dom@18.2.25)(@types/react@18.3.1)(less@4.2.0)(postcss@8.4.38)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)(webpack@5.91.0)
+ version: 1.3.7(@types/react-dom@18.3.0)(@types/react@18.3.2)(less@4.2.0)(postcss@8.4.38)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)(webpack@5.91.0)
'@storybook/addon-styling-webpack':
specifier: ^1.0.0
version: 1.0.0(webpack@5.91.0)
@@ -153,7 +153,7 @@ importers:
version: 3.0.3(webpack@5.91.0)
'@storybook/blocks':
specifier: ^8.0.10
- version: 8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
+ version: 8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
'@storybook/cli':
specifier: ^8.0.10
version: 8.0.10(@babel/preset-env@7.24.5)(react-dom@18.3.1)(react@18.3.1)
@@ -165,7 +165,7 @@ importers:
version: 8.0.10(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)
'@storybook/react-webpack5':
specifier: ^8.0.10
- version: 8.0.10(@swc/core@1.4.17)(esbuild@0.18.16)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)
+ version: 8.0.10(@swc/core@1.5.5)(esbuild@0.20.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)
'@storybook/source-loader':
specifier: ^8.0.10
version: 8.0.10
@@ -173,20 +173,20 @@ importers:
specifier: ^8.0.10
version: 8.0.10(@types/jest@29.5.12)(jest@29.7.0)
'@storybook/test-runner':
- specifier: ^0.17.0
- version: 0.17.0(@types/node@20.12.8)(ts-node@10.9.2)
+ specifier: ^0.18.0
+ version: 0.18.0(@types/node@20.12.11)(ts-node@10.9.2)
'@storybook/theming':
specifier: ^8.0.10
version: 8.0.10(react-dom@18.3.1)(react@18.3.1)
'@swc/core':
- specifier: ^1.4.17
- version: 1.4.17
+ specifier: ^1.5.5
+ version: 1.5.5
'@swc/jest':
specifier: ^0.2.36
- version: 0.2.36(@swc/core@1.4.17)
+ version: 0.2.36(@swc/core@1.5.5)
'@testing-library/react':
- specifier: ^15.0.6
- version: 15.0.6(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
+ specifier: ^15.0.7
+ version: 15.0.7(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
'@types/jest':
specifier: ^29.5.12
version: 29.5.12
@@ -197,14 +197,14 @@ importers:
specifier: ^3.2.9
version: 3.2.9
'@types/node':
- specifier: ^20.12.8
- version: 20.12.8
+ specifier: ^20.12.11
+ version: 20.12.11
'@types/react':
- specifier: ^18.3.1
- version: 18.3.1
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.2.25
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
'@types/react-test-renderer':
specifier: ^17.0.9
version: 17.0.9
@@ -219,7 +219,7 @@ importers:
version: 10.4.19(postcss@8.4.38)
axe-playwright:
specifier: ^2.0.1
- version: 2.0.1(playwright@1.26.1)
+ version: 2.0.1(playwright@1.44.0)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.5)(webpack@5.91.0)
@@ -230,8 +230,8 @@ importers:
specifier: ^0.6.2
version: 0.6.2(@babel/core@7.24.5)
chromatic:
- specifier: ^11.3.0
- version: 11.3.0
+ specifier: ^11.3.2
+ version: 11.3.2
ecma-version-validator-webpack-plugin:
specifier: ^1.2.1
version: 1.2.1(webpack@5.91.0)
@@ -239,14 +239,14 @@ importers:
specifier: ^11.2.0
version: 11.2.0
glob:
- specifier: 10.3.12
- version: 10.3.12
+ specifier: 10.3.15
+ version: 10.3.15
http-server:
specifier: ^14.1.1
version: 14.1.1
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ version: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
@@ -259,6 +259,9 @@ importers:
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
+ playwright:
+ specifier: ^1.44.0
+ version: 1.44.0
postcss:
specifier: ^8.4.38
version: 8.4.38
@@ -269,8 +272,8 @@ importers:
specifier: ^0.36.2
version: 0.36.2(postcss@8.4.38)
puppeteer:
- specifier: ^22.6.5
- version: 22.6.5(typescript@5.4.5)
+ specifier: ^22.8.0
+ version: 22.8.0(typescript@5.4.5)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -284,26 +287,26 @@ importers:
specifier: ^2.1.0
version: 2.1.0
react-test-renderer:
- specifier: ^18.2.0
- version: 18.2.0(react@18.3.1)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
rimraf:
- specifier: ^5.0.5
- version: 5.0.5
+ specifier: ^5.0.7
+ version: 5.0.7
standard-version:
specifier: ^9.3.2
- version: 9.3.2
+ version: 9.5.0
storybook:
specifier: ^8.0.10
version: 8.0.10(@babel/preset-env@7.24.5)(react-dom@18.3.1)(react@18.3.1)
storybook-addon-pseudo-states:
- specifier: ^3.0.1
- version: 3.0.1
+ specifier: ^3.1.1
+ version: 3.1.1
styled-components:
specifier: ^5.3.11
- version: 5.3.11(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1)
+ version: 5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
testcafe:
- specifier: 3.5.0
- version: 3.5.0
+ specifier: 3.6.0
+ version: 3.6.0
ts-loader:
specifier: ^9.5.1
version: 9.5.1(typescript@5.4.5)(webpack@5.91.0)
@@ -318,7 +321,7 @@ importers:
version: 7.2.0
webpack:
specifier: ^5.91.0
- version: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ version: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
sandbox/next:
dependencies:
@@ -336,47 +339,42 @@ importers:
version: link:../../packages/smarthr-ui
devDependencies:
'@types/node':
- specifier: ^20.12.8
- version: 20.12.8
+ specifier: ^20.12.11
+ version: 20.12.11
'@types/react':
- specifier: ^18.3.1
- version: 18.3.1
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.0.11
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
eslint-config-next:
specifier: ^14.2.3
version: 14.2.3(eslint@8.57.0)(typescript@5.4.5)
postcss:
- specifier: ^8.0.9
+ specifier: ^8.4.38
version: 8.4.38
tailwindcss:
specifier: ^3.4.3
version: 3.4.3(ts-node@10.9.2)
typescript:
- specifier: ^5.0.4
+ specifier: ^5.4.5
version: 5.4.5
packages:
- /@aashutoshrathi/word-wrap@1.2.6:
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /@adobe/css-tools@4.3.2:
- resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==}
+ /@adobe/css-tools@4.3.3:
+ resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
dev: true
/@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
- /@ampproject/remapping@2.2.0:
- resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
+ /@ampproject/remapping@2.3.0:
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/gen-mapping': 0.1.1
+ '@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
dev: true
@@ -391,7 +389,7 @@ packages:
resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.24.2
+ '@babel/highlight': 7.24.5
picocolors: 1.0.0
/@babel/compat-data@7.24.4:
@@ -403,7 +401,7 @@ packages:
resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.2.0
+ '@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.2
'@babel/generator': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
@@ -601,7 +599,7 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-wrap-function': 7.22.20
+ '@babel/helper-wrap-function': 7.24.5
dev: true
/@babel/helper-replace-supers@7.24.1(@babel/core@7.24.5):
@@ -651,8 +649,8 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-wrap-function@7.22.20:
- resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
+ /@babel/helper-wrap-function@7.24.5:
+ resolution: {integrity: sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
@@ -671,8 +669,8 @@ packages:
- supports-color
dev: true
- /@babel/highlight@7.24.2:
- resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
+ /@babel/highlight@7.24.5:
+ resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.24.5
@@ -758,8 +756,8 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-proposal-decorators@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-u8SwzOcP0DYSsa++nHd/9exlHb0NAlHCb890qtZZbSwPX2bFv8LBEztxwN7Xg/dS8oAFFidhrI9PBcLBJSkGRQ==}
+ /@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -767,9 +765,7 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
- '@babel/helper-split-export-declaration': 7.24.5
- '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.5)
dev: true
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.5):
@@ -845,8 +841,8 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==}
+ /@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -873,8 +869,8 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
+ /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1196,15 +1192,15 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==}
+ /@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.5)
dev: true
/@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.5):
@@ -1587,8 +1583,8 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.5):
- resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==}
+ /@babel/plugin-transform-typescript@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1729,14 +1725,14 @@ packages:
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
- core-js-compat: 3.36.1
+ core-js-compat: 3.37.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-flow@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==}
+ /@babel/preset-flow@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1744,7 +1740,7 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.5)
dev: true
/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5):
@@ -1784,11 +1780,11 @@ packages:
'@babel/helper-validator-option': 7.23.5
'@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
dev: true
- /@babel/register@7.22.15(@babel/core@7.24.5):
- resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==}
+ /@babel/register@7.23.7(@babel/core@7.24.5):
+ resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1805,11 +1801,11 @@ packages:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
- /@babel/runtime@7.24.0:
- resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==}
+ /@babel/runtime@7.24.5:
+ resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==}
engines: {node: '>=6.9.0'}
dependencies:
- regenerator-runtime: 0.14.0
+ regenerator-runtime: 0.14.1
/@babel/template@7.24.0:
resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
@@ -1855,14 +1851,21 @@ packages:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
- /@commitlint/cli@19.2.2(@types/node@20.12.8)(typescript@5.4.5):
- resolution: {integrity: sha512-P8cbOHfg2PQRzfICLSrzUVOCVMqjEZ8Hlth6mtJ4yOEjT47Q5PbIGymgX3rLVylNw+3IAT2Djn9IJ2wHbXFzBg==}
+ /@colors/colors@1.5.0:
+ resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
+ engines: {node: '>=0.1.90'}
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@commitlint/cli@19.3.0(@types/node@20.12.11)(typescript@5.4.5):
+ resolution: {integrity: sha512-LgYWOwuDR7BSTQ9OLZ12m7F/qhNY+NpAyPBgo4YNMkACE7lGuUnuQq1yi9hz1KA4+3VqpOYl8H1rY/LYK43v7g==}
engines: {node: '>=v18'}
hasBin: true
dependencies:
- '@commitlint/format': 19.0.3
+ '@commitlint/format': 19.3.0
'@commitlint/lint': 19.2.2
- '@commitlint/load': 19.2.0(@types/node@20.12.8)(typescript@5.4.5)
+ '@commitlint/load': 19.2.0(@types/node@20.12.11)(typescript@5.4.5)
'@commitlint/read': 19.2.1
'@commitlint/types': 19.0.3
execa: 8.0.1
@@ -1885,7 +1888,7 @@ packages:
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.0.3
- ajv: 8.11.0
+ ajv: 8.13.0
dev: true
/@commitlint/ensure@19.0.3:
@@ -1905,8 +1908,8 @@ packages:
engines: {node: '>=v18'}
dev: true
- /@commitlint/format@19.0.3:
- resolution: {integrity: sha512-QjjyGyoiVWzx1f5xOteKHNLFyhyweVifMgopozSgx1fGNrGV8+wp7k6n1t6StHdJ6maQJ+UUtO2TcEiBFRyR6Q==}
+ /@commitlint/format@19.3.0:
+ resolution: {integrity: sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.0.3
@@ -1918,7 +1921,7 @@ packages:
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.0.3
- semver: 7.6.0
+ semver: 7.6.1
dev: true
/@commitlint/lint@19.2.2:
@@ -1931,7 +1934,7 @@ packages:
'@commitlint/types': 19.0.3
dev: true
- /@commitlint/load@19.2.0(@types/node@20.12.8)(typescript@5.4.5):
+ /@commitlint/load@19.2.0(@types/node@20.12.11)(typescript@5.4.5):
resolution: {integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==}
engines: {node: '>=v18'}
dependencies:
@@ -1941,7 +1944,7 @@ packages:
'@commitlint/types': 19.0.3
chalk: 5.3.0
cosmiconfig: 9.0.0(typescript@5.4.5)
- cosmiconfig-typescript-loader: 5.0.0(@types/node@20.12.8)(cosmiconfig@9.0.0)(typescript@5.4.5)
+ cosmiconfig-typescript-loader: 5.0.0(@types/node@20.12.11)(cosmiconfig@9.0.0)(typescript@5.4.5)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -2024,29 +2027,29 @@ packages:
dependencies:
'@jridgewell/trace-mapping': 0.3.9
- /@csstools/css-parser-algorithms@2.6.1(@csstools/css-tokenizer@2.2.4):
- resolution: {integrity: sha512-ubEkAaTfVZa+WwGhs5jbo5Xfqpeaybr/RvWzvFxRs4jfq16wH8l8Ty/QEEpINxll4xhuGfdMbipRyz5QZh9+FA==}
+ /@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1):
+ resolution: {integrity: sha512-xI/tL2zxzEbESvnSxwFgwvy5HS00oCXxL4MLs6HUiDcYfwowsoQaABKxUElp1ARITrINzBnsECOc1q0eg2GOrA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@csstools/css-tokenizer': ^2.2.4
+ '@csstools/css-tokenizer': ^2.3.1
dependencies:
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-tokenizer': 2.3.1
dev: true
- /@csstools/css-tokenizer@2.2.4:
- resolution: {integrity: sha512-PuWRAewQLbDhGeTvFuq2oClaSCKPIBmHyIobCV39JHRYN0byDcUWJl5baPeNUcqrjtdMNqFooE0FGl31I3JOqw==}
+ /@csstools/css-tokenizer@2.3.1:
+ resolution: {integrity: sha512-iMNHTyxLbBlWIfGtabT157LH9DUx9X8+Y3oymFEuMj8HNc+rpE3dPFGFgHjpKfjeFDjLjYIAIhXPGvS2lKxL9g==}
engines: {node: ^14 || ^16 || >=18}
dev: true
- /@csstools/media-query-list-parser@2.1.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4):
- resolution: {integrity: sha512-qqGuFfbn4rUmyOB0u8CVISIp5FfJ5GAR3mBrZ9/TKndHakdnm6pY0L/fbLcpPnrzwCyyTEZl1nUcXAYHEWneTA==}
+ /@csstools/media-query-list-parser@2.1.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1):
+ resolution: {integrity: sha512-uox5MVhvNHqitPP+SynrB1o8oPxPMt2JLgp5ghJOWf54WGQ5OKu47efne49r1SWqs3wRP8xSWjnO9MBKxhB1dA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@csstools/css-parser-algorithms': ^2.6.1
- '@csstools/css-tokenizer': ^2.2.4
+ '@csstools/css-parser-algorithms': ^2.6.3
+ '@csstools/css-tokenizer': ^2.3.1
dependencies:
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
dev: true
/@csstools/selector-specificity@3.0.3(postcss-selector-parser@6.0.16):
@@ -2065,7 +2068,7 @@ packages:
/@devexpress/callsite-record@4.1.7:
resolution: {integrity: sha512-qr3VQYc0KopduFkEY6SxaOIi1Xhm0jIWQfrxxMVboI/p2rjF/Mj/iqaiUxQQP6F3ujpW/7l0mzhf17uwcFZhBA==}
dependencies:
- '@types/lodash': 4.14.182
+ '@types/lodash': 4.17.1
callsite: 1.0.0
chalk: 2.4.2
error-stack-parser: 2.1.4
@@ -2083,27 +2086,24 @@ packages:
resolution: {integrity: sha512-ZKXyJeFAzcpKM2kk8ipoGIPUqx9BX52omTGnfwjJvxOCaZTM2wtDK7zN0aIgPRbT9XYAlha0HtmZ+XKteuh0Gw==}
dev: true
- /@electron/asar@3.2.3:
- resolution: {integrity: sha512-wmOfE6szYyqZhRIiLH+eyZEp+bGcJI0OD/SCvSUrfBE0jvauyGYO2ZhpWxmNCcDojKu5DYrsVqT5BOCZZ01XIg==}
+ /@electron/asar@3.2.10:
+ resolution: {integrity: sha512-mvBSwIBUeiRscrCeJE1LwctAriBj65eUDm0Pc11iE5gRwzkmsdbS7FnZ1XUWjpSeQWL1L5g12Fc/SchPM9DUOw==}
engines: {node: '>=10.12.0'}
hasBin: true
dependencies:
- chromium-pickle-js: 0.2.0
commander: 5.1.0
- glob: 7.2.0
+ glob: 7.2.3
minimatch: 3.1.2
- optionalDependencies:
- '@types/glob': 7.1.3
dev: true
- /@emotion/is-prop-valid@1.1.2:
- resolution: {integrity: sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==}
+ /@emotion/is-prop-valid@1.2.2:
+ resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
dependencies:
- '@emotion/memoize': 0.7.5
+ '@emotion/memoize': 0.8.1
dev: true
- /@emotion/memoize@0.7.5:
- resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==}
+ /@emotion/memoize@0.8.1:
+ resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
dev: true
/@emotion/stylis@0.8.5:
@@ -2122,176 +2122,382 @@ packages:
react: 18.3.1
dev: true
- /@esbuild/android-arm64@0.18.16:
- resolution: {integrity: sha512-wsCqSPqLz+6Ov+OM4EthU43DyYVVyfn15S4j1bJzylDpc1r1jZFFfJQNfDuT8SlgwuqpmpJXK4uPlHGw6ve7eA==}
+ /@esbuild/aix-ppc64@0.20.2:
+ resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/android-arm64@0.18.20:
+ resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-arm64@0.20.2:
+ resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm@0.18.16:
- resolution: {integrity: sha512-gCHjjQmA8L0soklKbLKA6pgsLk1byULuHe94lkZDzcO3/Ta+bbeewJioEn1Fr7kgy9NWNFy/C+MrBwC6I/WCug==}
+ /@esbuild/android-arm@0.18.20:
+ resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-arm@0.20.2:
+ resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-x64@0.18.16:
- resolution: {integrity: sha512-ldsTXolyA3eTQ1//4DS+E15xl0H/3DTRJaRL0/0PgkqDsI0fV/FlOtD+h0u/AUJr+eOTlZv4aC9gvfppo3C4sw==}
+ /@esbuild/android-x64@0.18.20:
+ resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-x64@0.20.2:
+ resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/darwin-arm64@0.18.20:
+ resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
optional: true
- /@esbuild/darwin-arm64@0.18.16:
- resolution: {integrity: sha512-aBxruWCII+OtluORR/KvisEw0ALuw/qDQWvkoosA+c/ngC/Kwk0lLaZ+B++LLS481/VdydB2u6tYpWxUfnLAIw==}
+ /@esbuild/darwin-arm64@0.20.2:
+ resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/darwin-x64@0.18.16:
- resolution: {integrity: sha512-6w4Dbue280+rp3LnkgmriS1icOUZDyPuZo/9VsuMUTns7SYEiOaJ7Ca1cbhu9KVObAWfmdjUl4gwy9TIgiO5eA==}
+ /@esbuild/darwin-x64@0.18.20:
+ resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-x64@0.20.2:
+ resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64@0.18.16:
- resolution: {integrity: sha512-x35fCebhe9s979DGKbVAwXUOcTmCIE32AIqB9CB1GralMIvxdnMLAw5CnID17ipEw9/3MvDsusj/cspYt2ZLNQ==}
+ /@esbuild/freebsd-arm64@0.18.20:
+ resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-arm64@0.20.2:
+ resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64@0.18.16:
- resolution: {integrity: sha512-YM98f+PeNXF3GbxIJlUsj+McUWG1irguBHkszCIwfr3BXtXZsXo0vqybjUDFfu9a8Wr7uUD/YSmHib+EeGAFlg==}
+ /@esbuild/freebsd-x64@0.18.20:
+ resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-x64@0.20.2:
+ resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/linux-arm64@0.18.16:
- resolution: {integrity: sha512-XIqhNUxJiuy+zsR77+H5Z2f7s4YRlriSJKtvx99nJuG5ATuJPjmZ9n0ANgnGlPCpXGSReFpgcJ7O3SMtzIFeiQ==}
+ /@esbuild/linux-arm64@0.18.20:
+ resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
- /@esbuild/linux-arm@0.18.16:
- resolution: {integrity: sha512-b5ABb+5Ha2C9JkeZXV+b+OruR1tJ33ePmv9ZwMeETSEKlmu/WJ45XTTG+l6a2KDsQtJJ66qo/hbSGBtk0XVLHw==}
+ /@esbuild/linux-arm64@0.20.2:
+ resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-arm@0.18.20:
+ resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm@0.20.2:
+ resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ia32@0.18.16:
- resolution: {integrity: sha512-no+pfEpwnRvIyH+txbBAWtjxPU9grslmTBfsmDndj7bnBmr55rOo/PfQmRfz7Qg9isswt1FP5hBbWb23fRWnow==}
+ /@esbuild/linux-ia32@0.18.20:
+ resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ia32@0.20.2:
+ resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-loong64@0.18.16:
- resolution: {integrity: sha512-Zbnczs9ZXjmo0oZSS0zbNlJbcwKXa/fcNhYQjahDs4Xg18UumpXG/lwM2lcSvHS3mTrRyCYZvJbmzYc4laRI1g==}
+ /@esbuild/linux-loong64@0.18.20:
+ resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-loong64@0.20.2:
+ resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el@0.18.16:
- resolution: {integrity: sha512-YMF7hih1HVR/hQVa/ot4UVffc5ZlrzEb3k2ip0nZr1w6fnYypll9td2qcoMLvd3o8j3y6EbJM3MyIcXIVzXvQQ==}
+ /@esbuild/linux-mips64el@0.18.20:
+ resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-mips64el@0.20.2:
+ resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64@0.18.16:
- resolution: {integrity: sha512-Wkz++LZ29lDwUyTSEnzDaaP5OveOgTU69q9IyIw9WqLRxM4BjTBjz9un4G6TOvehWpf/J3gYVFN96TjGHrbcNQ==}
+ /@esbuild/linux-ppc64@0.18.20:
+ resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ppc64@0.20.2:
+ resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-riscv64@0.18.20:
+ resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
optional: true
- /@esbuild/linux-riscv64@0.18.16:
- resolution: {integrity: sha512-LFMKZ30tk78/mUv1ygvIP+568bwf4oN6reG/uczXnz6SvFn4e2QUFpUpZY9iSJT6Qpgstrhef/nMykIXZtZWGQ==}
+ /@esbuild/linux-riscv64@0.20.2:
+ resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-s390x@0.18.16:
- resolution: {integrity: sha512-3ZC0BgyYHYKfZo3AV2/66TD/I9tlSBaW7eWTEIkrQQKfJIifKMMttXl9FrAg+UT0SGYsCRLI35Gwdmm96vlOjg==}
+ /@esbuild/linux-s390x@0.18.20:
+ resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-s390x@0.20.2:
+ resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-x64@0.18.16:
- resolution: {integrity: sha512-xu86B3647DihHJHv/wx3NCz2Dg1gjQ8bbf9cVYZzWKY+gsvxYmn/lnVlqDRazObc3UMwoHpUhNYaZset4X8IPA==}
+ /@esbuild/linux-x64@0.18.20:
+ resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-x64@0.20.2:
+ resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64@0.18.16:
- resolution: {integrity: sha512-uVAgpimx9Ffw3xowtg/7qQPwHFx94yCje+DoBx+LNm2ePDpQXHrzE+Sb0Si2VBObYz+LcRps15cq+95YM7gkUw==}
+ /@esbuild/netbsd-x64@0.18.20:
+ resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/netbsd-x64@0.20.2:
+ resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64@0.18.16:
- resolution: {integrity: sha512-6OjCQM9wf7z8/MBi6BOWaTL2AS/SZudsZtBziXMtNI8r/U41AxS9x7jn0ATOwVy08OotwkPqGRMkpPR2wcTJXA==}
+ /@esbuild/openbsd-x64@0.18.20:
+ resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/openbsd-x64@0.20.2:
+ resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /@esbuild/sunos-x64@0.18.16:
- resolution: {integrity: sha512-ZoNkruFYJp9d1LbUYCh8awgQDvB9uOMZqlQ+gGEZR7v6C+N6u7vPr86c+Chih8niBR81Q/bHOSKGBK3brJyvkQ==}
+ /@esbuild/sunos-x64@0.18.20:
+ resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/sunos-x64@0.20.2:
+ resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /@esbuild/win32-arm64@0.18.16:
- resolution: {integrity: sha512-+j4anzQ9hrs+iqO+/wa8UE6TVkKua1pXUb0XWFOx0FiAj6R9INJ+WE//1/Xo6FG1vB5EpH3ko+XcgwiDXTxcdw==}
+ /@esbuild/win32-arm64@0.18.20:
+ resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
+ dev: true
optional: true
- /@esbuild/win32-ia32@0.18.16:
- resolution: {integrity: sha512-5PFPmq3sSKTp9cT9dzvI67WNfRZGvEVctcZa1KGjDDu4n3H8k59Inbk0du1fz0KrAbKKNpJbdFXQMDUz7BG4rQ==}
+ /@esbuild/win32-arm64@0.20.2:
+ resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/win32-ia32@0.18.20:
+ resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-ia32@0.20.2:
+ resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-x64@0.18.16:
- resolution: {integrity: sha512-sCIVrrtcWN5Ua7jYXNG1xD199IalrbfV2+0k/2Zf2OyV2FtnQnMgdzgpRAbi4AWlKJj1jkX+M+fEGPQj6BQB4w==}
+ /@esbuild/win32-x64@0.18.20:
+ resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-x64@0.20.2:
+ resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -2320,7 +2526,7 @@ packages:
ajv: 6.12.6
debug: 4.3.4(supports-color@5.5.0)
espree: 9.6.1
- globals: 13.19.0
+ globals: 13.24.0
ignore: 5.3.1
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -2339,49 +2545,49 @@ packages:
resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==}
dev: true
- /@floating-ui/core@1.4.1:
- resolution: {integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==}
+ /@floating-ui/core@1.6.1:
+ resolution: {integrity: sha512-42UH54oPZHPdRHdw6BgoBD6cg/eVTmVrFcgeRDM3jbO7uxSoipVcmcIGFcA5jmOHO5apcyvBhkSKES3fQJnu7A==}
dependencies:
- '@floating-ui/utils': 0.1.1
+ '@floating-ui/utils': 0.2.2
dev: true
- /@floating-ui/dom@1.5.1:
- resolution: {integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==}
+ /@floating-ui/dom@1.6.5:
+ resolution: {integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==}
dependencies:
- '@floating-ui/core': 1.4.1
- '@floating-ui/utils': 0.1.1
+ '@floating-ui/core': 1.6.1
+ '@floating-ui/utils': 0.2.2
dev: true
- /@floating-ui/react-dom@2.0.1(react-dom@18.3.1)(react@18.3.1):
- resolution: {integrity: sha512-rZtAmSht4Lry6gdhAJDrCp/6rKN7++JnL1/Anbr/DdeyYXQPxvg/ivrbYvJulbRf4vL8b212suwMM2lxbv+RQA==}
+ /@floating-ui/react-dom@2.0.9(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-q0umO0+LQK4+p6aGyvzASqKbKOJcAHJ7ycE9CuUvfx3s9zTHWmGJTPOIlM/hmSBfUfg/XfY5YhLBLR/LHwShQQ==}
peerDependencies:
react: ^18.3.1
react-dom: ^18.3.1
dependencies:
- '@floating-ui/dom': 1.5.1
+ '@floating-ui/dom': 1.6.5
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@floating-ui/utils@0.1.1:
- resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==}
+ /@floating-ui/utils@0.2.2:
+ resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==}
dev: true
- /@hapi/hoek@9.2.0:
- resolution: {integrity: sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug==}
+ /@hapi/hoek@9.3.0:
+ resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
dev: true
/@hapi/topo@5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
- '@hapi/hoek': 9.2.0
+ '@hapi/hoek': 9.3.0
dev: true
/@humanwhocodes/config-array@0.11.14:
resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
engines: {node: '>=10.10.0'}
dependencies:
- '@humanwhocodes/object-schema': 2.0.2
+ '@humanwhocodes/object-schema': 2.0.3
debug: 4.3.4(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
@@ -2393,8 +2599,8 @@ packages:
engines: {node: '>=12.22'}
dev: true
- /@humanwhocodes/object-schema@2.0.2:
- resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
+ /@humanwhocodes/object-schema@2.0.3:
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
dev: true
/@hutson/parse-repository-url@3.0.2:
@@ -2412,7 +2618,6 @@ packages:
strip-ansi-cjs: /strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: /wrap-ansi@7.0.0
- dev: true
/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
@@ -2435,7 +2640,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -2456,14 +2661,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
ansi-escapes: 4.3.2
chalk: 4.1.2
- ci-info: 3.2.0
+ ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ jest-config: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -2498,7 +2703,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
jest-mock: 29.7.0
dev: true
@@ -2524,8 +2729,8 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@sinonjs/fake-timers': 10.0.2
- '@types/node': 20.12.8
+ '@sinonjs/fake-timers': 10.3.0
+ '@types/node': 20.12.11
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -2558,24 +2763,24 @@ packages:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
chalk: 4.1.2
- collect-v8-coverage: 1.0.1
+ collect-v8-coverage: 1.0.2
exit: 0.1.2
- glob: 7.2.0
+ glob: 7.2.3
graceful-fs: 4.2.11
- istanbul-lib-coverage: 3.2.0
- istanbul-lib-instrument: 6.0.0
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-instrument: 6.0.2
istanbul-lib-report: 3.0.0
- istanbul-lib-source-maps: 4.0.0
- istanbul-reports: 3.1.5
+ istanbul-lib-source-maps: 4.0.1
+ istanbul-reports: 3.1.7
jest-message-util: 29.7.0
jest-util: 29.7.0
jest-worker: 29.7.0
slash: 3.0.0
string-length: 4.0.2
strip-ansi: 6.0.1
- v8-to-istanbul: 9.1.0
+ v8-to-istanbul: 9.2.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -2602,8 +2807,8 @@ packages:
dependencies:
'@jest/console': 29.7.0
'@jest/types': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.3
- collect-v8-coverage: 1.0.1
+ '@types/istanbul-lib-coverage': 2.0.6
+ collect-v8-coverage: 1.0.2
dev: true
/@jest/test-sequencer@29.7.0:
@@ -2644,21 +2849,13 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/schemas': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.3
- '@types/istanbul-reports': 3.0.1
- '@types/node': 20.12.8
- '@types/yargs': 17.0.10
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 20.12.11
+ '@types/yargs': 17.0.32
chalk: 4.1.2
dev: true
- /@jridgewell/gen-mapping@0.1.1:
- resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.4.15
- dev: true
-
/@jridgewell/gen-mapping@0.3.5:
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
@@ -2667,16 +2864,16 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.25
- /@jridgewell/resolve-uri@3.1.1:
- resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
+ /@jridgewell/resolve-uri@3.1.2:
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
/@jridgewell/set-array@1.2.1:
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map@0.3.5:
- resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
+ /@jridgewell/source-map@0.3.6:
+ resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
dependencies:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
@@ -2687,32 +2884,32 @@ packages:
/@jridgewell/trace-mapping@0.3.25:
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
dependencies:
- '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
/@jridgewell/trace-mapping@0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
- '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
/@juggle/resize-observer@3.4.0:
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
dev: true
- /@mdx-js/react@3.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@mdx-js/react@3.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
dependencies:
- '@types/mdx': 2.0.5
- '@types/react': 18.3.1
+ '@types/mdx': 2.0.13
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@ndelangen/get-tarball@3.0.7:
- resolution: {integrity: sha512-NqGfTZIZpRFef1GoVaShSSRwDC3vde3ThtTeqFdcYd6ipKqnfEVhjK2hUeHjCQUcptyZr2TONqcloFXM+5QBrQ==}
+ /@ndelangen/get-tarball@3.0.9:
+ resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==}
dependencies:
gunzip-maybe: 1.4.2
pump: 3.0.0
@@ -2826,17 +3023,16 @@ packages:
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.11.1
+ fastq: 1.17.1
/@pkgjs/parseargs@0.11.0:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
requiresBuild: true
- dev: true
optional: true
- /@puppeteer/browsers@2.2.2:
- resolution: {integrity: sha512-hZ/JhxPIceWaGSEzUZp83/8M49CoxlkuThfTR7t4AoCu5+ZvJ3vktLm60Otww2TXeROB5igiZ8D9oPQh6ckBVg==}
+ /@puppeteer/browsers@2.2.3:
+ resolution: {integrity: sha512-bJ0UBsk0ESOs6RFcLXOt99a3yTDcOKlzfjad+rhFwdaG1Lu/Wzq58GHYCDTlZ9z6mldf4g+NTb+TXEfe0PpnsQ==}
engines: {node: '>=18'}
hasBin: true
dependencies:
@@ -2855,19 +3051,19 @@ packages:
/@radix-ui/number@1.0.1:
resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
dev: true
/@radix-ui/primitive@1.0.1:
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
dev: true
- /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -2877,18 +3073,18 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -2898,63 +3094,63 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-context@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-context@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-direction@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-direction@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -2964,36 +3160,36 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3003,35 +3199,35 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-id@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-id@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3041,27 +3237,27 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@floating-ui/react-dom': 2.0.1(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1)
+ '@babel/runtime': 7.24.5
+ '@floating-ui/react-dom': 2.0.9(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.2)(react@18.3.1)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3071,18 +3267,18 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3092,18 +3288,18 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3113,26 +3309,26 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-select@1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3142,38 +3338,38 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
- aria-hidden: 1.2.3
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1)
+ react-remove-scroll: 2.5.5(@types/react@18.3.2)(react@18.3.1)
dev: true
- /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3183,33 +3379,33 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-slot@1.0.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3219,24 +3415,24 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3246,20 +3442,20 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3269,126 +3465,126 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
'@radix-ui/rect': 1.0.1
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-use-size@1.0.1(@types/react@18.3.1)(react@18.3.1):
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
react: 18.3.1
dev: true
- /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
'@types/react-dom': '*'
react: ^18.3.1
react-dom: ^18.3.1
@@ -3398,10 +3594,10 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
@@ -3409,17 +3605,17 @@ packages:
/@radix-ui/rect@1.0.1:
resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
dev: true
/@rushstack/eslint-patch@1.10.2:
resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
dev: true
- /@sideway/address@4.1.3:
- resolution: {integrity: sha512-8ncEUtmnTsMmL7z1YPB47kPUq7LpKWJNFPsRzHiIajGC5uXlWGn+AmkYPcHNl8S4tcEGx+cnORnNYaw2wvL+LQ==}
+ /@sideway/address@4.1.5:
+ resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
dependencies:
- '@hapi/hoek': 9.2.0
+ '@hapi/hoek': 9.3.0
dev: true
/@sideway/formula@3.0.1:
@@ -3434,16 +3630,16 @@ packages:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
dev: true
- /@sinonjs/commons@2.0.0:
- resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==}
+ /@sinonjs/commons@3.0.1:
+ resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
dependencies:
type-detect: 4.0.8
dev: true
- /@sinonjs/fake-timers@10.0.2:
- resolution: {integrity: sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==}
+ /@sinonjs/fake-timers@10.3.0:
+ resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
dependencies:
- '@sinonjs/commons': 2.0.0
+ '@sinonjs/commons': 3.0.1
dev: true
/@smarthr/wareki@1.2.0:
@@ -3454,7 +3650,7 @@ packages:
resolution: {integrity: sha512-ymeTRE1uWplifWUMc3tO5lLGn4buS/hUVWKRM11SqugmxRym55B4thCJU089HAEMY+V/imiCeOE63TT+DGsk8g==}
dependencies:
'@storybook/addon-highlight': 8.0.10
- axe-core: 4.7.0
+ axe-core: 4.9.1
dev: true
/@storybook/addon-actions@8.0.10:
@@ -3462,10 +3658,10 @@ packages:
dependencies:
'@storybook/core-events': 8.0.10
'@storybook/global': 5.0.0
- '@types/uuid': 9.0.7
+ '@types/uuid': 9.0.8
dequal: 2.0.3
polished: 4.3.1
- uuid: 9.0.0
+ uuid: 9.0.1
dev: true
/@storybook/addon-backgrounds@8.0.10:
@@ -3476,15 +3672,14 @@ packages:
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-controls@8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@storybook/addon-controls@8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-MAUtIJGayNSsfn3VZ6SjQwpRkb4ky+10oVfos+xX9GQ5+7RCs+oYMuE4+aiQvvfXNdV8v0pUGPUPeUzqfJmhOA==}
dependencies:
- '@storybook/blocks': 8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/blocks': 8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
lodash: 4.17.21
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- - encoding
- react
- react-dom
- supports-color
@@ -3494,10 +3689,10 @@ packages:
resolution: {integrity: sha512-y+Agoez/hXZHKUMIZHU96T5V1v0cs4ArSNfjqDg9DPYcyQ88ihJNb6ZabIgzmEaJF/NncCW+LofWeUtkTwalkw==}
dependencies:
'@babel/core': 7.24.5
- '@mdx-js/react': 3.0.1(@types/react@18.3.1)(react@18.3.1)
- '@storybook/blocks': 8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
+ '@mdx-js/react': 3.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@storybook/blocks': 8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
'@storybook/client-logger': 8.0.10
- '@storybook/components': 8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/components': 8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
'@storybook/csf-plugin': 8.0.10
'@storybook/csf-tools': 8.0.10
'@storybook/global': 5.0.0
@@ -3506,7 +3701,7 @@ packages:
'@storybook/react-dom-shim': 8.0.10(react-dom@18.3.1)(react@18.3.1)
'@storybook/theming': 8.0.10(react-dom@18.3.1)(react@18.3.1)
'@storybook/types': 8.0.10
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
fs-extra: 11.2.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -3514,16 +3709,15 @@ packages:
rehype-slug: 6.0.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
- /@storybook/addon-essentials@8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@storybook/addon-essentials@8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-Uy3+vm7QX+b/9rhW/iFa3EYAAbV1T2LljY9Bj4aTPZHas9Bpvl5ZPnOm/PhybcE8UFHEoVTJ0v3uWb0dsUEigw==}
dependencies:
'@storybook/addon-actions': 8.0.10
'@storybook/addon-backgrounds': 8.0.10
- '@storybook/addon-controls': 8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/addon-controls': 8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
'@storybook/addon-docs': 8.0.10
'@storybook/addon-highlight': 8.0.10
'@storybook/addon-measure': 8.0.10
@@ -3537,7 +3731,6 @@ packages:
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- - encoding
- react
- react-dom
- supports-color
@@ -3594,10 +3787,10 @@ packages:
webpack: ^5.0.0
dependencies:
'@storybook/node-logger': 8.0.10
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
- /@storybook/addon-styling@1.3.7(@types/react-dom@18.2.25)(@types/react@18.3.1)(less@4.2.0)(postcss@8.4.38)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)(webpack@5.91.0):
+ /@storybook/addon-styling@1.3.7(@types/react-dom@18.3.0)(@types/react@18.3.2)(less@4.2.0)(postcss@8.4.38)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)(webpack@5.91.0):
resolution: {integrity: sha512-JSBZMOrSw/3rlq5YoEI7Qyq703KSNP0Jd+gxTWu3/tP6245mpjn2dXnR8FvqVxCi+FG4lt2kQyPzgsuwEw1SSA==}
deprecated: 'This package has been split into @storybook/addon-styling-webpack and @storybook/addon-themes. More info: https://github.com/storybookjs/addon-styling'
hasBin: true
@@ -3622,14 +3815,14 @@ packages:
'@babel/template': 7.24.0
'@babel/types': 7.24.5
'@storybook/api': 7.6.17(react-dom@18.3.1)(react@18.3.1)
- '@storybook/components': 7.6.17(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@storybook/core-common': 7.6.17
- '@storybook/core-events': 7.6.17
- '@storybook/manager-api': 7.6.17(react-dom@18.3.1)(react@18.3.1)
- '@storybook/node-logger': 7.6.17
- '@storybook/preview-api': 7.6.17
- '@storybook/theming': 7.6.17(react-dom@18.3.1)(react@18.3.1)
- '@storybook/types': 7.6.17
+ '@storybook/components': 7.6.19(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/core-common': 7.6.19
+ '@storybook/core-events': 7.6.19
+ '@storybook/manager-api': 7.6.19(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/node-logger': 7.6.19
+ '@storybook/preview-api': 7.6.19
+ '@storybook/theming': 7.6.19(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/types': 7.6.19
css-loader: 6.11.0(webpack@5.91.0)
less: 4.2.0
less-loader: 11.1.4(less@4.2.0)(webpack@5.91.0)
@@ -3641,12 +3834,11 @@ packages:
resolve-url-loader: 5.0.0
sass-loader: 13.3.3(webpack@5.91.0)
style-loader: 3.3.4(webpack@5.91.0)
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
transitivePeerDependencies:
- '@rspack/core'
- '@types/react'
- '@types/react-dom'
- - encoding
- fibers
- node-sass
- sass
@@ -3686,7 +3878,7 @@ packages:
- react-dom
dev: true
- /@storybook/blocks@8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@storybook/blocks@8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-LOaxvcO2d4dT4YoWlQ0bq/c8qA3aHoqtyuvBjwbVn+359bjMtgj/91YuP9Y2+ggZZ4p+ttgvk39PcmJlNXlJsw==}
peerDependencies:
react: ^18.3.1
@@ -3699,9 +3891,9 @@ packages:
dependencies:
'@storybook/channels': 8.0.10
'@storybook/client-logger': 8.0.10
- '@storybook/components': 8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/components': 8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
'@storybook/core-events': 8.0.10
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/docs-tools': 8.0.10
'@storybook/global': 5.0.0
'@storybook/icons': 1.2.9(react-dom@18.3.1)(react@18.3.1)
@@ -3709,7 +3901,7 @@ packages:
'@storybook/preview-api': 8.0.10
'@storybook/theming': 8.0.10(react-dom@18.3.1)(react@18.3.1)
'@storybook/types': 8.0.10
- '@types/lodash': 4.14.182
+ '@types/lodash': 4.17.1
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
@@ -3720,12 +3912,11 @@ packages:
react-colorful: 5.6.1(react-dom@18.3.1)(react@18.3.1)
react-dom: 18.3.1(react@18.3.1)
telejson: 7.2.0
- tocbot: 4.21.0
+ tocbot: 4.27.19
ts-dedent: 2.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- '@types/react'
- - encoding
- supports-color
dev: true
@@ -3736,22 +3927,21 @@ packages:
'@storybook/core-common': 8.0.10
'@storybook/manager': 8.0.10
'@storybook/node-logger': 8.0.10
- '@types/ejs': 3.1.2
- '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.16)
+ '@types/ejs': 3.1.5
+ '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.2)
browser-assert: 1.2.1
- ejs: 3.1.9
- esbuild: 0.18.16
+ ejs: 3.1.10
+ esbuild: 0.20.2
esbuild-plugin-alias: 0.2.1
express: 4.19.2
fs-extra: 11.2.0
process: 0.11.10
util: 0.12.5
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
- /@storybook/builder-webpack5@8.0.10(@swc/core@1.4.17)(esbuild@0.18.16)(typescript@5.4.5):
+ /@storybook/builder-webpack5@8.0.10(@swc/core@1.5.5)(esbuild@0.20.2)(typescript@5.4.5):
resolution: {integrity: sha512-FrETNEPu9UcZD8yRIQhszcmdMMS73yXRbZFldeZzJ2b8lKNJG+tmqRwh5d5xEMzMrENYkDY+sXheOLSjKfvq9g==}
peerDependencies:
typescript: '*'
@@ -3767,37 +3957,36 @@ packages:
'@storybook/node-logger': 8.0.10
'@storybook/preview': 8.0.10
'@storybook/preview-api': 8.0.10
- '@types/node': 18.18.6
+ '@types/node': 18.19.32
'@types/semver': 7.5.8
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
- cjs-module-lexer: 1.2.3
+ cjs-module-lexer: 1.3.1
constants-browserify: 1.0.0
css-loader: 6.11.0(webpack@5.91.0)
- es-module-lexer: 1.4.1
+ es-module-lexer: 1.5.2
express: 4.19.2
fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.5)(webpack@5.91.0)
fs-extra: 11.2.0
- html-webpack-plugin: 5.5.1(webpack@5.91.0)
- magic-string: 0.30.5
+ html-webpack-plugin: 5.6.0(webpack@5.91.0)
+ magic-string: 0.30.10
path-browserify: 1.0.1
process: 0.11.10
- semver: 7.6.0
+ semver: 7.6.1
style-loader: 3.3.4(webpack@5.91.0)
- terser-webpack-plugin: 5.3.10(@swc/core@1.4.17)(esbuild@0.18.16)(webpack@5.91.0)
+ terser-webpack-plugin: 5.3.10(@swc/core@1.5.5)(esbuild@0.20.2)(webpack@5.91.0)
ts-dedent: 2.2.0
typescript: 5.4.5
- url: 0.11.1
+ url: 0.11.3
util: 0.12.5
util-deprecate: 1.0.2
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
- webpack-dev-middleware: 6.1.2(webpack@5.91.0)
- webpack-hot-middleware: 2.25.1
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
+ webpack-dev-middleware: 6.1.3(webpack@5.91.0)
+ webpack-hot-middleware: 2.26.1
webpack-virtual-modules: 0.5.0
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
- - encoding
- esbuild
- supports-color
- uglify-js
@@ -3810,7 +3999,18 @@ packages:
'@storybook/client-logger': 7.6.17
'@storybook/core-events': 7.6.17
'@storybook/global': 5.0.0
- qs: 6.11.2
+ qs: 6.12.1
+ telejson: 7.2.0
+ tiny-invariant: 1.3.3
+ dev: true
+
+ /@storybook/channels@7.6.19:
+ resolution: {integrity: sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==}
+ dependencies:
+ '@storybook/client-logger': 7.6.19
+ '@storybook/core-events': 7.6.19
+ '@storybook/global': 5.0.0
+ qs: 6.12.1
telejson: 7.2.0
tiny-invariant: 1.3.3
dev: true
@@ -3831,7 +4031,7 @@ packages:
dependencies:
'@babel/core': 7.24.5
'@babel/types': 7.24.5
- '@ndelangen/get-tarball': 3.0.7
+ '@ndelangen/get-tarball': 3.0.9
'@storybook/codemod': 8.0.10
'@storybook/core-common': 8.0.10
'@storybook/core-events': 8.0.10
@@ -3847,20 +4047,20 @@ packages:
commander: 6.2.1
cross-spawn: 7.0.3
detect-indent: 6.1.0
- envinfo: 7.8.1
+ envinfo: 7.13.0
execa: 5.1.1
find-up: 5.0.0
fs-extra: 11.2.0
- get-npm-tarball-url: 2.0.3
- giget: 1.1.2
+ get-npm-tarball-url: 2.1.0
+ giget: 1.2.3
globby: 11.1.0
- jscodeshift: 0.15.1(@babel/preset-env@7.24.5)
+ jscodeshift: 0.15.2(@babel/preset-env@7.24.5)
leven: 3.1.0
ora: 5.4.1
prettier: 3.2.5
prompts: 2.4.2
read-pkg-up: 7.0.1
- semver: 7.6.0
+ semver: 7.6.1
strip-json-comments: 3.1.1
tempy: 1.0.1
tiny-invariant: 1.3.3
@@ -3868,7 +4068,6 @@ packages:
transitivePeerDependencies:
- '@babel/preset-env'
- bufferutil
- - encoding
- react
- react-dom
- supports-color
@@ -3881,6 +4080,12 @@ packages:
'@storybook/global': 5.0.0
dev: true
+ /@storybook/client-logger@7.6.19:
+ resolution: {integrity: sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==}
+ dependencies:
+ '@storybook/global': 5.0.0
+ dev: true
+
/@storybook/client-logger@8.0.10:
resolution: {integrity: sha512-u38SbZNAunZzxZNHMJb9jkUwFkLyWxmvp4xtiRM3u9sMUShXoTnzbw1yKrxs+kYJjg+58UQPZ1JhEBRcHt5Oww==}
dependencies:
@@ -3893,14 +4098,14 @@ packages:
'@babel/core': 7.24.5
'@babel/preset-env': 7.24.5(@babel/core@7.24.5)
'@babel/types': 7.24.5
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/csf-tools': 8.0.10
'@storybook/node-logger': 8.0.10
'@storybook/types': 8.0.10
- '@types/cross-spawn': 6.0.2
+ '@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.15.1(@babel/preset-env@7.24.5)
+ jscodeshift: 0.15.2(@babel/preset-env@7.24.5)
lodash: 4.17.21
prettier: 3.2.5
recast: 0.23.6
@@ -3909,19 +4114,19 @@ packages:
- supports-color
dev: true
- /@storybook/components@7.6.17(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
- resolution: {integrity: sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==}
+ /@storybook/components@7.6.19(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-8Zw/RQ4crzKkUR7ojxvRIj8vktKiBBO8Nq93qv4JfDqDWrcR7cro0hOlZgmZmrzbFunBBt6WlsNNO6nVP7R4Xw==}
peerDependencies:
react: ^18.3.1
react-dom: ^18.3.1
dependencies:
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1)
- '@storybook/client-logger': 7.6.17
- '@storybook/csf': 0.1.5
+ '@radix-ui/react-select': 1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/client-logger': 7.6.19
+ '@storybook/csf': 0.1.7
'@storybook/global': 5.0.0
- '@storybook/theming': 7.6.17(react-dom@18.3.1)(react@18.3.1)
- '@storybook/types': 7.6.17
+ '@storybook/theming': 7.6.19(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/types': 7.6.19
memoizerific: 1.11.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -3932,15 +4137,15 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/components@8.0.10(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
+ /@storybook/components@8.0.10(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-eo+oDDcm35YBB3dtDYDfcjJypNVPmRty85VWpAOBsJXpwp/fgU8csx0DM3KmhrQ4cWLf2WzcFowJwI1w+J88Sw==}
peerDependencies:
react: ^18.3.1
react-dom: ^18.3.1
dependencies:
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1)
'@storybook/client-logger': 8.0.10
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/global': 5.0.0
'@storybook/icons': 1.2.9(react-dom@18.3.1)(react@18.3.1)
'@storybook/theming': 8.0.10(react-dom@18.3.1)(react@18.3.1)
@@ -3953,34 +4158,33 @@ packages:
- '@types/react'
dev: true
- /@storybook/core-common@7.6.17:
- resolution: {integrity: sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==}
+ /@storybook/core-common@7.6.19:
+ resolution: {integrity: sha512-njwpGzFJrfbJr/AFxGP8KMrfPfxN85KOfSlxYnQwRm5Z0H1D/lT33LhEBf5m37gaGawHeG7KryxO6RvaioMt2Q==}
dependencies:
- '@storybook/core-events': 7.6.17
- '@storybook/node-logger': 7.6.17
- '@storybook/types': 7.6.17
+ '@storybook/core-events': 7.6.19
+ '@storybook/node-logger': 7.6.19
+ '@storybook/types': 7.6.19
'@types/find-cache-dir': 3.2.1
- '@types/node': 18.18.6
- '@types/node-fetch': 2.6.4
- '@types/pretty-hrtime': 1.0.0
+ '@types/node': 18.19.32
+ '@types/node-fetch': 2.6.11
+ '@types/pretty-hrtime': 1.0.3
chalk: 4.1.2
- esbuild: 0.18.16
- esbuild-register: 3.5.0(esbuild@0.18.16)
+ esbuild: 0.18.20
+ esbuild-register: 3.5.0(esbuild@0.18.20)
file-system-cache: 2.3.0
find-cache-dir: 3.3.2
find-up: 5.0.0
fs-extra: 11.2.0
- glob: 10.3.12
- handlebars: 4.7.7
+ glob: 10.3.15
+ handlebars: 4.7.8
lazy-universal-dotenv: 4.0.0
- node-fetch: 2.6.12
+ node-fetch: 2.6.4
picomatch: 2.3.1
pkg-dir: 5.0.0
pretty-hrtime: 1.0.3
resolve-from: 5.0.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
@@ -3995,28 +4199,27 @@ packages:
'@yarnpkg/libzip': 2.3.0
chalk: 4.1.2
cross-spawn: 7.0.3
- esbuild: 0.18.16
- esbuild-register: 3.5.0(esbuild@0.18.16)
+ esbuild: 0.20.2
+ esbuild-register: 3.5.0(esbuild@0.20.2)
execa: 5.1.1
file-system-cache: 2.3.0
find-cache-dir: 3.3.2
find-up: 5.0.0
fs-extra: 11.2.0
- glob: 10.3.12
- handlebars: 4.7.7
+ glob: 10.3.15
+ handlebars: 4.7.8
lazy-universal-dotenv: 4.0.0
- node-fetch: 2.6.12
+ node-fetch: 2.6.4
picomatch: 2.3.1
pkg-dir: 5.0.0
pretty-hrtime: 1.0.3
resolve-from: 5.0.0
- semver: 7.6.0
+ semver: 7.6.1
tempy: 1.0.1
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
util: 0.12.5
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
@@ -4026,6 +4229,12 @@ packages:
ts-dedent: 2.2.0
dev: true
+ /@storybook/core-events@7.6.19:
+ resolution: {integrity: sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==}
+ dependencies:
+ ts-dedent: 2.2.0
+ dev: true
+
/@storybook/core-events@8.0.10:
resolution: {integrity: sha512-TuHPS6p5ZNr4vp4butLb4R98aFx0NRYCI/7VPhJEUH5rPiqNzE3PZd8DC8rnVxavsJ+jO1/y+egNKXRYkEcoPQ==}
dependencies:
@@ -4042,7 +4251,7 @@ packages:
'@storybook/channels': 8.0.10
'@storybook/core-common': 8.0.10
'@storybook/core-events': 8.0.10
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/csf-tools': 8.0.10
'@storybook/docs-mdx': 3.0.0
'@storybook/global': 5.0.0
@@ -4052,15 +4261,15 @@ packages:
'@storybook/preview-api': 8.0.10
'@storybook/telemetry': 8.0.10
'@storybook/types': 8.0.10
- '@types/detect-port': 1.3.2
- '@types/node': 18.18.6
- '@types/pretty-hrtime': 1.0.0
+ '@types/detect-port': 1.3.5
+ '@types/node': 18.19.32
+ '@types/pretty-hrtime': 1.0.3
'@types/semver': 7.5.8
better-opn: 3.0.2
chalk: 4.1.2
- cli-table3: 0.6.1
+ cli-table3: 0.6.4
compression: 1.7.4
- detect-port: 1.3.0
+ detect-port: 1.5.1
express: 4.19.2
fs-extra: 11.2.0
globby: 11.1.0
@@ -4070,17 +4279,16 @@ packages:
pretty-hrtime: 1.0.3
prompts: 2.4.2
read-pkg-up: 7.0.1
- semver: 7.6.0
+ semver: 7.6.1
telejson: 7.2.0
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
util: 0.12.5
util-deprecate: 1.0.2
watchpack: 2.4.1
- ws: 8.16.0
+ ws: 8.17.0
transitivePeerDependencies:
- bufferutil
- - encoding
- react
- react-dom
- supports-color
@@ -4093,10 +4301,9 @@ packages:
'@storybook/core-common': 8.0.10
'@storybook/node-logger': 8.0.10
'@storybook/types': 8.0.10
- '@types/node': 18.18.6
+ '@types/node': 18.19.32
ts-dedent: 2.2.0
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
@@ -4104,7 +4311,7 @@ packages:
resolution: {integrity: sha512-0EsyEx/06sCjI8sn40r7cABtBU1vUKPMPD+S5mJiZymm73BgdARj0qZOlLoK2LP+t2pcaB/Cn7KX/uyhhv7M2g==}
dependencies:
'@storybook/csf-tools': 8.0.10
- unplugin: 1.4.0
+ unplugin: 1.10.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -4116,7 +4323,7 @@ packages:
'@babel/parser': 7.24.5
'@babel/traverse': 7.24.5(supports-color@5.5.0)
'@babel/types': 7.24.5
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/types': 8.0.10
fs-extra: 11.2.0
recast: 0.23.6
@@ -4131,8 +4338,8 @@ packages:
lodash: 4.17.21
dev: true
- /@storybook/csf@0.1.5:
- resolution: {integrity: sha512-pW7Dtk/bE2JGrAe/KuBY4Io02NBe/2CLP2DkgVgWlSwvEVdm/rbQyiwy8RaL0lQlJCv9CsGBY+n9HQG8d4bZjQ==}
+ /@storybook/csf@0.1.7:
+ resolution: {integrity: sha512-53JeLZBibjQxi0Ep+/AJTfxlofJlxy1jXcSKENlnKxHjWEYyHQCumMP5yTFjf7vhNnMjEpV3zx6t23ssFiGRyw==}
dependencies:
type-fest: 2.19.0
dev: true
@@ -4153,7 +4360,6 @@ packages:
doctrine: 3.0.0
lodash: 4.17.21
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
@@ -4180,7 +4386,7 @@ packages:
'@storybook/core-events': 8.0.10
'@storybook/global': 5.0.0
'@storybook/preview-api': 8.0.10
- '@vitest/utils': 1.4.0
+ '@vitest/utils': 1.6.0
util: 0.12.5
dev: true
@@ -4190,7 +4396,7 @@ packages:
'@storybook/channels': 7.6.17
'@storybook/client-logger': 7.6.17
'@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/global': 5.0.0
'@storybook/router': 7.6.17
'@storybook/theming': 7.6.17(react-dom@18.3.1)(react@18.3.1)
@@ -4198,7 +4404,29 @@ packages:
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- store2: 2.14.2
+ store2: 2.14.3
+ telejson: 7.2.0
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - react
+ - react-dom
+ dev: true
+
+ /@storybook/manager-api@7.6.19(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-dVCx1Q+HZEA4U08XqYljiG88BeS3I3ahnPAQLZAeWQXQRkoc9G2jMgLNPKYPIqEtq7Xrn6SRlFMIofhwWrwZpg==}
+ dependencies:
+ '@storybook/channels': 7.6.19
+ '@storybook/client-logger': 7.6.19
+ '@storybook/core-events': 7.6.19
+ '@storybook/csf': 0.1.7
+ '@storybook/global': 5.0.0
+ '@storybook/router': 7.6.19
+ '@storybook/theming': 7.6.19(react-dom@18.3.1)(react@18.3.1)
+ '@storybook/types': 7.6.19
+ dequal: 2.0.3
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ store2: 2.14.3
telejson: 7.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -4212,7 +4440,7 @@ packages:
'@storybook/channels': 8.0.10
'@storybook/client-logger': 8.0.10
'@storybook/core-events': 8.0.10
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/global': 5.0.0
'@storybook/icons': 1.2.9(react-dom@18.3.1)(react@18.3.1)
'@storybook/router': 8.0.10
@@ -4221,7 +4449,7 @@ packages:
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- store2: 2.14.2
+ store2: 2.14.3
telejson: 7.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -4233,15 +4461,15 @@ packages:
resolution: {integrity: sha512-bojGglUQNry48L4siURc2zQKswavLzMh69rqsfL3ZXx+i+USfRfB7593azTlaZh0q6HO4bUAjB24RfQCyifLLQ==}
dev: true
- /@storybook/node-logger@7.6.17:
- resolution: {integrity: sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==}
+ /@storybook/node-logger@7.6.19:
+ resolution: {integrity: sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==}
dev: true
/@storybook/node-logger@8.0.10:
resolution: {integrity: sha512-UMmaUaA3VOX/mKLsSvOnbZre2/1tZ6hazA6H0eAnClKb51jRD1AJrsBYK+uHr/CAp7t710bB5U8apPov7hayDw==}
dev: true
- /@storybook/preset-react-webpack@8.0.10(@swc/core@1.4.17)(esbuild@0.18.16)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5):
+ /@storybook/preset-react-webpack@8.0.10(@swc/core@1.5.5)(esbuild@0.20.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5):
resolution: {integrity: sha512-+I0x8snLl9sfc3xXh51YLXwp0Km4Jhri+JJeT2r+zSI3k/fdu5bLz5NFPcxDmRm5ZPpaQyiLc2Mge4txMkFsZw==}
engines: {node: '>=18.0.0'}
peerDependencies:
@@ -4257,43 +4485,42 @@ packages:
'@storybook/node-logger': 8.0.10
'@storybook/react': 8.0.10(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)
'@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.5)(webpack@5.91.0)
- '@types/node': 18.18.6
+ '@types/node': 18.19.32
'@types/semver': 7.5.8
find-up: 5.0.0
fs-extra: 11.2.0
- magic-string: 0.30.5
+ magic-string: 0.30.10
react: 18.3.1
- react-docgen: 7.0.1
+ react-docgen: 7.0.3
react-dom: 18.3.1(react@18.3.1)
resolve: 1.22.8
- semver: 7.6.0
+ semver: 7.6.1
tsconfig-paths: 4.2.0
typescript: 5.4.5
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
transitivePeerDependencies:
- '@swc/core'
- - encoding
- esbuild
- supports-color
- uglify-js
- webpack-cli
dev: true
- /@storybook/preview-api@7.6.17:
- resolution: {integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==}
+ /@storybook/preview-api@7.6.19:
+ resolution: {integrity: sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==}
dependencies:
- '@storybook/channels': 7.6.17
- '@storybook/client-logger': 7.6.17
- '@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.5
+ '@storybook/channels': 7.6.19
+ '@storybook/client-logger': 7.6.19
+ '@storybook/core-events': 7.6.19
+ '@storybook/csf': 0.1.7
'@storybook/global': 5.0.0
- '@storybook/types': 7.6.17
- '@types/qs': 6.9.7
+ '@storybook/types': 7.6.19
+ '@types/qs': 6.9.15
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.11.2
- synchronous-promise: 2.0.15
+ qs: 6.12.1
+ synchronous-promise: 2.0.17
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
@@ -4304,14 +4531,14 @@ packages:
'@storybook/channels': 8.0.10
'@storybook/client-logger': 8.0.10
'@storybook/core-events': 8.0.10
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/global': 5.0.0
'@storybook/types': 8.0.10
- '@types/qs': 6.9.7
+ '@types/qs': 6.9.15
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.11.2
+ qs: 6.12.1
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
util-deprecate: 1.0.2
@@ -4330,12 +4557,12 @@ packages:
debug: 4.3.4(supports-color@5.5.0)
endent: 2.1.0
find-cache-dir: 3.3.2
- flat-cache: 3.1.1
+ flat-cache: 3.2.0
micromatch: 4.0.5
react-docgen-typescript: 2.2.2(typescript@5.4.5)
tslib: 2.6.2
typescript: 5.4.5
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
transitivePeerDependencies:
- supports-color
dev: true
@@ -4350,7 +4577,7 @@ packages:
react-dom: 18.3.1(react@18.3.1)
dev: true
- /@storybook/react-webpack5@8.0.10(@swc/core@1.4.17)(esbuild@0.18.16)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5):
+ /@storybook/react-webpack5@8.0.10(@swc/core@1.5.5)(esbuild@0.20.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5):
resolution: {integrity: sha512-KqQTYiFBTfWJOKP4SxirXRNLYCaLxFlDmEyUjQHuBbA03fEnvTYlCR7Kv5leArvBTiMpat2IfPqXlc048PKFRw==}
engines: {node: '>=18.0.0'}
peerDependencies:
@@ -4361,17 +4588,16 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/builder-webpack5': 8.0.10(@swc/core@1.4.17)(esbuild@0.18.16)(typescript@5.4.5)
- '@storybook/preset-react-webpack': 8.0.10(@swc/core@1.4.17)(esbuild@0.18.16)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)
+ '@storybook/builder-webpack5': 8.0.10(@swc/core@1.5.5)(esbuild@0.20.2)(typescript@5.4.5)
+ '@storybook/preset-react-webpack': 8.0.10(@swc/core@1.5.5)(esbuild@0.20.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)
'@storybook/react': 8.0.10(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)
- '@types/node': 18.18.6
+ '@types/node': 18.19.32
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
typescript: 5.4.5
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
- - encoding
- esbuild
- supports-color
- uglify-js
@@ -4397,7 +4623,7 @@ packages:
'@storybook/types': 8.0.10
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.18.6
+ '@types/node': 18.19.32
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -4408,13 +4634,12 @@ packages:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-element-to-jsx-string: 15.0.0(react-dom@18.3.1)(react@18.3.1)
- semver: 7.6.0
+ semver: 7.6.1
ts-dedent: 2.2.0
type-fest: 2.19.0
typescript: 5.4.5
util-deprecate: 1.0.2
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
@@ -4423,7 +4648,15 @@ packages:
dependencies:
'@storybook/client-logger': 7.6.17
memoizerific: 1.11.3
- qs: 6.11.2
+ qs: 6.12.1
+ dev: true
+
+ /@storybook/router@7.6.19:
+ resolution: {integrity: sha512-q2/AvY8rG0znFEfbg50OIhkS5yQ6OmyzdCdztoEsDDdsbq87YPmsDj7k8Op1EkTa2T5CB8XhBOCQDtcj7gUUtg==}
+ dependencies:
+ '@storybook/client-logger': 7.6.19
+ memoizerific: 1.11.3
+ qs: 6.12.1
dev: true
/@storybook/router@8.0.10:
@@ -4431,13 +4664,13 @@ packages:
dependencies:
'@storybook/client-logger': 8.0.10
memoizerific: 1.11.3
- qs: 6.11.2
+ qs: 6.12.1
dev: true
/@storybook/source-loader@8.0.10:
resolution: {integrity: sha512-bv9FRPzELjcoMJLWLDqkUNh1zY0DiCgcvM+9qsZva8pxAD4fzrX+mgCS2vZVJHRg8wMAhw/ymdXixDUodHAvsw==}
dependencies:
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/types': 8.0.10
estraverse: 5.3.0
lodash: 4.17.21
@@ -4452,16 +4685,15 @@ packages:
'@storybook/csf-tools': 8.0.10
chalk: 4.1.2
detect-package-manager: 2.0.1
- fetch-retry: 5.0.2
+ fetch-retry: 5.0.6
fs-extra: 11.2.0
read-pkg-up: 7.0.1
transitivePeerDependencies:
- - encoding
- supports-color
dev: true
- /@storybook/test-runner@0.17.0(@types/node@20.12.8)(ts-node@10.9.2):
- resolution: {integrity: sha512-4mt822j0VF1H/c0//OWSST9eWV0wboncJUQ+hBm5N4wmyuObvwsiMh4pmgXw8Y82wF7g1RIofjEQqAGLa7NjgQ==}
+ /@storybook/test-runner@0.18.0(@types/node@20.12.11)(ts-node@10.9.2):
+ resolution: {integrity: sha512-6IUQbRp78yNwAEpS8w9aIZaaNoaMV8g0r8PXCB+dooWywty9FOL1q6oDOTCUeUQKuziIPUfFX5er58UokSmlRQ==}
engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
@@ -4471,27 +4703,27 @@ packages:
'@babel/types': 7.24.5
'@jest/types': 29.6.3
'@storybook/core-common': 8.0.10
- '@storybook/csf': 0.1.5
+ '@storybook/csf': 0.1.7
'@storybook/csf-tools': 8.0.10
'@storybook/preview-api': 8.0.10
- '@swc/core': 1.4.17
- '@swc/jest': 0.2.36(@swc/core@1.4.17)
+ '@swc/core': 1.5.5
+ '@swc/jest': 0.2.36(@swc/core@1.5.5)
expect-playwright: 0.8.0
- jest: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ jest: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
jest-circus: 29.7.0
jest-environment-node: 29.7.0
jest-junit: 16.0.0
jest-playwright-preset: 4.0.0(jest-circus@29.7.0)(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0)
jest-runner: 29.7.0
jest-serializer-html: 7.1.0
- jest-watch-typeahead: 2.2.0(jest@29.7.0)
- playwright: 1.26.1
+ jest-watch-typeahead: 2.2.2(jest@29.7.0)
+ nyc: 15.1.0
+ playwright: 1.44.0
transitivePeerDependencies:
- '@swc/helpers'
- '@types/node'
- babel-plugin-macros
- debug
- - encoding
- node-notifier
- supports-color
- ts-node
@@ -4505,10 +4737,10 @@ packages:
'@storybook/instrumenter': 8.0.10
'@storybook/preview-api': 8.0.10
'@testing-library/dom': 9.3.4
- '@testing-library/jest-dom': 6.4.2(@types/jest@29.5.12)(jest@29.7.0)
+ '@testing-library/jest-dom': 6.4.5(@types/jest@29.5.12)(jest@29.7.0)
'@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4)
'@vitest/expect': 1.3.1
- '@vitest/spy': 1.4.0
+ '@vitest/spy': 1.6.0
util: 0.12.5
transitivePeerDependencies:
- '@jest/globals'
@@ -4532,6 +4764,20 @@ packages:
react-dom: 18.3.1(react@18.3.1)
dev: true
+ /@storybook/theming@7.6.19(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-sAho13MmtA80ctOaLn8lpkQBsPyiqSdLcOPH5BWFhatQzzBQCpTAKQk+q/xGju8bNiPZ+yQBaBzbN8SfX8ceCg==}
+ peerDependencies:
+ react: ^18.3.1
+ react-dom: ^18.3.1
+ dependencies:
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1)
+ '@storybook/client-logger': 7.6.19
+ '@storybook/global': 5.0.0
+ memoizerific: 1.11.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ dev: true
+
/@storybook/theming@8.0.10(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-7NHt7bMC7lPkwz9KdDpa6DkLoQZz5OV6jsx/qY91kcdLo1rpnRPAiVlJvmWesFxi1oXOpVDpHHllWzf8KDBv8A==}
peerDependencies:
@@ -4556,7 +4802,16 @@ packages:
dependencies:
'@storybook/channels': 7.6.17
'@types/babel__core': 7.20.5
- '@types/express': 4.17.17
+ '@types/express': 4.17.21
+ file-system-cache: 2.3.0
+ dev: true
+
+ /@storybook/types@7.6.19:
+ resolution: {integrity: sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==}
+ dependencies:
+ '@storybook/channels': 7.6.19
+ '@types/babel__core': 7.20.5
+ '@types/express': 4.17.21
file-system-cache: 2.3.0
dev: true
@@ -4564,92 +4819,92 @@ packages:
resolution: {integrity: sha512-S/hKS7+SqNnYIehwxdQ4M2nnlfGDdYWAXdtPCVJCmS+YF2amgAxeuisiHbUg7eypds6VL0Oxk/j2nPEHOHk9pg==}
dependencies:
'@storybook/channels': 8.0.10
- '@types/express': 4.17.17
+ '@types/express': 4.17.21
file-system-cache: 2.3.0
dev: true
- /@swc/core-darwin-arm64@1.4.17:
- resolution: {integrity: sha512-HVl+W4LezoqHBAYg2JCqR+s9ife9yPfgWSj37iIawLWzOmuuJ7jVdIB7Ee2B75bEisSEKyxRlTl6Y1Oq3owBgw==}
+ /@swc/core-darwin-arm64@1.5.5:
+ resolution: {integrity: sha512-Ol5ZwZYdTOZsv2NwjcT/qVVALKzVFeh+IJ4GNarr3P99+38Dkwi81OqCI1o/WaDXQYKAQC/V+CzMbkEuJJfq9Q==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@swc/core-darwin-x64@1.4.17:
- resolution: {integrity: sha512-WYRO9Fdzq4S/he8zjW5I95G1zcvyd9yyD3Tgi4/ic84P5XDlSMpBDpBLbr/dCPjmSg7aUXxNQqKqGkl6dQxYlA==}
+ /@swc/core-darwin-x64@1.5.5:
+ resolution: {integrity: sha512-XHWpKBIPKYLgh5/lV2PYjO84lkzf5JR51kjiloyz2Pa9HIV8tHoAP8bYdJwm4nUp2I7KcEh3pPH0AVu5LpxMKw==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.4.17:
- resolution: {integrity: sha512-cgbvpWOvtMH0XFjvwppUCR+Y+nf6QPaGu6AQ5hqCP+5Lv2zO5PG0RfasC4zBIjF53xgwEaaWmGP5/361P30X8Q==}
+ /@swc/core-linux-arm-gnueabihf@1.5.5:
+ resolution: {integrity: sha512-vtoWNCWAe+CNSqtqIwFnIH48qgPPlUZKoQ4EVFeMM+7/kDi6SeNxoh5TierJs5bKAWxD49VkPvRoWFCk6V62mA==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-gnu@1.4.17:
- resolution: {integrity: sha512-l7zHgaIY24cF9dyQ/FOWbmZDsEj2a9gRFbmgx2u19e3FzOPuOnaopFj0fRYXXKCmtdx+anD750iBIYnTR+pq/Q==}
+ /@swc/core-linux-arm64-gnu@1.5.5:
+ resolution: {integrity: sha512-L4l7M78U6h/rCAxId+y5Vu+1KfDRF6dJZtitFcaT293guiUQFwJv8gLxI4Jh5wFtZ0fYd0QaCuvh2Ip79CzGMg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-musl@1.4.17:
- resolution: {integrity: sha512-qhH4gr9gAlVk8MBtzXbzTP3BJyqbAfUOATGkyUtohh85fPXQYuzVlbExix3FZXTwFHNidGHY8C+ocscI7uDaYw==}
+ /@swc/core-linux-arm64-musl@1.5.5:
+ resolution: {integrity: sha512-DkzJc13ukXa7oJpyn24BjIgsiOybYrc+IxjsQyfNlDrrs1QXP4elStcpkD02SsIuSyHjZV8Hw2HFBMQB3OHPrA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-x64-gnu@1.4.17:
- resolution: {integrity: sha512-vRDFATL1oN5oZMImkwbgSHEkp8xG1ofEASBypze01W1Tqto8t+yo6gsp69wzCZBlxldsvPpvFZW55Jq0Rn+UnA==}
+ /@swc/core-linux-x64-gnu@1.5.5:
+ resolution: {integrity: sha512-kj4ZwWJGeBEUzHrRQP2VudN+kkkYH7OI1dPVDc6kWQx5X4329JeKOas4qY0l7gDVjBbRwN9IbbPI6TIn2KfAug==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-x64-musl@1.4.17:
- resolution: {integrity: sha512-zQNPXAXn3nmPqv54JVEN8k2JMEcMTQ6veVuU0p5O+A7KscJq+AGle/7ZQXzpXSfUCXlLMX4wvd+rwfGhh3J4cw==}
+ /@swc/core-linux-x64-musl@1.5.5:
+ resolution: {integrity: sha512-6pTorCs4mYhPhYtC4jNOnhGgjNd3DZcRoZ9P0tzXXP69aCbYjvlgNH/NRvAROp9AaVFeZ7a7PmCWb6+Rbe7NKg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-win32-arm64-msvc@1.4.17:
- resolution: {integrity: sha512-z86n7EhOwyzxwm+DLE5NoLkxCTme2lq7QZlDjbQyfCxOt6isWz8rkW5QowTX8w9Rdmk34ncrjSLvnHOeLY17+w==}
+ /@swc/core-win32-arm64-msvc@1.5.5:
+ resolution: {integrity: sha512-o0/9pstmEjwZyrY/bA+mymF0zH7E+GT/XCVqdKeWW9Wn3gTTyWa5MZnrFgI2THQ+AXwdglMB/Zo76ARQPaz/+A==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core-win32-ia32-msvc@1.4.17:
- resolution: {integrity: sha512-JBwuSTJIgiJJX6wtr4wmXbfvOswHFj223AumUrK544QV69k60FJ9q2adPW9Csk+a8wm1hLxq4HKa2K334UHJ/g==}
+ /@swc/core-win32-ia32-msvc@1.5.5:
+ resolution: {integrity: sha512-B+nypUwsmCuaH6RtKWgiPCb+ENjxstJPPJeMJvBqlJqyCaIkZzN4M07Ozi3xVv1VG21SRkd6G3xIqRoalrNc0Q==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core-win32-x64-msvc@1.4.17:
- resolution: {integrity: sha512-jFkOnGQamtVDBm3MF5Kq1lgW8vx4Rm1UvJWRUfg+0gx7Uc3Jp3QMFeMNw/rDNQYRDYPG3yunCC+2463ycd5+dg==}
+ /@swc/core-win32-x64-msvc@1.5.5:
+ resolution: {integrity: sha512-ry83ki9ZX0Q+GWGnqc2J618Z+FvKE8Ajn42F8EYi8Wj0q6Jz3mj+pJzgzakk2INm2ldEZ+FaRPipn4ozsZDcBg==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core@1.4.17:
- resolution: {integrity: sha512-tq+mdWvodMBNBBZbwFIMTVGYHe9N7zvEaycVVjfvAx20k1XozHbHhRv+9pEVFJjwRxLdXmtvFZd3QZHRAOpoNQ==}
+ /@swc/core@1.5.5:
+ resolution: {integrity: sha512-M8O22EEgdSONLd+7KRrXj8pn+RdAZZ7ISnPjE9KCQQlI0kkFNEquWR+uFdlFxQfwlyCe/Zb6uGXGDvtcov4IMg==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -4659,18 +4914,18 @@ packages:
optional: true
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.5
+ '@swc/types': 0.1.6
optionalDependencies:
- '@swc/core-darwin-arm64': 1.4.17
- '@swc/core-darwin-x64': 1.4.17
- '@swc/core-linux-arm-gnueabihf': 1.4.17
- '@swc/core-linux-arm64-gnu': 1.4.17
- '@swc/core-linux-arm64-musl': 1.4.17
- '@swc/core-linux-x64-gnu': 1.4.17
- '@swc/core-linux-x64-musl': 1.4.17
- '@swc/core-win32-arm64-msvc': 1.4.17
- '@swc/core-win32-ia32-msvc': 1.4.17
- '@swc/core-win32-x64-msvc': 1.4.17
+ '@swc/core-darwin-arm64': 1.5.5
+ '@swc/core-darwin-x64': 1.5.5
+ '@swc/core-linux-arm-gnueabihf': 1.5.5
+ '@swc/core-linux-arm64-gnu': 1.5.5
+ '@swc/core-linux-arm64-musl': 1.5.5
+ '@swc/core-linux-x64-gnu': 1.5.5
+ '@swc/core-linux-x64-musl': 1.5.5
+ '@swc/core-win32-arm64-msvc': 1.5.5
+ '@swc/core-win32-ia32-msvc': 1.5.5
+ '@swc/core-win32-x64-msvc': 1.5.5
/@swc/counter@0.1.3:
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
@@ -4682,31 +4937,33 @@ packages:
tslib: 2.6.2
dev: false
- /@swc/jest@0.2.36(@swc/core@1.4.17):
+ /@swc/jest@0.2.36(@swc/core@1.5.5):
resolution: {integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==}
engines: {npm: '>= 7.0.0'}
peerDependencies:
'@swc/core': '*'
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@swc/core': 1.4.17
+ '@swc/core': 1.5.5
'@swc/counter': 0.1.3
- jsonc-parser: 3.2.0
+ jsonc-parser: 3.2.1
dev: true
- /@swc/types@0.1.5:
- resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
+ /@swc/types@0.1.6:
+ resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==}
+ dependencies:
+ '@swc/counter': 0.1.3
- /@testing-library/dom@10.0.0:
- resolution: {integrity: sha512-PmJPnogldqoVFf+EwbHvbBJ98MmqASV8kLrBYgsDNxQcFMeIS7JFL48sfyXvuMtgmWO/wMhh25odr+8VhDmn4g==}
+ /@testing-library/dom@10.1.0:
+ resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==}
engines: {node: '>=18'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.0
- '@types/aria-query': 5.0.1
+ '@babel/runtime': 7.24.5
+ '@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
- dom-accessibility-api: 0.5.14
+ dom-accessibility-api: 0.5.16
lz-string: 1.5.0
pretty-format: 27.5.1
dev: true
@@ -4716,17 +4973,17 @@ packages:
engines: {node: '>=14'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.0
- '@types/aria-query': 5.0.1
+ '@babel/runtime': 7.24.5
+ '@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
- dom-accessibility-api: 0.5.14
+ dom-accessibility-api: 0.5.16
lz-string: 1.5.0
pretty-format: 27.5.1
dev: true
- /@testing-library/jest-dom@6.4.2(@types/jest@29.5.12)(jest@29.7.0):
- resolution: {integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==}
+ /@testing-library/jest-dom@6.4.5(@types/jest@29.5.12)(jest@29.7.0):
+ resolution: {integrity: sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
peerDependencies:
'@jest/globals': '>= 28'
@@ -4746,33 +5003,33 @@ packages:
vitest:
optional: true
dependencies:
- '@adobe/css-tools': 4.3.2
- '@babel/runtime': 7.24.0
+ '@adobe/css-tools': 4.3.3
+ '@babel/runtime': 7.24.5
'@types/jest': 29.5.12
aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
- jest: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ jest: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
lodash: 4.17.21
redent: 3.0.0
dev: true
- /@testing-library/react@15.0.6(@types/react@18.3.1)(react-dom@18.3.1)(react@18.3.1):
- resolution: {integrity: sha512-UlbazRtEpQClFOiYp+1BapMT+xyqWMnE+hh9tn5DQ6gmlE7AIZWcGpzZukmDZuFk3By01oiqOf8lRedLS4k6xQ==}
+ /@testing-library/react@15.0.7(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==}
engines: {node: '>=18'}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
react-dom: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.0
- '@testing-library/dom': 10.0.0
- '@types/react': 18.3.1
- '@types/react-dom': 18.2.25
+ '@babel/runtime': 7.24.5
+ '@testing-library/dom': 10.1.0
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: true
@@ -4795,20 +5052,20 @@ packages:
resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
dev: true
- /@tsconfig/node10@1.0.8:
- resolution: {integrity: sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==}
+ /@tsconfig/node10@1.0.11:
+ resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
- /@tsconfig/node12@1.0.9:
- resolution: {integrity: sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==}
+ /@tsconfig/node12@1.0.11:
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
- /@tsconfig/node14@1.0.1:
- resolution: {integrity: sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==}
+ /@tsconfig/node14@1.0.3:
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
- /@tsconfig/node16@1.0.2:
- resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==}
+ /@tsconfig/node16@1.0.4:
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
- /@types/aria-query@5.0.1:
- resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
+ /@types/aria-query@5.0.4:
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
dev: true
/@types/babel__core@7.20.5:
@@ -4816,57 +5073,57 @@ packages:
dependencies:
'@babel/parser': 7.24.5
'@babel/types': 7.24.5
- '@types/babel__generator': 7.6.2
- '@types/babel__template': 7.4.0
- '@types/babel__traverse': 7.20.4
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.5
dev: true
- /@types/babel__generator@7.6.2:
- resolution: {integrity: sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==}
+ /@types/babel__generator@7.6.8:
+ resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
dependencies:
'@babel/types': 7.24.5
dev: true
- /@types/babel__template@7.4.0:
- resolution: {integrity: sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==}
+ /@types/babel__template@7.4.4:
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
'@babel/parser': 7.24.5
'@babel/types': 7.24.5
dev: true
- /@types/babel__traverse@7.20.4:
- resolution: {integrity: sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==}
+ /@types/babel__traverse@7.20.5:
+ resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
dependencies:
'@babel/types': 7.24.5
dev: true
- /@types/body-parser@1.19.2:
- resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
+ /@types/body-parser@1.19.5:
+ resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
- '@types/connect': 3.4.35
- '@types/node': 20.12.8
+ '@types/connect': 3.4.38
+ '@types/node': 20.12.11
dev: true
- /@types/connect@3.4.35:
- resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
+ /@types/connect@3.4.38:
+ resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
dev: true
/@types/conventional-commits-parser@5.0.0:
resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==}
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
dev: true
- /@types/cross-spawn@6.0.2:
- resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==}
+ /@types/cross-spawn@6.0.6:
+ resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
dev: true
- /@types/detect-port@1.3.2:
- resolution: {integrity: sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==}
+ /@types/detect-port@1.3.5:
+ resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==}
dev: true
/@types/doctrine@0.0.3:
@@ -4877,26 +5134,26 @@ packages:
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
dev: true
- /@types/ejs@3.1.2:
- resolution: {integrity: sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==}
+ /@types/ejs@3.1.5:
+ resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==}
dev: true
- /@types/emscripten@1.39.7:
- resolution: {integrity: sha512-tLqYV94vuqDrXh515F/FOGtBcRMTPGvVV1LzLbtYDcQmmhtpf/gLYf+hikBbQk8MzOHNz37wpFfJbYAuSn8HqA==}
+ /@types/emscripten@1.39.11:
+ resolution: {integrity: sha512-dOeX2BeNA7j6BTEqJQL3ut0bRCfsyQMd5i4FT8JfHfYhAOuJPCGh0dQFbxVJxUyQ+75x6enhDdndGb624/QszA==}
dev: true
/@types/escodegen@0.0.6:
resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==}
dev: true
- /@types/eslint-scope@3.7.3:
- resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==}
+ /@types/eslint-scope@3.7.7:
+ resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
dependencies:
- '@types/eslint': 7.2.13
+ '@types/eslint': 8.56.10
'@types/estree': 1.0.5
- /@types/eslint@7.2.13:
- resolution: {integrity: sha512-LKmQCWAlnVHvvXq4oasNUMTJJb2GwSyTY8+1C7OH5ILR8mPLaljv1jxL1bXW3xB3jFbQxTKxJAvI8PyjB09aBg==}
+ /@types/eslint@8.56.10:
+ resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
dependencies:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
@@ -4912,39 +5169,39 @@ packages:
/@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- /@types/express-serve-static-core@4.17.34:
- resolution: {integrity: sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w==}
+ /@types/express-serve-static-core@4.19.0:
+ resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==}
dependencies:
- '@types/node': 20.12.8
- '@types/qs': 6.9.7
- '@types/range-parser': 1.2.4
- '@types/send': 0.17.1
+ '@types/node': 20.12.11
+ '@types/qs': 6.9.15
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
dev: true
- /@types/express@4.17.17:
- resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
+ /@types/express@4.17.21:
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
dependencies:
- '@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.34
- '@types/qs': 6.9.7
- '@types/serve-static': 1.15.1
+ '@types/body-parser': 1.19.5
+ '@types/express-serve-static-core': 4.19.0
+ '@types/qs': 6.9.15
+ '@types/serve-static': 1.15.7
dev: true
/@types/find-cache-dir@3.2.1:
resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==}
dev: true
- /@types/glob@7.1.3:
- resolution: {integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==}
+ /@types/glob@7.2.0:
+ resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
dev: true
- /@types/graceful-fs@4.1.5:
- resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
+ /@types/graceful-fs@4.1.9:
+ resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
dev: true
/@types/hast@3.0.4:
@@ -4953,31 +5210,35 @@ packages:
'@types/unist': 3.0.2
dev: true
- /@types/hoist-non-react-statics@3.3.1:
- resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==}
+ /@types/hoist-non-react-statics@3.3.5:
+ resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==}
dependencies:
- '@types/react': 18.3.1
- hoist-non-react-statics: 3.3.2
+ '@types/react': 18.3.2
+ hoist-non-react-statics: 3.3.1
dev: true
/@types/html-minifier-terser@6.1.0:
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
dev: true
- /@types/istanbul-lib-coverage@2.0.3:
- resolution: {integrity: sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==}
+ /@types/http-errors@2.0.4:
+ resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
dev: true
- /@types/istanbul-lib-report@3.0.0:
- resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
+ /@types/istanbul-lib-coverage@2.0.6:
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
+ dev: true
+
+ /@types/istanbul-lib-report@3.0.3:
+ resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
+ '@types/istanbul-lib-coverage': 2.0.6
dev: true
- /@types/istanbul-reports@3.0.1:
- resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
+ /@types/istanbul-reports@3.0.4:
+ resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
dependencies:
- '@types/istanbul-lib-report': 3.0.0
+ '@types/istanbul-lib-report': 3.0.3
dev: true
/@types/jest@29.5.12:
@@ -4987,11 +5248,11 @@ packages:
pretty-format: 29.7.0
dev: true
- /@types/jsdom@20.0.0:
- resolution: {integrity: sha512-YfAchFs0yM1QPDrLm2VHe+WHGtqms3NXnXAMolrgrVP6fgBHHXy1ozAbo/dFtPNtZC/m66bPiCTWYmqp1F14gA==}
+ /@types/jsdom@20.0.1:
+ resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
dependencies:
- '@types/node': 20.12.8
- '@types/tough-cookie': 4.0.2
+ '@types/node': 20.12.11
+ '@types/tough-cookie': 4.0.5
parse5: 7.1.2
dev: true
@@ -5009,106 +5270,103 @@ packages:
/@types/lodash.merge@4.6.9:
resolution: {integrity: sha512-23sHDPmzd59kUgWyKGiOMO2Qb9YtqRO/x4IhkgNUiPQ1+5MUVqi6bCZeq9nBJ17msjIMbEIO5u+XW4Kz6aGUhQ==}
dependencies:
- '@types/lodash': 4.14.182
+ '@types/lodash': 4.17.1
dev: true
/@types/lodash.range@3.2.9:
resolution: {integrity: sha512-JNStPShiaR3ROKIAgtzChBhouPBCJxMI/Fj7Xa1cG51A2EMRyosvtL4fiGXOFiQddaxjZmNVYkZGsDRt8fFKPg==}
dependencies:
- '@types/lodash': 4.14.182
- dev: true
-
- /@types/lodash@4.14.182:
- resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==}
+ '@types/lodash': 4.17.1
dev: true
- /@types/mdx@2.0.5:
- resolution: {integrity: sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==}
+ /@types/lodash@4.17.1:
+ resolution: {integrity: sha512-X+2qazGS3jxLAIz5JDXDzglAF3KpijdhFxlf/V1+hEsOUc+HnWi81L/uv/EvGuV90WY+7mPGFCUDGfQC3Gj95Q==}
dev: true
- /@types/mime@1.3.2:
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
+ /@types/mdx@2.0.13:
+ resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==}
dev: true
- /@types/mime@3.0.1:
- resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
+ /@types/mime@1.3.5:
+ resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
dev: true
/@types/minimatch@5.1.2:
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
- requiresBuild: true
dev: true
- /@types/minimist@1.2.2:
- resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
+ /@types/minimist@1.2.5:
+ resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
dev: true
- /@types/node-fetch@2.6.4:
- resolution: {integrity: sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==}
+ /@types/node-fetch@2.6.11:
+ resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
dependencies:
- '@types/node': 20.12.8
- form-data: 3.0.1
+ '@types/node': 20.12.11
+ form-data: 4.0.0
dev: true
- /@types/node@12.20.15:
- resolution: {integrity: sha512-F6S4Chv4JicJmyrwlDkxUdGNSplsQdGwp1A0AJloEVDirWdZOAiRHhovDlsFkKUrquUXhz1imJhXHsf59auyAg==}
+ /@types/node@12.20.55:
+ resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
dev: true
- /@types/node@18.18.6:
- resolution: {integrity: sha512-wf3Vz+jCmOQ2HV1YUJuCWdL64adYxumkrxtc+H1VUQlnQI04+5HtH+qZCOE21lBE7gIrt+CwX2Wv8Acrw5Ak6w==}
+ /@types/node@18.19.32:
+ resolution: {integrity: sha512-2bkg93YBSDKk8DLmmHnmj/Rwr18TLx7/n+I23BigFwgexUJoMHZOd8X1OFxuF/W3NN0S2W2E5sVabI5CPinNvA==}
+ dependencies:
+ undici-types: 5.26.5
dev: true
- /@types/node@20.12.8:
- resolution: {integrity: sha512-NU0rJLJnshZWdE/097cdCBbyW1h4hEg0xpovcoAQYHl8dnEyp/NAOiE45pvc+Bd1Dt+2r94v2eGFpQJ4R7g+2w==}
+ /@types/node@20.12.11:
+ resolution: {integrity: sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==}
dependencies:
undici-types: 5.26.5
- /@types/normalize-package-data@2.4.0:
- resolution: {integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==}
+ /@types/normalize-package-data@2.4.4:
+ resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
dev: true
- /@types/parse-json@4.0.0:
- resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
+ /@types/parse-json@4.0.2:
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
dev: true
- /@types/pretty-hrtime@1.0.0:
- resolution: {integrity: sha512-xl+5r2rcrxdLViAYkkiLMYsoUs3qEyrAnHFyEzYysgRxdVp3WbhysxIvJIxZp9FvZ2CYezh0TaHZorivH+voOQ==}
+ /@types/pretty-hrtime@1.0.3:
+ resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==}
dev: true
- /@types/prop-types@15.7.3:
- resolution: {integrity: sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==}
+ /@types/prop-types@15.7.12:
+ resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
- /@types/qs@6.9.7:
- resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
+ /@types/qs@6.9.15:
+ resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==}
dev: true
- /@types/range-parser@1.2.4:
- resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
+ /@types/range-parser@1.2.7:
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
dev: true
- /@types/react-dom@18.2.25:
- resolution: {integrity: sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==}
+ /@types/react-dom@18.3.0:
+ resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
dev: true
/@types/react-test-renderer@17.0.9:
resolution: {integrity: sha512-bOfxcu5oZ+KxvACScbkTwZ4eGCtZFTz4VZCOVAIfGbThxqiXSIGipKVG8ubaYBXquUSQROzNIUzviWdSnnAlzg==}
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
dev: true
/@types/react-transition-group@4.4.10:
resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==}
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
dev: true
- /@types/react@18.3.1:
- resolution: {integrity: sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw==}
+ /@types/react@18.3.2:
+ resolution: {integrity: sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==}
dependencies:
- '@types/prop-types': 15.7.3
- csstype: 3.0.8
+ '@types/prop-types': 15.7.12
+ csstype: 3.1.3
/@types/resolve@1.20.6:
resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==}
@@ -5118,70 +5376,71 @@ packages:
resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
dev: true
- /@types/send@0.17.1:
- resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
+ /@types/send@0.17.4:
+ resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
- '@types/mime': 1.3.2
- '@types/node': 20.12.8
+ '@types/mime': 1.3.5
+ '@types/node': 20.12.11
dev: true
- /@types/serve-static@1.15.1:
- resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
+ /@types/serve-static@1.15.7:
+ resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
dependencies:
- '@types/mime': 3.0.1
- '@types/node': 20.12.8
+ '@types/http-errors': 2.0.4
+ '@types/node': 20.12.11
+ '@types/send': 0.17.4
dev: true
- /@types/stack-utils@2.0.1:
- resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
+ /@types/stack-utils@2.0.3:
+ resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
dev: true
/@types/styled-components@5.1.34:
resolution: {integrity: sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==}
dependencies:
- '@types/hoist-non-react-statics': 3.3.1
- '@types/react': 18.3.1
- csstype: 3.0.8
+ '@types/hoist-non-react-statics': 3.3.5
+ '@types/react': 18.3.2
+ csstype: 3.1.3
dev: true
- /@types/tough-cookie@4.0.2:
- resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==}
+ /@types/tough-cookie@4.0.5:
+ resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
dev: true
/@types/unist@3.0.2:
resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
dev: true
- /@types/uuid@9.0.7:
- resolution: {integrity: sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g==}
+ /@types/uuid@9.0.8:
+ resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
dev: true
- /@types/wait-on@5.3.1:
- resolution: {integrity: sha512-2FFOKCF/YydrMUaqg+fkk49qf0e5rDgwt6aQsMzFQzbS419h2gNOXyiwp/o2yYy27bi/C1z+HgfncryjGzlvgQ==}
+ /@types/wait-on@5.3.4:
+ resolution: {integrity: sha512-EBsPjFMrFlMbbUFf9D1Fp+PAB2TwmUn7a3YtHyD9RLuTIk1jDd8SxXVAoez2Ciy+8Jsceo2MYEYZzJ/DvorOKw==}
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
dev: true
- /@types/yargs-parser@20.2.1:
- resolution: {integrity: sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==}
+ /@types/yargs-parser@21.0.3:
+ resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
dev: true
- /@types/yargs@17.0.10:
- resolution: {integrity: sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==}
+ /@types/yargs@17.0.32:
+ resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
dependencies:
- '@types/yargs-parser': 20.2.1
+ '@types/yargs-parser': 21.0.3
dev: true
- /@types/yauzl@2.9.2:
- resolution: {integrity: sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==}
+ /@types/yauzl@2.10.3:
+ resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
requiresBuild: true
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
dev: true
optional: true
- /@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)(typescript@5.4.5):
- resolution: {integrity: sha512-gKmTNwZnblUdnTIJu3e9kmeRRzV2j1a/LUO27KNNAnIC5zjy1aSvXSRp4rVNlmAoHlQ7HzX42NbKpcSr4jF80A==}
+ /@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0)(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
@@ -5192,17 +5451,17 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/scope-manager': 7.6.0
- '@typescript-eslint/type-utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.6.0
+ '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/type-utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4(supports-color@5.5.0)
eslint: 8.57.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- semver: 7.6.0
+ semver: 7.6.1
ts-api-utils: 1.3.0(typescript@5.4.5)
typescript: 5.4.5
transitivePeerDependencies:
@@ -5230,8 +5489,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5):
- resolution: {integrity: sha512-usPMPHcwX3ZoPWnBnhhorc14NJw9J4HpSXQX4urF2TPKG0au0XhJoZyX62fmvdHONUkmyUe74Hzm1//XA+BoYg==}
+ /@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -5240,10 +5499,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 7.6.0
- '@typescript-eslint/types': 7.6.0
- '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.6.0
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4(supports-color@5.5.0)
eslint: 8.57.0
typescript: 5.4.5
@@ -5267,16 +5526,16 @@ packages:
'@typescript-eslint/visitor-keys': 7.2.0
dev: true
- /@typescript-eslint/scope-manager@7.6.0:
- resolution: {integrity: sha512-ngttyfExA5PsHSx0rdFgnADMYQi+Zkeiv4/ZxGYUWd0nLs63Ha0ksmp8VMxAIC0wtCFxMos7Lt3PszJssG/E6w==}
+ /@typescript-eslint/scope-manager@7.8.0:
+ resolution: {integrity: sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==}
engines: {node: ^18.18.0 || >=20.0.0}
dependencies:
- '@typescript-eslint/types': 7.6.0
- '@typescript-eslint/visitor-keys': 7.6.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/visitor-keys': 7.8.0
dev: true
- /@typescript-eslint/type-utils@7.6.0(eslint@8.57.0)(typescript@5.4.5):
- resolution: {integrity: sha512-NxAfqAPNLG6LTmy7uZgpK8KcuiS2NZD/HlThPXQRGwz6u7MDBWRVliEEl1Gj6U7++kVJTpehkhZzCJLMK66Scw==}
+ /@typescript-eslint/type-utils@7.8.0(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -5285,8 +5544,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5)
- '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
debug: 4.3.4(supports-color@5.5.0)
eslint: 8.57.0
ts-api-utils: 1.3.0(typescript@5.4.5)
@@ -5305,8 +5564,8 @@ packages:
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
- /@typescript-eslint/types@7.6.0:
- resolution: {integrity: sha512-h02rYQn8J+MureCvHVVzhl69/GAfQGPQZmOMjG1KfCl7o3HtMSlPaPUAPu6lLctXI5ySRGIYk94clD/AUMCUgQ==}
+ /@typescript-eslint/types@7.8.0:
+ resolution: {integrity: sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==}
engines: {node: ^18.18.0 || >=20.0.0}
dev: true
@@ -5324,7 +5583,7 @@ packages:
debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
+ semver: 7.6.1
tsutils: 3.21.0(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
@@ -5345,7 +5604,7 @@ packages:
debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
+ semver: 7.6.1
tsutils: 3.21.0(typescript@5.4.5)
typescript: 5.4.5
transitivePeerDependencies:
@@ -5367,15 +5626,15 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
- semver: 7.6.0
+ semver: 7.6.1
ts-api-utils: 1.3.0(typescript@5.4.5)
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree@7.6.0(typescript@5.4.5):
- resolution: {integrity: sha512-+7Y/GP9VuYibecrCQWSKgl3GvUM5cILRttpWtnAu8GNL9j11e4tbuGZmZjJ8ejnKYyBRb2ddGQ3rEFCq3QjMJw==}
+ /@typescript-eslint/typescript-estree@7.8.0(typescript@5.4.5):
+ resolution: {integrity: sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
typescript: '*'
@@ -5383,13 +5642,13 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 7.6.0
- '@typescript-eslint/visitor-keys': 7.6.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.4
- semver: 7.6.0
+ semver: 7.6.1
ts-api-utils: 1.3.0(typescript@5.4.5)
typescript: 5.4.5
transitivePeerDependencies:
@@ -5410,14 +5669,14 @@ packages:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
eslint: 8.57.0
eslint-scope: 5.1.1
- semver: 7.6.0
+ semver: 7.6.1
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/utils@7.6.0(eslint@8.57.0)(typescript@5.4.5):
- resolution: {integrity: sha512-x54gaSsRRI+Nwz59TXpCsr6harB98qjXYzsRxGqvA5Ue3kQH+FxS7FYU81g/omn22ML2pZJkisy6Q+ElK8pBCA==}
+ /@typescript-eslint/utils@7.8.0(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -5425,11 +5684,11 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.6.0
- '@typescript-eslint/types': 7.6.0
- '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
eslint: 8.57.0
- semver: 7.6.0
+ semver: 7.6.1
transitivePeerDependencies:
- supports-color
- typescript
@@ -5451,11 +5710,11 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
- /@typescript-eslint/visitor-keys@7.6.0:
- resolution: {integrity: sha512-4eLB7t+LlNUmXzfOu1VAIAdkjbu5xNSerURS9X/S5TUKWFRpXRQZbmtPqgKmYx8bj3J0irtQXSiWAOY82v+cgw==}
+ /@typescript-eslint/visitor-keys@7.8.0:
+ resolution: {integrity: sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==}
engines: {node: ^18.18.0 || >=20.0.0}
dependencies:
- '@typescript-eslint/types': 7.6.0
+ '@typescript-eslint/types': 7.8.0
eslint-visitor-keys: 3.4.3
dev: true
@@ -5477,8 +5736,8 @@ packages:
tinyspy: 2.2.1
dev: true
- /@vitest/spy@1.4.0:
- resolution: {integrity: sha512-Ywau/Qs1DzM/8Uc+yA77CwSegizMlcgTJuYGAi0jujOteJOUf1ujunHThYo243KG9nAyWT3L9ifPYZ5+As/+6Q==}
+ /@vitest/spy@1.6.0:
+ resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
dependencies:
tinyspy: 2.2.1
dev: true
@@ -5492,8 +5751,8 @@ packages:
pretty-format: 29.7.0
dev: true
- /@vitest/utils@1.4.0:
- resolution: {integrity: sha512-mx3Yd1/6e2Vt/PUC98DcqTirtfxUyAZ32uK82r8rZzbtBeBo+nqgnjx/LvqQdWsrvNtm14VmurNgcf4nqY5gJg==}
+ /@vitest/utils@1.6.0:
+ resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
@@ -5598,13 +5857,13 @@ packages:
/@xtuc/long@4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.16):
+ /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.20.2):
resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==}
engines: {node: '>=14.15.0'}
peerDependencies:
esbuild: '>=0.10.0'
dependencies:
- esbuild: 0.18.16
+ esbuild: 0.20.2
tslib: 2.6.2
dev: true
@@ -5620,7 +5879,7 @@ packages:
resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==}
engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
dependencies:
- '@types/emscripten': 1.39.7
+ '@types/emscripten': 1.39.11
tslib: 1.14.1
dev: true
@@ -5686,8 +5945,8 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
- /acorn-walk@8.2.0:
- resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
+ /acorn-walk@8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
/acorn@7.4.1:
@@ -5705,9 +5964,9 @@ packages:
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
dev: true
- /address@1.1.2:
- resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==}
- engines: {node: '>= 0.12.0'}
+ /address@1.2.2:
+ resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
+ engines: {node: '>= 10.0.0'}
dev: true
/adjust-sourcemap-loader@4.0.0:
@@ -5727,8 +5986,8 @@ packages:
- supports-color
dev: true
- /agent-base@7.1.0:
- resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
+ /agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
dependencies:
debug: 4.3.4(supports-color@5.5.0)
@@ -5744,7 +6003,7 @@ packages:
indent-string: 4.0.0
dev: true
- /ajv-formats@2.1.1(ajv@8.11.0):
+ /ajv-formats@2.1.1(ajv@8.13.0):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
peerDependencies:
ajv: ^8.0.0
@@ -5752,7 +6011,7 @@ packages:
ajv:
optional: true
dependencies:
- ajv: 8.11.0
+ ajv: 8.13.0
dev: true
/ajv-keywords@3.5.2(ajv@6.12.6):
@@ -5762,12 +6021,12 @@ packages:
dependencies:
ajv: 6.12.6
- /ajv-keywords@5.1.0(ajv@8.11.0):
+ /ajv-keywords@5.1.0(ajv@8.13.0):
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
dependencies:
- ajv: 8.11.0
+ ajv: 8.13.0
fast-deep-equal: 3.1.3
dev: true
@@ -5779,8 +6038,8 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv@8.11.0:
- resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==}
+ /ajv@8.13.0:
+ resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
dependencies:
fast-deep-equal: 3.1.3
json-schema-traverse: 1.0.0
@@ -5795,18 +6054,9 @@ packages:
type-fest: 0.21.3
dev: true
- /ansi-escapes@5.0.0:
- resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==}
- engines: {node: '>=12'}
- dependencies:
- type-fest: 1.4.0
- dev: true
-
- /ansi-escapes@6.2.0:
- resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==}
+ /ansi-escapes@6.2.1:
+ resolution: {integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==}
engines: {node: '>=14.16'}
- dependencies:
- type-fest: 3.13.1
dev: true
/ansi-html-community@0.0.8:
@@ -5818,12 +6068,10 @@ packages:
/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- dev: true
/ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- dev: true
/ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
@@ -5836,7 +6084,6 @@ packages:
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
- dev: true
/ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
@@ -5846,13 +6093,12 @@ packages:
/ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- dev: true
/any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
- /anymatch@3.1.2:
- resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
+ /anymatch@3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
@@ -5866,7 +6112,7 @@ packages:
resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==}
engines: {node: '>=8'}
dependencies:
- default-require-extensions: 3.0.0
+ default-require-extensions: 3.0.1
dev: true
/archy@1.0.0:
@@ -5888,8 +6134,8 @@ packages:
/argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- /aria-hidden@1.2.3:
- resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
+ /aria-hidden@1.2.4:
+ resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
engines: {node: '>=10'}
dependencies:
tslib: 2.6.2
@@ -5898,7 +6144,7 @@ packages:
/aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
dependencies:
- deep-equal: 2.2.0
+ deep-equal: 2.2.3
dev: true
/aria-query@5.3.0:
@@ -5927,13 +6173,14 @@ packages:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
dev: true
- /array-includes@3.1.7:
- resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
+ /array-includes@3.1.8:
+ resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
is-string: 1.0.7
dev: true
@@ -5967,15 +6214,16 @@ packages:
es-shim-unscopables: 1.0.2
dev: true
- /array.prototype.findlastindex@1.2.3:
- resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
+ /array.prototype.findlastindex@1.2.5:
+ resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
- get-intrinsic: 1.2.4
dev: true
/array.prototype.flat@1.3.2:
@@ -6041,7 +6289,7 @@ packages:
dependencies:
call-bind: 1.0.7
is-nan: 1.3.2
- object-is: 1.1.5
+ object-is: 1.1.6
object.assign: 4.1.5
util: 0.12.5
dev: true
@@ -6088,8 +6336,8 @@ packages:
resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==}
dev: true
- /async@3.2.4:
- resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
+ /async@3.2.5:
+ resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
dev: true
/asynckit@0.4.0:
@@ -6104,7 +6352,7 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001600
+ caniuse-lite: 1.0.30001616
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -6124,32 +6372,37 @@ packages:
engines: {node: '>=4'}
dev: true
- /axe-html-reporter@2.2.3(axe-core@4.7.0):
+ /axe-core@4.9.1:
+ resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /axe-html-reporter@2.2.3(axe-core@4.9.1):
resolution: {integrity: sha512-io8aCEt4fJvv43W+33n3zEa8rdplH5Ti2v5fOnth3GBKLhLHarNs7jj46xGfpnGnpaNrz23/tXPHC3HbwTzwwA==}
engines: {node: '>=8.9.0'}
peerDependencies:
axe-core: '>=3'
dependencies:
- axe-core: 4.7.0
+ axe-core: 4.9.1
mustache: 4.2.0
rimraf: 3.0.2
dev: true
- /axe-playwright@2.0.1(playwright@1.26.1):
+ /axe-playwright@2.0.1(playwright@1.44.0):
resolution: {integrity: sha512-MHjNjGARulF9XzqSfspmNjw+tpBz4x9o1VlTuLWEUW9fqzhn+xWa1qEpuOIQPbsRWQiLfooDjQAunLeE0PM5AQ==}
peerDependencies:
playwright: '>1.0.0'
dependencies:
'@types/junit-report-builder': 3.0.2
- axe-core: 4.7.0
- axe-html-reporter: 2.2.3(axe-core@4.7.0)
- junit-report-builder: 3.1.0
+ axe-core: 4.9.1
+ axe-html-reporter: 2.2.3(axe-core@4.9.1)
+ junit-report-builder: 3.2.1
picocolors: 1.0.0
- playwright: 1.26.1
+ playwright: 1.44.0
dev: true
- /axios@1.6.2:
- resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
+ /axios@1.6.8:
+ resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==}
dependencies:
follow-redirects: 1.15.6
form-data: 4.0.0
@@ -6164,8 +6417,8 @@ packages:
dequal: 2.0.3
dev: true
- /b4a@1.6.4:
- resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
+ /b4a@1.6.6:
+ resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
dev: true
/babel-core@7.0.0-bridge.0(@babel/core@7.24.5):
@@ -6203,8 +6456,8 @@ packages:
dependencies:
'@babel/core': 7.24.5
find-cache-dir: 4.0.0
- schema-utils: 4.0.0
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ schema-utils: 4.2.0
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
/babel-plugin-istanbul@6.1.1:
@@ -6214,7 +6467,7 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
- istanbul-lib-instrument: 5.1.0
+ istanbul-lib-instrument: 5.2.1
test-exclude: 6.0.0
transitivePeerDependencies:
- supports-color
@@ -6227,17 +6480,16 @@ packages:
'@babel/template': 7.24.0
'@babel/types': 7.24.5
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.4
+ '@types/babel__traverse': 7.20.5
dev: true
- /babel-plugin-module-resolver@5.0.0:
- resolution: {integrity: sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==}
- engines: {node: '>= 16'}
+ /babel-plugin-module-resolver@5.0.2:
+ resolution: {integrity: sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==}
dependencies:
- find-babel-config: 2.0.0
- glob: 8.1.0
+ find-babel-config: 2.1.1
+ glob: 9.3.5
pkg-up: 3.1.0
- reselect: 4.1.7
+ reselect: 4.1.8
resolve: 1.22.8
dev: true
@@ -6261,7 +6513,7 @@ packages:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
- core-js-compat: 3.36.1
+ core-js-compat: 3.37.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -6273,7 +6525,7 @@ packages:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.24.5)
- core-js-compat: 3.36.1
+ core-js-compat: 3.37.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -6300,20 +6552,19 @@ packages:
- supports-color
dev: true
- /babel-plugin-styled-components@1.13.1(styled-components@5.3.11):
- resolution: {integrity: sha512-iY11g5orsdBnvWtXKCFBzDyTxZ9jvmkcYCCs5ONlvASYltDRhieCVzeDC7Do0fSW7psAL0zfVoXB3FHz2CkUSg==}
+ /babel-plugin-styled-components@2.1.4(@babel/core@7.24.5)(styled-components@5.3.11):
+ resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==}
peerDependencies:
styled-components: '>= 2'
dependencies:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.24.3
- babel-plugin-syntax-jsx: 6.18.0
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
lodash: 4.17.21
- styled-components: 5.3.11(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1)
- dev: true
-
- /babel-plugin-syntax-jsx@6.18.0:
- resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
+ picomatch: 2.3.1
+ styled-components: 5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@babel/core'
dev: true
/babel-plugin-syntax-trailing-function-commas@6.22.0:
@@ -6358,34 +6609,41 @@ packages:
resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
dev: true
- /bare-events@2.2.0:
- resolution: {integrity: sha512-Yyyqff4PIFfSuthCZqLlPISTWHmnQxoPuAvkmgzsJEmG3CesdIv6Xweayl0JkCZJSB2yYIdJyEz97tpxNhgjbg==}
+ /bare-events@2.2.2:
+ resolution: {integrity: sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==}
requiresBuild: true
dev: true
optional: true
- /bare-fs@2.1.5:
- resolution: {integrity: sha512-5t0nlecX+N2uJqdxe9d18A98cp2u9BETelbjKpiVgQqzzmVNFYWEAjQHqS+2Khgto1vcwhik9cXucaj5ve2WWA==}
+ /bare-fs@2.3.0:
+ resolution: {integrity: sha512-TNFqa1B4N99pds2a5NYHR15o0ZpdNKbAeKTE/+G6ED/UeOavv8RY3dr/Fu99HW3zU3pXpo2kDNO8Sjsm2esfOw==}
requiresBuild: true
dependencies:
- bare-events: 2.2.0
- bare-os: 2.2.0
- bare-path: 2.1.0
- streamx: 2.15.0
+ bare-events: 2.2.2
+ bare-path: 2.1.2
+ bare-stream: 1.0.0
+ dev: true
+ optional: true
+
+ /bare-os@2.3.0:
+ resolution: {integrity: sha512-oPb8oMM1xZbhRQBngTgpcQ5gXw6kjOaRsSWsIeNyRxGed2w/ARyP7ScBYpWR1qfX2E5rS3gBw6OWcSQo+s+kUg==}
+ requiresBuild: true
dev: true
optional: true
- /bare-os@2.2.0:
- resolution: {integrity: sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag==}
+ /bare-path@2.1.2:
+ resolution: {integrity: sha512-o7KSt4prEphWUHa3QUwCxUI00R86VdjiuxmJK0iNVDHYPGo+HsDaVCnqCmPbf/MiW1ok8F4p3m8RTHlWk8K2ig==}
requiresBuild: true
+ dependencies:
+ bare-os: 2.3.0
dev: true
optional: true
- /bare-path@2.1.0:
- resolution: {integrity: sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==}
+ /bare-stream@1.0.0:
+ resolution: {integrity: sha512-KhNUoDL40iP4gFaLSsoGE479t0jHijfYdIcxRn/XtezA2BaUD0NRf/JGRpsMq6dMNM+SrCrB0YSSo/5wBY4rOQ==}
requiresBuild: true
dependencies:
- bare-os: 2.2.0
+ streamx: 2.16.1
dev: true
optional: true
@@ -6400,8 +6658,8 @@ packages:
safe-buffer: 5.1.2
dev: true
- /basic-ftp@5.0.3:
- resolution: {integrity: sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==}
+ /basic-ftp@5.0.5:
+ resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
engines: {node: '>=10.0.0'}
dev: true
@@ -6412,8 +6670,8 @@ packages:
open: 8.4.2
dev: true
- /big-integer@1.6.51:
- resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
+ /big-integer@1.6.52:
+ resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
dev: true
@@ -6421,8 +6679,8 @@ packages:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
dev: true
- /binary-extensions@2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ /binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
/bl@4.1.0:
@@ -6430,7 +6688,7 @@ packages:
dependencies:
buffer: 5.7.1
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
dev: true
/body-parser@1.20.2:
@@ -6469,7 +6727,7 @@ packages:
resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
engines: {node: '>= 5.10.0'}
dependencies:
- big-integer: 1.6.51
+ big-integer: 1.6.52
dev: true
/brace-expansion@1.1.11:
@@ -6477,12 +6735,12 @@ packages:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
+ dev: true
/brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
dependencies:
balanced-match: 1.0.2
- dev: true
/braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
@@ -6509,10 +6767,10 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001600
- electron-to-chromium: 1.4.690
+ caniuse-lite: 1.0.30001616
+ electron-to-chromium: 1.4.758
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
+ update-browserslist-db: 1.0.15(browserslist@4.23.0)
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -6531,7 +6789,7 @@ packages:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
- ieee754: 1.2.1
+ ieee754: 1.2.0
dev: true
/busboy@1.6.0:
@@ -6610,12 +6868,12 @@ packages:
engines: {node: '>=10'}
dev: true
- /camelize@1.0.0:
- resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==}
+ /camelize@1.0.1:
+ resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
dev: true
- /caniuse-lite@1.0.30001600:
- resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==}
+ /caniuse-lite@1.0.30001616:
+ resolution: {integrity: sha512-RHVYKov7IcdNjVHJFNY/78RdG4oGVjbayxv8u5IO74Wv7Hlq4PnJE6mo/OjFijjVFNy5ijnCt6H3IIo4t+wfEw==}
/case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
@@ -6692,11 +6950,11 @@ packages:
get-func-name: 2.0.2
dev: true
- /chokidar@3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
+ /chokidar@3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
dependencies:
- anymatch: 3.1.2
+ anymatch: 3.1.3
braces: 3.0.2
glob-parent: 5.1.2
is-binary-path: 2.1.0
@@ -6704,7 +6962,7 @@ packages:
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
/chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -6715,8 +6973,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /chromatic@11.3.0:
- resolution: {integrity: sha512-q1ZtJDJrjLGnz60ivpC16gmd7KFzcaA4eTb7gcytCqbaKqlHhCFr1xQmcUDsm14CK7JsqdkFU6S+JQdOd2ZNJg==}
+ /chromatic@11.3.2:
+ resolution: {integrity: sha512-0PuHl49VvBMoDHEfmNjC/bim9YYNhWF3axTZlFuatC0avwr2Xw4GDqJDG9fArEWN8oM8VtYHkE9D7qc87dmz2w==}
hasBin: true
peerDependencies:
'@chromatic-com/cypress': ^0.*.* || ^1.0.0
@@ -6743,35 +7001,38 @@ packages:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
- /chromium-bidi@0.5.17(devtools-protocol@0.0.1262051):
- resolution: {integrity: sha512-BqOuIWUgTPj8ayuBFJUYCCuwIcwjBsb3/614P7tt1bEPJ4i1M0kCdIl0Wi9xhtswBXnfO2bTpTMkHD71H8rJMg==}
+ /chromium-bidi@0.5.19(devtools-protocol@0.0.1273771):
+ resolution: {integrity: sha512-UA6zL77b7RYCjJkZBsZ0wlvCTD+jTjllZ8f6wdO4buevXgTZYjV+XLB9CiEa2OuuTGGTLnI7eN9I60YxuALGQg==}
peerDependencies:
devtools-protocol: '*'
dependencies:
- devtools-protocol: 0.0.1262051
+ devtools-protocol: 0.0.1273771
mitt: 3.0.1
urlpattern-polyfill: 10.0.0
zod: 3.22.4
dev: true
- /chromium-pickle-js@0.2.0:
- resolution: {integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==}
- dev: true
-
/ci-info@1.6.0:
resolution: {integrity: sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==}
dev: true
- /ci-info@3.2.0:
- resolution: {integrity: sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==}
+ /ci-info@3.9.0:
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /citty@0.1.6:
+ resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
+ dependencies:
+ consola: 3.2.3
dev: true
- /cjs-module-lexer@1.2.3:
- resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
+ /cjs-module-lexer@1.3.1:
+ resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
dev: true
- /clean-css@5.3.0:
- resolution: {integrity: sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==}
+ /clean-css@5.3.3:
+ resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
engines: {node: '>= 10.0'}
dependencies:
source-map: 0.6.1
@@ -6796,18 +7057,18 @@ packages:
restore-cursor: 4.0.0
dev: true
- /cli-spinners@2.9.0:
- resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==}
+ /cli-spinners@2.9.2:
+ resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
dev: true
- /cli-table3@0.6.1:
- resolution: {integrity: sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==}
+ /cli-table3@0.6.4:
+ resolution: {integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==}
engines: {node: 10.* || >= 12.*}
dependencies:
string-width: 4.2.3
optionalDependencies:
- colors: 1.4.0
+ '@colors/colors': 1.5.0
dev: true
/cli-truncate@4.0.0:
@@ -6815,7 +7076,7 @@ packages:
engines: {node: '>=18'}
dependencies:
slice-ansi: 5.0.0
- string-width: 7.0.0
+ string-width: 7.1.0
dev: true
/client-only@0.0.1:
@@ -6861,8 +7122,8 @@ packages:
engines: {node: '>=0.8'}
dev: true
- /clsx@1.1.1:
- resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==}
+ /clsx@1.2.1:
+ resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
@@ -6871,14 +7132,14 @@ packages:
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
dev: true
- /coffeescript@2.5.1:
- resolution: {integrity: sha512-J2jRPX0eeFh5VKyVnoLrfVFgLZtnnmp96WQSLAS8OrLm2wtQLcnikYKe1gViJKDH7vucjuhHvBKKBP3rKcD1tQ==}
+ /coffeescript@2.7.0:
+ resolution: {integrity: sha512-hzWp6TUE2d/jCcN67LrW1eh5b/rSDKQK6oD6VMLlggYVUUFexgTH9z3dNYihzX4RMhze5FTUsUmOXViJKFQR/A==}
engines: {node: '>=6'}
hasBin: true
dev: true
- /collect-v8-coverage@1.0.1:
- resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
+ /collect-v8-coverage@1.0.2:
+ resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
dev: true
/color-convert@1.9.3:
@@ -6891,14 +7152,12 @@ packages:
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
- dev: true
/color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
/color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- dev: true
/colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
@@ -6908,13 +7167,6 @@ packages:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
dev: true
- /colors@1.4.0:
- resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
- engines: {node: '>=0.1.90'}
- requiresBuild: true
- dev: true
- optional: true
-
/combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -6996,6 +7248,7 @@ packages:
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+ dev: true
/concat-stream@2.0.0:
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
@@ -7003,10 +7256,15 @@ packages:
dependencies:
buffer-from: 1.1.2
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
typedarray: 0.0.6
dev: true
+ /consola@3.2.3:
+ resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dev: true
+
/constants-browserify@1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
dev: true
@@ -7023,8 +7281,8 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /conventional-changelog-angular@5.0.12:
- resolution: {integrity: sha512-5GLsbnkR/7A89RyHLvvoExbiGbd9xKdKqDTrArnPbOqBqG/2wIosu0fHwpeIRI8Tl94MhVNBXcLJZl92ZQ5USw==}
+ /conventional-changelog-angular@5.0.13:
+ resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==}
engines: {node: '>=10'}
dependencies:
compare-func: 2.0.0
@@ -7056,8 +7314,8 @@ packages:
resolution: {integrity: sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==}
dev: true
- /conventional-changelog-conventionalcommits@4.6.1:
- resolution: {integrity: sha512-lzWJpPZhbM1R0PIzkwzGBCnAkH5RKJzJfFQZcl/D+2lsJxAwGnDKBqn/F4C1RD31GJNn8NuKWQzAZDAVXPp2Mw==}
+ /conventional-changelog-conventionalcommits@4.6.3:
+ resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==}
engines: {node: '>=10'}
dependencies:
compare-func: 2.0.0
@@ -7072,15 +7330,15 @@ packages:
compare-func: 2.0.0
dev: true
- /conventional-changelog-core@4.2.3:
- resolution: {integrity: sha512-MwnZjIoMRL3jtPH5GywVNqetGILC7g6RQFvdb8LRU/fA/338JbeWAku3PZ8yQ+mtVRViiISqJlb0sOz0htBZig==}
+ /conventional-changelog-core@4.2.4:
+ resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==}
engines: {node: '>=10'}
dependencies:
add-stream: 1.0.0
- conventional-changelog-writer: 5.0.0
- conventional-commits-parser: 3.2.2
+ conventional-changelog-writer: 5.0.1
+ conventional-commits-parser: 3.2.4
dateformat: 3.0.3
- get-pkg-repo: 4.1.2
+ get-pkg-repo: 4.2.1
git-raw-commits: 2.0.11
git-remote-origin-url: 2.0.0
git-semver-tags: 4.1.1
@@ -7133,14 +7391,14 @@ packages:
engines: {node: '>=10'}
dev: true
- /conventional-changelog-writer@5.0.0:
- resolution: {integrity: sha512-HnDh9QHLNWfL6E1uHz6krZEQOgm8hN7z/m7tT16xwd802fwgMN0Wqd7AQYVkhpsjDUx/99oo+nGgvKF657XP5g==}
+ /conventional-changelog-writer@5.0.1:
+ resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
conventional-commits-filter: 2.0.7
dateformat: 3.0.3
- handlebars: 4.7.7
+ handlebars: 4.7.8
json-stringify-safe: 5.0.1
lodash: 4.17.21
meow: 8.1.2
@@ -7149,15 +7407,15 @@ packages:
through2: 4.0.2
dev: true
- /conventional-changelog@3.1.24:
- resolution: {integrity: sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg==}
+ /conventional-changelog@3.1.25:
+ resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==}
engines: {node: '>=10'}
dependencies:
- conventional-changelog-angular: 5.0.12
+ conventional-changelog-angular: 5.0.13
conventional-changelog-atom: 2.0.8
conventional-changelog-codemirror: 2.0.8
- conventional-changelog-conventionalcommits: 4.6.1
- conventional-changelog-core: 4.2.3
+ conventional-changelog-conventionalcommits: 4.6.3
+ conventional-changelog-core: 4.2.4
conventional-changelog-ember: 2.0.9
conventional-changelog-eslint: 3.0.9
conventional-changelog-express: 2.0.6
@@ -7174,8 +7432,8 @@ packages:
modify-values: 1.0.1
dev: true
- /conventional-commits-parser@3.2.2:
- resolution: {integrity: sha512-Jr9KAKgqAkwXMRHjxDwO/zOCDKod1XdAESHAGuJX38iZ7ZzVti/tvVoysO0suMsdAObp9NQ2rHSsSbnAqZ5f5g==}
+ /conventional-commits-parser@3.2.4:
+ resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -7206,17 +7464,15 @@ packages:
concat-stream: 2.0.0
conventional-changelog-preset-loader: 2.3.4
conventional-commits-filter: 2.0.7
- conventional-commits-parser: 3.2.2
+ conventional-commits-parser: 3.2.4
git-raw-commits: 2.0.11
git-semver-tags: 4.1.1
meow: 8.1.2
q: 1.5.1
dev: true
- /convert-source-map@1.8.0:
- resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
- dependencies:
- safe-buffer: 5.1.2
+ /convert-source-map@1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
dev: true
/convert-source-map@2.0.0:
@@ -7238,14 +7494,14 @@ packages:
is-what: 3.14.1
dev: true
- /core-js-compat@3.36.1:
- resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==}
+ /core-js-compat@3.37.0:
+ resolution: {integrity: sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==}
dependencies:
browserslist: 4.23.0
dev: true
- /core-util-is@1.0.2:
- resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
+ /core-util-is@1.0.3:
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: true
/corser@2.0.1:
@@ -7253,7 +7509,7 @@ packages:
engines: {node: '>= 0.4.0'}
dev: true
- /cosmiconfig-typescript-loader@5.0.0(@types/node@20.12.8)(cosmiconfig@9.0.0)(typescript@5.4.5):
+ /cosmiconfig-typescript-loader@5.0.0(@types/node@20.12.11)(cosmiconfig@9.0.0)(typescript@5.4.5):
resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==}
engines: {node: '>=v16'}
peerDependencies:
@@ -7261,7 +7517,7 @@ packages:
cosmiconfig: '>=8.2'
typescript: '>=4'
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
cosmiconfig: 9.0.0(typescript@5.4.5)
jiti: 1.21.0
typescript: 5.4.5
@@ -7271,7 +7527,7 @@ packages:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
- '@types/parse-json': 4.0.0
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
@@ -7309,7 +7565,7 @@ packages:
parse-json: 5.2.0
typescript: 5.4.5
- /create-jest@29.7.0(@types/node@20.12.8)(ts-node@10.9.2):
+ /create-jest@29.7.0(@types/node@20.12.11)(ts-node@10.9.2):
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -7318,7 +7574,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ jest-config: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -7349,7 +7605,6 @@ packages:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- dev: true
/crypto-md5@1.0.0:
resolution: {integrity: sha512-65Mtei8+EkSIK+5Ie4gpWXoJ/5bgpqPXFknHHXAyhDqKsEAAzUslGd8mOeawbfcuQ8fADNKcF4xQA3fqlZJ8Ig==}
@@ -7366,8 +7621,8 @@ packages:
engines: {node: '>=4'}
dev: true
- /css-functions-list@3.2.1:
- resolution: {integrity: sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==}
+ /css-functions-list@3.2.2:
+ resolution: {integrity: sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==}
engines: {node: '>=12 || >=16'}
dev: true
@@ -7390,8 +7645,8 @@ packages:
postcss-modules-scope: 3.2.0(postcss@8.4.38)
postcss-modules-values: 4.0.0(postcss@8.4.38)
postcss-value-parser: 4.2.0
- semver: 7.6.0
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ semver: 7.6.1
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
/css-loader@7.1.1(webpack@5.91.0):
@@ -7413,24 +7668,24 @@ packages:
postcss-modules-scope: 3.2.0(postcss@8.4.38)
postcss-modules-values: 4.0.0(postcss@8.4.38)
postcss-value-parser: 4.2.0
- semver: 7.6.0
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ semver: 7.6.1
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: false
- /css-select@4.1.3:
- resolution: {integrity: sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==}
+ /css-select@4.3.0:
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
- css-what: 5.0.1
- domhandler: 4.2.0
- domutils: 2.7.0
- nth-check: 2.0.1
+ css-what: 6.1.0
+ domhandler: 4.3.1
+ domutils: 2.8.0
+ nth-check: 2.1.1
dev: true
- /css-to-react-native@3.0.0:
- resolution: {integrity: sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==}
+ /css-to-react-native@3.2.0:
+ resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
dependencies:
- camelize: 1.0.0
+ camelize: 1.0.1
css-color-keywords: 1.0.0
postcss-value-parser: 4.2.0
dev: true
@@ -7443,8 +7698,8 @@ packages:
source-map-js: 1.2.0
dev: true
- /css-what@5.0.1:
- resolution: {integrity: sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==}
+ /css-what@6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
dev: true
@@ -7472,8 +7727,8 @@ packages:
cssom: 0.3.8
dev: true
- /csstype@3.0.8:
- resolution: {integrity: sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==}
+ /csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
/cwd@0.10.0:
resolution: {integrity: sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA==}
@@ -7497,8 +7752,8 @@ packages:
engines: {node: '>=12'}
dev: true
- /data-uri-to-buffer@5.0.1:
- resolution: {integrity: sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==}
+ /data-uri-to-buffer@6.0.2:
+ resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
engines: {node: '>= 14'}
dev: true
@@ -7547,8 +7802,8 @@ packages:
resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==}
dev: true
- /dayjs@1.11.10:
- resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
+ /dayjs@1.11.11:
+ resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==}
dev: false
/debug@2.6.9:
@@ -7598,8 +7853,8 @@ packages:
supports-color: 5.5.0
dev: true
- /decamelize-keys@1.1.0:
- resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==}
+ /decamelize-keys@1.1.1:
+ resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
engines: {node: '>=0.10.0'}
dependencies:
decamelize: 1.2.0
@@ -7611,8 +7866,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /decimal.js@10.3.1:
- resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==}
+ /decimal.js@10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dev: true
/dedent@0.4.0:
@@ -7627,8 +7882,8 @@ packages:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
dev: true
- /dedent@1.3.0:
- resolution: {integrity: sha512-7glNLfvdsMzZm3FpRY1CHuI2lbYDR+71YmrhmTZjYFD5pfT0ACgnGRdrrC9Mk2uICnzkcdelCx5at787UDGOvg==}
+ /dedent@1.5.3:
+ resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -7650,9 +7905,11 @@ packages:
type-detect: 4.0.8
dev: true
- /deep-equal@2.2.0:
- resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
+ /deep-equal@2.2.3:
+ resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
+ engines: {node: '>= 0.4'}
dependencies:
+ array-buffer-byte-length: 1.0.1
call-bind: 1.0.7
es-get-iterator: 1.1.3
get-intrinsic: 1.2.4
@@ -7662,22 +7919,22 @@ packages:
is-regex: 1.1.4
is-shared-array-buffer: 1.0.3
isarray: 2.0.5
- object-is: 1.1.5
+ object-is: 1.1.6
object-keys: 1.1.1
object.assign: 4.1.5
regexp.prototype.flags: 1.5.2
side-channel: 1.0.6
which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
+ which-collection: 1.0.2
which-typed-array: 1.1.15
dev: true
- /deep-is@0.1.3:
- resolution: {integrity: sha512-GtxAN4HvBachZzm4OnWqc45ESpUCMwkYcsjnsPs23FwJbsO+k4t0k9bQCgOmzIlpHO28+WPK/KRbRk0DDHuuDw==}
+ /deep-is@0.1.4:
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
- /deepmerge@4.2.2:
- resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
+ /deepmerge@4.3.1:
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
dev: true
@@ -7689,8 +7946,8 @@ packages:
untildify: 4.0.0
dev: true
- /default-require-extensions@3.0.0:
- resolution: {integrity: sha512-ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg==}
+ /default-require-extensions@3.0.1:
+ resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==}
engines: {node: '>=8'}
dependencies:
strip-bom: 4.0.0
@@ -7725,8 +7982,8 @@ packages:
object-keys: 1.1.1
dev: true
- /defu@6.1.2:
- resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
+ /defu@6.1.4:
+ resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
dev: true
/degenerator@5.0.1:
@@ -7793,8 +8050,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /des.js@1.0.1:
- resolution: {integrity: sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==}
+ /des.js@1.1.0:
+ resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
dependencies:
inherits: 2.0.4
minimalistic-assert: 1.0.1
@@ -7826,23 +8083,22 @@ packages:
execa: 5.1.1
dev: true
- /detect-port@1.3.0:
- resolution: {integrity: sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==}
- engines: {node: '>= 4.2.1'}
+ /detect-port@1.5.1:
+ resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
hasBin: true
dependencies:
- address: 1.1.2
- debug: 2.6.9
+ address: 1.2.2
+ debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
dev: true
- /device-specs@1.0.0:
- resolution: {integrity: sha512-fYXbFSeilT7bnKWFi4OERSPHdtaEoDGn4aUhV5Nly6/I+Tp6JZ/6Icmd7LVIF5euyodGpxz2e/bfUmDnIdSIDw==}
+ /device-specs@1.0.1:
+ resolution: {integrity: sha512-rxns/NDZfbdYumnn801z9uo8kWIz3Eld7Bk/F0V9zw4sZemSoD93+gxHEonLdxYulkws4iCMt7ZP8zuM8EzUSg==}
dev: true
- /devtools-protocol@0.0.1262051:
- resolution: {integrity: sha512-YJe4CT5SA8on3Spa+UDtNhEqtuV6Epwz3OZ4HQVLhlRccpZ9/PAYk0/cy/oKxFKRrZPBUPyxympQci4yWNWZ9g==}
+ /devtools-protocol@0.0.1273771:
+ resolution: {integrity: sha512-QDbb27xcTVReQQW/GHJsdQqGKwYBE7re7gxehj467kKP2DKuYBUj6i2k5LRiAC66J1yZG/9gsxooz/s9pcm0Og==}
dev: true
/didyoumean@1.2.2:
@@ -7887,8 +8143,8 @@ packages:
esutils: 2.0.3
dev: true
- /dom-accessibility-api@0.5.14:
- resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==}
+ /dom-accessibility-api@0.5.16:
+ resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
dev: true
/dom-accessibility-api@0.6.3:
@@ -7904,22 +8160,22 @@ packages:
/dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.24.0
- csstype: 3.0.8
+ '@babel/runtime': 7.24.5
+ csstype: 3.1.3
dev: false
/dom-serializer@0.2.2:
resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
entities: 2.2.0
dev: true
- /dom-serializer@1.3.2:
- resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
+ /dom-serializer@1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
- domelementtype: 2.2.0
- domhandler: 4.2.0
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
entities: 2.2.0
dev: true
@@ -7927,8 +8183,8 @@ packages:
resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
dev: true
- /domelementtype@2.2.0:
- resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
+ /domelementtype@2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
/domexception@4.0.0:
@@ -7945,11 +8201,11 @@ packages:
domelementtype: 1.3.1
dev: true
- /domhandler@4.2.0:
- resolution: {integrity: sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==}
+ /domhandler@4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
dev: true
/domutils@1.7.0:
@@ -7959,12 +8215,12 @@ packages:
domelementtype: 1.3.1
dev: true
- /domutils@2.7.0:
- resolution: {integrity: sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==}
+ /domutils@2.8.0:
+ resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
- dom-serializer: 1.3.2
- domelementtype: 2.2.0
- domhandler: 4.2.0
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
dev: true
/dot-case@3.0.4:
@@ -7986,8 +8242,8 @@ packages:
engines: {node: '>=12'}
dev: true
- /dotenv@16.0.3:
- resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
+ /dotenv@16.4.5:
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
dev: true
@@ -8004,13 +8260,12 @@ packages:
dependencies:
end-of-stream: 1.4.4
inherits: 2.0.4
- readable-stream: 2.3.7
- stream-shift: 1.0.1
+ readable-stream: 2.3.8
+ stream-shift: 1.0.3
dev: true
/eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- dev: true
/ecma-version-validator-webpack-plugin@1.2.1(webpack@5.91.0):
resolution: {integrity: sha512-8hOYmTQVv+POO3OCAfFfv4frF49rEAuGnZ4oQ9PBCRBFRGWIyTexa7KKA2gS9vnVNrsMWEizw+0bEOeCLnIMcw==}
@@ -8019,23 +8274,23 @@ packages:
webpack: ^4.40.0 || ^5.0.0
dependencies:
acorn: 8.11.3
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: true
- /ejs@3.1.9:
- resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
+ /ejs@3.1.10:
+ resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
engines: {node: '>=0.10.0'}
hasBin: true
dependencies:
- jake: 10.8.5
+ jake: 10.9.1
dev: true
- /electron-to-chromium@1.4.690:
- resolution: {integrity: sha512-+2OAGjUx68xElQhydpcbqH50hE8Vs2K6TkAeLhICYfndb67CVH0UsZaijmRUE3rHlIxU1u0jxwhgVe6fK3YANA==}
+ /electron-to-chromium@1.4.758:
+ resolution: {integrity: sha512-/o9x6TCdrYZBMdGeTifAP3wlF/gVT+TtWJe3BSmtNh92Mw81U9hrYwW9OAGUh+sEOX/yz5e34sksqRruZbjYrw==}
/elegant-spinner@1.0.1:
resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==}
@@ -8063,11 +8318,9 @@ packages:
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- dev: true
/emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- dev: true
/emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
@@ -8100,8 +8353,8 @@ packages:
pinkie-promise: 1.0.0
dev: true
- /enhanced-resolve@5.16.0:
- resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
+ /enhanced-resolve@5.16.1:
+ resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.11
@@ -8124,8 +8377,8 @@ packages:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- /envinfo@7.8.1:
- resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
+ /envinfo@7.13.0:
+ resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==}
engines: {node: '>=4'}
hasBin: true
dev: true
@@ -8167,7 +8420,7 @@ packages:
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
get-symbol-description: 1.0.2
- globalthis: 1.0.3
+ globalthis: 1.0.4
gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
@@ -8219,15 +8472,15 @@ packages:
get-intrinsic: 1.2.4
has-symbols: 1.0.3
is-arguments: 1.1.1
- is-map: 2.0.2
- is-set: 2.0.2
+ is-map: 2.0.3
+ is-set: 2.0.3
is-string: 1.0.7
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
dev: true
- /es-iterator-helpers@1.0.18:
- resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==}
+ /es-iterator-helpers@1.0.19:
+ resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
@@ -8237,7 +8490,7 @@ packages:
es-set-tostringtag: 2.0.3
function-bind: 1.1.2
get-intrinsic: 1.2.4
- globalthis: 1.0.3
+ globalthis: 1.0.4
has-property-descriptors: 1.0.2
has-proto: 1.0.3
has-symbols: 1.0.3
@@ -8246,8 +8499,8 @@ packages:
safe-array-concat: 1.1.2
dev: true
- /es-module-lexer@1.4.1:
- resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
+ /es-module-lexer@1.5.2:
+ resolution: {integrity: sha512-l60ETUTmLqbVbVHv1J4/qj+M8nq7AwMzEcg3kmJDt9dCNrTk+yHcYFf/Kw75pMDwd9mPcIGCG5LcS20SxYRzFA==}
/es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
@@ -8288,48 +8541,90 @@ packages:
resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
dev: true
- /esbuild-register@3.5.0(esbuild@0.18.16):
+ /esbuild-register@3.5.0(esbuild@0.18.20):
+ resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
+ peerDependencies:
+ esbuild: '>=0.12 <1'
+ dependencies:
+ debug: 4.3.4(supports-color@5.5.0)
+ esbuild: 0.18.20
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /esbuild-register@3.5.0(esbuild@0.20.2):
resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
peerDependencies:
esbuild: '>=0.12 <1'
dependencies:
debug: 4.3.4(supports-color@5.5.0)
- esbuild: 0.18.16
+ esbuild: 0.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /esbuild@0.18.16:
- resolution: {integrity: sha512-1xLsOXrDqwdHxyXb/x/SOyg59jpf/SH7YMvU5RNSU7z3TInaASNJWNFJ6iRvLvLETZMasF3d1DdZLg7sgRimRQ==}
+ /esbuild@0.18.20:
+ resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/android-arm': 0.18.20
+ '@esbuild/android-arm64': 0.18.20
+ '@esbuild/android-x64': 0.18.20
+ '@esbuild/darwin-arm64': 0.18.20
+ '@esbuild/darwin-x64': 0.18.20
+ '@esbuild/freebsd-arm64': 0.18.20
+ '@esbuild/freebsd-x64': 0.18.20
+ '@esbuild/linux-arm': 0.18.20
+ '@esbuild/linux-arm64': 0.18.20
+ '@esbuild/linux-ia32': 0.18.20
+ '@esbuild/linux-loong64': 0.18.20
+ '@esbuild/linux-mips64el': 0.18.20
+ '@esbuild/linux-ppc64': 0.18.20
+ '@esbuild/linux-riscv64': 0.18.20
+ '@esbuild/linux-s390x': 0.18.20
+ '@esbuild/linux-x64': 0.18.20
+ '@esbuild/netbsd-x64': 0.18.20
+ '@esbuild/openbsd-x64': 0.18.20
+ '@esbuild/sunos-x64': 0.18.20
+ '@esbuild/win32-arm64': 0.18.20
+ '@esbuild/win32-ia32': 0.18.20
+ '@esbuild/win32-x64': 0.18.20
+ dev: true
+
+ /esbuild@0.20.2:
+ resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.18.16
- '@esbuild/android-arm64': 0.18.16
- '@esbuild/android-x64': 0.18.16
- '@esbuild/darwin-arm64': 0.18.16
- '@esbuild/darwin-x64': 0.18.16
- '@esbuild/freebsd-arm64': 0.18.16
- '@esbuild/freebsd-x64': 0.18.16
- '@esbuild/linux-arm': 0.18.16
- '@esbuild/linux-arm64': 0.18.16
- '@esbuild/linux-ia32': 0.18.16
- '@esbuild/linux-loong64': 0.18.16
- '@esbuild/linux-mips64el': 0.18.16
- '@esbuild/linux-ppc64': 0.18.16
- '@esbuild/linux-riscv64': 0.18.16
- '@esbuild/linux-s390x': 0.18.16
- '@esbuild/linux-x64': 0.18.16
- '@esbuild/netbsd-x64': 0.18.16
- '@esbuild/openbsd-x64': 0.18.16
- '@esbuild/sunos-x64': 0.18.16
- '@esbuild/win32-arm64': 0.18.16
- '@esbuild/win32-ia32': 0.18.16
- '@esbuild/win32-x64': 0.18.16
-
- /escalade@3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ '@esbuild/aix-ppc64': 0.20.2
+ '@esbuild/android-arm': 0.20.2
+ '@esbuild/android-arm64': 0.20.2
+ '@esbuild/android-x64': 0.20.2
+ '@esbuild/darwin-arm64': 0.20.2
+ '@esbuild/darwin-x64': 0.20.2
+ '@esbuild/freebsd-arm64': 0.20.2
+ '@esbuild/freebsd-x64': 0.20.2
+ '@esbuild/linux-arm': 0.20.2
+ '@esbuild/linux-arm64': 0.20.2
+ '@esbuild/linux-ia32': 0.20.2
+ '@esbuild/linux-loong64': 0.20.2
+ '@esbuild/linux-mips64el': 0.20.2
+ '@esbuild/linux-ppc64': 0.20.2
+ '@esbuild/linux-riscv64': 0.20.2
+ '@esbuild/linux-s390x': 0.20.2
+ '@esbuild/linux-x64': 0.20.2
+ '@esbuild/netbsd-x64': 0.20.2
+ '@esbuild/openbsd-x64': 0.20.2
+ '@esbuild/sunos-x64': 0.20.2
+ '@esbuild/win32-arm64': 0.20.2
+ '@esbuild/win32-ia32': 0.20.2
+ '@esbuild/win32-x64': 0.20.2
+
+ /escalade@3.1.2:
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
/escape-html@1.0.3:
@@ -8377,10 +8672,10 @@ packages:
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.8.0)(eslint@8.57.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
eslint-plugin-react: 7.34.1(eslint@8.57.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
typescript: 5.4.5
transitivePeerDependencies:
- eslint-import-resolver-webpack
@@ -8396,23 +8691,23 @@ packages:
eslint: 8.57.0
dev: true
- /eslint-config-smarthr@6.28.0(eslint-plugin-smarthr@0.5.8)(eslint@8.57.0)(react@18.3.1)(typescript@5.4.5):
- resolution: {integrity: sha512-7AoPXvR96lX6zjQRmqXYGHJXWNcBCN/ZhvlNyIpLaC2DU9Zn1WDythbthN23JdYvJZdPy7bFwmgygsaXeNqDNQ==}
+ /eslint-config-smarthr@6.30.0(eslint-plugin-smarthr@0.5.10)(eslint@8.57.0)(react@18.3.1)(typescript@5.4.5):
+ resolution: {integrity: sha512-oCSxKYKwrV0hjTPixkAQo5mbh83I2OSYncXKDTWTIDq++BwlsXs8arvOfHBtcsaWgYiBnWJ5Mc9a+lgne31zGQ==}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
- eslint-plugin-smarthr: ^0.5.8
+ eslint-plugin-smarthr: ^0.5.10
react: ^18.3.1
typescript: ^3.4.5 || ^4.0.0 || ^5.0.0
dependencies:
- '@typescript-eslint/eslint-plugin': 7.6.0(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0)(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
eslint: 8.57.0
eslint-config-prettier: 9.1.0(eslint@8.57.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.8.0)(eslint@8.57.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
eslint-plugin-react: 7.34.1(eslint@8.57.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0)
- eslint-plugin-smarthr: 0.5.8(eslint@8.57.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
+ eslint-plugin-smarthr: 0.5.10(eslint@8.57.0)
react: 18.3.1
typescript: 5.4.5
transitivePeerDependencies:
@@ -8439,12 +8734,12 @@ packages:
eslint-plugin-import: '*'
dependencies:
debug: 4.3.4(supports-color@5.5.0)
- enhanced-resolve: 5.16.0
+ enhanced-resolve: 5.16.1
eslint: 8.57.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.8.0)(eslint@8.57.0)
fast-glob: 3.3.2
- get-tsconfig: 4.7.3
+ get-tsconfig: 4.7.4
is-core-module: 2.13.1
is-glob: 4.0.3
transitivePeerDependencies:
@@ -8454,8 +8749,8 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
+ /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -8484,8 +8779,8 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@7.6.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
+ /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.8.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -8505,7 +8800,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
debug: 3.2.7
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
@@ -8513,7 +8808,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0):
+ /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0)(eslint@8.57.0):
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
@@ -8523,23 +8818,23 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
- array-includes: 3.1.7
- array.prototype.findlastindex: 1.2.3
+ '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.6.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.8.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
hasown: 2.0.2
is-core-module: 2.13.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.7
- object.groupby: 1.0.1
- object.values: 1.1.7
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
semver: 6.3.1
tsconfig-paths: 3.15.0
transitivePeerDependencies:
@@ -8554,27 +8849,27 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
aria-query: 5.3.0
- array-includes: 3.1.7
+ array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
axe-core: 4.7.0
axobject-query: 3.2.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.0.18
+ es-iterator-helpers: 1.0.19
eslint: 8.57.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
dev: true
- /eslint-plugin-react-hooks@4.6.0(eslint@8.57.0):
- resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
+ /eslint-plugin-react-hooks@4.6.2(eslint@8.57.0):
+ resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
@@ -8588,29 +8883,29 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.7
+ array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
array.prototype.toreversed: 1.1.2
array.prototype.tosorted: 1.1.3
doctrine: 2.1.0
- es-iterator-helpers: 1.0.18
+ es-iterator-helpers: 1.0.19
eslint: 8.57.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
object.hasown: 1.1.4
- object.values: 1.1.7
+ object.values: 1.2.0
prop-types: 15.8.1
resolve: 2.0.0-next.5
semver: 6.3.1
string.prototype.matchall: 4.0.11
dev: true
- /eslint-plugin-smarthr@0.5.8(eslint@8.57.0):
- resolution: {integrity: sha512-jABtQR8jFY0dHvAnRW8oXVFWJAlcZqGD6n5IN8o822UQI3EQyrft1D8/Tg4nziI+qtSeulOoHM3fqC+aF3Loiw==}
+ /eslint-plugin-smarthr@0.5.10(eslint@8.57.0):
+ resolution: {integrity: sha512-uDuBctiBJgPELpfwVddB4V6MDVEadICY9nDZo8TeKFYQ8FiRG176vDgydQLzpApIwkWVxG+7hamlWbPnlp8cYg==}
peerDependencies:
eslint: ^7 || ^8
dependencies:
@@ -8676,13 +8971,13 @@ packages:
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- esquery: 1.4.2
+ esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.19.0
+ globals: 13.24.0
graphemer: 1.4.0
ignore: 5.3.1
imurmurhash: 0.1.4
@@ -8694,15 +8989,15 @@ packages:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
- supports-color
dev: true
- /esotope-hammerhead@0.6.7:
- resolution: {integrity: sha512-nejJRHWvdoymlWnAXJGm8qfaK1hQ7NiMnTQzMSHPUzBrY7Nogu8O0Q6/HcY8AvY58pkkq2loto7oDDZ0zXYQcg==}
+ /esotope-hammerhead@0.6.8:
+ resolution: {integrity: sha512-2Zhg0c6NfrNA4QT5s4+QG5WJQtq3Se7GonNwtNwfr7sVIo/7L8rirPfh9yyloEmDA7R0yPgD10teFxhf2vWyIw==}
dependencies:
'@types/estree': 0.0.46
dev: true
@@ -8722,8 +9017,8 @@ packages:
hasBin: true
dev: true
- /esquery@1.4.2:
- resolution: {integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==}
+ /esquery@1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
@@ -8782,7 +9077,7 @@ packages:
cross-spawn: 7.0.3
get-stream: 5.2.0
human-signals: 1.1.1
- is-stream: 2.0.0
+ is-stream: 2.0.1
merge-stream: 2.0.0
npm-run-path: 4.0.1
onetime: 5.1.2
@@ -8798,7 +9093,7 @@ packages:
cross-spawn: 7.0.3
get-stream: 5.2.0
human-signals: 1.1.1
- is-stream: 2.0.0
+ is-stream: 2.0.1
merge-stream: 2.0.0
npm-run-path: 4.0.1
onetime: 5.1.2
@@ -8813,7 +9108,7 @@ packages:
cross-spawn: 7.0.3
get-stream: 6.0.1
human-signals: 2.1.0
- is-stream: 2.0.0
+ is-stream: 2.0.1
merge-stream: 2.0.0
npm-run-path: 4.0.1
onetime: 5.1.2
@@ -8830,7 +9125,7 @@ packages:
human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.1.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
@@ -8911,7 +9206,7 @@ packages:
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
- '@types/yauzl': 2.9.2
+ '@types/yauzl': 2.10.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -8919,8 +9214,8 @@ packages:
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-fifo@1.2.0:
- resolution: {integrity: sha512-NcvQXt7Cky1cNau15FWy64IjuO8X0JijhTBBrJj1YlxlDfRkJXNaK9RFUjwpfDPzMdv7wB38jr53l9tkNLxnWg==}
+ /fast-fifo@1.3.2:
+ resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
dev: true
/fast-glob@3.3.2:
@@ -8949,13 +9244,13 @@ packages:
engines: {node: '>= 4.9.1'}
dev: true
- /fastq@1.11.1:
- resolution: {integrity: sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==}
+ /fastq@1.17.1:
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
dependencies:
reusify: 1.0.4
- /fb-watchman@2.0.1:
- resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==}
+ /fb-watchman@2.0.2:
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
dependencies:
bser: 2.1.1
dev: true
@@ -8966,8 +9261,8 @@ packages:
pend: 1.2.0
dev: true
- /fetch-retry@5.0.2:
- resolution: {integrity: sha512-57Hmu+1kc6pKFUGVIobT7qw3NeAzY/uNN26bSevERLVvf6VGFR/ooDCOFBHMNDgAxBiU2YJq1D0vFzc6U1DcPw==}
+ /fetch-retry@5.0.6:
+ resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==}
dev: true
/figures@3.2.0:
@@ -8981,14 +9276,14 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flat-cache: 3.1.1
+ flat-cache: 3.2.0
dev: true
/file-entry-cache@8.0.0:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
dependencies:
- flat-cache: 4.0.0
+ flat-cache: 4.0.1
dev: true
/file-system-cache@2.3.0:
@@ -9001,7 +9296,7 @@ packages:
/filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
- minimatch: 5.1.6
+ minimatch: 5.1.2
dev: true
/fill-range@7.0.1:
@@ -9025,9 +9320,8 @@ packages:
- supports-color
dev: true
- /find-babel-config@2.0.0:
- resolution: {integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==}
- engines: {node: '>=16.0.0'}
+ /find-babel-config@2.1.1:
+ resolution: {integrity: sha512-5Ji+EAysHGe1OipH7GN4qDjok5Z1uw5KAwDCbicU/4wyTZY7CqOCzcWbG7J5ad9mazq67k89fXlbc1MuIfl9uA==}
dependencies:
json5: 2.2.3
path-exists: 4.0.0
@@ -9132,30 +9426,29 @@ packages:
unicorn-magic: 0.1.0
dev: true
- /flat-cache@3.1.1:
- resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==}
- engines: {node: '>=12.0.0'}
+ /flat-cache@3.2.0:
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
+ engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flatted: 3.2.9
+ flatted: 3.3.1
keyv: 4.5.4
rimraf: 3.0.2
dev: true
- /flat-cache@4.0.0:
- resolution: {integrity: sha512-EryKbCE/wxpxKniQlyas6PY1I9vwtF3uCBweX+N8KYTCn3Y12RTGtQAJ/bd5pl7kxUAc8v/R3Ake/N17OZiFqA==}
+ /flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
dependencies:
- flatted: 3.2.9
+ flatted: 3.3.1
keyv: 4.5.4
- rimraf: 5.0.5
dev: true
- /flatted@3.2.9:
- resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
+ /flatted@3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
dev: true
- /flow-parser@0.154.0:
- resolution: {integrity: sha512-cH9xY/ljOgmqG1n7PU1jffiHhRggoloauwOrOlCWBEX4Y+ml6GA8g//tCVKU+6PO4BXoPF22TFHkS5E1bN3JOQ==}
+ /flow-parser@0.235.1:
+ resolution: {integrity: sha512-s04193L4JE+ntEcQXbD6jxRRlyj9QXcgEl2W6xSjH4l9x4b0eHoCHfbYHjqf9LdZFUiM5LhgpiqsvLj/AyOyYQ==}
engines: {node: '>=0.4.0'}
dev: true
@@ -9189,7 +9482,6 @@ packages:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- dev: true
/fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.5)(webpack@5.91.0):
resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==}
@@ -9200,27 +9492,18 @@ packages:
dependencies:
'@babel/code-frame': 7.24.2
chalk: 4.1.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
cosmiconfig: 7.1.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.1
fs-extra: 10.1.0
- memfs: 3.6.0
+ memfs: 3.5.3
minimatch: 3.1.2
node-abort-controller: 3.1.1
schema-utils: 3.3.0
- semver: 7.6.0
+ semver: 7.6.1
tapable: 2.2.1
typescript: 5.4.5
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
- dev: true
-
- /form-data@3.0.1:
- resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
- engines: {node: '>= 6'}
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
/form-data@4.0.0:
@@ -9250,13 +9533,6 @@ packages:
resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==}
dev: true
- /fs-access@1.0.1:
- resolution: {integrity: sha512-05cXDIwNbFaoFWaz5gNHlUTbH5whiss/hr/ibzPd4MH3cR4w0ZKeIPiVdbyJurg3O5r/Bjpvn9KOb1/rPMf3nA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- null-check: 1.0.0
- dev: true
-
/fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
dev: true
@@ -9272,7 +9548,7 @@ packages:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
dev: true
/fs-extra@11.1.1:
@@ -9281,7 +9557,7 @@ packages:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
dev: true
/fs-extra@11.2.0:
@@ -9290,37 +9566,37 @@ packages:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
- dev: true
-
- /fs-extra@8.1.0:
- resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
- engines: {node: '>=6 <7 || >=8'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
+ universalify: 2.0.1
dev: true
/fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.1.3
+ minipass: 3.3.6
dev: true
- /fs-monkey@1.0.4:
- resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==}
+ /fs-monkey@1.0.6:
+ resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
dev: true
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+ dev: true
/fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
+ dev: true
+ optional: true
+
+ /fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+ requiresBuild: true
optional: true
/function-bind@1.1.2:
@@ -9375,8 +9651,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /get-npm-tarball-url@2.0.3:
- resolution: {integrity: sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==}
+ /get-npm-tarball-url@2.1.0:
+ resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==}
engines: {node: '>=12.17'}
dev: true
@@ -9384,9 +9660,9 @@ packages:
resolution: {integrity: sha512-Nlgt85ph6OHZ4XvTcC8LMLDDFUzf7LAinYJZUwzrnc3WiO+vDEHDmNItTtzixBDLv94bZsvJGrrDRAE6uPs4MQ==}
dependencies:
getos: 3.2.1
- macos-release: 3.1.0
+ macos-release: 3.2.0
os-family: 1.1.0
- windows-release: 5.0.1
+ windows-release: 5.1.1
dev: true
/get-package-type@0.1.0:
@@ -9394,15 +9670,15 @@ packages:
engines: {node: '>=8.0.0'}
dev: true
- /get-pkg-repo@4.1.2:
- resolution: {integrity: sha512-/FjamZL9cBYllEbReZkxF2IMh80d8TJoC4e3bmLNif8ibHw95aj0N/tzqK0kZz9eU/3w3dL6lF4fnnX/sDdW3A==}
+ /get-pkg-repo@4.2.1:
+ resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==}
engines: {node: '>=6.9.0'}
hasBin: true
dependencies:
'@hutson/parse-repository-url': 3.0.2
- hosted-git-info: 4.0.2
- meow: 7.1.1
+ hosted-git-info: 4.1.0
through2: 2.0.5
+ yargs: 16.2.0
dev: true
/get-stdin@4.0.1:
@@ -9436,20 +9712,20 @@ packages:
get-intrinsic: 1.2.4
dev: true
- /get-tsconfig@4.7.3:
- resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==}
+ /get-tsconfig@4.7.4:
+ resolution: {integrity: sha512-ofbkKj+0pjXjhejr007J/fLf+sW+8H7K5GCm+msC8q3IpvgjobpyPqSRFemNyIMxklC0zeJpi7VDFna19FacvQ==}
dependencies:
resolve-pkg-maps: 1.0.0
dev: true
- /get-uri@6.0.1:
- resolution: {integrity: sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==}
+ /get-uri@6.0.3:
+ resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
engines: {node: '>= 14'}
dependencies:
- basic-ftp: 5.0.3
- data-uri-to-buffer: 5.0.1
+ basic-ftp: 5.0.5
+ data-uri-to-buffer: 6.0.2
debug: 4.3.4(supports-color@5.5.0)
- fs-extra: 8.1.0
+ fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -9457,22 +9733,21 @@ packages:
/getos@3.2.1:
resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==}
dependencies:
- async: 3.2.4
+ async: 3.2.5
dev: true
- /giget@1.1.2:
- resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==}
+ /giget@1.2.3:
+ resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
hasBin: true
dependencies:
- colorette: 2.0.20
- defu: 6.1.2
- https-proxy-agent: 5.0.1
- mri: 1.2.0
- node-fetch-native: 1.1.0
- pathe: 1.1.0
- tar: 6.1.13
- transitivePeerDependencies:
- - supports-color
+ citty: 0.1.6
+ consola: 3.2.3
+ defu: 6.1.4
+ node-fetch-native: 1.6.4
+ nypm: 0.3.8
+ ohash: 1.1.3
+ pathe: 1.1.2
+ tar: 6.2.1
dev: true
/git-raw-commits@2.0.11:
@@ -9547,34 +9822,23 @@ packages:
foreground-child: 3.1.1
jackspeak: 2.3.6
minimatch: 9.0.4
- minipass: 7.0.4
- path-scurry: 1.10.2
+ minipass: 7.1.0
+ path-scurry: 1.11.1
dev: true
- /glob@10.3.12:
- resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
- engines: {node: '>=16 || 14 >=14.17'}
+ /glob@10.3.15:
+ resolution: {integrity: sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==}
+ engines: {node: '>=16 || 14 >=14.18'}
hasBin: true
dependencies:
foreground-child: 3.1.1
jackspeak: 2.3.6
minimatch: 9.0.4
- minipass: 7.0.4
- path-scurry: 1.10.2
- dev: true
-
- /glob@7.1.6:
- resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
+ minipass: 7.1.0
+ path-scurry: 1.11.1
- /glob@7.2.0:
- resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
+ /glob@7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -9584,15 +9848,14 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /glob@8.1.0:
- resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
- engines: {node: '>=12'}
+ /glob@9.3.5:
+ resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
+ engines: {node: '>=16 || 14 >=14.17'}
dependencies:
fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 5.1.6
- once: 1.4.0
+ minimatch: 8.0.4
+ minipass: 4.2.8
+ path-scurry: 1.11.1
dev: true
/global-directory@4.0.1:
@@ -9641,29 +9904,30 @@ packages:
engines: {node: '>=4'}
dev: true
- /globals@13.19.0:
- resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==}
+ /globals@13.24.0:
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
dev: true
- /globalthis@1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ /globalthis@1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
dependencies:
define-properties: 1.2.1
+ gopd: 1.0.1
dev: true
/globby@10.0.2:
resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
engines: {node: '>=8'}
dependencies:
- '@types/glob': 7.1.3
+ '@types/glob': 7.2.0
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- glob: 7.2.0
+ glob: 7.2.3
ignore: 5.3.1
merge2: 1.4.1
slash: 3.0.0
@@ -9686,7 +9950,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
array-union: 1.0.2
- glob: 7.2.0
+ glob: 7.2.3
object-assign: 4.1.1
pify: 2.3.0
pinkie-promise: 2.0.1
@@ -9727,8 +9991,8 @@ packages:
through2: 2.0.5
dev: true
- /handlebars@4.7.7:
- resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==}
+ /handlebars@4.7.8:
+ resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
engines: {node: '>=0.4.7'}
hasBin: true
dependencies:
@@ -9737,7 +10001,7 @@ packages:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.13.10
+ uglify-js: 3.17.4
dev: true
/hard-rejection@2.1.0:
@@ -9784,7 +10048,7 @@ packages:
resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
engines: {node: '>=8'}
dependencies:
- is-stream: 2.0.0
+ is-stream: 2.0.1
type-fest: 0.8.1
dev: true
@@ -9825,8 +10089,8 @@ packages:
js-tokens: 3.0.2
dev: true
- /hoist-non-react-statics@3.3.2:
- resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+ /hoist-non-react-statics@3.3.1:
+ resolution: {integrity: sha512-wbg3bpgA/ZqWrZuMOeJi8+SKMhr7X9TesL/rXMjTzh0p0JUBo3II8DHboYbuIXWRlttrUFxwcu/5kygrCw8fJw==}
dependencies:
react-is: 16.13.1
dev: true
@@ -9842,8 +10106,8 @@ packages:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
- /hosted-git-info@4.0.2:
- resolution: {integrity: sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==}
+ /hosted-git-info@4.1.0:
+ resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
engines: {node: '>=10'}
dependencies:
lru-cache: 6.0.0
@@ -9856,8 +10120,8 @@ packages:
whatwg-encoding: 2.0.0
dev: true
- /html-entities@2.3.2:
- resolution: {integrity: sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==}
+ /html-entities@2.5.2:
+ resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
dev: true
/html-escaper@2.0.2:
@@ -9870,12 +10134,12 @@ packages:
hasBin: true
dependencies:
camel-case: 4.1.2
- clean-css: 5.3.0
+ clean-css: 5.3.3
commander: 8.3.0
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.27.0
+ terser: 5.31.0
dev: true
/html-tags@3.3.1:
@@ -9883,18 +10147,24 @@ packages:
engines: {node: '>=8'}
dev: true
- /html-webpack-plugin@5.5.1(webpack@5.91.0):
- resolution: {integrity: sha512-cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA==}
+ /html-webpack-plugin@5.6.0(webpack@5.91.0):
+ resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==}
engines: {node: '>=10.13.0'}
peerDependencies:
+ '@rspack/core': 0.x || 1.x
webpack: ^5.20.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
/htmlparser2@3.10.1:
@@ -9905,15 +10175,15 @@ packages:
domutils: 1.7.0
entities: 1.1.2
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
dev: true
/htmlparser2@6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
- domelementtype: 2.2.0
- domhandler: 4.2.0
- domutils: 2.7.0
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ domutils: 2.8.0
entities: 2.2.0
dev: true
@@ -9947,7 +10217,7 @@ packages:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
@@ -9978,7 +10248,7 @@ packages:
mime: 1.6.0
minimist: 1.2.8
opener: 1.5.2
- portfinder: 1.0.28
+ portfinder: 1.0.32
secure-compare: 3.0.1
union: 0.5.0
url-join: 4.0.1
@@ -9987,22 +10257,22 @@ packages:
- supports-color
dev: true
- /http-status-codes@2.2.0:
- resolution: {integrity: sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==}
+ /http-status-codes@2.3.0:
+ resolution: {integrity: sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==}
dev: true
- /httpntlm@1.8.12:
- resolution: {integrity: sha512-dqdye5b5OmzCIDrA2JgkKG7bV9sK0S5VUELD1+JcRZG6ZDieAW7/c0MPsqlTRKDzso1tIMhvDQAWvfgFN0yg3A==}
+ /httpntlm@1.8.13:
+ resolution: {integrity: sha512-2F2FDPiWT4rewPzNMg3uPhNkP3NExENlUGADRUDPQvuftuUTGW98nLZtGemCIW3G40VhWZYgkIDcQFAwZ3mf2Q==}
engines: {node: '>=10.4.0'}
dependencies:
- des.js: 1.0.1
- httpreq: 0.5.2
+ des.js: 1.1.0
+ httpreq: 1.1.1
js-md4: 0.3.2
underscore: 1.12.1
dev: true
- /httpreq@0.5.2:
- resolution: {integrity: sha512-2Jm+x9WkExDOeFRrdBCBSpLPT5SokTcRHkunV3pjKmX/cx6av8zQ0WtHUMDrYb6O4hBFzNU6sxJEypvRUVYKnw==}
+ /httpreq@1.1.1:
+ resolution: {integrity: sha512-uhSZLPPD2VXXOSN8Cni3kIsoFHaU2pT/nySEU/fHr/ePbqHYr0jeiQRmUKLEirC09SFPsdMoA7LU7UXMd/w0Kw==}
engines: {node: '>= 6.15.1'}
dev: true
@@ -10020,7 +10290,7 @@ packages:
resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
@@ -10041,8 +10311,8 @@ packages:
engines: {node: '>=16.17.0'}
dev: true
- /humanize-duration@3.27.0:
- resolution: {integrity: sha512-qLo/08cNc3Tb0uD7jK0jAcU5cnqCM0n568918E7R2XhMr/+7F37p4EY062W/stg7tmzvknNn9b/1+UhVRzsYrQ==}
+ /humanize-duration@3.32.0:
+ resolution: {integrity: sha512-6WsXYTHJr7hXKqoqf5zoWza/lANRAqGlbnZnm0cjDykbXuez1JVXOQGmq0EPB45pXYAJyueRA3S3hfhmMbrMEQ==}
dev: true
/husky@9.0.11:
@@ -10080,8 +10350,8 @@ packages:
dependencies:
postcss: 8.4.38
- /ieee754@1.2.1:
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+ /ieee754@1.2.0:
+ resolution: {integrity: sha512-EWa7B4Ik9ncTIIojzGoKzpUdswDKO6v1BQ0pcKajYCrZckY9gNjiEparSGlyz5C2HcpV62qiVkmLBCPx77Hq2g==}
dev: true
/ignore@5.3.1:
@@ -10109,8 +10379,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /import-local@3.0.2:
- resolution: {integrity: sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==}
+ /import-local@3.1.0:
+ resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
engines: {node: '>=8'}
hasBin: true
dependencies:
@@ -10147,9 +10417,11 @@ packages:
dependencies:
once: 1.4.0
wrappy: 1.0.2
+ dev: true
/inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+ dev: true
/ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
@@ -10175,6 +10447,14 @@ packages:
loose-envify: 1.4.0
dev: true
+ /ip-address@9.0.5:
+ resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
+ engines: {node: '>= 12'}
+ dependencies:
+ jsbn: 1.1.0
+ sprintf-js: 1.1.3
+ dev: true
+
/ip@1.1.9:
resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==}
dev: true
@@ -10219,21 +10499,24 @@ packages:
has-tostringtag: 1.0.2
dev: true
- /is-bigint@1.0.2:
- resolution: {integrity: sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==}
+ /is-bigint@1.0.4:
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ dependencies:
+ has-bigints: 1.0.2
dev: true
/is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
- /is-boolean-object@1.1.1:
- resolution: {integrity: sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==}
+ /is-boolean-object@1.1.2:
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
+ has-tostringtag: 1.0.2
dev: true
/is-callable@1.2.7:
@@ -10304,7 +10587,6 @@ packages:
/is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- dev: true
/is-fullwidth-code-point@4.0.0:
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
@@ -10353,13 +10635,9 @@ packages:
engines: {node: '>=8'}
dev: true
- /is-jquery-obj@0.1.1:
- resolution: {integrity: sha512-18toSebUVF7y717dgw/Dzn6djOCqrkiDp3MhB8P6TdKyCVkbD1ZwE7Uz8Hwx6hUPTvKjbyYH9ncXT4ts4qLaSA==}
- deprecated: The is-jquery-obj package has reached end-of-life and will not receive further updates.
- dev: true
-
- /is-map@2.0.2:
- resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
+ /is-map@2.0.3:
+ resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
+ engines: {node: '>= 0.4'}
dev: true
/is-nan@1.3.2:
@@ -10375,9 +10653,11 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /is-number-object@1.0.5:
- resolution: {integrity: sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==}
+ /is-number-object@1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.2
dev: true
/is-number@7.0.0:
@@ -10453,8 +10733,9 @@ packages:
has-tostringtag: 1.0.2
dev: true
- /is-set@2.0.2:
- resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
+ /is-set@2.0.3:
+ resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
+ engines: {node: '>= 0.4'}
dev: true
/is-shared-array-buffer@1.0.3:
@@ -10464,8 +10745,8 @@ packages:
call-bind: 1.0.7
dev: true
- /is-stream@2.0.0:
- resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==}
+ /is-stream@2.0.1:
+ resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
dev: true
@@ -10522,8 +10803,9 @@ packages:
resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==}
dev: true
- /is-weakmap@2.0.1:
- resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+ /is-weakmap@2.0.2:
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+ engines: {node: '>= 0.4'}
dev: true
/is-weakref@1.0.2:
@@ -10532,8 +10814,9 @@ packages:
call-bind: 1.0.7
dev: true
- /is-weakset@2.0.2:
- resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+ /is-weakset@2.0.3:
+ resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
get-intrinsic: 1.2.4
@@ -10570,15 +10853,14 @@ packages:
/isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- dev: true
/isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
dev: true
- /istanbul-lib-coverage@3.2.0:
- resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
+ /istanbul-lib-coverage@3.2.2:
+ resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
dev: true
@@ -10595,34 +10877,34 @@ packages:
dependencies:
'@babel/core': 7.24.5
'@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /istanbul-lib-instrument@5.1.0:
- resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==}
+ /istanbul-lib-instrument@5.2.1:
+ resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
'@babel/core': 7.24.5
'@babel/parser': 7.24.5
'@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /istanbul-lib-instrument@6.0.0:
- resolution: {integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==}
+ /istanbul-lib-instrument@6.0.2:
+ resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.24.5
'@babel/parser': 7.24.5
'@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.0
- semver: 7.6.0
+ istanbul-lib-coverage: 3.2.2
+ semver: 7.6.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -10633,7 +10915,7 @@ packages:
dependencies:
archy: 1.0.0
cross-spawn: 7.0.3
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.2.2
p-map: 3.0.0
rimraf: 3.0.2
uuid: 8.3.2
@@ -10643,24 +10925,24 @@ packages:
resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
engines: {node: '>=8'}
dependencies:
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.2.2
make-dir: 3.1.0
supports-color: 7.2.0
dev: true
- /istanbul-lib-source-maps@4.0.0:
- resolution: {integrity: sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==}
- engines: {node: '>=8'}
+ /istanbul-lib-source-maps@4.0.1:
+ resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
+ engines: {node: '>=10'}
dependencies:
debug: 4.3.4(supports-color@5.5.0)
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
dev: true
- /istanbul-reports@3.1.5:
- resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==}
+ /istanbul-reports@3.1.7:
+ resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
@@ -10673,7 +10955,7 @@ packages:
define-properties: 1.2.1
get-intrinsic: 1.2.4
has-symbols: 1.0.3
- reflect.getprototypeof: 1.0.4
+ reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
dev: true
@@ -10684,14 +10966,13 @@ packages:
'@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- dev: true
- /jake@10.8.5:
- resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
+ /jake@10.9.1:
+ resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- async: 3.2.4
+ async: 3.2.5
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -10714,10 +10995,10 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
chalk: 4.1.2
co: 4.6.0
- dedent: 1.3.0
+ dedent: 1.5.3
is-generator-fn: 2.1.0
jest-each: 29.7.0
jest-matcher-utils: 29.7.0
@@ -10727,15 +11008,15 @@ packages:
jest-util: 29.7.0
p-limit: 3.1.0
pretty-format: 29.7.0
- pure-rand: 6.0.1
+ pure-rand: 6.1.0
slash: 3.0.0
- stack-utils: 2.0.3
+ stack-utils: 2.0.6
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
dev: true
- /jest-cli@29.7.0(@types/node@20.12.8)(ts-node@10.9.2):
+ /jest-cli@29.7.0(@types/node@20.12.11)(ts-node@10.9.2):
resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -10749,10 +11030,10 @@ packages:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ create-jest: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
exit: 0.1.2
- import-local: 3.0.2
- jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ import-local: 3.1.0
+ jest-config: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -10763,7 +11044,7 @@ packages:
- ts-node
dev: true
- /jest-config@29.7.0(@types/node@20.12.8)(ts-node@10.9.2):
+ /jest-config@29.7.0(@types/node@20.12.11)(ts-node@10.9.2):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -10778,12 +11059,12 @@ packages:
'@babel/core': 7.24.5
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
babel-jest: 29.7.0(@babel/core@7.24.5)
chalk: 4.1.2
- ci-info: 3.2.0
- deepmerge: 4.2.2
- glob: 7.2.0
+ ci-info: 3.9.0
+ deepmerge: 4.3.1
+ glob: 7.2.3
graceful-fs: 4.2.11
jest-circus: 29.7.0
jest-environment-node: 29.7.0
@@ -10798,7 +11079,7 @@ packages:
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.2(@swc/core@1.4.17)(@types/node@20.12.8)(typescript@5.4.5)
+ ts-node: 10.9.2(@swc/core@1.5.5)(@types/node@20.12.11)(typescript@5.4.5)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -10844,8 +11125,8 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/jsdom': 20.0.0
- '@types/node': 20.12.8
+ '@types/jsdom': 20.0.1
+ '@types/node': 20.12.11
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.0
@@ -10862,7 +11143,7 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
jest-mock: 29.7.0
jest-util: 29.7.0
dev: true
@@ -10877,10 +11158,10 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/graceful-fs': 4.1.5
- '@types/node': 20.12.8
- anymatch: 3.1.2
- fb-watchman: 2.0.1
+ '@types/graceful-fs': 4.1.9
+ '@types/node': 20.12.11
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.6.3
jest-util: 29.7.0
@@ -10888,7 +11169,7 @@ packages:
micromatch: 4.0.5
walker: 1.0.8
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
/jest-junit@16.0.0:
@@ -10925,13 +11206,13 @@ packages:
dependencies:
'@babel/code-frame': 7.24.2
'@jest/types': 29.6.3
- '@types/stack-utils': 2.0.1
+ '@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.5
pretty-format: 29.7.0
slash: 3.0.0
- stack-utils: 2.0.3
+ stack-utils: 2.0.6
dev: true
/jest-mock@29.7.0:
@@ -10939,7 +11220,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
jest-util: 29.7.0
dev: true
@@ -10952,13 +11233,13 @@ packages:
jest-runner: ^29.3.1
dependencies:
expect-playwright: 0.8.0
- jest: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ jest: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
jest-circus: 29.7.0
jest-environment-node: 29.7.0
jest-process-manager: 0.4.0
jest-runner: 29.7.0
nyc: 15.1.0
- playwright-core: 1.26.1
+ playwright-core: 1.44.0
rimraf: 3.0.2
uuid: 8.3.2
transitivePeerDependencies:
@@ -10966,8 +11247,8 @@ packages:
- supports-color
dev: true
- /jest-pnp-resolver@1.2.2(jest-resolve@29.7.0):
- resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
+ /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
jest-resolve: '*'
@@ -10981,7 +11262,7 @@ packages:
/jest-process-manager@0.4.0:
resolution: {integrity: sha512-80Y6snDyb0p8GG83pDxGI/kQzwVTkCxc7ep5FPe/F6JYdvRDhwr6RzRmPSP7SEwuLhxo80lBS/NqOdUIbHIfhw==}
dependencies:
- '@types/wait-on': 5.3.1
+ '@types/wait-on': 5.3.4
chalk: 4.1.2
cwd: 0.10.0
exit: 0.1.2
@@ -11018,11 +11299,11 @@ packages:
chalk: 4.1.2
graceful-fs: 4.2.11
jest-haste-map: 29.7.0
- jest-pnp-resolver: 1.2.2(jest-resolve@29.7.0)
+ jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
jest-util: 29.7.0
jest-validate: 29.7.0
resolve: 1.22.8
- resolve.exports: 2.0.0
+ resolve.exports: 2.0.2
slash: 3.0.0
dev: true
@@ -11035,7 +11316,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -11066,11 +11347,11 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
chalk: 4.1.2
- cjs-module-lexer: 1.2.3
- collect-v8-coverage: 1.0.1
- glob: 7.2.0
+ cjs-module-lexer: 1.3.1
+ collect-v8-coverage: 1.0.2
+ glob: 7.2.3
graceful-fs: 4.2.11
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
@@ -11114,7 +11395,7 @@ packages:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.0
+ semver: 7.6.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -11125,8 +11406,8 @@ packages:
peerDependencies:
styled-components: '>= 5'
dependencies:
- '@adobe/css-tools': 4.3.2
- styled-components: 5.3.11(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1)
+ '@adobe/css-tools': 4.3.3
+ styled-components: 5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
dev: true
/jest-util@29.7.0:
@@ -11134,9 +11415,9 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
chalk: 4.1.2
- ci-info: 3.2.0
+ ci-info: 3.9.0
graceful-fs: 4.2.11
picomatch: 2.3.1
dev: true
@@ -11153,18 +11434,18 @@ packages:
pretty-format: 29.7.0
dev: true
- /jest-watch-typeahead@2.2.0(jest@29.7.0):
- resolution: {integrity: sha512-cM3Qbw9P+jUYxqUSt53KdDDFRVBG96XA6bsIAG0zffl/gUkNK/kjWcCX7R559BgPWs2/UDrsJHPIw2f6b0qZCw==}
+ /jest-watch-typeahead@2.2.2(jest@29.7.0):
+ resolution: {integrity: sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==}
engines: {node: ^14.17.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
jest: ^27.0.0 || ^28.0.0 || ^29.0.0
dependencies:
- ansi-escapes: 5.0.0
- chalk: 4.1.2
- jest: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ ansi-escapes: 6.2.1
+ chalk: 5.3.0
+ jest: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
jest-regex-util: 29.6.3
jest-watcher: 29.7.0
- slash: 4.0.0
+ slash: 5.1.0
string-length: 5.0.1
strip-ansi: 7.1.0
dev: true
@@ -11175,7 +11456,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -11187,7 +11468,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -11195,13 +11476,13 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.12.8
+ '@types/node': 20.12.11
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest@29.7.0(@types/node@20.12.8)(ts-node@10.9.2):
+ /jest@29.7.0(@types/node@20.12.11)(ts-node@10.9.2):
resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -11213,8 +11494,8 @@ packages:
dependencies:
'@jest/core': 29.7.0(ts-node@10.9.2)
'@jest/types': 29.6.3
- import-local: 3.0.2
- jest-cli: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2)
+ import-local: 3.1.0
+ jest-cli: 29.7.0(@types/node@20.12.11)(ts-node@10.9.2)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -11226,12 +11507,12 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
- /joi@17.11.0:
- resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
+ /joi@17.13.1:
+ resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==}
dependencies:
- '@hapi/hoek': 9.2.0
+ '@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
- '@sideway/address': 4.1.3
+ '@sideway/address': 4.1.5
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
dev: true
@@ -11261,8 +11542,12 @@ packages:
dependencies:
argparse: 2.0.1
- /jscodeshift@0.15.1(@babel/preset-env@7.24.5):
- resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==}
+ /jsbn@1.1.0:
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
+ dev: true
+
+ /jscodeshift@0.15.2(@babel/preset-env@7.24.5):
+ resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
@@ -11278,12 +11563,12 @@ packages:
'@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5)
'@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.5)
'@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/preset-flow': 7.23.3(@babel/core@7.24.5)
+ '@babel/preset-flow': 7.24.1(@babel/core@7.24.5)
'@babel/preset-typescript': 7.24.1(@babel/core@7.24.5)
- '@babel/register': 7.22.15(@babel/core@7.24.5)
+ '@babel/register': 7.23.7(@babel/core@7.24.5)
babel-core: 7.0.0-bridge.0(@babel/core@7.24.5)
chalk: 4.1.2
- flow-parser: 0.154.0
+ flow-parser: 0.235.1
graceful-fs: 4.2.11
micromatch: 4.0.5
neo-async: 2.6.2
@@ -11310,7 +11595,7 @@ packages:
cssom: 0.5.0
cssstyle: 2.3.0
data-urls: 3.0.2
- decimal.js: 10.3.1
+ decimal.js: 10.4.3
domexception: 4.0.0
escodegen: 2.1.0
form-data: 4.0.0
@@ -11318,18 +11603,18 @@ packages:
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.0
+ nwsapi: 2.2.9
parse5: 7.1.2
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.1.3
+ tough-cookie: 4.1.4
w3c-hr-time: 1.0.2
w3c-xmlserializer: 3.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.16.0
+ ws: 8.17.0
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -11387,20 +11672,14 @@ packages:
hasBin: true
dev: true
- /jsonc-parser@3.2.0:
- resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
- dev: true
-
- /jsonfile@4.0.0:
- resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
- optionalDependencies:
- graceful-fs: 4.2.11
+ /jsonc-parser@3.2.1:
+ resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
dev: true
/jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
- universalify: 2.0.0
+ universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
dev: true
@@ -11414,14 +11693,14 @@ packages:
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.7
+ array-includes: 3.1.8
array.prototype.flat: 1.3.2
object.assign: 4.1.5
- object.values: 1.1.7
+ object.values: 1.2.0
dev: true
- /junit-report-builder@3.1.0:
- resolution: {integrity: sha512-uKcPKbjl/v3pqQUuQuCehmuObAb9adZiZleKp0JijMmKPpBh5rl9YvyPjVqzaLkA0dROnMnQvjXQF37VbYoofw==}
+ /junit-report-builder@3.2.1:
+ resolution: {integrity: sha512-IMCp5XyDQ4YESDE4Za7im3buM0/7cMnRfe17k2X8B05FnUl9vqnaliX6cgOEmPIeWKfJrEe/gANRq/XgqttCqQ==}
engines: {node: '>=8'}
dependencies:
date-format: 4.0.3
@@ -11466,7 +11745,7 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
app-root-dir: 1.0.2
- dotenv: 16.0.3
+ dotenv: 16.4.5
dotenv-expand: 10.0.0
dev: true
@@ -11478,7 +11757,7 @@ packages:
webpack: ^5.0.0
dependencies:
less: 4.2.0
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
/less@4.2.0:
@@ -11521,8 +11800,12 @@ packages:
engines: {node: '>=14'}
dev: true
- /lines-and-columns@1.1.6:
- resolution: {integrity: sha512-8ZmlJFVK9iCmtLz19HpSsR8HaAMWBT284VMNednLwlIMDP2hJDCIhUp0IZ2xUcZ+Ob6BM0VvCSJwzASDM45NLQ==}
+ /lilconfig@3.1.1:
+ resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
+ engines: {node: '>=14'}
+
+ /lines-and-columns@1.2.4:
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
/lint-staged@15.2.2:
resolution: {integrity: sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==}
@@ -11557,7 +11840,7 @@ packages:
colorette: 2.0.20
eventemitter3: 5.0.1
log-update: 6.0.0
- rfdc: 1.3.0
+ rfdc: 1.3.1
wrap-ansi: 9.0.0
dev: true
@@ -11571,8 +11854,8 @@ packages:
strip-bom: 3.0.0
dev: true
- /loader-runner@4.2.0:
- resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==}
+ /loader-runner@4.3.0:
+ resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
/loader-utils@2.0.4:
@@ -11701,7 +11984,7 @@ packages:
resolution: {integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==}
engines: {node: '>=18'}
dependencies:
- ansi-escapes: 6.2.0
+ ansi-escapes: 6.2.1
cli-cursor: 4.0.0
slice-ansi: 7.1.0
strip-ansi: 7.1.0
@@ -11726,10 +12009,9 @@ packages:
tslib: 2.6.2
dev: true
- /lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
+ /lru-cache@10.2.2:
+ resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
engines: {node: 14 || >=16.14}
- dev: true
/lru-cache@2.6.3:
resolution: {integrity: sha512-qkisDmHMe8gxKujmC1BdaqgkoFlioLDCUwaFBA3lX8Ilhr3YzsasbGYaiADMjxQnj+aiZUKgGKe/BN3skMwXWw==}
@@ -11746,6 +12028,7 @@ packages:
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
+ dev: true
/lru-cache@7.18.3:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
@@ -11757,14 +12040,13 @@ packages:
hasBin: true
dev: true
- /macos-release@3.1.0:
- resolution: {integrity: sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==}
+ /macos-release@3.2.0:
+ resolution: {integrity: sha512-fSErXALFNsnowREYZ49XCdOHF8wOPWuFOGQrAhP7x5J/BqQv+B02cNsTykGpDgRVx43EKg++6ANmTaGTtW+hUA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /magic-string@0.30.5:
- resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
- engines: {node: '>=12'}
+ /magic-string@0.30.10:
+ resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
dev: true
@@ -11835,12 +12117,11 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /memfs@3.6.0:
- resolution: {integrity: sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==}
+ /memfs@3.5.3:
+ resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
- deprecated: this will be v4
dependencies:
- fs-monkey: 1.0.4
+ fs-monkey: 1.0.6
dev: true
/memoizerific@1.11.3:
@@ -11854,7 +12135,7 @@ packages:
engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
dependencies:
errno: 0.1.8
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/memorystream@0.3.1:
@@ -11872,30 +12153,13 @@ packages:
engines: {node: '>=18'}
dev: true
- /meow@7.1.1:
- resolution: {integrity: sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==}
- engines: {node: '>=10'}
- dependencies:
- '@types/minimist': 1.2.2
- camelcase-keys: 6.2.2
- decamelize-keys: 1.1.0
- hard-rejection: 2.1.0
- minimist-options: 4.1.0
- normalize-package-data: 2.5.0
- read-pkg-up: 7.0.1
- redent: 3.0.0
- trim-newlines: 3.0.1
- type-fest: 0.13.1
- yargs-parser: 18.1.3
- dev: true
-
/meow@8.1.2:
resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
engines: {node: '>=10'}
dependencies:
- '@types/minimist': 1.2.2
+ '@types/minimist': 1.2.5
camelcase-keys: 6.2.2
- decamelize-keys: 1.1.0
+ decamelize-keys: 1.1.1
hard-rejection: 2.1.0
minimist-options: 4.1.0
normalize-package-data: 3.0.3
@@ -11913,7 +12177,7 @@ packages:
/merge-stream@1.0.1:
resolution: {integrity: sha512-e6RM36aegd4f+r8BZCcYXlO2P3H6xbUM6ktL2Xmf45GAOit9bI4z6/3VU7JwllVO1L7u0UDSg/EhzQ5lmMLolA==}
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/merge-stream@2.0.0:
@@ -11984,14 +12248,22 @@ packages:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
+ dev: true
- /minimatch@5.1.6:
- resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ /minimatch@5.1.2:
+ resolution: {integrity: sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
dev: true
+ /minimatch@8.0.4:
+ resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
+
/minimatch@9.0.3:
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -12004,7 +12276,6 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
brace-expansion: 2.0.1
- dev: true
/minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
@@ -12019,8 +12290,8 @@ packages:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
dev: true
- /minipass@3.1.3:
- resolution: {integrity: sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==}
+ /minipass@3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
dependencies:
yallist: 4.0.0
@@ -12031,16 +12302,20 @@ packages:
engines: {node: '>=8'}
dev: true
- /minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
- engines: {node: '>=16 || 14 >=14.17'}
+ /minipass@5.0.0:
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ engines: {node: '>=8'}
dev: true
+ /minipass@7.1.0:
+ resolution: {integrity: sha512-oGZRv2OT1lO2UF1zUcwdTb3wqUwI0kBGTgt/T7OdSj6M6N5m3o5uPf0AIW6lVxGGoiWUR7e2AwTE+xiwK8WQig==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
/minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.1.3
+ minipass: 3.3.6
yallist: 4.0.0
dev: true
@@ -12052,8 +12327,8 @@ packages:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
dev: true
- /mkdirp@0.5.5:
- resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==}
+ /mkdirp@0.5.6:
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
minimist: 1.2.8
@@ -12074,13 +12349,8 @@ packages:
resolution: {integrity: sha512-KhKZRH21/+ihNRWrmdNFOyBptFi7nAWZFeFsRRpXkzgk/Yublb4fxyP0jU6EY1VDxUL/VUPdCmm/wAnpbfXdfw==}
dev: true
- /moment@2.29.4:
- resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==}
- dev: true
-
- /mri@1.2.0:
- resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
- engines: {node: '>=4'}
+ /moment@2.30.1:
+ resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
dev: true
/ms@2.0.0:
@@ -12167,7 +12437,7 @@ packages:
'@next/env': 14.2.3
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001600
+ caniuse-lite: 1.0.30001616
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
@@ -12210,18 +12480,13 @@ packages:
minimatch: 3.1.2
dev: true
- /node-fetch-native@1.1.0:
- resolution: {integrity: sha512-nl5goFCig93JZ9FIV8GHT9xpNqXbxQUzkOmKIMKmncsBH9jhg7qKex8hirpymkBFmNQ114chEEG5lS4wgK2I+Q==}
+ /node-fetch-native@1.6.4:
+ resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
dev: true
- /node-fetch@2.6.12:
- resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==}
+ /node-fetch@2.6.4:
+ resolution: {integrity: sha512-aD1fO+xtLiSCc9vuD+sYMxpIuQyhHscGSkBEo2o5LTV/3bTEAYvdUii29n8LlO5uLCmWdGP7uVUVXFo5SRdkLA==}
engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
dependencies:
whatwg-url: 5.0.0
dev: true
@@ -12253,9 +12518,9 @@ packages:
resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
engines: {node: '>=10'}
dependencies:
- hosted-git-info: 4.0.2
+ hosted-git-info: 4.1.0
is-core-module: 2.13.1
- semver: 7.6.0
+ semver: 7.6.1
validate-npm-package-license: 3.0.4
dev: true
@@ -12280,8 +12545,8 @@ packages:
minimatch: 3.1.2
pidtree: 0.3.1
read-pkg: 3.0.0
- shell-quote: 1.7.3
- string.prototype.padend: 3.1.2
+ shell-quote: 1.8.1
+ string.prototype.padend: 3.1.6
dev: true
/npm-run-path@4.0.1:
@@ -12291,26 +12556,21 @@ packages:
path-key: 3.1.1
dev: true
- /npm-run-path@5.1.0:
- resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
+ /npm-run-path@5.3.0:
+ resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
path-key: 4.0.0
dev: true
- /nth-check@2.0.1:
- resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
+ /nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
dev: true
- /null-check@1.0.0:
- resolution: {integrity: sha512-j8ZNHg19TyIQOWCGeeQJBuu6xZYIEurf8M1Qsfd8mFrGEfIZytbw18YjKWg+LcO25NowXGZXZpKAx+Ui3TFfDw==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /nwsapi@2.2.0:
- resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==}
+ /nwsapi@2.2.9:
+ resolution: {integrity: sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg==}
dev: true
/nyc@15.1.0:
@@ -12321,20 +12581,20 @@ packages:
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
caching-transform: 4.0.0
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
decamelize: 1.2.0
find-cache-dir: 3.3.2
find-up: 4.1.0
foreground-child: 2.0.0
get-package-type: 0.1.0
- glob: 7.2.0
- istanbul-lib-coverage: 3.2.0
+ glob: 7.2.3
+ istanbul-lib-coverage: 3.2.2
istanbul-lib-hook: 3.0.0
istanbul-lib-instrument: 4.0.3
istanbul-lib-processinfo: 2.0.3
istanbul-lib-report: 3.0.0
- istanbul-lib-source-maps: 4.0.0
- istanbul-reports: 3.1.5
+ istanbul-lib-source-maps: 4.0.1
+ istanbul-reports: 3.1.7
make-dir: 3.1.0
node-preload: 0.2.1
p-map: 3.0.0
@@ -12349,6 +12609,18 @@ packages:
- supports-color
dev: true
+ /nypm@0.3.8:
+ resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==}
+ engines: {node: ^14.16.0 || >=16.10.0}
+ hasBin: true
+ dependencies:
+ citty: 0.1.6
+ consola: 3.2.3
+ execa: 8.0.1
+ pathe: 1.1.2
+ ufo: 1.5.3
+ dev: true
+
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -12361,8 +12633,8 @@ packages:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
dev: true
- /object-is@1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
+ /object-is@1.1.6:
+ resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
@@ -12384,31 +12656,32 @@ packages:
object-keys: 1.1.1
dev: true
- /object.entries@1.1.7:
- resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
+ /object.entries@1.1.8:
+ resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
dev: true
- /object.fromentries@2.0.7:
- resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
+ /object.fromentries@2.0.8:
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
dev: true
- /object.groupby@1.0.1:
- resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
+ /object.groupby@1.0.3:
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
- get-intrinsic: 1.2.4
dev: true
/object.hasown@1.1.4:
@@ -12420,19 +12693,23 @@ packages:
es-object-atoms: 1.0.0
dev: true
- /object.values@1.1.7:
- resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
+ /object.values@1.2.0:
+ resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
dev: true
/objectorarray@1.0.5:
resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==}
dev: true
+ /ohash@1.1.3:
+ resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
+ dev: true
+
/on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
@@ -12449,6 +12726,7 @@ packages:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
+ dev: true
/onetime@2.0.1:
resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
@@ -12485,16 +12763,16 @@ packages:
hasBin: true
dev: true
- /optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ /optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
- deep-is: 0.1.3
+ deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
dev: true
/ora@5.4.1:
@@ -12504,7 +12782,7 @@ packages:
bl: 4.1.0
chalk: 4.1.2
cli-cursor: 3.1.0
- cli-spinners: 2.9.0
+ cli-spinners: 2.9.2
is-interactive: 1.0.0
is-unicode-supported: 0.1.0
log-symbols: 4.1.0
@@ -12628,23 +12906,22 @@ packages:
engines: {node: '>= 14'}
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
- agent-base: 7.1.0
+ agent-base: 7.1.1
debug: 4.3.4(supports-color@5.5.0)
- get-uri: 6.0.1
+ get-uri: 6.0.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.4
- pac-resolver: 7.0.0
- socks-proxy-agent: 8.0.2
+ pac-resolver: 7.0.1
+ socks-proxy-agent: 8.0.3
transitivePeerDependencies:
- supports-color
dev: true
- /pac-resolver@7.0.0:
- resolution: {integrity: sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==}
+ /pac-resolver@7.0.1:
+ resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
engines: {node: '>= 14'}
dependencies:
degenerator: 5.0.1
- ip: 1.1.9
netmask: 2.0.2
dev: true
@@ -12690,7 +12967,7 @@ packages:
'@babel/code-frame': 7.24.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.1.6
+ lines-and-columns: 1.2.4
/parse-node-version@1.0.1:
resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
@@ -12750,6 +13027,7 @@ packages:
/path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
+ dev: true
/path-is-inside@1.0.2:
resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
@@ -12763,7 +13041,6 @@ packages:
/path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- dev: true
/path-key@4.0.0:
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
@@ -12773,13 +13050,12 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-scurry@1.10.2:
- resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
- engines: {node: '>=16 || 14 >=14.17'}
+ /path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
dependencies:
- lru-cache: 10.2.0
- minipass: 7.0.4
- dev: true
+ lru-cache: 10.2.2
+ minipass: 7.1.0
/path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -12797,8 +13073,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /pathe@1.1.0:
- resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==}
+ /pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
dev: true
/pathval@1.1.1:
@@ -12913,19 +13189,20 @@ packages:
find-up: 3.0.0
dev: true
- /playwright-core@1.26.1:
- resolution: {integrity: sha512-hzFchhhxnEiPc4qVPs9q2ZR+5eKNifY2hQDHtg1HnTTUuphYCBP8ZRb2si+B1TR7BHirgXaPi48LIye5SgrLAA==}
- engines: {node: '>=14'}
+ /playwright-core@1.44.0:
+ resolution: {integrity: sha512-ZTbkNpFfYcGWohvTTl+xewITm7EOuqIqex0c7dNZ+aXsbrLj0qI8XlGKfPpipjm0Wny/4Lt4CJsWJk1stVS5qQ==}
+ engines: {node: '>=16'}
hasBin: true
dev: true
- /playwright@1.26.1:
- resolution: {integrity: sha512-WQmEdCgYYe8jOEkhkW9QLcK0PB+w1RZztBLYIT10MEEsENYg251cU0IzebDINreQsUt+HCwwRhtdz4weH9ICcQ==}
- engines: {node: '>=14'}
+ /playwright@1.44.0:
+ resolution: {integrity: sha512-F9b3GUCLQ3Nffrfb6dunPOkE5Mh68tR7zN32L4jCk4FjQamgesGay7/dAAe1WaMEGV04DkdJfcJzjoCKygUaRQ==}
+ engines: {node: '>=16'}
hasBin: true
- requiresBuild: true
dependencies:
- playwright-core: 1.26.1
+ playwright-core: 1.44.0
+ optionalDependencies:
+ fsevents: 2.3.2
dev: true
/pngjs@3.4.0:
@@ -12937,15 +13214,15 @@ packages:
resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
- /portfinder@1.0.28:
- resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
+ /portfinder@1.0.32:
+ resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
engines: {node: '>= 0.12.0'}
dependencies:
async: 2.6.4
debug: 3.2.7
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
transitivePeerDependencies:
- supports-color
dev: true
@@ -12975,8 +13252,8 @@ packages:
camelcase-css: 2.0.1
postcss: 8.4.38
- /postcss-load-config@4.0.1(postcss@8.4.38)(ts-node@10.9.2):
- resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ /postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2):
+ resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
postcss: '>=8.0.9'
@@ -12987,10 +13264,10 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 2.1.0
+ lilconfig: 3.1.1
postcss: 8.4.38
- ts-node: 10.9.2(@swc/core@1.4.17)(@types/node@20.12.8)(typescript@5.4.5)
- yaml: 2.3.4
+ ts-node: 10.9.2(@swc/core@1.5.5)(@types/node@20.12.11)(typescript@5.4.5)
+ yaml: 2.4.2
/postcss-loader@7.3.4(postcss@8.4.38)(typescript@5.4.5)(webpack@5.91.0):
resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
@@ -13002,8 +13279,8 @@ packages:
cosmiconfig: 8.3.6(typescript@5.4.5)
jiti: 1.21.0
postcss: 8.4.38
- semver: 7.6.0
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ semver: 7.6.1
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
transitivePeerDependencies:
- typescript
dev: true
@@ -13024,8 +13301,8 @@ packages:
cosmiconfig: 9.0.0(typescript@5.4.5)
jiti: 1.21.0
postcss: 8.4.38
- semver: 7.6.0
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ semver: 7.6.1
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
transitivePeerDependencies:
- typescript
dev: false
@@ -13262,7 +13539,7 @@ packages:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
- react-is: 18.2.0
+ react-is: 18.3.1
dev: true
/pretty-hrtime@1.0.3:
@@ -13324,14 +13601,14 @@ packages:
resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
debug: 4.3.4(supports-color@5.5.0)
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.4
lru-cache: 7.18.3
pac-proxy-agent: 7.0.1
proxy-from-env: 1.1.0
- socks-proxy-agent: 8.0.2
+ socks-proxy-agent: 8.0.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -13344,8 +13621,8 @@ packages:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
dev: true
- /psl@1.8.0:
- resolution: {integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==}
+ /psl@1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: true
/pump@2.0.1:
@@ -13374,35 +13651,35 @@ packages:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
dev: true
- /punycode@2.1.1:
- resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
+ /punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- /puppeteer-core@22.6.5:
- resolution: {integrity: sha512-s0/5XkAWe0/dWISiljdrybjwDCHhgN31Nu/wznOZPKeikgcJtZtbvPKBz0t802XWqfSQnQDt3L6xiAE5JLlfuw==}
+ /puppeteer-core@22.8.0:
+ resolution: {integrity: sha512-S5bWx3g/fNuyFxjZX9TkZMN07CEH47+9Zm6IiTl1QfqI9pnVaShbwrD9kRe5vmz/XPp/jLGhhxRUj1sY4wObnA==}
engines: {node: '>=18'}
dependencies:
- '@puppeteer/browsers': 2.2.2
- chromium-bidi: 0.5.17(devtools-protocol@0.0.1262051)
+ '@puppeteer/browsers': 2.2.3
+ chromium-bidi: 0.5.19(devtools-protocol@0.0.1273771)
debug: 4.3.4(supports-color@5.5.0)
- devtools-protocol: 0.0.1262051
- ws: 8.16.0
+ devtools-protocol: 0.0.1273771
+ ws: 8.17.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
dev: true
- /puppeteer@22.6.5(typescript@5.4.5):
- resolution: {integrity: sha512-YuoRKGj3MxHhUwrey7vmNvU4odGdUdNsj1ee8pfcqQlLWIXfMOXZCAXh8xdzpZESHH3tCGWp2xmPZE8E6iUEWg==}
+ /puppeteer@22.8.0(typescript@5.4.5):
+ resolution: {integrity: sha512-Z616wyTr0d7KpxmfcBG22rAkzuo/xzHJ3ycpu4KiJ3dZNHn/C1CpqcCwPlpiIIsmPojTAfWjo6EMR7M+AaC0Ww==}
engines: {node: '>=18'}
hasBin: true
requiresBuild: true
dependencies:
- '@puppeteer/browsers': 2.2.2
+ '@puppeteer/browsers': 2.2.3
cosmiconfig: 9.0.0(typescript@5.4.5)
- devtools-protocol: 0.0.1262051
- puppeteer-core: 22.6.5
+ devtools-protocol: 0.0.1273771
+ puppeteer-core: 22.8.0
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -13410,8 +13687,8 @@ packages:
- utf-8-validate
dev: true
- /pure-rand@6.0.1:
- resolution: {integrity: sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==}
+ /pure-rand@6.1.0:
+ resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
dev: true
/q@1.5.1:
@@ -13431,19 +13708,13 @@ packages:
side-channel: 1.0.6
dev: true
- /qs@6.11.2:
- resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
+ /qs@6.12.1:
+ resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.6
dev: true
- /querystring@0.2.1:
- resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
- engines: {node: '>=0.4.x'}
- deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
- dev: true
-
/querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
dev: true
@@ -13453,7 +13724,6 @@ packages:
/queue-tick@1.0.1:
resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
- requiresBuild: true
dev: true
/quick-lru@4.0.1:
@@ -13503,15 +13773,15 @@ packages:
typescript: 5.4.5
dev: true
- /react-docgen@7.0.1:
- resolution: {integrity: sha512-rCz0HBIT0LWbIM+///LfRrJoTKftIzzwsYDf0ns5KwaEjejMHQRtphcns+IXFHDNY9pnz6G8l/JbbI6pD4EAIA==}
+ /react-docgen@7.0.3:
+ resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==}
engines: {node: '>=16.14.0'}
dependencies:
'@babel/core': 7.24.5
'@babel/traverse': 7.24.5(supports-color@5.5.0)
'@babel/types': 7.24.5
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.4
+ '@types/babel__traverse': 7.20.5
'@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
@@ -13536,7 +13806,7 @@ packages:
react: ^18.3.1
react-dom: ^18.3.1
dependencies:
- clsx: 1.1.1
+ clsx: 1.2.1
prop-types: 15.8.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -13559,21 +13829,21 @@ packages:
resolution: {integrity: sha512-ZKS7PGNFqqMd3PJ6+C2Jtz/o1iU9ggiy8Y8nUeksgVuvNISbmrQtJiZNvC/TjDsqD0QlU5Wkgs7i+w9+OjHhhQ==}
dev: true
- /react-icons@5.1.0(react@18.3.1):
- resolution: {integrity: sha512-D3zug1270S4hbSlIRJ0CUS97QE1yNNKDjzQe3HqY0aefp2CBn9VgzgES27sRR2gOvFK+0CNx/BW0ggOESp6fqQ==}
+ /react-icons@5.2.1(react@18.3.1):
+ resolution: {integrity: sha512-zdbW5GstTzXaVKvGSyTaBalt7HSfuK5ovrzlpyiWHAFXndXTdd/1hdDHI4xBM1Mn7YriT6aqESucFl9kEXzrdw==}
peerDependencies:
react: ^18.3.1
dependencies:
react: 18.3.1
dev: false
- /react-innertext@1.1.5(@types/react@18.3.1)(react@18.3.1):
+ /react-innertext@1.1.5(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
react: 18.3.1
dev: false
@@ -13588,43 +13858,43 @@ packages:
resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
dev: true
- /react-is@18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ /react-is@18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
dev: true
- /react-remove-scroll-bar@2.3.4(@types/react@18.3.1)(react@18.3.1):
- resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
+ /react-remove-scroll-bar@2.3.6(@types/react@18.3.2)(react@18.3.1):
+ resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
react: 18.3.1
- react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.2)(react@18.3.1)
tslib: 2.6.2
dev: true
- /react-remove-scroll@2.5.5(@types/react@18.3.1)(react@18.3.1):
+ /react-remove-scroll@2.5.5(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
react: 18.3.1
- react-remove-scroll-bar: 2.3.4(@types/react@18.3.1)(react@18.3.1)
- react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1)
+ react-remove-scroll-bar: 2.3.6(@types/react@18.3.2)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.2)(react@18.3.1)
tslib: 2.6.2
- use-callback-ref: 1.3.0(@types/react@18.3.1)(react@18.3.1)
- use-sidecar: 1.1.2(@types/react@18.3.1)(react@18.3.1)
+ use-callback-ref: 1.3.2(@types/react@18.3.2)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.2)(react@18.3.1)
dev: true
/react-shallow-renderer@16.15.0(react@18.3.1):
@@ -13634,33 +13904,33 @@ packages:
dependencies:
object-assign: 4.1.1
react: 18.3.1
- react-is: 18.2.0
+ react-is: 18.3.1
dev: true
- /react-style-singleton@2.2.1(@types/react@18.3.1)(react@18.3.1):
+ /react-style-singleton@2.2.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
tslib: 2.6.2
dev: true
- /react-test-renderer@18.2.0(react@18.3.1):
- resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==}
+ /react-test-renderer@18.3.1(react@18.3.1):
+ resolution: {integrity: sha512-KkAgygexHUkQqtvvx/otwxtuFu5cVjfzTCtjXLH9boS19/Nbtg84zS7wIQn39G8IlrhThBpQsMKkq5ZHZIYFXA==}
peerDependencies:
react: ^18.3.1
dependencies:
react: 18.3.1
- react-is: 18.2.0
+ react-is: 18.3.1
react-shallow-renderer: 16.15.0(react@18.3.1)
scheduler: 0.23.2
dev: true
@@ -13671,7 +13941,7 @@ packages:
react: ^18.3.1
react-dom: ^18.3.1
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -13726,16 +13996,16 @@ packages:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
dependencies:
- '@types/normalize-package-data': 2.4.0
+ '@types/normalize-package-data': 2.4.4
normalize-package-data: 2.5.0
parse-json: 5.2.0
type-fest: 0.6.0
dev: true
- /readable-stream@2.3.7:
- resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
+ /readable-stream@2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
- core-util-is: 1.0.2
+ core-util-is: 1.0.3
inherits: 2.0.4
isarray: 1.0.0
process-nextick-args: 2.0.1
@@ -13744,8 +14014,8 @@ packages:
util-deprecate: 1.0.2
dev: true
- /readable-stream@3.6.0:
- resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
+ /readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
inherits: 2.0.4
@@ -13778,20 +14048,21 @@ packages:
strip-indent: 3.0.0
dev: true
- /reflect.getprototypeof@1.0.4:
- resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==}
+ /reflect.getprototypeof@1.0.6:
+ resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
+ es-errors: 1.3.0
get-intrinsic: 1.2.4
- globalthis: 1.0.3
+ globalthis: 1.0.4
which-builtin-type: 1.1.3
dev: true
- /regenerate-unicode-properties@10.1.0:
- resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
+ /regenerate-unicode-properties@10.1.1:
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
@@ -13801,13 +14072,13 @@ packages:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
dev: true
- /regenerator-runtime@0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
+ /regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
dev: true
/regex-parser@2.3.0:
@@ -13830,7 +14101,7 @@ packages:
dependencies:
'@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.0
+ regenerate-unicode-properties: 10.1.1
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
@@ -13879,7 +14150,7 @@ packages:
/renderkid@3.0.0:
resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
dependencies:
- css-select: 4.1.3
+ css-select: 4.3.0
dom-converter: 0.2.0
htmlparser2: 6.1.0
lodash: 4.17.21
@@ -13921,8 +14192,8 @@ packages:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
dev: true
- /reselect@4.1.7:
- resolution: {integrity: sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==}
+ /reselect@4.1.8:
+ resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==}
dev: true
/resolve-cwd@1.0.0:
@@ -13970,14 +14241,14 @@ packages:
engines: {node: '>=12'}
dependencies:
adjust-sourcemap-loader: 4.0.0
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
loader-utils: 2.0.4
postcss: 8.4.38
source-map: 0.6.1
dev: true
- /resolve.exports@2.0.0:
- resolution: {integrity: sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg==}
+ /resolve.exports@2.0.2:
+ resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
dev: true
@@ -14018,37 +14289,37 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rfdc@1.3.0:
- resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
+ /rfdc@1.3.1:
+ resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
dev: true
/rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
dev: true
/rimraf@2.7.1:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
dev: true
/rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
dev: true
- /rimraf@5.0.5:
- resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==}
- engines: {node: '>=14'}
+ /rimraf@5.0.7:
+ resolution: {integrity: sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==}
+ engines: {node: '>=14.18'}
hasBin: true
dependencies:
- glob: 10.3.12
+ glob: 10.3.15
dev: true
/run-parallel@1.2.0:
@@ -14118,7 +14389,7 @@ packages:
optional: true
dependencies:
neo-async: 2.6.2
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
/sax@1.3.0:
@@ -14147,14 +14418,14 @@ packages:
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils@4.0.0:
- resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
+ /schema-utils@4.2.0:
+ resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
engines: {node: '>= 12.13.0'}
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.11.0
- ajv-formats: 2.1.1(ajv@8.11.0)
- ajv-keywords: 5.1.0(ajv@8.11.0)
+ ajv: 8.13.0
+ ajv-formats: 2.1.1(ajv@8.13.0)
+ ajv-keywords: 5.1.0(ajv@8.13.0)
dev: true
/secure-compare@3.0.1:
@@ -14185,6 +14456,12 @@ packages:
hasBin: true
dependencies:
lru-cache: 6.0.0
+ dev: true
+
+ /semver@7.6.1:
+ resolution: {integrity: sha512-f/vbBsu+fOiYt+lmwZV0rVwJScl46HppnOA1ZvIuBWKOTlllpyJ3bfVax76/OrhCH38dyxoDIA8K7uB963IYgA==}
+ engines: {node: '>=10'}
+ hasBin: true
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
@@ -14207,8 +14484,8 @@ packages:
- supports-color
dev: true
- /serialize-javascript@6.0.1:
- resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
+ /serialize-javascript@6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
dependencies:
randombytes: 2.1.0
@@ -14228,8 +14505,8 @@ packages:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
dev: true
- /set-cookie-parser@2.5.1:
- resolution: {integrity: sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==}
+ /set-cookie-parser@2.6.0:
+ resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
dev: true
/set-function-length@1.2.2:
@@ -14281,7 +14558,6 @@ packages:
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- dev: true
/shebang-regex@1.0.0:
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
@@ -14291,10 +14567,9 @@ packages:
/shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- dev: true
- /shell-quote@1.7.3:
- resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
+ /shell-quote@1.8.1:
+ resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
dev: true
/side-channel@1.0.6:
@@ -14314,7 +14589,6 @@ packages:
/signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- dev: true
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -14325,9 +14599,9 @@ packages:
engines: {node: '>=8'}
dev: true
- /slash@4.0.0:
- resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
- engines: {node: '>=12'}
+ /slash@5.1.0:
+ resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
+ engines: {node: '>=14.16'}
dev: true
/slice-ansi@4.0.0:
@@ -14360,22 +14634,22 @@ packages:
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
dev: true
- /socks-proxy-agent@8.0.2:
- resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
+ /socks-proxy-agent@8.0.3:
+ resolution: {integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
debug: 4.3.4(supports-color@5.5.0)
- socks: 2.7.1
+ socks: 2.8.3
transitivePeerDependencies:
- supports-color
dev: true
- /socks@2.7.1:
- resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
- engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
+ /socks@2.8.3:
+ resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
dependencies:
- ip: 2.0.1
+ ip-address: 9.0.5
smart-buffer: 4.2.0
dev: true
@@ -14432,32 +14706,32 @@ packages:
- supports-color
dev: true
- /spdx-correct@3.1.1:
- resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
+ /spdx-correct@3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.9
+ spdx-license-ids: 3.0.17
dev: true
- /spdx-exceptions@2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ /spdx-exceptions@2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
dev: true
/spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.9
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.17
dev: true
- /spdx-license-ids@3.0.9:
- resolution: {integrity: sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==}
+ /spdx-license-ids@3.0.17:
+ resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==}
dev: true
/split2@3.2.2:
resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==}
dependencies:
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
dev: true
/split2@4.2.0:
@@ -14475,8 +14749,12 @@ packages:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: true
- /stack-utils@2.0.3:
- resolution: {integrity: sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==}
+ /sprintf-js@1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+ dev: true
+
+ /stack-utils@2.0.6:
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
dependencies:
escape-string-regexp: 2.0.0
@@ -14486,25 +14764,23 @@ packages:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
dev: true
- /standard-version@9.3.2:
- resolution: {integrity: sha512-u1rfKP4o4ew7Yjbfycv80aNMN2feTiqseAhUhrrx2XtdQGmu7gucpziXe68Z4YfHVqlxVEzo4aUA0Iu3VQOTgQ==}
+ /standard-version@9.5.0:
+ resolution: {integrity: sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q==}
engines: {node: '>=10'}
- deprecated: standard-version is deprecated. If you're a GitHub user, I recommend https://github.com/googleapis/release-please as an alternative.
hasBin: true
dependencies:
chalk: 2.4.2
- conventional-changelog: 3.1.24
+ conventional-changelog: 3.1.25
conventional-changelog-config-spec: 2.1.0
- conventional-changelog-conventionalcommits: 4.6.1
+ conventional-changelog-conventionalcommits: 4.6.3
conventional-recommended-bump: 6.1.0
detect-indent: 6.1.0
detect-newline: 3.1.0
dotgitignore: 2.1.0
figures: 3.2.0
find-up: 5.0.0
- fs-access: 1.0.1
git-semver-tags: 4.1.1
- semver: 7.6.0
+ semver: 7.6.1
stringify-package: 1.0.1
yargs: 16.2.0
dev: true
@@ -14521,12 +14797,12 @@ packages:
internal-slot: 1.0.7
dev: true
- /store2@2.14.2:
- resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
+ /store2@2.14.3:
+ resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==}
dev: true
- /storybook-addon-pseudo-states@3.0.1:
- resolution: {integrity: sha512-ciHKl08CXU1Xf9ABbxvZB5KimHO/OpC9PtHpBLIC7R8TWHsdpFHku1zuK9opx1+hXw61woUrbh4cJ5Bn2lTXRw==}
+ /storybook-addon-pseudo-states@3.1.1:
+ resolution: {integrity: sha512-08JNTfsiSfj0GgNV4q6+v6iU+Acp7ib/MdySPDb8p+C8N/e+kf6lnM7kIiE/GnTPXlg3dfV6FMaWgGYVfdTcLw==}
dev: true
/storybook@8.0.10(@babel/preset-env@7.24.5)(react-dom@18.3.1)(react@18.3.1):
@@ -14537,15 +14813,14 @@ packages:
transitivePeerDependencies:
- '@babel/preset-env'
- bufferutil
- - encoding
- react
- react-dom
- supports-color
- utf-8-validate
dev: true
- /stream-shift@1.0.1:
- resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
+ /stream-shift@1.0.3:
+ resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
dev: true
/streamsearch@1.1.0:
@@ -14553,11 +14828,13 @@ packages:
engines: {node: '>=10.0.0'}
dev: false
- /streamx@2.15.0:
- resolution: {integrity: sha512-HcxY6ncGjjklGs1xsP1aR71INYcsXFJet5CU1CHqihQ2J5nOsbd4OjgjHO42w/4QNv9gZb3BueV+Vxok5pLEXg==}
+ /streamx@2.16.1:
+ resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==}
dependencies:
- fast-fifo: 1.2.0
+ fast-fifo: 1.3.2
queue-tick: 1.0.1
+ optionalDependencies:
+ bare-events: 2.2.2
dev: true
/string-argv@0.3.2:
@@ -14588,7 +14865,6 @@ packages:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- dev: true
/string-width@5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
@@ -14597,10 +14873,9 @@ packages:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- dev: true
- /string-width@7.0.0:
- resolution: {integrity: sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==}
+ /string-width@7.1.0:
+ resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==}
engines: {node: '>=18'}
dependencies:
emoji-regex: 10.3.0
@@ -14626,13 +14901,14 @@ packages:
side-channel: 1.0.6
dev: true
- /string.prototype.padend@3.1.2:
- resolution: {integrity: sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==}
+ /string.prototype.padend@3.1.6:
+ resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
dev: true
/string.prototype.trim@1.2.9:
@@ -14684,14 +14960,12 @@ packages:
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- dev: true
/strip-ansi@7.1.0:
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
- dev: true
/strip-bom@2.0.0:
resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==}
@@ -14745,7 +15019,7 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
/style-loader@4.0.0(webpack@5.91.0):
@@ -14754,10 +15028,10 @@ packages:
peerDependencies:
webpack: ^5.27.0
dependencies:
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: false
- /styled-components@5.3.11(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1):
+ /styled-components@5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==}
engines: {node: '>=10'}
peerDependencies:
@@ -14767,17 +15041,19 @@ packages:
dependencies:
'@babel/helper-module-imports': 7.24.3
'@babel/traverse': 7.24.5(supports-color@5.5.0)
- '@emotion/is-prop-valid': 1.1.2
+ '@emotion/is-prop-valid': 1.2.2
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 1.13.1(styled-components@5.3.11)
- css-to-react-native: 3.0.0
- hoist-non-react-statics: 3.3.2
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.24.5)(styled-components@5.3.11)
+ css-to-react-native: 3.2.0
+ hoist-non-react-statics: 3.3.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-is: 18.2.0
+ react-is: 18.3.1
shallowequal: 1.1.0
supports-color: 5.5.0
+ transitivePeerDependencies:
+ - '@babel/core'
dev: true
/styled-jsx@5.1.1(react@18.3.1):
@@ -14797,26 +15073,26 @@ packages:
react: 18.3.1
dev: false
- /stylelint-config-prettier@9.0.5(stylelint@16.3.1):
+ /stylelint-config-prettier@9.0.5(stylelint@16.5.0):
resolution: {integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==}
engines: {node: '>= 12'}
hasBin: true
peerDependencies:
stylelint: '>= 11.x < 15'
dependencies:
- stylelint: 16.3.1(typescript@5.4.5)
+ stylelint: 16.5.0(typescript@5.4.5)
dev: true
- /stylelint-config-recommended@14.0.0(stylelint@16.3.1):
+ /stylelint-config-recommended@14.0.0(stylelint@16.5.0):
resolution: {integrity: sha512-jSkx290CglS8StmrLp2TxAppIajzIBZKYm3IxT89Kg6fGlxbPiTiyH9PS5YUuVAFwaJLl1ikiXX0QWjI0jmgZQ==}
engines: {node: '>=18.12.0'}
peerDependencies:
stylelint: ^16.0.0
dependencies:
- stylelint: 16.3.1(typescript@5.4.5)
+ stylelint: 16.5.0(typescript@5.4.5)
dev: true
- /stylelint-config-smarthr@3.0.0(postcss-styled-syntax@0.5.0)(stylelint-config-standard@36.0.0)(stylelint@16.3.1):
+ /stylelint-config-smarthr@3.0.0(postcss-styled-syntax@0.5.0)(stylelint-config-standard@36.0.0)(stylelint@16.5.0):
resolution: {integrity: sha512-2KaqcZzE0IamquRCaulfkQfFe97G1yqW8glykBI2pkDvEjvfHiwqS3c15UaWio7Ldx8yc8de1Up5i6PCJBQ5cw==}
peerDependencies:
postcss-styled-syntax: ^0.4.0 || ^0.5.0
@@ -14824,38 +15100,38 @@ packages:
stylelint-config-standard: ^33.0.0 || ^34.0.0 || ^35.0.0
dependencies:
postcss-styled-syntax: 0.5.0(postcss@8.4.38)
- stylelint: 16.3.1(typescript@5.4.5)
- stylelint-config-standard: 36.0.0(stylelint@16.3.1)
+ stylelint: 16.5.0(typescript@5.4.5)
+ stylelint-config-standard: 36.0.0(stylelint@16.5.0)
dev: true
- /stylelint-config-standard@36.0.0(stylelint@16.3.1):
+ /stylelint-config-standard@36.0.0(stylelint@16.5.0):
resolution: {integrity: sha512-3Kjyq4d62bYFp/Aq8PMKDwlgUyPU4nacXsjDLWJdNPRUgpuxALu1KnlAHIj36cdtxViVhXexZij65yM0uNIHug==}
engines: {node: '>=18.12.0'}
peerDependencies:
stylelint: ^16.1.0
dependencies:
- stylelint: 16.3.1(typescript@5.4.5)
- stylelint-config-recommended: 14.0.0(stylelint@16.3.1)
+ stylelint: 16.5.0(typescript@5.4.5)
+ stylelint-config-recommended: 14.0.0(stylelint@16.5.0)
dev: true
/stylelint-config-styled-components@0.1.1:
resolution: {integrity: sha512-z5Xz/9GmvxO6e/DLzBMwkB85zHxEEjN6K7Cj80Bi+o/9vR9eS3GX3E9VuMnX9WLFYulqbqLtTapGGY28JBiy9Q==}
dev: true
- /stylelint@16.3.1(typescript@5.4.5):
- resolution: {integrity: sha512-/JOwQnBvxEKOT2RtNgGpBVXnCSMBgKOL2k7w0K52htwCyJls4+cHvc4YZgXlVoAZS9QJd2DgYAiRnja96pTgxw==}
+ /stylelint@16.5.0(typescript@5.4.5):
+ resolution: {integrity: sha512-IlCBtVrG+qTy3v+tZTk50W8BIomjY/RUuzdrDqdnlCYwVuzXtPbiGfxYqtyYAyOMcb+195zRsuHn6tgfPmFfbw==}
engines: {node: '>=18.12.0'}
hasBin: true
dependencies:
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
- '@csstools/media-query-list-parser': 2.1.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
+ '@csstools/media-query-list-parser': 2.1.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
'@csstools/selector-specificity': 3.0.3(postcss-selector-parser@6.0.16)
'@dual-bundle/import-meta-resolve': 4.0.0
balanced-match: 2.0.0
colord: 2.9.3
cosmiconfig: 9.0.0(typescript@5.4.5)
- css-functions-list: 3.2.1
+ css-functions-list: 3.2.2
css-tree: 2.3.1
debug: 4.3.4(supports-color@5.5.0)
fast-glob: 3.3.2
@@ -14884,22 +15160,22 @@ packages:
strip-ansi: 7.1.0
supports-hyperlinks: 3.0.0
svg-tags: 1.0.0
- table: 6.8.1
+ table: 6.8.2
write-file-atomic: 5.0.1
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /sucrase@3.34.0:
- resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==}
- engines: {node: '>=8'}
+ /sucrase@3.35.0:
+ resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 7.1.6
- lines-and-columns: 1.1.6
+ glob: 10.3.15
+ lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
ts-interface-checker: 0.1.13
@@ -14943,25 +15219,25 @@ packages:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
- /synchronous-promise@2.0.15:
- resolution: {integrity: sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==}
+ /synchronous-promise@2.0.17:
+ resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==}
dev: true
- /table@6.8.1:
- resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
+ /table@6.8.2:
+ resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
engines: {node: '>=10.0.0'}
dependencies:
- ajv: 8.11.0
+ ajv: 8.13.0
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
strip-ansi: 6.0.1
dev: true
- /tailwind-merge@2.2.1:
- resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==}
+ /tailwind-merge@2.3.0:
+ resolution: {integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==}
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
dev: false
/tailwind-variants@0.2.1(tailwindcss@3.4.3):
@@ -14970,7 +15246,7 @@ packages:
peerDependencies:
tailwindcss: '*'
dependencies:
- tailwind-merge: 2.2.1
+ tailwind-merge: 2.3.0
tailwindcss: 3.4.3(ts-node@10.9.2)
dev: false
@@ -14981,7 +15257,7 @@ packages:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.3.2
@@ -14996,11 +15272,11 @@ packages:
postcss: 8.4.38
postcss-import: 15.1.0(postcss@8.4.38)
postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.1(postcss@8.4.38)(ts-node@10.9.2)
+ postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2)
postcss-nested: 6.0.1(postcss@8.4.38)
postcss-selector-parser: 6.0.16
resolve: 1.22.8
- sucrase: 3.34.0
+ sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
@@ -15021,10 +15297,10 @@ packages:
resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
dependencies:
pump: 3.0.0
- tar-stream: 3.1.6
+ tar-stream: 3.1.7
optionalDependencies:
- bare-fs: 2.1.5
- bare-path: 2.1.0
+ bare-fs: 2.3.0
+ bare-path: 2.1.2
dev: true
/tar-stream@2.2.0:
@@ -15035,24 +15311,24 @@ packages:
end-of-stream: 1.4.4
fs-constants: 1.0.0
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
dev: true
- /tar-stream@3.1.6:
- resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ /tar-stream@3.1.7:
+ resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
dependencies:
- b4a: 1.6.4
- fast-fifo: 1.2.0
- streamx: 2.15.0
+ b4a: 1.6.6
+ fast-fifo: 1.3.2
+ streamx: 2.16.1
dev: true
- /tar@6.1.13:
- resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==}
+ /tar@6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
- minipass: 4.2.8
+ minipass: 5.0.0
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
@@ -15081,13 +15357,13 @@ packages:
engines: {node: '>=10'}
dependencies:
del: 6.1.1
- is-stream: 2.0.0
+ is-stream: 2.0.1
temp-dir: 2.0.0
type-fest: 0.16.0
unique-string: 2.0.0
dev: true
- /terser-webpack-plugin@5.3.10(@swc/core@1.4.17)(esbuild@0.18.16)(webpack@5.91.0):
+ /terser-webpack-plugin@5.3.10(@swc/core@1.5.5)(esbuild@0.20.2)(webpack@5.91.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -15104,20 +15380,20 @@ packages:
optional: true
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- '@swc/core': 1.4.17
- esbuild: 0.18.16
+ '@swc/core': 1.5.5
+ esbuild: 0.20.2
jest-worker: 27.5.1
schema-utils: 3.3.0
- serialize-javascript: 6.0.1
- terser: 5.27.0
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ serialize-javascript: 6.0.2
+ terser: 5.31.0
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
- /terser@5.27.0:
- resolution: {integrity: sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==}
+ /terser@5.31.0:
+ resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- '@jridgewell/source-map': 0.3.5
+ '@jridgewell/source-map': 0.3.6
acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
@@ -15127,7 +15403,7 @@ packages:
engines: {node: '>=8'}
dependencies:
'@istanbuljs/schema': 0.1.3
- glob: 7.2.0
+ glob: 7.2.3
minimatch: 3.1.2
dev: true
@@ -15144,7 +15420,7 @@ packages:
graceful-fs: 4.2.11
linux-platform-info: 0.0.3
lodash: 4.17.21
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
mustache: 2.3.2
nanoid: 3.3.7
os-family: 1.1.0
@@ -15156,19 +15432,19 @@ packages:
- supports-color
dev: true
- /testcafe-hammerhead@31.7.0:
- resolution: {integrity: sha512-80pF5RweoJKbsTgzroXXJAFbR2kkxa5SYVIOZyMICXdgI/JQz7GBcF7mEb4Uwq1+M9Pa9k8QDaO1v5xyDse9BQ==}
+ /testcafe-hammerhead@31.7.1:
+ resolution: {integrity: sha512-H162ruxCc0wIAkoVky7aQyEntiA6Np8OcWzOx0/2cSPY6BARFdFNd3spu2TB2j3qcpFIZ233IpEx+2sY+VFbjg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@adobe/css-tools': 4.3.2
- '@electron/asar': 3.2.3
+ '@adobe/css-tools': 4.3.3
+ '@electron/asar': 3.2.10
acorn-hammerhead: 0.6.2
bowser: 1.6.0
crypto-md5: 1.0.0
debug: 4.3.1
- esotope-hammerhead: 0.6.7
+ esotope-hammerhead: 0.6.8
http-cache-semantics: 4.1.1
- httpntlm: 1.8.12
+ httpntlm: 1.8.13
iconv-lite: 0.5.1
lodash: 4.17.21
lru-cache: 2.6.3
@@ -15191,15 +15467,14 @@ packages:
- utf-8-validate
dev: true
- /testcafe-legacy-api@5.1.6:
- resolution: {integrity: sha512-Q451IdSUX1NmRfE8kzIcEeoqbUlLaMv2fwVNgQOBEFmA5E57c3jsIpLDTDqv6FPcNwdNMYIZMiB6tzlXB5wf1g==}
+ /testcafe-legacy-api@5.1.8:
+ resolution: {integrity: sha512-Jp/8xPQ+tjr2iS569Og8fFRaSx/7h/N/t6DVzhWpVNO3D5AtPkGmSjCAABh7tHkUwrKfBI7sLuVaxekiT5PWTA==}
dependencies:
async: 3.2.3
dedent: 0.6.0
highlight-es: 1.0.3
- is-jquery-obj: 0.1.1
lodash: 4.17.21
- moment: 2.29.4
+ moment: 2.30.1
mustache: 2.3.2
os-family: 1.1.0
parse5: 2.2.3
@@ -15207,7 +15482,7 @@ packages:
pinkie: 2.0.4
read-file-relative: 1.2.0
strip-bom: 2.0.0
- testcafe-hammerhead: 31.7.0
+ testcafe-hammerhead: 31.7.1
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -15231,12 +15506,12 @@ packages:
resolution: {integrity: sha512-4jUN75Y7eaHQfSjiCLBXt/TvJMW76kBaZGC74sq03FJNBLoo8ibkEFzfjDJzNDCRYo+P7FjCx3vxGrzgfQU26w==}
dev: true
- /testcafe-reporter-xunit@2.2.1:
- resolution: {integrity: sha512-ge1msi8RyNVyK0QrsmC79zedV7jHasKpBPeOUZd/ORpbYLeYDnprjIeOuIukw0knnTieeYsOK29/ZD+UI7/tdw==}
+ /testcafe-reporter-xunit@2.2.3:
+ resolution: {integrity: sha512-aGyc+MZPsTNwd9SeKJSjFNwEZfILzFnObzOImaDbsf57disTQfEY+9japXWav/Ef5Cv04UEW24bTFl2Q4f8xwg==}
dev: true
- /testcafe-safe-storage@1.1.2:
- resolution: {integrity: sha512-6km7D26+KCQGeFlSQ9fVEU7tD8qdioSpqzxU8CCZkd2KzBS0jTFkqaJ54rPaLdd5+wdhgO3+as3LMm4F0EDeYA==}
+ /testcafe-safe-storage@1.1.6:
+ resolution: {integrity: sha512-WFm1UcmO3uZs+uW8lYtBBJpnrvgTKkMQMKG9BvTEKbjeqhonEXVTxOkGEs3DM1ZB/ylPuwh7Jux7qUtjcM/D2Q==}
deprecated: The testcafe-safe-storage package has reached end-of-life and will not receive further updates.
dev: true
@@ -15244,15 +15519,15 @@ packages:
resolution: {integrity: sha512-MTw+RigHsEYmFgzUFNErDxui1nTYUk6nm2bmfacQiKPdhJ9AHW/wue4J/l44mhN8x3E8NgOUkHHOI+1TDFXiLQ==}
dev: true
- /testcafe@3.5.0:
- resolution: {integrity: sha512-EFy3mMMPpmWzkY35X3JDnQw/GNkw2sW90957t3eMj5zmspwu5FBlkEHRNm2SkmcQWHQTcpp0VZ5HXzVSEHvr6w==}
+ /testcafe@3.6.0:
+ resolution: {integrity: sha512-GrCw4udtrTpAUokzasI2FCRDCXiB6uhBs8BGpRffNrVUvlRFYeF9zjIShuDGf8vvRsOsv3+ZXvq5CGvVAmiuzQ==}
engines: {node: '>=16.0.0'}
hasBin: true
dependencies:
'@babel/core': 7.24.5
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.5)
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-decorators': 7.23.3(@babel/core@7.24.5)
+ '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.5)
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.24.5)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
@@ -15262,26 +15537,26 @@ packages:
'@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.24.5)
'@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/preset-flow': 7.23.3(@babel/core@7.24.5)
+ '@babel/preset-flow': 7.24.1(@babel/core@7.24.5)
'@babel/preset-react': 7.24.1(@babel/core@7.24.5)
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.5
'@devexpress/bin-v8-flags-filter': 1.3.0
'@devexpress/callsite-record': 4.1.7
- '@types/node': 12.20.15
+ '@types/node': 12.20.55
async-exit-hook: 1.1.2
- babel-plugin-module-resolver: 5.0.0
+ babel-plugin-module-resolver: 5.0.2
babel-plugin-syntax-trailing-function-commas: 6.22.0
bowser: 2.11.0
callsite: 1.0.0
chai: 4.3.4
chalk: 2.4.2
chrome-remote-interface: 0.32.2
- coffeescript: 2.5.1
+ coffeescript: 2.7.0
commander: 8.3.0
debug: 4.3.4(supports-color@5.5.0)
dedent: 0.4.0
del: 3.0.0
- device-specs: 1.0.0
+ device-specs: 1.0.1
diff: 4.0.2
elegant-spinner: 1.0.1
email-validator: 2.0.4
@@ -15293,21 +15568,21 @@ packages:
globby: 11.1.0
graceful-fs: 4.2.11
graphlib: 2.1.8
- http-status-codes: 2.2.0
- humanize-duration: 3.27.0
+ http-status-codes: 2.3.0
+ humanize-duration: 3.32.0
import-lazy: 3.1.0
indent-string: 1.2.2
is-ci: 1.2.1
is-docker: 2.2.1
is-glob: 2.0.1
is-podman: 1.0.1
- is-stream: 2.0.0
+ is-stream: 2.0.1
json5: 2.2.3
lodash: 4.17.21
log-update-async-hook: 2.0.7
make-dir: 3.1.0
mime-db: 1.52.0
- moment: 2.29.4
+ moment: 2.30.1
moment-duration-format-commonjs: 1.0.1
mustache: 2.3.2
nanoid: 3.3.7
@@ -15325,19 +15600,19 @@ packages:
resolve-cwd: 1.0.0
resolve-from: 4.0.0
sanitize-filename: 1.6.3
- semver: 7.6.0
- set-cookie-parser: 2.5.1
+ semver: 7.6.1
+ set-cookie-parser: 2.6.0
source-map-support: 0.5.21
strip-bom: 2.0.0
testcafe-browser-tools: 2.0.26
- testcafe-hammerhead: 31.7.0
- testcafe-legacy-api: 5.1.6
+ testcafe-hammerhead: 31.7.1
+ testcafe-legacy-api: 5.1.8
testcafe-reporter-json: 2.2.0
testcafe-reporter-list: 2.2.0
testcafe-reporter-minimal: 2.2.0
testcafe-reporter-spec: 2.2.0
- testcafe-reporter-xunit: 2.2.1
- testcafe-safe-storage: 1.1.2
+ testcafe-reporter-xunit: 2.2.3
+ testcafe-safe-storage: 1.1.6
testcafe-selector-generator: 0.1.0
time-limit-promise: 1.0.4
tmp: 0.0.28
@@ -15379,14 +15654,14 @@ packages:
/through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
xtend: 4.0.2
dev: true
/through2@4.0.2:
resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
dependencies:
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
dev: true
/through@2.3.8:
@@ -15429,8 +15704,8 @@ packages:
dependencies:
is-number: 7.0.0
- /tocbot@4.21.0:
- resolution: {integrity: sha512-vXk8htr8mIl3hc2s2mDkaPTBfqmqZA2o0x7eXbxUibdrpEIPdpM0L9hH/RvEvlgSM+ZTgS34sGipk5+VrLJCLA==}
+ /tocbot@4.27.19:
+ resolution: {integrity: sha512-0yu8k0L3gCQ1OVNZnKqpbZp+kLd6qtlNEBxsb+e0G/bS0EXMl2tWqWi1Oy9knRX8rTPYfOxd/sI/OzAj3JowGg==}
dev: true
/toidentifier@1.0.1:
@@ -15442,8 +15717,18 @@ packages:
resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
engines: {node: '>=6'}
dependencies:
- psl: 1.8.0
- punycode: 2.1.1
+ psl: 1.9.0
+ punycode: 2.3.1
+ universalify: 0.2.0
+ url-parse: 1.5.10
+ dev: true
+
+ /tough-cookie@4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
+ dependencies:
+ psl: 1.9.0
+ punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
dev: true
@@ -15456,7 +15741,7 @@ packages:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
dev: true
/tree-kill@1.2.2:
@@ -15500,15 +15785,15 @@ packages:
webpack: ^5.0.0
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.16.0
+ enhanced-resolve: 5.16.1
micromatch: 4.0.5
- semver: 7.6.0
+ semver: 7.6.1
source-map: 0.7.4
typescript: 5.4.5
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
- /ts-node@10.9.2(@swc/core@1.4.17)(@types/node@20.12.8)(typescript@5.4.5):
+ /ts-node@10.9.2(@swc/core@1.5.5)(@types/node@20.12.11)(typescript@5.4.5):
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
@@ -15523,14 +15808,14 @@ packages:
optional: true
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@swc/core': 1.4.17
- '@tsconfig/node10': 1.0.8
- '@tsconfig/node12': 1.0.9
- '@tsconfig/node14': 1.0.1
- '@tsconfig/node16': 1.0.2
- '@types/node': 20.12.8
+ '@swc/core': 1.5.5
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 20.12.11
acorn: 8.11.3
- acorn-walk: 8.2.0
+ acorn-walk: 8.3.2
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
@@ -15592,7 +15877,7 @@ packages:
typescript: '>=3.2.2'
dependencies:
resolve: 1.22.8
- ts-node: 10.9.2(@swc/core@1.4.17)(@types/node@20.12.8)(typescript@5.4.5)
+ ts-node: 10.9.2(@swc/core@1.5.5)(@types/node@20.12.11)(typescript@5.4.5)
typescript: 5.4.5
dev: true
@@ -15614,11 +15899,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /type-fest@0.13.1:
- resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
- engines: {node: '>=10'}
- dev: true
-
/type-fest@0.16.0:
resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
engines: {node: '>=10'}
@@ -15649,21 +15929,11 @@ packages:
engines: {node: '>=8'}
dev: true
- /type-fest@1.4.0:
- resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
- engines: {node: '>=10'}
- dev: true
-
/type-fest@2.19.0:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
dev: true
- /type-fest@3.13.1:
- resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
- engines: {node: '>=14.16'}
- dev: true
-
/type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
@@ -15751,8 +16021,12 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- /uglify-js@3.13.10:
- resolution: {integrity: sha512-57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg==}
+ /ufo@1.5.3:
+ resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
+ dev: true
+
+ /uglify-js@3.17.4:
+ resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
engines: {node: '>=0.8.0'}
hasBin: true
requiresBuild: true
@@ -15814,7 +16088,7 @@ packages:
resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==}
engines: {node: '>= 0.8.0'}
dependencies:
- qs: 6.11.2
+ qs: 6.12.1
dev: true
/unique-string@2.0.0:
@@ -15845,18 +16119,13 @@ packages:
unist-util-visit-parents: 6.0.1
dev: true
- /universalify@0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
- dev: true
-
/universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
engines: {node: '>= 4.0.0'}
dev: true
- /universalify@2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
+ /universalify@2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
dev: true
@@ -15865,13 +16134,14 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /unplugin@1.4.0:
- resolution: {integrity: sha512-5x4eIEL6WgbzqGtF9UV8VEC/ehKptPXDS6L2b0mv4FRMkJxRtjaJfOWDd6a8+kYbqsjklix7yWP0N3SUepjXcg==}
+ /unplugin@1.10.1:
+ resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
+ engines: {node: '>=14.0.0'}
dependencies:
acorn: 8.11.3
- chokidar: 3.5.3
+ chokidar: 3.6.0
webpack-sources: 3.2.3
- webpack-virtual-modules: 0.5.0
+ webpack-virtual-modules: 0.6.1
dev: true
/unquote@1.1.1:
@@ -15883,20 +16153,20 @@ packages:
engines: {node: '>=8'}
dev: true
- /update-browserslist-db@1.0.13(browserslist@4.23.0):
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ /update-browserslist-db@1.0.15(browserslist@4.23.0):
+ resolution: {integrity: sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
browserslist: 4.23.0
- escalade: 3.1.1
+ escalade: 3.1.2
picocolors: 1.0.0
/uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
/url-join@4.0.1:
resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
@@ -15914,28 +16184,28 @@ packages:
engines: {node: '>=8'}
dev: true
- /url@0.11.1:
- resolution: {integrity: sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==}
+ /url@0.11.3:
+ resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
dependencies:
punycode: 1.4.1
- qs: 6.11.2
+ qs: 6.12.1
dev: true
/urlpattern-polyfill@10.0.0:
resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
dev: true
- /use-callback-ref@1.3.0(@types/react@18.3.1)(react@18.3.1):
- resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
+ /use-callback-ref@1.3.2(@types/react@18.3.2)(react@18.3.1):
+ resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
react: 18.3.1
tslib: 2.6.2
dev: true
@@ -15951,17 +16221,17 @@ packages:
react-dom: 18.3.1(react@18.3.1)
dev: true
- /use-sidecar@1.1.2(@types/react@18.3.1)(react@18.3.1):
+ /use-sidecar@1.1.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^18.3.1
+ '@types/react': ^18.3.2
react: ^18.3.1
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.3.2
detect-node-es: 1.1.0
react: 18.3.1
tslib: 2.6.2
@@ -15998,27 +16268,27 @@ packages:
hasBin: true
dev: true
- /uuid@9.0.0:
- resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
+ /uuid@9.0.1:
+ resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
dev: true
/v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
- /v8-to-istanbul@9.1.0:
- resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==}
+ /v8-to-istanbul@9.2.0:
+ resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==}
engines: {node: '>=10.12.0'}
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- '@types/istanbul-lib-coverage': 2.0.3
- convert-source-map: 1.8.0
+ '@types/istanbul-lib-coverage': 2.0.6
+ convert-source-map: 2.0.0
dev: true
/validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
- spdx-correct: 3.1.1
+ spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
dev: true
@@ -16046,8 +16316,8 @@ packages:
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
- axios: 1.6.2
- joi: 17.11.0
+ axios: 1.6.8
+ joi: 17.13.1
lodash: 4.17.21
minimist: 1.2.8
rxjs: 7.8.1
@@ -16095,8 +16365,8 @@ packages:
engines: {node: '>=12'}
dev: true
- /webpack-dev-middleware@6.1.2(webpack@5.91.0):
- resolution: {integrity: sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==}
+ /webpack-dev-middleware@6.1.3(webpack@5.91.0):
+ resolution: {integrity: sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
webpack: ^5.0.0
@@ -16105,19 +16375,18 @@ packages:
optional: true
dependencies:
colorette: 2.0.20
- memfs: 3.6.0
+ memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
- schema-utils: 4.0.0
- webpack: 5.91.0(@swc/core@1.4.17)(esbuild@0.18.16)
+ schema-utils: 4.2.0
+ webpack: 5.91.0(@swc/core@1.5.5)(esbuild@0.20.2)
dev: true
- /webpack-hot-middleware@2.25.1:
- resolution: {integrity: sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==}
+ /webpack-hot-middleware@2.26.1:
+ resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==}
dependencies:
ansi-html-community: 0.0.8
- html-entities: 2.3.2
- querystring: 0.2.1
+ html-entities: 2.5.2
strip-ansi: 6.0.1
dev: true
@@ -16129,7 +16398,11 @@ packages:
resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
dev: true
- /webpack@5.91.0(@swc/core@1.4.17)(esbuild@0.18.16):
+ /webpack-virtual-modules@0.6.1:
+ resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
+ dev: true
+
+ /webpack@5.91.0(@swc/core@1.5.5)(esbuild@0.20.2):
resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -16139,7 +16412,7 @@ packages:
webpack-cli:
optional: true
dependencies:
- '@types/eslint-scope': 3.7.3
+ '@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
@@ -16148,19 +16421,19 @@ packages:
acorn-import-assertions: 1.9.0(acorn@8.11.3)
browserslist: 4.23.0
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.4.1
+ enhanced-resolve: 5.16.1
+ es-module-lexer: 1.5.2
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
json-parse-even-better-errors: 2.3.1
- loader-runner: 4.2.0
+ loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.4.17)(esbuild@0.18.16)(webpack@5.91.0)
+ terser-webpack-plugin: 5.3.10(@swc/core@1.5.5)(esbuild@0.20.2)(webpack@5.91.0)
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -16198,9 +16471,9 @@ packages:
/which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
- is-bigint: 1.0.2
- is-boolean-object: 1.1.1
- is-number-object: 1.0.5
+ is-bigint: 1.0.4
+ is-boolean-object: 1.1.2
+ is-number-object: 1.0.7
is-string: 1.0.7
is-symbol: 1.0.4
dev: true
@@ -16219,21 +16492,22 @@ packages:
is-weakref: 1.0.2
isarray: 2.0.5
which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
+ which-collection: 1.0.2
which-typed-array: 1.1.15
dev: true
- /which-collection@1.0.1:
- resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
+ /which-collection@1.0.2:
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
dependencies:
- is-map: 2.0.2
- is-set: 2.0.2
- is-weakmap: 2.0.1
- is-weakset: 2.0.2
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.3
dev: true
- /which-module@2.0.0:
- resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==}
+ /which-module@2.0.1:
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
dev: true
/which-promise@1.0.0:
@@ -16268,15 +16542,19 @@ packages:
hasBin: true
dependencies:
isexe: 2.0.0
- dev: true
- /windows-release@5.0.1:
- resolution: {integrity: sha512-y1xFdFvdMiDXI3xiOhMbJwt1Y7dUxidha0CWPs1NgjZIjZANTcX7+7bMqNjuezhzb8s5JGEiBAbQjQQYYy7ulw==}
+ /windows-release@5.1.1:
+ resolution: {integrity: sha512-NMD00arvqcq2nwqc5Q6KtrSRHK+fVD31erE5FEMahAw5PmVCgD7MUXodq3pdZSUkqA9Cda2iWx6s1XYwiJWRmw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
execa: 5.1.1
dev: true
+ /word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/wordwrap@1.0.0:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
dev: true
@@ -16297,7 +16575,6 @@ packages:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- dev: true
/wrap-ansi@8.1.0:
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
@@ -16306,19 +16583,19 @@ packages:
ansi-styles: 6.2.1
string-width: 5.1.2
strip-ansi: 7.1.0
- dev: true
/wrap-ansi@9.0.0:
resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
engines: {node: '>=18'}
dependencies:
ansi-styles: 6.2.1
- string-width: 7.0.0
+ string-width: 7.1.0
strip-ansi: 7.1.0
dev: true
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ dev: true
/write-file-atomic@2.4.3:
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
@@ -16366,8 +16643,8 @@ packages:
optional: true
dev: true
- /ws@8.16.0:
- resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ /ws@8.17.0:
+ resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -16417,6 +16694,7 @@ packages:
/yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ dev: true
/yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
@@ -16426,6 +16704,12 @@ packages:
/yaml@2.3.4:
resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
engines: {node: '>= 14'}
+ dev: true
+
+ /yaml@2.4.2:
+ resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==}
+ engines: {node: '>= 14'}
+ hasBin: true
/yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
@@ -16457,7 +16741,7 @@ packages:
require-main-filename: 2.0.0
set-blocking: 2.0.0
string-width: 4.2.3
- which-module: 2.0.0
+ which-module: 2.0.1
y18n: 4.0.3
yargs-parser: 18.1.3
dev: true
@@ -16467,7 +16751,7 @@ packages:
engines: {node: '>=10'}
dependencies:
cliui: 7.0.4
- escalade: 3.1.1
+ escalade: 3.1.2
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -16480,7 +16764,7 @@ packages:
engines: {node: '>=12'}
dependencies:
cliui: 8.0.1
- escalade: 3.1.1
+ escalade: 3.1.2
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
diff --git a/sandbox/next/package.json b/sandbox/next/package.json
index 96706b550a..bb15dbda17 100644
--- a/sandbox/next/package.json
+++ b/sandbox/next/package.json
@@ -10,17 +10,17 @@
},
"dependencies": {
"next": "14.2.3",
- "react": "^18",
- "react-dom": "^18",
+ "react": "^18.3.1",
+ "react-dom": "^18.3.1",
"smarthr-ui": "workspace:*"
},
"devDependencies": {
- "@types/node": "^20.12.8",
- "@types/react": "^18.0.38",
- "@types/react-dom": "^18.0.11",
+ "@types/node": "^20.12.11",
+ "@types/react": "^18.3.2",
+ "@types/react-dom": "^18.3.0",
"eslint-config-next": "^14.2.3",
- "postcss": "^8.0.9",
+ "postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
- "typescript": "^5.0.4"
+ "typescript": "^5.4.5"
}
}