diff --git a/package.json b/package.json
index 68a0418c..df5a45f6 100644
--- a/package.json
+++ b/package.json
@@ -43,12 +43,6 @@
"pnpm": {
"overrides": {
"@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process"
- },
- "peerDependencyRules": {
- "allowedVersions": {
- "react": "18",
- "react-dom": "18"
- }
}
}
}
diff --git a/packages/redux-devtools-ui/.storybook/main.js b/packages/redux-devtools-ui/.storybook/main.js
deleted file mode 100644
index b2931238..00000000
--- a/packages/redux-devtools-ui/.storybook/main.js
+++ /dev/null
@@ -1,14 +0,0 @@
-module.exports = {
- core: {
- builder: 'webpack5',
- },
- stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
- addons: [
- {
- name: '@storybook/addon-essentials',
- options: {
- backgrounds: false,
- },
- },
- ],
-};
diff --git a/packages/redux-devtools-ui/.storybook/main.ts b/packages/redux-devtools-ui/.storybook/main.ts
new file mode 100644
index 00000000..bbfda9da
--- /dev/null
+++ b/packages/redux-devtools-ui/.storybook/main.ts
@@ -0,0 +1,24 @@
+import type { StorybookConfig } from '@storybook/react-webpack5';
+
+const config: StorybookConfig = {
+ stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
+ addons: [
+ '@storybook/addon-links',
+ {
+ name: '@storybook/addon-essentials',
+ options: {
+ backgrounds: false,
+ },
+ },
+ '@storybook/addon-interactions',
+ ],
+ framework: {
+ name: '@storybook/react-webpack5',
+ options: {},
+ },
+ docs: {
+ autodocs: 'tag',
+ },
+};
+
+export default config;
diff --git a/packages/redux-devtools-ui/.storybook/preview.tsx b/packages/redux-devtools-ui/.storybook/preview.tsx
index 7128b553..b45932a5 100644
--- a/packages/redux-devtools-ui/.storybook/preview.tsx
+++ b/packages/redux-devtools-ui/.storybook/preview.tsx
@@ -1,41 +1,9 @@
import React from 'react';
+import type { Preview } from '@storybook/react';
+
import { Container } from '../src';
import { listSchemes, listThemes } from '../src/utils/theme';
-export const parameters = {
- actions: { argTypesRegex: '^on[A-Z].*' },
-};
-
-export const globalTypes = {
- theme: {
- name: 'Theme',
- description: 'Global theme for components',
- defaultValue: 'default',
- toolbar: {
- items: listThemes(),
- showName: true,
- },
- },
- scheme: {
- name: 'Color Scheme',
- description: 'Global color scheme for components',
- defaultValue: 'default',
- toolbar: {
- items: listSchemes(),
- showName: true,
- },
- },
- color: {
- name: 'Color',
- description: 'Global color for components',
- defaultValue: 'light',
- toolbar: {
- items: ['auto', 'light', 'dark'],
- showName: true,
- },
- },
-};
-
const withThemeProvider = (Story, context) => (
(
);
-export const decorators = [withThemeProvider];
+
+const preview: Preview = {
+ parameters: {
+ actions: { argTypesRegex: '^on[A-Z].*' },
+ },
+ globalTypes: {
+ theme: {
+ name: 'Theme',
+ description: 'Global theme for components',
+ defaultValue: 'default',
+ toolbar: {
+ items: listThemes(),
+ showName: true,
+ },
+ },
+ scheme: {
+ name: 'Color Scheme',
+ description: 'Global color scheme for components',
+ defaultValue: 'default',
+ toolbar: {
+ items: listSchemes(),
+ showName: true,
+ },
+ },
+ color: {
+ name: 'Color',
+ description: 'Global color for components',
+ defaultValue: 'light',
+ toolbar: {
+ items: ['auto', 'light', 'dark'],
+ showName: true,
+ },
+ },
+ },
+ decorators: [withThemeProvider],
+};
+
+export default preview;
diff --git a/packages/redux-devtools-ui/package.json b/packages/redux-devtools-ui/package.json
index c18a4098..0fc1f081 100644
--- a/packages/redux-devtools-ui/package.json
+++ b/packages/redux-devtools-ui/package.json
@@ -25,8 +25,8 @@
},
"scripts": {
"start": "pnpm run storybook",
- "storybook": "start-storybook --port 6006 --static-dir ./fonts",
- "build:storybook": "build-storybook --static-dir ./fonts --quiet",
+ "storybook": "storybook dev --port 6006 --static-dir ./fonts",
+ "build:storybook": "storybook build --static-dir ./fonts --quiet",
"build": "pnpm run build:lib && pnpm run build:storybook",
"build:lib": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types && pnpm run build:css",
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
@@ -67,10 +67,11 @@
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
- "@storybook/addon-essentials": "^6.5.16",
- "@storybook/builder-webpack5": "^6.5.16",
- "@storybook/manager-webpack5": "^6.5.16",
- "@storybook/react": "^6.5.16",
+ "@storybook/addon-essentials": "^7.0.2",
+ "@storybook/addon-interactions": "^7.0.2",
+ "@storybook/addon-links": "^7.0.2",
+ "@storybook/react": "^7.0.2",
+ "@storybook/react-webpack5": "^7.0.2",
"@testing-library/dom": "^9.2.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
@@ -93,8 +94,8 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
- "require-from-string": "^2.0.2",
"rimraf": "^4.4.1",
+ "storybook": "^7.0.2",
"styled-components": "^5.3.9",
"stylelint": "^15.3.0",
"stylelint-config-prettier": "^9.0.5",
diff --git a/packages/redux-devtools-ui/src/Button/Button.stories.tsx b/packages/redux-devtools-ui/src/Button/Button.stories.tsx
index 3ac47574..a8e32f58 100644
--- a/packages/redux-devtools-ui/src/Button/Button.stories.tsx
+++ b/packages/redux-devtools-ui/src/Button/Button.stories.tsx
@@ -1,15 +1,16 @@
import React from 'react';
import styled from 'styled-components';
import { MdFiberManualRecord } from 'react-icons/md';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import Button from './';
-import { ButtonProps } from './Button';
-export default {
+const meta: Meta = {
title: 'Button',
component: Button,
};
+export default meta;
+
const Container = styled.div`
display: flex;
height: 100%;
@@ -18,41 +19,45 @@ const Container = styled.div`
align-items: center;
`;
-const Template: Story = (args) => (
-
-
-
-);
+type Story = StoryObj;
-export const Default = Template.bind({});
-Default.args = {
- title: 'Hello Tooltip! \\a And from new line hello!',
- tooltipPosition: 'top',
- primary: true,
- size: 'normal',
- disabled: false,
- children: 'Hello Button',
-};
-Default.argTypes = {
- onClick: { control: { disable: true } },
- type: { control: { disable: true } },
- mark: { control: { disable: true } },
- theme: { control: { disable: true } },
+export const Default: Story = {
+ render: (args) => (
+
+
+
+ ),
+ args: {
+ title: 'Hello Tooltip! \\a And from new line hello!',
+ tooltipPosition: 'top',
+ primary: true,
+ size: 'normal',
+ disabled: false,
+ children: 'Hello Button',
+ },
+ argTypes: {
+ onClick: { control: { disable: true } },
+ type: { control: { disable: true } },
+ mark: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ },
};
-export const Mark = Template.bind({});
-Mark.args = {
- mark: 'base08',
- title: 'Hello Tooltip',
- tooltipPosition: 'top',
- size: 'normal',
- disabled: false,
- children: ,
-};
-Mark.argTypes = {
- children: { control: { disable: true } },
- onClick: { control: { disable: true } },
- type: { control: { disable: true } },
- primary: { control: { disable: true } },
- theme: { control: { disable: true } },
+export const Mark: Story = {
+ render: Default.render,
+ args: {
+ mark: 'base08',
+ title: 'Hello Tooltip',
+ tooltipPosition: 'top',
+ size: 'normal',
+ disabled: false,
+ children: ,
+ },
+ argTypes: {
+ children: { control: { disable: true } },
+ onClick: { control: { disable: true } },
+ type: { control: { disable: true } },
+ primary: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ },
};
diff --git a/packages/redux-devtools-ui/src/ContextMenu/ContextMenu.stories.tsx b/packages/redux-devtools-ui/src/ContextMenu/ContextMenu.stories.tsx
index b2778ffc..91501f33 100644
--- a/packages/redux-devtools-ui/src/ContextMenu/ContextMenu.stories.tsx
+++ b/packages/redux-devtools-ui/src/ContextMenu/ContextMenu.stories.tsx
@@ -1,15 +1,16 @@
import React from 'react';
import styled from 'styled-components';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import ContextMenu from './';
import { items } from './data';
-import { ContextMenuProps } from './ContextMenu';
-export default {
+const meta: Meta = {
title: 'ContextMenu',
component: ContextMenu,
};
+export default meta;
+
const Container = styled.div`
display: flex;
height: 100%;
@@ -18,21 +19,23 @@ const Container = styled.div`
align-items: center;
`;
-const Template: Story = (args) => (
-
-
-
-);
+type Story = StoryObj;
-export const Default = Template.bind({});
-Default.args = {
- visible: true,
- x: 100,
- y: 100,
- items,
-};
-Default.argTypes = {
- visible: { control: { disable: true } },
- items: { control: { disable: true } },
- onClick: { control: { disable: true } },
+export const Default: Story = {
+ render: (args) => (
+
+
+
+ ),
+ args: {
+ visible: true,
+ x: 100,
+ y: 100,
+ items,
+ },
+ argTypes: {
+ visible: { control: { disable: true } },
+ items: { control: { disable: true } },
+ onClick: { control: { disable: true } },
+ },
};
diff --git a/packages/redux-devtools-ui/src/Dialog/Dialog.stories.tsx b/packages/redux-devtools-ui/src/Dialog/Dialog.stories.tsx
index 81792367..63508bf2 100644
--- a/packages/redux-devtools-ui/src/Dialog/Dialog.stories.tsx
+++ b/packages/redux-devtools-ui/src/Dialog/Dialog.stories.tsx
@@ -1,54 +1,54 @@
import React from 'react';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import Dialog from './';
import { schema, uiSchema, formData } from '../Form/schema';
-import { DialogProps } from './Dialog';
-import { Props as FormProps } from '../Form/Form';
-export default {
+const meta: Meta = {
title: 'Dialog',
component: Dialog,
};
-const Template: Story)> = (
- args
-) => ;
+export default meta;
-export const Default = Template.bind({});
-Default.args = {
- title: 'Dialog Title',
- submitText: 'Submit!',
- open: true,
- noHeader: false,
- noFooter: false,
- modal: false,
- fullWidth: false,
- children: 'Hello Dialog!',
-};
-Default.argTypes = {
- actions: { control: { disable: true } },
- onDismiss: { control: { disable: true } },
- onSubmit: { control: { disable: true } },
- theme: { control: { disable: true } },
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ title: 'Dialog Title',
+ submitText: 'Submit!',
+ open: true,
+ noHeader: false,
+ noFooter: false,
+ modal: false,
+ fullWidth: false,
+ children: 'Hello Dialog!',
+ },
+ argTypes: {
+ actions: { control: { disable: true } },
+ onDismiss: { control: { disable: true } },
+ onSubmit: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ },
};
-export const WithForm = Template.bind({});
-WithForm.args = {
- open: true,
- noHeader: false,
- noFooter: false,
- fullWidth: false,
- submitText: 'Submit!',
- formData,
- schema,
- uiSchema,
-};
-WithForm.argTypes = {
- title: { control: { disable: true } },
- children: { control: { disable: true } },
- actions: { control: { disable: true } },
- modal: { control: { disable: true } },
- onDismiss: { control: { disable: true } },
- onSubmit: { control: { disable: true } },
- theme: { control: { disable: true } },
+export const WithForm: Story = {
+ args: {
+ open: true,
+ noHeader: false,
+ noFooter: false,
+ fullWidth: false,
+ submitText: 'Submit!',
+ formData,
+ schema,
+ uiSchema,
+ },
+ argTypes: {
+ title: { control: { disable: true } },
+ children: { control: { disable: true } },
+ actions: { control: { disable: true } },
+ modal: { control: { disable: true } },
+ onDismiss: { control: { disable: true } },
+ onSubmit: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ },
};
diff --git a/packages/redux-devtools-ui/src/Editor/Editor.stories.tsx b/packages/redux-devtools-ui/src/Editor/Editor.stories.tsx
index c898fbec..e4a1fe59 100644
--- a/packages/redux-devtools-ui/src/Editor/Editor.stories.tsx
+++ b/packages/redux-devtools-ui/src/Editor/Editor.stories.tsx
@@ -1,8 +1,7 @@
import React from 'react';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import Editor from './';
import { default as WithTabsComponent, WithTabsProps } from './WithTabs';
-import { EditorProps } from './Editor';
const value = `
var themes = [];
@@ -12,45 +11,46 @@ function getThemes() {
}
`;
-export default {
+const meta: Meta = {
title: 'Editor',
component: Editor,
};
-const Template: Story = (args) => ;
+export default meta;
-export const Default = Template.bind({});
-Default.args = {
- value,
- lineNumbers: true,
- lineWrapping: false,
- foldGutter: true,
- readOnly: false,
- autofocus: true,
-};
-Default.argTypes = {
- autofocus: { control: { disable: true } },
- mode: { control: { disable: true } },
- theme: { control: { disable: true } },
- onChange: { control: { disable: true } },
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ value,
+ lineNumbers: true,
+ lineWrapping: false,
+ foldGutter: true,
+ readOnly: false,
+ autofocus: true,
+ },
+ argTypes: {
+ autofocus: { control: { disable: true } },
+ mode: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ onChange: { control: { disable: true } },
+ },
};
-const WithTabsTemplate: Story = (args) => (
-
-);
-
-export const WithTabs = WithTabsTemplate.bind({});
-WithTabs.args = {
- lineNumbers: true,
- position: 'left',
+export const WithTabs: StoryObj = {
+ render: (args) => ,
+ args: {
+ lineNumbers: true,
+ position: 'left',
+ },
+ argTypes: {
+ value: { control: { disable: true } },
+ mode: { control: { disable: true } },
+ lineWrapping: { control: { disable: true } },
+ readOnly: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ foldGutter: { control: { disable: true } },
+ autofocus: { control: { disable: true } },
+ onChange: { control: { disable: true } },
+ } as any,
};
-WithTabs.argTypes = {
- value: { control: { disable: true } },
- mode: { control: { disable: true } },
- lineWrapping: { control: { disable: true } },
- readOnly: { control: { disable: true } },
- theme: { control: { disable: true } },
- foldGutter: { control: { disable: true } },
- autofocus: { control: { disable: true } },
- onChange: { control: { disable: true } },
-} as any;
diff --git a/packages/redux-devtools-ui/src/Form/Form.stories.tsx b/packages/redux-devtools-ui/src/Form/Form.stories.tsx
index 69b96dd4..82384eb5 100644
--- a/packages/redux-devtools-ui/src/Form/Form.stories.tsx
+++ b/packages/redux-devtools-ui/src/Form/Form.stories.tsx
@@ -1,26 +1,28 @@
import React from 'react';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import Form from './';
import { schema, uiSchema, formData } from './schema';
-import { Props as FormProps } from './Form';
-export default {
+const meta: Meta = {
title: 'Form',
component: Form,
};
-const Template: Story> = (args) => ;
+export default meta;
-export const Default = Template.bind({});
-Default.args = {
- formData,
- schema,
- uiSchema,
- submitText: 'Submit',
-};
-Default.argTypes = {
- children: { control: { disable: true } },
- primaryButton: { control: { disable: true } },
- noSubmit: { control: { disable: true } },
- widgets: { control: { disable: true } },
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ formData,
+ schema,
+ uiSchema,
+ submitText: 'Submit',
+ },
+ argTypes: {
+ children: { control: { disable: true } },
+ primaryButton: { control: { disable: true } },
+ noSubmit: { control: { disable: true } },
+ widgets: { control: { disable: true } },
+ },
};
diff --git a/packages/redux-devtools-ui/src/Notification/Notification.stories.tsx b/packages/redux-devtools-ui/src/Notification/Notification.stories.tsx
index 6acbd2bd..a90c2322 100644
--- a/packages/redux-devtools-ui/src/Notification/Notification.stories.tsx
+++ b/packages/redux-devtools-ui/src/Notification/Notification.stories.tsx
@@ -1,8 +1,7 @@
import React from 'react';
import styled from 'styled-components';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import Notification from './';
-import { NotificationProps } from './Notification';
const Container = styled.div`
display: flex;
@@ -12,23 +11,27 @@ const Container = styled.div`
align-items: center;
`;
-export default {
+const meta: Meta = {
title: 'Notification',
component: Notification,
};
-const Template: Story = (args) => (
-
-
-
-);
+export default meta;
-export const Default = Template.bind({});
-Default.args = {
- type: 'warning',
- children: 'Hello Notification',
-};
-Default.argTypes = {
- onClose: { control: { disable: true } },
- theme: { control: { disable: true } },
+type Story = StoryObj;
+
+export const Default: Story = {
+ render: (args) => (
+
+
+
+ ),
+ args: {
+ type: 'warning',
+ children: 'Hello Notification',
+ },
+ argTypes: {
+ onClose: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ },
};
diff --git a/packages/redux-devtools-ui/src/SegmentedControl/SegmentedControl.stories.tsx b/packages/redux-devtools-ui/src/SegmentedControl/SegmentedControl.stories.tsx
index 352808b4..f6bc7183 100644
--- a/packages/redux-devtools-ui/src/SegmentedControl/SegmentedControl.stories.tsx
+++ b/packages/redux-devtools-ui/src/SegmentedControl/SegmentedControl.stories.tsx
@@ -1,8 +1,7 @@
import React from 'react';
import styled from 'styled-components';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import SegmentedControl from './';
-import { SegmentedControlProps } from './SegmentedControl';
const Container = styled.div`
display: flex;
@@ -12,25 +11,28 @@ const Container = styled.div`
align-items: center;
`;
-export default {
+const meta: Meta = {
title: 'SegmentedControl',
component: SegmentedControl,
};
-// eslint-disable-next-line react/prop-types
-const Template: Story = ({ values, ...args }) => (
-
-
-
-);
+export default meta;
-export const Default = Template.bind({});
-Default.args = {
- selected: 'Button1',
- disabled: false,
-};
-Default.argTypes = {
- values: { control: { disable: true } },
- onClick: { control: { disable: true } },
- theme: { control: { disable: true } },
+type Story = StoryObj;
+
+export const Default: Story = {
+ render: ({ values, ...args }) => (
+
+
+
+ ),
+ args: {
+ selected: 'Button1',
+ disabled: false,
+ },
+ argTypes: {
+ values: { control: { disable: true } },
+ onClick: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ },
};
diff --git a/packages/redux-devtools-ui/src/Select/Select.stories.tsx b/packages/redux-devtools-ui/src/Select/Select.stories.tsx
index f3205b8d..16cd9c52 100644
--- a/packages/redux-devtools-ui/src/Select/Select.stories.tsx
+++ b/packages/redux-devtools-ui/src/Select/Select.stories.tsx
@@ -2,8 +2,7 @@ import React from 'react';
import styled from 'styled-components';
import Select from './';
import { options } from './options';
-import { Story } from '@storybook/react';
-import { SelectProps } from './Select';
+import { Meta, StoryObj } from '@storybook/react';
const Container = styled.div`
display: flex;
@@ -17,40 +16,38 @@ const Container = styled.div`
}
`;
-export default {
+const meta: Meta = {
title: 'Select',
component: Select,
};
-type TemplateArgs = Omit<
- SelectProps<{ value: string; label: string }, boolean>,
- 'value'
-> & { value: string };
+export default meta;
-// eslint-disable-next-line react/prop-types
-const Template: Story = ({ value, ...args }) => (
-
-
-);
+type Story = StoryObj;
-export const Default = Template.bind({});
-Default.args = {
- value: 'one',
- maxMenuHeight: 300,
- isClearable: false,
- isDisabled: false,
- isLoading: false,
- isMulti: false,
- isSearchable: true,
- menuPlacement: 'bottom',
-};
-Default.argTypes = {
- onChange: {
- action: 'selected',
+export const Default: Story = {
+ render: ({ value, ...args }) => (
+
+
+ ),
+ args: {
+ value: 'one',
+ maxMenuHeight: 300,
+ isClearable: false,
+ isDisabled: false,
+ isLoading: false,
+ isMulti: false,
+ isSearchable: true,
+ menuPlacement: 'bottom',
+ },
+ argTypes: {
+ onChange: {
+ action: 'selected',
+ },
},
};
diff --git a/packages/redux-devtools-ui/src/Slider/Slider.stories.tsx b/packages/redux-devtools-ui/src/Slider/Slider.stories.tsx
index 100c4b41..04876b96 100644
--- a/packages/redux-devtools-ui/src/Slider/Slider.stories.tsx
+++ b/packages/redux-devtools-ui/src/Slider/Slider.stories.tsx
@@ -1,8 +1,7 @@
import React from 'react';
import styled from 'styled-components';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import Slider from './';
-import { SliderProps } from './Slider';
const Container = styled.div`
display: flex;
@@ -12,28 +11,32 @@ const Container = styled.div`
align-items: center;
`;
-export default {
+const meta: Meta = {
title: 'Slider',
component: Slider,
};
-const Template: Story = (args) => (
-
-
-
-);
+export default meta;
-export const Default = Template.bind({});
-Default.args = {
- value: 0,
- min: 0,
- max: 100,
- label: 'Slider label',
- sublabel: '(sublabel}',
- withValue: false,
- disabled: false,
-};
-Default.argTypes = {
- onChange: { control: { disable: true } },
- theme: { control: { disable: true } },
+type Story = StoryObj;
+
+export const Default: Story = {
+ render: (args) => (
+
+
+
+ ),
+ args: {
+ value: 0,
+ min: 0,
+ max: 100,
+ label: 'Slider label',
+ sublabel: '(sublabel}',
+ withValue: false,
+ disabled: false,
+ },
+ argTypes: {
+ onChange: { control: { disable: true } },
+ theme: { control: { disable: true } },
+ },
};
diff --git a/packages/redux-devtools-ui/src/Tabs/Tabs.stories.tsx b/packages/redux-devtools-ui/src/Tabs/Tabs.stories.tsx
index 2ef8e78c..b8415d5d 100644
--- a/packages/redux-devtools-ui/src/Tabs/Tabs.stories.tsx
+++ b/packages/redux-devtools-ui/src/Tabs/Tabs.stories.tsx
@@ -1,6 +1,6 @@
import React from 'react';
import styled from 'styled-components';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import Tabs from './';
import { tabs, simple10Tabs } from './data';
import { TabsProps } from './Tabs';
@@ -13,41 +13,49 @@ const Container = styled.div`
align-items: center;
`;
-export default {
+const meta: Meta = {
title: 'Tabs',
component: Tabs,
};
-const Template: Story> = (args) => (
-
-
-
-);
+export default meta;
-export const Default = Template.bind({});
-Default.args = {
- tabs: simple10Tabs,
- selected: '2',
- main: true,
- collapsible: true,
- position: 'left',
-};
-Default.argTypes = {
- tabs: { control: { disable: true } },
- onClick: { control: { disable: true } },
+type Story = StoryObj;
+
+export const Default: Story = {
+ render: (args) => (
+
+
+
+ ),
+ args: {
+ tabs: simple10Tabs,
+ selected: '2',
+ main: true,
+ collapsible: true,
+ position: 'left',
+ },
+ argTypes: {
+ tabs: { control: { disable: true } },
+ onClick: { control: { disable: true } },
+ },
};
-export const WithContent = (
- Template as Story>
-).bind({});
-WithContent.args = {
- tabs,
- selected: 'Tab2',
- main: false,
- collapsible: false,
- position: 'left',
-};
-WithContent.argTypes = {
- tabs: { control: { disable: true } },
- onClick: { control: { disable: true } },
+export const WithContext: StoryObj> = {
+ render: (args) => (
+
+
+
+ ),
+ args: {
+ tabs,
+ selected: 'Tab2',
+ main: false,
+ collapsible: false,
+ position: 'left',
+ },
+ argTypes: {
+ tabs: { control: { disable: true } },
+ onClick: { control: { disable: true } },
+ },
};
diff --git a/packages/redux-devtools-ui/src/Toolbar/Toolbar.stories.tsx b/packages/redux-devtools-ui/src/Toolbar/Toolbar.stories.tsx
index fe16d3cf..38ff7009 100644
--- a/packages/redux-devtools-ui/src/Toolbar/Toolbar.stories.tsx
+++ b/packages/redux-devtools-ui/src/Toolbar/Toolbar.stories.tsx
@@ -1,6 +1,6 @@
import React, { ReactNode } from 'react';
import styled from 'styled-components';
-import { Story } from '@storybook/react';
+import { Meta, StoryObj } from '@storybook/react';
import { MdPlayArrow } from 'react-icons/md';
import { MdFiberManualRecord } from 'react-icons/md';
import { MdKeyboardArrowLeft } from 'react-icons/md';
@@ -34,11 +34,13 @@ const SliderContainer = styled.div`
height: 80px;
`;
-export default {
+const meta: Meta = {
title: 'Toolbar',
component: Toolbar,
};
+export default meta;
+
interface TemplateArgs {
borderPosition: BorderPosition;
title?: string;
@@ -48,78 +50,78 @@ interface TemplateArgs {
label: ReactNode;
}
-const Template: Story = ({
- // eslint-disable-next-line react/prop-types
- borderPosition,
- // eslint-disable-next-line react/prop-types
- title,
- // eslint-disable-next-line react/prop-types
- tooltipPosition,
- // eslint-disable-next-line react/prop-types
- disabled,
- // eslint-disable-next-line react/prop-types
- onClick,
- // eslint-disable-next-line react/prop-types
- label,
-}) => (
-
-
-
-
-
-
-
-
-
-
-);
-
-export const Default = Template.bind({});
-Default.args = {
- borderPosition: 'top',
- title: 'Hello Tooltip',
- tooltipPosition: 'top',
- disabled: false,
- label: 'Hello Button',
-};
-Default.argTypes = {
- borderPosition: {
- control: {
- type: 'select',
- options: ['top', 'bottom'],
- },
+export const Default: StoryObj = {
+ render: ({
+ // eslint-disable-next-line react/prop-types
+ borderPosition,
+ // eslint-disable-next-line react/prop-types
+ title,
+ // eslint-disable-next-line react/prop-types
+ tooltipPosition,
+ // eslint-disable-next-line react/prop-types
+ disabled,
+ // eslint-disable-next-line react/prop-types
+ onClick,
+ // eslint-disable-next-line react/prop-types
+ label,
+ }) => (
+
+
+
+
+
+
+
+
+
+
+ ),
+ args: {
+ borderPosition: 'top',
+ title: 'Hello Tooltip',
+ tooltipPosition: 'top',
+ disabled: false,
+ label: 'Hello Button',
},
- tooltipPosition: {
- control: {
- type: 'select',
- options: [
- 'top',
- 'bottom',
- 'left',
- 'right',
- 'bottom-left',
- 'bottom-right',
- 'top-left',
- 'top-right',
- ],
+ argTypes: {
+ borderPosition: {
+ control: {
+ type: 'select',
+ options: ['top', 'bottom'],
+ },
+ },
+ tooltipPosition: {
+ control: {
+ type: 'select',
+ options: [
+ 'top',
+ 'bottom',
+ 'left',
+ 'right',
+ 'bottom-left',
+ 'bottom-right',
+ 'top-left',
+ 'top-right',
+ ],
+ },
+ },
+ onClick: {
+ action: 'button clicked',
},
- },
- onClick: {
- action: 'button clicked',
},
};
@@ -136,96 +138,96 @@ interface TabsTemplateArgs {
position: Position;
}
-const TabsTemplate: Story = ({
- // eslint-disable-next-line react/prop-types
- title,
- // eslint-disable-next-line react/prop-types
- tooltipPosition,
- // eslint-disable-next-line react/prop-types
- disabled,
- // eslint-disable-next-line react/prop-types
- buttonOnClick,
- // eslint-disable-next-line react/prop-types
- label,
- // eslint-disable-next-line react/prop-types
- selected,
- // eslint-disable-next-line react/prop-types
- main,
- // eslint-disable-next-line react/prop-types
- tabsOnClick,
- // eslint-disable-next-line react/prop-types
- collapsible,
- // eslint-disable-next-line react/prop-types
- position,
- // eslint-disable-next-line react/prop-types
-}) => (
-
-
-
-
-
-
-
-);
-
-export const Tabs = TabsTemplate.bind({});
-Tabs.args = {
- title: 'Hello Tooltip',
- tooltipPosition: 'top',
- disabled: false,
- label: 'Hello Button',
- selected: '2',
- main: true,
- collapsible: true,
- position: 'center',
-};
-Tabs.argTypes = {
- tooltipPosition: {
- control: {
- type: 'select',
- options: [
- 'top',
- 'bottom',
- 'left',
- 'right',
- 'bottom-left',
- 'bottom-right',
- 'top-left',
- 'top-right',
- ],
+export const Tabs: StoryObj = {
+ render: ({
+ // eslint-disable-next-line react/prop-types
+ title,
+ // eslint-disable-next-line react/prop-types
+ tooltipPosition,
+ // eslint-disable-next-line react/prop-types
+ disabled,
+ // eslint-disable-next-line react/prop-types
+ buttonOnClick,
+ // eslint-disable-next-line react/prop-types
+ label,
+ // eslint-disable-next-line react/prop-types
+ selected,
+ // eslint-disable-next-line react/prop-types
+ main,
+ // eslint-disable-next-line react/prop-types
+ tabsOnClick,
+ // eslint-disable-next-line react/prop-types
+ collapsible,
+ // eslint-disable-next-line react/prop-types
+ position,
+ // eslint-disable-next-line react/prop-types
+ }) => (
+
+
+
+
+
+
+
+ ),
+ args: {
+ title: 'Hello Tooltip',
+ tooltipPosition: 'top',
+ disabled: false,
+ label: 'Hello Button',
+ selected: '2',
+ main: true,
+ collapsible: true,
+ position: 'center',
+ },
+ argTypes: {
+ tooltipPosition: {
+ control: {
+ type: 'select',
+ options: [
+ 'top',
+ 'bottom',
+ 'left',
+ 'right',
+ 'bottom-left',
+ 'bottom-right',
+ 'top-left',
+ 'top-right',
+ ],
+ },
},
- },
- buttonOnClick: {
- action: 'button clicked',
- },
- tabsOnClick: {
- action: 'tab selected',
- },
- position: {
- control: {
- type: 'select',
- options: ['left', 'right', 'center'],
+ buttonOnClick: {
+ action: 'button clicked',
+ },
+ tabsOnClick: {
+ action: 'tab selected',
+ },
+ position: {
+ control: {
+ type: 'select',
+ options: ['left', 'right', 'center'],
+ },
},
},
};
@@ -246,123 +248,123 @@ interface WithSliderTemplateArgs {
segmentedControlOnClick: (value: string) => void;
}
-const WithSliderTemplate: Story = ({
- // eslint-disable-next-line react/prop-types
- title,
- // eslint-disable-next-line react/prop-types
- tooltipPosition,
- // eslint-disable-next-line react/prop-types
- playOnClick,
- // eslint-disable-next-line react/prop-types
- value,
- // eslint-disable-next-line react/prop-types
- min,
- // eslint-disable-next-line react/prop-types
- max,
- // eslint-disable-next-line react/prop-types
- label,
- // eslint-disable-next-line react/prop-types
- withValue,
- // eslint-disable-next-line react/prop-types
- onChange,
- // eslint-disable-next-line react/prop-types
- previousStateOnClick,
- // eslint-disable-next-line react/prop-types
- nextStateOnClick,
- // eslint-disable-next-line react/prop-types
- selected,
- // eslint-disable-next-line react/prop-types
- segmentedControlOnClick,
-}) => (
-
-
-
-
-
-
-
-
-
-
-
-);
-
-export const WithSlider = WithSliderTemplate.bind({});
-WithSlider.args = {
- title: 'Play',
- tooltipPosition: 'top',
- value: 80,
- min: 0,
- max: 100,
- label: 'Slider label',
- withValue: false,
- selected: 'live',
-};
-WithSlider.argTypes = {
- tooltipPosition: {
- control: {
- type: 'select',
- options: [
- 'top',
- 'bottom',
- 'left',
- 'right',
- 'bottom-left',
- 'bottom-right',
- 'top-left',
- 'top-right',
- ],
+export const WithSlider: StoryObj = {
+ render: ({
+ // eslint-disable-next-line react/prop-types
+ title,
+ // eslint-disable-next-line react/prop-types
+ tooltipPosition,
+ // eslint-disable-next-line react/prop-types
+ playOnClick,
+ // eslint-disable-next-line react/prop-types
+ value,
+ // eslint-disable-next-line react/prop-types
+ min,
+ // eslint-disable-next-line react/prop-types
+ max,
+ // eslint-disable-next-line react/prop-types
+ label,
+ // eslint-disable-next-line react/prop-types
+ withValue,
+ // eslint-disable-next-line react/prop-types
+ onChange,
+ // eslint-disable-next-line react/prop-types
+ previousStateOnClick,
+ // eslint-disable-next-line react/prop-types
+ nextStateOnClick,
+ // eslint-disable-next-line react/prop-types
+ selected,
+ // eslint-disable-next-line react/prop-types
+ segmentedControlOnClick,
+ }) => (
+
+
+
+
+
+
+
+
+
+
+
+ ),
+ args: {
+ title: 'Play',
+ tooltipPosition: 'top',
+ value: 80,
+ min: 0,
+ max: 100,
+ label: 'Slider label',
+ withValue: false,
+ selected: 'live',
+ },
+ argTypes: {
+ tooltipPosition: {
+ control: {
+ type: 'select',
+ options: [
+ 'top',
+ 'bottom',
+ 'left',
+ 'right',
+ 'bottom-left',
+ 'bottom-right',
+ 'top-left',
+ 'top-right',
+ ],
+ },
+ },
+ playOnClick: {
+ action: 'button clicked',
+ },
+ onChange: {
+ action: 'slider changed',
+ },
+ previousStateOnClick: {
+ action: 'previous state clicked',
+ },
+ nextStateOnClick: {
+ action: 'next state clicked',
+ },
+ selected: {
+ control: {
+ type: 'select',
+ options: ['live', '1x'],
+ },
+ },
+ segmentedControlOnClick: {
+ action: 'button selected',
},
},
- playOnClick: {
- action: 'button clicked',
- },
- onChange: {
- action: 'slider changed',
- },
- previousStateOnClick: {
- action: 'previous state clicked',
- },
- nextStateOnClick: {
- action: 'next state clicked',
- },
- selected: {
- control: {
- type: 'select',
- options: ['live', '1x'],
- },
- },
- segmentedControlOnClick: {
- action: 'button selected',
- },
};
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ca25eed1..e7bea644 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -235,7 +235,7 @@ importers:
version: 3.3.2(webpack@5.76.3)
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -470,7 +470,7 @@ importers:
version: 4.4.1
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -552,7 +552,7 @@ importers:
version: 4.4.1
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -646,7 +646,7 @@ importers:
version: 4.4.1
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -843,7 +843,7 @@ importers:
version: 0.34.1(rollup@3.20.2)(typescript@4.9.5)
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
tslib:
specifier: ^2.5.0
version: 2.5.0
@@ -1028,7 +1028,7 @@ importers:
version: 4.4.1
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -1236,7 +1236,7 @@ importers:
version: 5.3.9(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
ts-node:
specifier: ^10.9.1
version: 10.9.1(@types/node@18.15.10)(typescript@4.9.5)
@@ -1481,7 +1481,7 @@ importers:
version: 6.3.3
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -1869,7 +1869,7 @@ importers:
version: 4.4.1
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -2132,7 +2132,7 @@ importers:
version: 4.4.1
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -2323,7 +2323,7 @@ importers:
version: 7.8.0
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -2629,7 +2629,7 @@ importers:
version: 4.4.1
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -2835,7 +2835,7 @@ importers:
version: 4.4.1
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
@@ -3125,17 +3125,20 @@ importers:
specifier: ^7.21.0
version: 7.21.0(@babel/core@7.21.3)
'@storybook/addon-essentials':
- specifier: ^6.5.16
- version: 6.5.16(@babel/core@7.21.3)(@storybook/builder-webpack5@6.5.16)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3)
- '@storybook/builder-webpack5':
- specifier: ^6.5.16
- version: 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/manager-webpack5':
- specifier: ^6.5.16
- version: 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ specifier: ^7.0.2
+ version: 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-interactions':
+ specifier: ^7.0.2
+ version: 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-links':
+ specifier: ^7.0.2
+ version: 7.0.2(react-dom@18.2.0)(react@18.2.0)
'@storybook/react':
- specifier: ^6.5.16
- version: 6.5.16(@babel/core@7.21.3)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(require-from-string@2.0.2)(typescript@4.9.5)
+ specifier: ^7.0.2
+ version: 7.0.2(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@storybook/react-webpack5':
+ specifier: ^7.0.2
+ version: 7.0.2(@babel/core@7.21.3)(esbuild@0.17.15)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@testing-library/dom':
specifier: ^9.2.0
version: 9.2.0
@@ -3202,12 +3205,12 @@ importers:
react-is:
specifier: ^18.2.0
version: 18.2.0
- require-from-string:
- specifier: ^2.0.2
- version: 2.0.2
rimraf:
specifier: ^4.4.1
version: 4.4.1
+ storybook:
+ specifier: ^7.0.2
+ version: 7.0.2
styled-components:
specifier: ^5.3.9
version: 5.3.9(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
@@ -3228,13 +3231,13 @@ importers:
version: 1.10.0
ts-jest:
specifier: ^29.0.5
- version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5)
typescript:
specifier: ~4.9.5
version: 4.9.5
webpack:
specifier: ^5.76.3
- version: 5.76.3(webpack-cli@5.0.1)
+ version: 5.76.3(esbuild@0.17.15)
packages/redux-devtools-utils:
dependencies:
@@ -3727,6 +3730,13 @@ packages:
engines: {node: '>=14'}
dev: false
+ /@aw-web-design/x-default-browser@1.4.88:
+ resolution: {integrity: sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==}
+ hasBin: true
+ dependencies:
+ default-browser-id: 3.0.0
+ dev: true
+
/@babel/cli@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-xi7CxyS8XjSyiwUGCfwf+brtJxjW1/ZTcBUkP10xawIEXLX5HzLn+3aXkgxozcP2UhRhtKTmQurw9Uaes7jZrA==}
engines: {node: '>=6.9.0'}
@@ -3758,28 +3768,9 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core@7.12.9:
- resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
+ /@babel/compat-data@7.21.4:
+ resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.21.3
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helpers': 7.21.0
- '@babel/parser': 7.21.3
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.3(supports-color@5.5.0)
- '@babel/types': 7.21.3
- convert-source-map: 1.9.0
- debug: 4.3.4(supports-color@5.5.0)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- lodash: 4.17.21
- resolve: 1.22.1
- semver: 5.7.1
- source-map: 0.5.7
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/core@7.21.3:
@@ -3789,13 +3780,13 @@ packages:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
'@babel/generator': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.3)
'@babel/helper-module-transforms': 7.21.2
'@babel/helpers': 7.21.0
'@babel/parser': 7.21.3
'@babel/template': 7.20.7
'@babel/traverse': 7.21.3(supports-color@5.5.0)
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
convert-source-map: 1.9.0
debug: 4.3.4(supports-color@5.5.0)
gensync: 1.0.0-beta.2
@@ -3823,7 +3814,7 @@ packages:
resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
'@jridgewell/gen-mapping': 0.3.2
'@jridgewell/trace-mapping': 0.3.17
jsesc: 2.5.2
@@ -3832,14 +3823,14 @@ packages:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
/@babel/helper-builder-binary-assignment-operator-visitor@7.18.9:
resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.3):
@@ -3848,7 +3839,21 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.21.0
+ '@babel/compat-data': 7.21.4
+ '@babel/core': 7.21.3
+ '@babel/helper-validator-option': 7.21.0
+ browserslist: 4.21.5
+ lru-cache: 5.1.1
+ semver: 6.3.0
+ dev: true
+
+ /@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.3):
+ resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.21.4
'@babel/core': 7.21.3
'@babel/helper-validator-option': 7.21.0
browserslist: 4.21.5
@@ -3886,31 +3891,13 @@ packages:
regexpu-core: 5.3.2
dev: true
- /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/traverse': 7.21.3(supports-color@5.5.0)
- debug: 4.3.4(supports-color@5.5.0)
- lodash.debounce: 4.0.8
- resolve: 1.22.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4(supports-color@5.5.0)
lodash.debounce: 4.0.8
@@ -3928,7 +3915,7 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@babel/helper-function-name@7.21.0:
@@ -3936,26 +3923,26 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
/@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
/@babel/helper-member-expression-to-functions@7.21.0:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
/@babel/helper-module-transforms@7.21.2:
resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
@@ -3977,11 +3964,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
- dev: true
-
- /@babel/helper-plugin-utils@7.10.4:
- resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
+ '@babel/types': 7.21.4
dev: true
/@babel/helper-plugin-utils@7.20.2:
@@ -3999,7 +3982,7 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -4013,7 +3996,7 @@ packages:
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
'@babel/traverse': 7.21.3(supports-color@5.5.0)
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -4022,21 +4005,21 @@ packages:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
/@babel/helper-string-parser@7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
@@ -4058,7 +4041,7 @@ packages:
'@babel/helper-function-name': 7.21.0
'@babel/template': 7.20.7
'@babel/traverse': 7.21.3(supports-color@5.5.0)
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -4153,22 +4136,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.21.3)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
@@ -4180,17 +4147,6 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
dev: true
- /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.21.3):
- resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.21.3)
- dev: true
-
/@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
@@ -4246,26 +4202,15 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
dev: true
- /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9):
- resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9)
- dev: true
-
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.21.0
+ '@babel/compat-data': 7.21.4
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
@@ -4370,16 +4315,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
@@ -4389,16 +4324,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
@@ -4408,8 +4333,8 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
+ /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.21.3):
+ resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4446,15 +4371,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9):
- resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
@@ -4492,15 +4408,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9):
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -4610,7 +4517,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.3)
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -4683,7 +4590,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.21.3)
dev: true
/@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.3):
@@ -4703,7 +4610,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.3)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
@@ -4817,16 +4724,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.12.9):
- resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
@@ -4878,7 +4775,7 @@ packages:
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.3)
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.3):
@@ -5111,8 +5008,94 @@ packages:
- supports-color
dev: true
- /@babel/preset-flow@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==}
+ /@babel/preset-env@7.21.4(@babel/core@7.21.3):
+ resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.4
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.3)
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.3)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.3)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.21.3)
+ '@babel/types': 7.21.4
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3)
+ core-js-compat: 3.29.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/preset-flow@7.21.4(@babel/core@7.21.3):
+ resolution: {integrity: sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5132,7 +5115,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
esutils: 2.0.3
dev: true
@@ -5208,7 +5191,7 @@ packages:
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.21.3
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
@@ -5222,6 +5205,14 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
+ /@babel/types@7.21.4:
+ resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.19.4
+ '@babel/helper-validator-identifier': 7.19.1
+ to-fast-properties: 2.0.0
+
/@base2/pretty-print-object@1.0.1:
resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
dev: true
@@ -5235,7 +5226,7 @@ packages:
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/descendant': 3.0.14(react@18.2.0)
'@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.3)(react@18.2.0)
@@ -5253,7 +5244,7 @@ packages:
resolution: {integrity: sha512-8jTtua9Yx4PoF50z6eZm/BB8ZCNt/BiCxS0dZeeelp6zlI5G/NwIMlkBfCu4WmL/VLWYj7AxM9aUUdh2ogh5QQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
@@ -5271,7 +5262,7 @@ packages:
resolution: {integrity: sha512-oydqUEWqgDjAZ5+KPXwthb5qcASlICytGNSAZz9JgE90ab+0SkBKGY2KhJ2epII1EPs46eJUjpoknCal9DBI7g==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/image': 2.0.15(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
@@ -5285,7 +5276,7 @@ packages:
resolution: {integrity: sha512-p3eQQrHQBkRB69xOmNyBJqEdfCrMt+e0eOH+Pm/DjFWfIVIbnIaFbmDCeWClqlLa21Ypc6h1hR9jEmvg8kmOog==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
@@ -5304,7 +5295,7 @@ packages:
resolution: {integrity: sha512-ZVDK5fQlnNMckxrhWtywdthWPz/QIJGYhN0t8Xgk77DaZVQ9fX6gTjPtR4YH6C77dMCamSVOVPh7u4dA3HgbGg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
@@ -5318,7 +5309,7 @@ packages:
resolution: {integrity: sha512-fFd/WAdRNVY/WOSQv4skpy0WeVhhI0f7dTY1Sm0jVl0KLmuP/GnpsWtKtqWjNcV00K963EXDyhlk6+9oxbP4gw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/shared-utils': 2.0.5
'@chakra-ui/system': 2.5.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0)
@@ -5329,7 +5320,7 @@ packages:
resolution: {integrity: sha512-KoONd4BMyjJC3dwpqZrc/st7yV2yIIB25i3LQLGdfIl6MolOxpGC9RU57rxoptn2+j2bZULZ0GpvQzVOS0hIdA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
@@ -5349,7 +5340,7 @@ packages:
/@chakra-ui/clickable@2.0.14(react@18.2.0):
resolution: {integrity: sha512-jfsM1qaD74ZykLHmvmsKRhDyokLUxEfL8Il1VoZMNX5RBI0xW/56vKpLTFF/v/+vLPLS+Te2cZdD4+2O+G6ulA==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
@@ -5360,7 +5351,7 @@ packages:
resolution: {integrity: sha512-05YPXk456t1Xa3KpqTrvm+7smx+95dmaPiwjiBN3p7LHUQVHJd8ZXSDB0V+WKi419k3cVQeJUdU/azDO2f40sw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/system': 2.5.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0)
@@ -5370,7 +5361,7 @@ packages:
/@chakra-ui/color-mode@2.1.12(react@18.2.0):
resolution: {integrity: sha512-sYyfJGDoJSLYO+V2hxV9r033qhte5Nw/wAn5yRGGZnEEN1dKPEdWQ3XZvglWSDTNd0w9zkoH2w6vP4FBBYb/iw==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
react: 18.2.0
@@ -5380,7 +5371,7 @@ packages:
resolution: {integrity: sha512-FEyrU4crxati80KUF/+1Z1CU3eZK6Sa0Yv7Z/ydtz9/tvGblXW9NFanoomXAOvcIFLbaLQPPATm9Gmpr7VG05A==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/system': 2.5.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0)
react: 18.2.0
@@ -5389,7 +5380,7 @@ packages:
/@chakra-ui/counter@2.0.14(react@18.2.0):
resolution: {integrity: sha512-KxcSRfUbb94dP77xTip2myoE7P2HQQN4V5fRJmNAGbzcyLciJ+aDylUU/UxgNcEjawUp6Q242NbWb1TSbKoqog==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/number-utils': 2.0.7
'@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
@@ -5401,7 +5392,7 @@ packages:
resolution: {integrity: sha512-7vNNCZnidCv+ciifoMpBmh1swqHJFujWc0YmPCx02Ah+rami+fFeBhCMVXH6o6buvxy28EgPE9ubcJ+FsPnJYw==}
peerDependencies:
'@emotion/react': '>=10.0.35'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@emotion/react': 11.10.6(@types/react@18.0.29)(react@18.2.0)
react: 18.2.0
@@ -5410,7 +5401,7 @@ packages:
/@chakra-ui/descendant@3.0.14(react@18.2.0):
resolution: {integrity: sha512-+Ahvp9H4HMpfScIv9w1vaecGz7qWAaK1YFHHolz/SIsGLaLGlbdp+5UNabQC7L6TUnzzJDQDxzwif78rTD7ang==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
@@ -5425,7 +5416,7 @@ packages:
resolution: {integrity: sha512-oYuXbHnggxSYJN7P9Pn0Scs9tPC91no4z1y58Oe+ILoJKZ+bFAEHtL7FEISDNJxw++MEukeFu7GU1hVqmdLsKQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
@@ -5447,7 +5438,7 @@ packages:
/@chakra-ui/focus-lock@2.0.16(@types/react@18.0.29)(react@18.2.0):
resolution: {integrity: sha512-UuAdGCPVrCa1lecoAvpOQD7JFT7a9RdmhKWhFt5ioIcekSLJcerdLHuuL3w0qz//8kd1/SOt7oP0aJqdAJQrCw==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/dom-utils': 2.0.6
react: 18.2.0
@@ -5460,7 +5451,7 @@ packages:
resolution: {integrity: sha512-I0a0jG01IAtRPccOXSNugyRdUAe8Dy40ctqedZvznMweOXzbMCF1m+sHPLdWeWC/VI13VoAispdPY0/zHOdjsQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
@@ -5474,7 +5465,7 @@ packages:
/@chakra-ui/hooks@2.1.6(react@18.2.0):
resolution: {integrity: sha512-oMSOeoOF6/UpwTVlDFHSROAA4hPY8WgJ0erdHs1ZkuwAwHv7UzjDkvrb6xYzAAH9qHoFzc5RIBm6jVoh3LCc+Q==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-utils': 2.0.12(react@18.2.0)
'@chakra-ui/utils': 2.0.15
@@ -5487,7 +5478,7 @@ packages:
resolution: {integrity: sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/shared-utils': 2.0.5
'@chakra-ui/system': 2.5.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0)
@@ -5498,7 +5489,7 @@ packages:
resolution: {integrity: sha512-w2rElXtI3FHXuGpMCsSklus+pO1Pl2LWDwsCGdpBQUvGFbnHfl7MftQgTlaGHeD5OS95Pxva39hKrA2VklKHiQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
@@ -5510,7 +5501,7 @@ packages:
resolution: {integrity: sha512-AIWjjg6MgcOtlvKmVoZfPPfgF+sBSWL3Zq2HSCAMvS6h7jfxz/Xv0UTFGPk5F4Wt0YHT7qMySg0Jsm0b78HZJg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/object-utils': 2.0.8
@@ -5525,7 +5516,7 @@ packages:
resolution: {integrity: sha512-IOUReBf0e+q4YN1jqWByeXEnZ7cJIl+3qU1pIvfEEsOvUlSWqrmTmsb7HO3uwMAbmGTGEOgwAUmfSiwO0wBwxg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/breakpoint-utils': 2.0.8
'@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.3)(react@18.2.0)
@@ -5544,7 +5535,7 @@ packages:
/@chakra-ui/live-region@2.0.13(react@18.2.0):
resolution: {integrity: sha512-Ja+Slk6ZkxSA5oJzU2VuGU7TpZpbMb/4P4OUhIf2D30ctmIeXkxTWw1Bs1nGJAVtAPcGS5sKA+zb89i8g+0cTQ==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5553,7 +5544,7 @@ packages:
resolution: {integrity: sha512-8pSLDf3oxxhFrhd40rs7vSeIBfvOmIKHA7DJlGUC/y+9irD24ZwgmCtFnn+y3gI47hTJsopbSX+wb8nr7XPswA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/breakpoint-utils': 2.0.8
'@chakra-ui/react-env': 3.0.0(react@18.2.0)
@@ -5567,7 +5558,7 @@ packages:
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/clickable': 2.0.14(react@18.2.0)
'@chakra-ui/descendant': 3.0.14(react@18.2.0)
@@ -5594,8 +5585,8 @@ packages:
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
- react-dom: '>=18 || 18'
+ react: '>=18'
+ react-dom: '>=18'
dependencies:
'@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/focus-lock': 2.0.16(@types/react@18.0.29)(react@18.2.0)
@@ -5619,7 +5610,7 @@ packages:
resolution: {integrity: sha512-HDaITvtMEqOauOrCPsARDxKD9PSHmhWywpcyCSOX0lMe4xx2aaGhU0QQFhsJsykj8Er6pytMv6t0KZksdDv3YA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/counter': 2.0.14(react@18.2.0)
'@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.3)(react@18.2.0)
@@ -5649,7 +5640,7 @@ packages:
resolution: {integrity: sha512-IHVmerrtHN8F+jRB3W1HnMir1S1TUCWhI7qDInxqPtoRffHt6mzZgLZ0izx8p1fD4HkW4c1d4/ZLEz9uH9bBRg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/descendant': 3.0.14(react@18.2.0)
'@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
@@ -5666,7 +5657,7 @@ packages:
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/lazy-utils': 2.0.5
@@ -5687,7 +5678,7 @@ packages:
/@chakra-ui/popper@3.0.13(react@18.2.0):
resolution: {integrity: sha512-FwtmYz80Ju8oK3Z1HQfisUE7JIMmDsCQsRBu6XuJ3TFQnBHit73yjZmxKjuRJ4JgyT4WBnZoTF3ATbRKSagBeg==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
@@ -5698,8 +5689,8 @@ packages:
/@chakra-ui/portal@2.0.16(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-bVID0qbQ0l4xq38LdqAN4EKD4/uFkDnXzFwOlviC9sl0dNhzICDb1ltuH/Adl1d2HTMqyN60O3GO58eHy7plnQ==}
peerDependencies:
- react: '>=18 || 18'
- react-dom: '>=18 || 18'
+ react: '>=18'
+ react-dom: '>=18'
dependencies:
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
'@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
@@ -5711,7 +5702,7 @@ packages:
resolution: {integrity: sha512-hHh5Ysv4z6bK+j2GJbi/FT9CVyto2PtNUNwBmr3oNMVsoOUMoRjczfXvvYqp0EHr9PCpxqrq7sRwgQXUzhbDSw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
'@chakra-ui/system': 2.5.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0)
@@ -5723,8 +5714,8 @@ packages:
peerDependencies:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
- react: '>=18 || 18'
- react-dom: '>=18 || 18'
+ react: '>=18'
+ react-dom: '>=18'
dependencies:
'@chakra-ui/css-reset': 2.1.0(@emotion/react@11.10.6)(react@18.2.0)
'@chakra-ui/portal': 2.0.16(react-dom@18.2.0)(react@18.2.0)
@@ -5741,7 +5732,7 @@ packages:
resolution: {integrity: sha512-RIkKZPzXMIF7riKZ6r0ybHSXSif/uwhIcdatgE350Ev/gwhkQGa0oSGsflWKtFvLPbO6RW7R24PAdTBOxCR78w==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
@@ -5756,7 +5747,7 @@ packages:
/@chakra-ui/react-children-utils@2.0.6(react@18.2.0):
resolution: {integrity: sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5764,7 +5755,7 @@ packages:
/@chakra-ui/react-context@2.0.8(react@18.2.0):
resolution: {integrity: sha512-tRTKdn6lCTXM6WPjSokAAKCw2ioih7Eg8cNgaYRSwKBck8nkz9YqxgIIEj3dJD7MGtpl24S/SNI98iRWkRwR/A==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5772,7 +5763,7 @@ packages:
/@chakra-ui/react-env@3.0.0(react@18.2.0):
resolution: {integrity: sha512-tfMRO2v508HQWAqSADFrwZgR9oU10qC97oV6zGbjHh9ALP0/IcFR+Bi71KRTveDTm85fMeAzZYGj57P3Dsipkw==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
react: 18.2.0
@@ -5781,7 +5772,7 @@ packages:
/@chakra-ui/react-types@2.0.7(react@18.2.0):
resolution: {integrity: sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5789,7 +5780,7 @@ packages:
/@chakra-ui/react-use-animation-state@2.0.8(react@18.2.0):
resolution: {integrity: sha512-xv9zSF2Rd1mHWQ+m5DLBWeh4atF8qrNvsOs3MNrvxKYBS3f79N3pqcQGrWAEvirXWXfiCeje2VAkEggqFRIo+Q==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/dom-utils': 2.0.6
'@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
@@ -5799,7 +5790,7 @@ packages:
/@chakra-ui/react-use-callback-ref@2.0.7(react@18.2.0):
resolution: {integrity: sha512-YjT76nTpfHAK5NxplAlZsQwNju5KmQExnqsWNPFeOR6vvbC34+iPSTr+r91i1Hdy7gBSbevsOsd5Wm6RN3GuMw==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5807,7 +5798,7 @@ packages:
/@chakra-ui/react-use-controllable-state@2.0.8(react@18.2.0):
resolution: {integrity: sha512-F7rdCbLEmRjwwODqWZ3y+mKgSSHPcLQxeUygwk1BkZPXbKkJJKymOIjIynil2cbH7ku3hcSIWRvuhpCcfQWJ7Q==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
react: 18.2.0
@@ -5816,7 +5807,7 @@ packages:
/@chakra-ui/react-use-disclosure@2.0.8(react@18.2.0):
resolution: {integrity: sha512-2ir/mHe1YND40e+FyLHnDsnDsBQPwzKDLzfe9GZri7y31oU83JSbHdlAXAhp3bpjohslwavtRCp+S/zRxfO9aQ==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
react: 18.2.0
@@ -5825,7 +5816,7 @@ packages:
/@chakra-ui/react-use-event-listener@2.0.7(react@18.2.0):
resolution: {integrity: sha512-4wvpx4yudIO3B31pOrXuTHDErawmwiXnvAN7gLEOVREi16+YGNcFnRJ5X5nRrmB7j2MDUtsEDpRBFfw5Z9xQ5g==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
react: 18.2.0
@@ -5834,7 +5825,7 @@ packages:
/@chakra-ui/react-use-focus-effect@2.0.9(react@18.2.0):
resolution: {integrity: sha512-20nfNkpbVwyb41q9wxp8c4jmVp6TUGAPE3uFTDpiGcIOyPW5aecQtPmTXPMJH+2aa8Nu1wyoT1btxO+UYiQM3g==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/dom-utils': 2.0.6
'@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
@@ -5846,7 +5837,7 @@ packages:
/@chakra-ui/react-use-focus-on-pointer-down@2.0.6(react@18.2.0):
resolution: {integrity: sha512-OigXiLRVySn3tyVqJ/rn57WGuukW8TQe8fJYiLwXbcNyAMuYYounvRxvCy2b53sQ7QIZamza0N0jhirbH5FNoQ==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
react: 18.2.0
@@ -5855,7 +5846,7 @@ packages:
/@chakra-ui/react-use-interval@2.0.5(react@18.2.0):
resolution: {integrity: sha512-1nbdwMi2K87V6p5f5AseOKif2CkldLaJlq1TOqaPRwb7v3aU9rltBtYdf+fIyuHSToNJUV6wd9budCFdLCl3Fg==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
react: 18.2.0
@@ -5864,7 +5855,7 @@ packages:
/@chakra-ui/react-use-latest-ref@2.0.5(react@18.2.0):
resolution: {integrity: sha512-3mIuFzMyIo3Ok/D8uhV9voVg7KkrYVO/pwVvNPJOHsDQqCA6DpYE4WDsrIx+fVcwad3Ta7SupexR5PoI+kq6QQ==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5872,7 +5863,7 @@ packages:
/@chakra-ui/react-use-merge-refs@2.0.7(react@18.2.0):
resolution: {integrity: sha512-zds4Uhsc+AMzdH8JDDkLVet9baUBgtOjPbhC5r3A0ZXjZvGhCztFAVE3aExYiVoMPoHLKbLcqvCWE6ioFKz1lw==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5880,7 +5871,7 @@ packages:
/@chakra-ui/react-use-outside-click@2.0.7(react@18.2.0):
resolution: {integrity: sha512-MsAuGLkwYNxNJ5rb8lYNvXApXxYMnJ3MzqBpQj1kh5qP/+JSla9XMjE/P94ub4fSEttmNSqs43SmPPrmPuihsQ==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
react: 18.2.0
@@ -5889,7 +5880,7 @@ packages:
/@chakra-ui/react-use-pan-event@2.0.9(react@18.2.0):
resolution: {integrity: sha512-xu35QXkiyrgsHUOnctl+SwNcwf9Rl62uYE5y8soKOZdBm8E+FvZIt2hxUzK1EoekbJCMzEZ0Yv1ZQCssVkSLaQ==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/event-utils': 2.0.8
'@chakra-ui/react-use-latest-ref': 2.0.5(react@18.2.0)
@@ -5900,7 +5891,7 @@ packages:
/@chakra-ui/react-use-previous@2.0.5(react@18.2.0):
resolution: {integrity: sha512-BIZgjycPE4Xr+MkhKe0h67uHXzQQkBX/u5rYPd65iMGdX1bCkbE0oorZNfOHLKdTmnEb4oVsNvfN6Rfr+Mnbxw==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5908,7 +5899,7 @@ packages:
/@chakra-ui/react-use-safe-layout-effect@2.0.5(react@18.2.0):
resolution: {integrity: sha512-MwAQBz3VxoeFLaesaSEN87reVNVbjcQBDex2WGexAg6hUB6n4gc1OWYH/iXp4tzp4kuggBNhEHkk9BMYXWfhJQ==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5916,7 +5907,7 @@ packages:
/@chakra-ui/react-use-size@2.0.10(react@18.2.0):
resolution: {integrity: sha512-fdIkH14GDnKQrtQfxX8N3gxbXRPXEl67Y3zeD9z4bKKcQUAYIMqs0MsPZY+FMpGQw8QqafM44nXfL038aIrC5w==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@zag-js/element-size': 0.3.2
react: 18.2.0
@@ -5925,7 +5916,7 @@ packages:
/@chakra-ui/react-use-timeout@2.0.5(react@18.2.0):
resolution: {integrity: sha512-QqmB+jVphh3h/CS60PieorpY7UqSPkrQCB7f7F+i9vwwIjtP8fxVHMmkb64K7VlzQiMPzv12nlID5dqkzlv0mw==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
react: 18.2.0
@@ -5934,7 +5925,7 @@ packages:
/@chakra-ui/react-use-update-effect@2.0.7(react@18.2.0):
resolution: {integrity: sha512-vBM2bmmM83ZdDtasWv3PXPznpTUd+FvqBC8J8rxoRmvdMEfrxTiQRBJhiGHLpS9BPLLPQlosN6KdFU97csB6zg==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
react: 18.2.0
dev: false
@@ -5942,7 +5933,7 @@ packages:
/@chakra-ui/react-utils@2.0.12(react@18.2.0):
resolution: {integrity: sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw==}
peerDependencies:
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/utils': 2.0.15
react: 18.2.0
@@ -5954,8 +5945,8 @@ packages:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
- react-dom: '>=18 || 18'
+ react: '>=18'
+ react-dom: '>=18'
dependencies:
'@chakra-ui/accordion': 2.1.10(@chakra-ui/system@2.5.3)(framer-motion@10.9.1)(react@18.2.0)
'@chakra-ui/alert': 2.0.18(@chakra-ui/system@2.5.3)(react@18.2.0)
@@ -6021,7 +6012,7 @@ packages:
resolution: {integrity: sha512-eAlFh+JhwtJ17OrB6fO6gEAGOMH18ERNrXLqWbYLrs674Le7xuREgtuAYDoxUzvYXYYTTdOJtVbcHGriI3o6rA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
@@ -6037,7 +6028,7 @@ packages:
resolution: {integrity: sha512-1jXtVKcl/jpbrJlc/TyMsFyI651GTXY5ma30kWyTXoby2E+cxbV6OR8GB/NMZdGxbQBax8/VdtYVjI0n+OBqWA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/media-query': 3.2.12(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/react-use-previous': 2.0.5(react@18.2.0)
@@ -6050,7 +6041,7 @@ packages:
resolution: {integrity: sha512-/eyRUXLla+ZdBUPXpakE3SAS2JS8mIJR6qcUYiPVKSpRAi6tMyYeQijAXn2QC1AUVd2JrG8Pz+1Jy7Po3uA7cA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/number-utils': 2.0.7
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
@@ -6070,7 +6061,7 @@ packages:
resolution: {integrity: sha512-T1/aSkVpUIuiYyrjfn1+LsQEG7Onbi1UE9ccS/evgf61Dzy4GgTXQUnDuWFSgpV58owqirqOu6jn/9eCwDlzlg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/shared-utils': 2.0.5
'@chakra-ui/system': 2.5.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0)
@@ -6081,7 +6072,7 @@ packages:
resolution: {integrity: sha512-wKyfBqhVlIs9bkSerUc6F9KJMw0yTIEKArW7dejWwzToCLPr47u+CtYO6jlJHV6lRvkhi4K4Qc6pyvtJxZ3VpA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
@@ -6103,7 +6094,7 @@ packages:
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/checkbox': 2.2.12(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
@@ -6117,7 +6108,7 @@ packages:
peerDependencies:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/color-mode': 2.1.12(react@18.2.0)
'@chakra-ui/object-utils': 2.0.8
@@ -6135,7 +6126,7 @@ packages:
resolution: {integrity: sha512-OScheTEp1LOYvTki2NFwnAYvac8siAhW9BI5RKm5f5ORL2gVJo4I72RUqE0aKe1oboxgm7CYt5afT5PS5cG61A==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
@@ -6147,7 +6138,7 @@ packages:
resolution: {integrity: sha512-Yf8e0kRvaGM6jfkJum0aInQ0U3ZlCafmrYYni2lqjcTtThqu+Yosmo3iYlnullXxCw5MVznfrkb9ySvgQowuYg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/clickable': 2.0.14(react@18.2.0)
'@chakra-ui/descendant': 3.0.14(react@18.2.0)
@@ -6166,7 +6157,7 @@ packages:
resolution: {integrity: sha512-7BKxsQhITx4TXWkf0BGovW5vzxwYSAm5HsenksDuwNfioJwRPhfmN6Vs5KxYQezoyJLdU/wD0DIYNpMsOPfz3w==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/react-context': 2.0.8(react@18.2.0)
@@ -6178,7 +6169,7 @@ packages:
resolution: {integrity: sha512-adJk+qVGsFeJDvfn56CcJKKse8k7oMGlODrmpnpTdF+xvlsiTM+1GfaJvgNSpHHuQFdz/A0z1uJtfGefk0G2ZA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
@@ -6222,8 +6213,8 @@ packages:
peerDependencies:
'@chakra-ui/system': 2.5.3
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
- react-dom: '>=18 || 18'
+ react: '>=18'
+ react-dom: '>=18'
dependencies:
'@chakra-ui/alert': 2.0.18(@chakra-ui/system@2.5.3)(react@18.2.0)
'@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.3)(react@18.2.0)
@@ -6245,8 +6236,8 @@ packages:
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
- react-dom: '>=18 || 18'
+ react: '>=18'
+ react-dom: '>=18'
dependencies:
'@chakra-ui/popper': 3.0.13(react@18.2.0)
'@chakra-ui/portal': 2.0.16(react-dom@18.2.0)(react@18.2.0)
@@ -6265,7 +6256,7 @@ packages:
resolution: {integrity: sha512-o9LBK/llQfUDHF/Ty3cQ6nShpekKTqHUoJlUOzNKhoTsNpoRerr9v0jwojrX1YI02KtVjfhFU6PiqXlDfREoNw==}
peerDependencies:
framer-motion: '>=4.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/shared-utils': 2.0.5
framer-motion: 10.9.1(react-dom@18.2.0)(react@18.2.0)
@@ -6285,7 +6276,7 @@ packages:
resolution: {integrity: sha512-WWULIiucYRBIewHKFA7BssQ2ABLHLVd9lrUo3N3SZgR0u4ZRDDVEUNOy+r+9ruDze8+36dGbN9wsN1IdELtdOw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
- react: '>=18 || 18'
+ react: '>=18'
dependencies:
'@chakra-ui/system': 2.5.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0)
react: 18.2.0
@@ -6475,15 +6466,6 @@ packages:
prettier: 2.8.7
dev: true
- /@cnakazawa/watch@1.0.4:
- resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==}
- engines: {node: '>=0.1.95'}
- hasBin: true
- dependencies:
- exec-sh: 0.3.6
- minimist: 1.2.8
- dev: true
-
/@colors/colors@1.5.0:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
@@ -6608,7 +6590,7 @@ packages:
resolution: {integrity: sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==}
peerDependencies:
'@types/react': '*'
- react: '>=16.8.0 || 18'
+ react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
@@ -6644,7 +6626,7 @@ packages:
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
- react: '>=16.8.0 || 18'
+ react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
@@ -6673,10 +6655,9 @@ packages:
/@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@18.2.0):
resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==}
peerDependencies:
- react: '>=16.8.0 || 18'
+ react: '>=16.8.0'
dependencies:
react: 18.2.0
- dev: false
/@emotion/utils@1.2.0:
resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==}
@@ -6686,6 +6667,204 @@ packages:
resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==}
dev: false
+ /@esbuild/android-arm64@0.17.15:
+ resolution: {integrity: sha512-0kOB6Y7Br3KDVgHeg8PRcvfLkq+AccreK///B4Z6fNZGr/tNHX0z2VywCc7PTeWp+bPvjA5WMvNXltHw5QjAIA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-arm@0.17.15:
+ resolution: {integrity: sha512-sRSOVlLawAktpMvDyJIkdLI/c/kdRTOqo8t6ImVxg8yT7LQDUYV5Rp2FKeEosLr6ZCja9UjYAzyRSxGteSJPYg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-x64@0.17.15:
+ resolution: {integrity: sha512-MzDqnNajQZ63YkaUWVl9uuhcWyEyh69HGpMIrf+acR4otMkfLJ4sUCxqwbCyPGicE9dVlrysI3lMcDBjGiBBcQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-arm64@0.17.15:
+ resolution: {integrity: sha512-7siLjBc88Z4+6qkMDxPT2juf2e8SJxmsbNVKFY2ifWCDT72v5YJz9arlvBw5oB4W/e61H1+HDB/jnu8nNg0rLA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-x64@0.17.15:
+ resolution: {integrity: sha512-NbImBas2rXwYI52BOKTW342Tm3LTeVlaOQ4QPZ7XuWNKiO226DisFk/RyPk3T0CKZkKMuU69yOvlapJEmax7cg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-arm64@0.17.15:
+ resolution: {integrity: sha512-Xk9xMDjBVG6CfgoqlVczHAdJnCs0/oeFOspFap5NkYAmRCT2qTn1vJWA2f419iMtsHSLm+O8B6SLV/HlY5cYKg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-x64@0.17.15:
+ resolution: {integrity: sha512-3TWAnnEOdclvb2pnfsTWtdwthPfOz7qAfcwDLcfZyGJwm1SRZIMOeB5FODVhnM93mFSPsHB9b/PmxNNbSnd0RQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm64@0.17.15:
+ resolution: {integrity: sha512-T0MVnYw9KT6b83/SqyznTs/3Jg2ODWrZfNccg11XjDehIved2oQfrX/wVuev9N936BpMRaTR9I1J0tdGgUgpJA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm@0.17.15:
+ resolution: {integrity: sha512-MLTgiXWEMAMr8nmS9Gigx43zPRmEfeBfGCwxFQEMgJ5MC53QKajaclW6XDPjwJvhbebv+RzK05TQjvH3/aM4Xw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ia32@0.17.15:
+ resolution: {integrity: sha512-wp02sHs015T23zsQtU4Cj57WiteiuASHlD7rXjKUyAGYzlOKDAjqK6bk5dMi2QEl/KVOcsjwL36kD+WW7vJt8Q==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-loong64@0.17.15:
+ resolution: {integrity: sha512-k7FsUJjGGSxwnBmMh8d7IbObWu+sF/qbwc+xKZkBe/lTAF16RqxRCnNHA7QTd3oS2AfGBAnHlXL67shV5bBThQ==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-mips64el@0.17.15:
+ resolution: {integrity: sha512-ZLWk6czDdog+Q9kE/Jfbilu24vEe/iW/Sj2d8EVsmiixQ1rM2RKH2n36qfxK4e8tVcaXkvuV3mU5zTZviE+NVQ==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ppc64@0.17.15:
+ resolution: {integrity: sha512-mY6dPkIRAiFHRsGfOYZC8Q9rmr8vOBZBme0/j15zFUKM99d4ILY4WpOC7i/LqoY+RE7KaMaSfvY8CqjJtuO4xg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-riscv64@0.17.15:
+ resolution: {integrity: sha512-EcyUtxffdDtWjjwIH8sKzpDRLcVtqANooMNASO59y+xmqqRYBBM7xVLQhqF7nksIbm2yHABptoioS9RAbVMWVA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-s390x@0.17.15:
+ resolution: {integrity: sha512-BuS6Jx/ezxFuHxgsfvz7T4g4YlVrmCmg7UAwboeyNNg0OzNzKsIZXpr3Sb/ZREDXWgt48RO4UQRDBxJN3B9Rbg==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-x64@0.17.15:
+ resolution: {integrity: sha512-JsdS0EgEViwuKsw5tiJQo9UdQdUJYuB+Mf6HxtJSPN35vez1hlrNb1KajvKWF5Sa35j17+rW1ECEO9iNrIXbNg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/netbsd-x64@0.17.15:
+ resolution: {integrity: sha512-R6fKjtUysYGym6uXf6qyNephVUQAGtf3n2RCsOST/neIwPqRWcnc3ogcielOd6pT+J0RDR1RGcy0ZY7d3uHVLA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/openbsd-x64@0.17.15:
+ resolution: {integrity: sha512-mVD4PGc26b8PI60QaPUltYKeSX0wxuy0AltC+WCTFwvKCq2+OgLP4+fFd+hZXzO2xW1HPKcytZBdjqL6FQFa7w==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/sunos-x64@0.17.15:
+ resolution: {integrity: sha512-U6tYPovOkw3459t2CBwGcFYfFRjivcJJc1WC8Q3funIwX8x4fP+R6xL/QuTPNGOblbq/EUDxj9GU+dWKX0oWlQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-arm64@0.17.15:
+ resolution: {integrity: sha512-W+Z5F++wgKAleDABemiyXVnzXgvRFs+GVKThSI+mGgleLWluv0D7Diz4oQpgdpNzh4i2nNDzQtWbjJiqutRp6Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-ia32@0.17.15:
+ resolution: {integrity: sha512-Muz/+uGgheShKGqSVS1KsHtCyEzcdOn/W/Xbh6H91Etm+wiIfwZaBn1W58MeGtfI8WA961YMHFYTthBdQs4t+w==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-x64@0.17.15:
+ resolution: {integrity: sha512-DjDa9ywLUUmjhV2Y9wUTIF+1XsmuFGvZoCmOWkli1XcNAh5t25cc7fgsCx4Zi/Uurep3TTLyDiKATgGEg61pkA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@eslint-community/eslint-utils@4.4.0(eslint@8.36.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -6723,6 +6902,10 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
+ /@fal-works/esbuild-plugin-global-externals@2.1.2:
+ resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==}
+ dev: true
+
/@floating-ui/core@1.2.5:
resolution: {integrity: sha512-qrcbyfnRVziRlB6IYwjCopYhO7Vud750JlJyuljruIXcPxr22y8zdckcJGsuOdnQ639uVD1tTXddrcH3t3QYIQ==}
dev: false
@@ -6735,6 +6918,8 @@ packages:
/@gar/promisify@1.1.3:
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
+ dev: false
+ optional: true
/@graphql-tools/merge@8.4.0(graphql@16.6.0):
resolution: {integrity: sha512-3XYCWe0d3I4F1azNj1CdShlbHfTIfiDgj00R9uvFH8tHKh7i1IWN3F7QQYovcHKhayaR6zPok3YYMESYQcBoaA==}
@@ -6990,29 +7175,6 @@ packages:
slash: 3.0.0
dev: true
- /@jest/transform@26.6.2:
- resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==}
- engines: {node: '>= 10.14.2'}
- dependencies:
- '@babel/core': 7.21.3
- '@jest/types': 26.6.2
- babel-plugin-istanbul: 6.1.1
- chalk: 4.1.2
- convert-source-map: 1.9.0
- fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.11
- jest-haste-map: 26.6.2
- jest-regex-util: 26.0.0
- jest-util: 26.6.2
- micromatch: 4.0.5
- pirates: 4.0.5
- slash: 3.0.0
- source-map: 0.6.1
- write-file-atomic: 3.0.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@jest/transform@29.5.0:
resolution: {integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7036,14 +7198,14 @@ packages:
- supports-color
dev: true
- /@jest/types@26.6.2:
- resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
- engines: {node: '>= 10.14.2'}
+ /@jest/types@27.5.1:
+ resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
'@types/node': 18.15.10
- '@types/yargs': 15.0.15
+ '@types/yargs': 16.0.5
chalk: 4.1.2
dev: true
@@ -7110,6 +7272,10 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.14
dev: true
+ /@juggle/resize-observer@3.4.0:
+ resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
+ dev: true
+
/@leichtgewicht/ip-codec@2.0.4:
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
dev: true
@@ -7152,52 +7318,16 @@ packages:
- supports-color
dev: false
- /@mdx-js/mdx@1.6.22:
- resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==}
- dependencies:
- '@babel/core': 7.12.9
- '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@mdx-js/util': 1.6.22
- babel-plugin-apply-mdx-type-prop: 1.6.22(@babel/core@7.12.9)
- babel-plugin-extract-import-names: 1.6.22
- camelcase-css: 2.0.1
- detab: 2.0.4
- hast-util-raw: 6.0.1
- lodash.uniq: 4.5.0
- mdast-util-to-hast: 10.0.1
- remark-footnotes: 2.0.0
- remark-mdx: 1.6.22
- remark-parse: 8.0.3
- remark-squeeze-paragraphs: 4.0.0
- style-to-object: 0.3.0
- unified: 9.2.0
- unist-builder: 2.0.3
- unist-util-visit: 2.0.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@mdx-js/react@1.6.22(react@18.2.0):
- resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==}
+ /@mdx-js/react@2.3.0(react@18.2.0):
+ resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==}
peerDependencies:
- react: ^16.13.1 || ^17.0.0 || 18
+ react: '>=16'
dependencies:
+ '@types/mdx': 2.0.4
+ '@types/react': 18.0.29
react: 18.2.0
dev: true
- /@mdx-js/util@1.6.22:
- resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==}
- dev: true
-
- /@mrmlnc/readdir-enhanced@2.2.1:
- resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==}
- engines: {node: '>=4'}
- dependencies:
- call-me-maybe: 1.0.2
- glob-to-regexp: 0.3.0
- dev: true
-
/@mswjs/cookies@0.2.2:
resolution: {integrity: sha512-mlN83YSrcFgk7Dm1Mys40DLssI1KdJji2CMKN8eOlBqsTADYzj2+jWzsANsUTFbxDMWPD5e9bfA1RGqBpS3O1g==}
engines: {node: '>=14'}
@@ -7246,6 +7376,14 @@ packages:
- supports-color
dev: false
+ /@ndelangen/get-tarball@3.0.7:
+ resolution: {integrity: sha512-NqGfTZIZpRFef1GoVaShSSRwDC3vde3ThtTeqFdcYd6ipKqnfEVhjK2hUeHjCQUcptyZr2TONqcloFXM+5QBrQ==}
+ dependencies:
+ gunzip-maybe: 1.4.2
+ pump: 3.0.0
+ tar-fs: 2.1.1
+ dev: true
+
/@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3:
resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==}
requiresBuild: true
@@ -7266,11 +7404,6 @@ packages:
run-parallel: 1.2.0
dev: true
- /@nodelib/fs.stat@1.1.3:
- resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==}
- engines: {node: '>= 6'}
- dev: true
-
/@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
@@ -7289,6 +7422,8 @@ packages:
dependencies:
'@gar/promisify': 1.1.3
semver: 7.3.8
+ dev: false
+ optional: true
/@npmcli/move-file@1.1.2:
resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
@@ -7297,6 +7432,8 @@ packages:
dependencies:
mkdirp: 1.0.4
rimraf: 3.0.2
+ dev: false
+ optional: true
/@nrwl/cli@15.8.9:
resolution: {integrity: sha512-b0lGAXMqyIXyJHCpVyqnm8hCFSRARDiWkSzE3R7dVLTuu0Z9vdnrNUctMipjlzZk10Ipd8iggsjrToMbDcL7dA==}
@@ -7465,7 +7602,7 @@ packages:
react-refresh: 0.11.0
schema-utils: 3.1.1
source-map: 0.7.4
- webpack: 5.76.3(webpack-cli@5.0.1)
+ webpack: 5.76.3(esbuild@0.17.15)
dev: true
/@popperjs/core@2.11.7:
@@ -7518,7 +7655,7 @@ packages:
/@react-aria/ssr@3.5.0(react@18.2.0):
resolution: {integrity: sha512-h0MJdSWOd1qObLnJ8mprU31wI8tmKFJMuwT22MpWq6psisOOZaga6Ml4u6Ee6M6duWWISjXvqO4Sb/J0PBA+nQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
dependencies:
'@swc/helpers': 0.4.14
react: 18.2.0
@@ -7527,7 +7664,7 @@ packages:
/@reduxjs/toolkit@1.9.3(react-redux@8.0.5)(react@18.2.0):
resolution: {integrity: sha512-GU2TNBQVofL09VGmuSioNPQIu6Ml0YLf4EJhgj0AvBadRlCGzUWet8372LjvO4fqKZF2vH1xU0htAa7BrK9pZg==}
peerDependencies:
- react: ^16.9.0 || ^17.0.0 || ^18 || 18
+ react: ^16.9.0 || ^17.0.0 || ^18
react-redux: ^7.2.1 || ^8.0.2
peerDependenciesMeta:
react:
@@ -7550,7 +7687,7 @@ packages:
/@restart/hooks@0.4.9(react@18.2.0):
resolution: {integrity: sha512-3BekqcwB6Umeya+16XPooARn4qEPW6vNvwYnlofIYe6h9qG1/VeD7UvShCWx11eFz5ELYmwIEshz+MkPX3wjcQ==}
peerDependencies:
- react: '>=16.8.0 || 18'
+ react: '>=16.8.0'
dependencies:
dequal: 2.0.3
react: 18.2.0
@@ -7559,8 +7696,8 @@ packages:
/@restart/ui@1.6.2(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-hcYs8PwpmHEtwjihLVn2Jr89yrYajfhxN5HtTq3HA9U3+feg1SC3swBM8/qibMTCFsXWToEEtzJMV+LWE+Qjpg==}
peerDependencies:
- react: '>=16.14.0 || 18'
- react-dom: '>=16.14.0 || 18'
+ react: '>=16.14.0'
+ react-dom: '>=16.14.0'
dependencies:
'@babel/runtime': 7.21.0
'@popperjs/core': 2.11.7
@@ -7579,7 +7716,7 @@ packages:
resolution: {integrity: sha512-dRXhd1Tac/9OcG0VDrYDF2boNTyKINEEITEtJ4L1Yce2iMVk66U52BhWKIFp/WXDM27vwnOfwQo4NwGiqeQeHw==}
engines: {node: '>=12'}
peerDependencies:
- react: '>=16 || >=17 || 18'
+ react: '>=16 || >=17'
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
@@ -7731,801 +7868,649 @@ packages:
resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==}
dev: true
- /@storybook/addon-actions@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==}
+ /@storybook/addon-actions@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-rcj39u9MrmzsrDWYt1zsoVxrogZ1Amrv9xkEofEY/QKUr2R3xpHhTALveY9BKIlG1GoE8zLlLoP2k4nz3sNNwQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
- fast-deep-equal: 3.1.3
- global: 4.4.0
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
+ dequal: 2.0.3
lodash: 4.17.21
polished: 4.2.2
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-inspector: 5.1.1(react@18.2.0)
- regenerator-runtime: 0.13.11
- telejson: 6.0.8
+ react-inspector: 6.0.1(react@18.2.0)
+ telejson: 7.1.0
ts-dedent: 2.2.0
- util-deprecate: 1.0.2
uuid-browser: 3.1.0
dev: true
- /@storybook/addon-backgrounds@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==}
+ /@storybook/addon-backgrounds@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-yRNHQ4PPRJ+HIORQPhDGxn5xolw1xW0ByQZoNRpMD+AMEyfUNFdWbCsRQAOWjNhawxVMHM7EeA2Exrb41zhEjA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
- global: 4.4.0
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
- util-deprecate: 1.0.2
dev: true
- /@storybook/addon-controls@6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==}
+ /@storybook/addon-controls@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-dMpRtj5cmfC9vEMve5ncvbWCEC+WD9YuzJ+grdc48E/Hd//p+O2FE6klSkrz5FAjrc+rHINixdyssekpEL6nYQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/node-logger': 6.5.16
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
+ '@storybook/blocks': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-common': 7.0.2
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/node-logger': 7.0.2
+ '@storybook/preview-api': 7.0.2
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
lodash: 4.17.21
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
transitivePeerDependencies:
- - eslint
- supports-color
- - typescript
- - vue-template-compiler
- - webpack-cli
- - webpack-command
dev: true
- /@storybook/addon-docs@6.5.16(@babel/core@7.21.3)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3):
- resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==}
+ /@storybook/addon-docs@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-q3rDWoZEym6Lkmhqc/HBNfLDAmTY8l0WINGUZo/nF98eP5iu4B7Nk7V6BRGYGQt6Y6ZyIQ8WKH0e/eJww2zIog==}
peerDependencies:
- '@storybook/mdx2-csf': ^0.0.3
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ '@storybook/mdx1-csf': '>=1.0.0-0'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
- '@storybook/mdx2-csf':
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
- dependencies:
- '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
- '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
- '@jest/transform': 26.6.2
- '@mdx-js/react': 1.6.22(react@18.2.0)
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/docs-tools': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/mdx1-csf': 0.0.1(@babel/core@7.21.3)
- '@storybook/node-logger': 6.5.16
- '@storybook/postinstall': 6.5.16
- '@storybook/preview-web': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/source-loader': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@5.76.3)
- core-js: 3.29.1
- fast-deep-equal: 3.1.3
- global: 4.4.0
- lodash: 4.17.21
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- remark-external-links: 8.0.0
- remark-slug: 6.1.0
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
- transitivePeerDependencies:
- - '@babel/core'
- - eslint
- - supports-color
- - typescript
- - vue-template-compiler
- - webpack
- - webpack-cli
- - webpack-command
- dev: true
-
- /@storybook/addon-essentials@6.5.16(@babel/core@7.21.3)(@storybook/builder-webpack5@6.5.16)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3):
- resolution: {integrity: sha512-TeoMr6tEit4Pe91GH6f8g/oar1P4M0JL9S6oMcFxxrhhtOGO7XkWD5EnfyCx272Ok2VYfE58FNBTGPNBVIqYKQ==}
- peerDependencies:
- '@babel/core': ^7.9.6
- '@storybook/angular': '*'
- '@storybook/builder-manager4': '*'
- '@storybook/builder-manager5': '*'
- '@storybook/builder-webpack4': '*'
- '@storybook/builder-webpack5': '*'
- '@storybook/html': '*'
- '@storybook/vue': '*'
- '@storybook/vue3': '*'
- '@storybook/web-components': '*'
- lit: '*'
- lit-html: '*'
- react: '*'
- react-dom: '*'
- svelte: '*'
- sveltedoc-parser: '*'
- vue: '*'
- webpack: '*'
- peerDependenciesMeta:
- '@storybook/angular':
- optional: true
- '@storybook/builder-manager4':
- optional: true
- '@storybook/builder-manager5':
- optional: true
- '@storybook/builder-webpack4':
- optional: true
- '@storybook/builder-webpack5':
- optional: true
- '@storybook/html':
- optional: true
- '@storybook/vue':
- optional: true
- '@storybook/vue3':
- optional: true
- '@storybook/web-components':
- optional: true
- lit:
- optional: true
- lit-html:
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
- svelte:
- optional: true
- sveltedoc-parser:
- optional: true
- vue:
- optional: true
- webpack:
+ '@storybook/mdx1-csf':
optional: true
dependencies:
'@babel/core': 7.21.3
- '@storybook/addon-actions': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-backgrounds': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-controls': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/addon-docs': 6.5.16(@babel/core@7.21.3)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3)
- '@storybook/addon-measure': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-outline': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-toolbars': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-viewport': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/builder-webpack5': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/node-logger': 6.5.16
- core-js: 3.29.1
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+ '@jest/transform': 29.5.0
+ '@mdx-js/react': 2.3.0(react@18.2.0)
+ '@storybook/blocks': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/csf-plugin': 7.0.2
+ '@storybook/csf-tools': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/mdx2-csf': 1.0.0
+ '@storybook/node-logger': 7.0.2
+ '@storybook/postinstall': 7.0.2
+ '@storybook/preview-api': 7.0.2
+ '@storybook/react-dom-shim': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
+ fs-extra: 11.1.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
+ remark-external-links: 8.0.0
+ remark-slug: 6.1.0
ts-dedent: 2.2.0
- webpack: 5.76.3(webpack-cli@5.0.1)
transitivePeerDependencies:
- - '@storybook/mdx2-csf'
- - eslint
- supports-color
- - typescript
- - vue-template-compiler
- - webpack-cli
- - webpack-command
dev: true
- /@storybook/addon-measure@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==}
+ /@storybook/addon-essentials@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-LAsWsXa/Pp2B4Ve2WVgc990FtsiHpFDRsq7S3V7xRrZP8DYRbtJIVdszPMDS5uKC+yzbswFEXz08lqbGvq8zgQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@storybook/addon-actions': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-backgrounds': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-controls': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-docs': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-highlight': 7.0.2
+ '@storybook/addon-measure': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-outline': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-toolbars': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-viewport': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-common': 7.0.2
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/node-logger': 7.0.2
+ '@storybook/preview-api': 7.0.2
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - '@storybook/mdx1-csf'
+ - supports-color
+ dev: true
+
+ /@storybook/addon-highlight@7.0.2:
+ resolution: {integrity: sha512-9BkL1OOanguuy73S6nLK0isUb045tOkFONd/PQldOJ0PV3agCvKxKHyzlBz7Hsba8KZhY5jQs+nVW2NiREyGYg==}
+ dependencies:
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/preview-api': 7.0.2
+ dev: true
+
+ /@storybook/addon-interactions@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-vPWnyGND4s9nVp+U21N/jE00dCRsHcKU68SoL4OiIZioTTRbLvrTG9eAdBkZXsVPpFHq8gndma3nXfplOSSckg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.29.1
- global: 4.4.0
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-common': 7.0.2
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/instrumenter': 7.0.2
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
+ jest-mock: 27.5.1
+ polished: 4.2.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@storybook/addon-outline@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==}
+ /@storybook/addon-links@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-lPtfy2MqrcI9YjupBM2eRKGPdFKVPCz7WgO/JQQakGugORJTEGCyJrNJNtWY9jDenv8ynLZ40OxtPBZi54Sr6Q==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.29.1
- global: 4.4.0
+ '@storybook/client-logger': 7.0.2
+ '@storybook/core-events': 7.0.2
+ '@storybook/csf': 0.1.0
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/router': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
+ prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-toolbars@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==}
+ /@storybook/addon-measure@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-cf/d5MXpHAjyUiDIVfc8pLn79CPHgnryDmNNlSiP2zEFKcivrRWiu8Rmrad8pGqLkuAh+PXLKCGn9uiqDvg7QQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/types': 7.0.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
dev: true
- /@storybook/addon-viewport@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==}
+ /@storybook/addon-outline@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-thVISO4NM22xlETisBvAPvz2yFD3qLGOjgzBmj8l8r9Rv0IEdwdPrwm5j0WTv8OtbhC4A8lPpvMsn5FhY5mDXg==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 6.5.16
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
- global: 4.4.0
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/types': 7.0.2
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ ts-dedent: 2.2.0
+ dev: true
+
+ /@storybook/addon-toolbars@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-tAxZ2+nUYsJdT1sx3BrmoMAZFM19+OzWJY6qSnbEq5zoRgvGZaXGR6tLMKydDoHQBU9Ta9YHGo7N7u7h1C23yg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ dependencies:
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: true
+
+ /@storybook/addon-viewport@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-TaHJWIIazPM/TerRbka9RqjMPNpwaRsGRdVRBtVoVosy1FzsEjAdQSO7RBMe4G03m5CacSqdsDiJCblI2AXaew==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ dependencies:
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
memoizerific: 1.11.3
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
dev: true
- /@storybook/addons@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==}
+ /@storybook/addons@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-2+amBRcmJ5kD2ZNeftiyp9Or9Kd7oVjwycZZX5SBB4EFQvRNKyM0w4GVgwbeJAdx5uuw7tJFtQgnakb39mxAgA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/channels': 6.5.16
- '@storybook/client-logger': 6.5.16
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@types/webpack-env': 1.18.0
- core-js: 3.29.1
- global: 4.4.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/types': 7.0.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
dev: true
- /@storybook/api@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==}
+ /@storybook/api@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-LWqWVyvTXKL3bBh6CUEE+wtt9+cWAuFxZvAQyuZFX3tBGzjZkBuoL5t9LCbJsp+Zouol9HEIfN6XdXkTgmm0Og==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
dependencies:
- '@storybook/channels': 6.5.16
- '@storybook/client-logger': 6.5.16
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/semver': 7.3.2
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
- fast-deep-equal: 3.1.3
- global: 4.4.0
+ '@storybook/client-logger': 7.0.2
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: true
+
+ /@storybook/blocks@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-JzHmU8jZLzeQ6bunzci8j/2Ji18GBTyhrPFLk5RjEbMNGWpGjvER/yR127tZOdbPguVNr4iVbRfGzd1wGHlrzA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@storybook/channels': 7.0.2
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.0.2
+ '@storybook/csf': 0.1.0
+ '@storybook/docs-tools': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.0.2
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
+ '@types/lodash': 4.14.191
+ color-convert: 2.0.1
+ dequal: 2.0.3
lodash: 4.17.21
+ markdown-to-jsx: 7.2.0(react@18.2.0)
memoizerific: 1.11.3
+ polished: 4.2.2
react: 18.2.0
+ react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0)
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- store2: 2.14.2
- telejson: 6.0.8
+ telejson: 7.1.0
ts-dedent: 2.2.0
util-deprecate: 1.0.2
- dev: true
-
- /@storybook/builder-webpack4@6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@babel/core': 7.21.3
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/channel-postmessage': 6.5.16
- '@storybook/channels': 6.5.16
- '@storybook/client-api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/core-events': 6.5.16
- '@storybook/node-logger': 6.5.16
- '@storybook/preview-web': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/router': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/semver': 7.3.2
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/ui': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@types/node': 16.18.21
- '@types/webpack': 4.41.33
- autoprefixer: 9.8.8
- babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@4.46.0)
- case-sensitive-paths-webpack-plugin: 2.4.0
- core-js: 3.29.1
- css-loader: 3.6.0(webpack@4.46.0)
- file-loader: 6.2.0(webpack@4.46.0)
- find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 4.1.6(eslint@8.36.0)(typescript@4.9.5)(webpack@4.46.0)
- glob: 7.2.3
- glob-promise: 3.4.0(glob@7.2.3)
- global: 4.4.0
- html-webpack-plugin: 4.5.2(webpack@4.46.0)
- pnp-webpack-plugin: 1.6.4(typescript@4.9.5)
- postcss: 7.0.39
- postcss-flexbugs-fixes: 4.2.1
- postcss-loader: 4.3.0(postcss@7.0.39)(webpack@4.46.0)
- raw-loader: 4.0.2(webpack@4.46.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- stable: 0.1.8
- style-loader: 1.3.0(webpack@4.46.0)
- terser-webpack-plugin: 4.2.3(webpack@4.46.0)
- ts-dedent: 2.2.0
- typescript: 4.9.5
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@4.46.0)
- util-deprecate: 1.0.2
- webpack: 4.46.0
- webpack-dev-middleware: 3.7.3(webpack@4.46.0)
- webpack-filter-warnings-plugin: 1.2.1(webpack@4.46.0)
- webpack-hot-middleware: 2.25.3
- webpack-virtual-modules: 0.2.2
transitivePeerDependencies:
- - bluebird
- - eslint
- supports-color
- - vue-template-compiler
- - webpack-cli
- - webpack-command
dev: true
- /@storybook/builder-webpack5@6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==}
+ /@storybook/builder-manager@7.0.2:
+ resolution: {integrity: sha512-Oej/n8D7eaWgmWF7nN2hXLRM53lcYOdh6umSN8Mh/LcYUfxB+dvUBFzUjoLE0xjhW6xRinrKrENT5LcP/f/HBQ==}
+ dependencies:
+ '@fal-works/esbuild-plugin-global-externals': 2.1.2
+ '@storybook/core-common': 7.0.2
+ '@storybook/manager': 7.0.2
+ '@storybook/node-logger': 7.0.2
+ '@types/ejs': 3.1.2
+ '@types/find-cache-dir': 3.2.1
+ '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.17.15)
+ browser-assert: 1.2.1
+ ejs: 3.1.9
+ esbuild: 0.17.15
+ esbuild-plugin-alias: 0.2.1
+ express: 4.18.2
+ find-cache-dir: 3.3.2
+ fs-extra: 11.1.1
+ process: 0.11.10
+ util: 0.12.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@storybook/builder-webpack5@7.0.2(esbuild@0.17.15)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-kYzmP4QfH/sA6S65+PY5XzIJ5Adsc9soSEZYdTYntTtLOzdrthKEb7InlYKt1Tg1hGVyhn6KQafSxyGHgFkC+A==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@babel/core': 7.21.3
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/channel-postmessage': 6.5.16
- '@storybook/channels': 6.5.16
- '@storybook/client-api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/core-events': 6.5.16
- '@storybook/node-logger': 6.5.16
- '@storybook/preview-web': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/router': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/semver': 7.3.2
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addons': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/channel-postmessage': 7.0.2
+ '@storybook/channel-websocket': 7.0.2
+ '@storybook/channels': 7.0.2
+ '@storybook/client-api': 7.0.2
+ '@storybook/client-logger': 7.0.2
+ '@storybook/components': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-common': 7.0.2
+ '@storybook/core-events': 7.0.2
+ '@storybook/core-webpack': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/node-logger': 7.0.2
+ '@storybook/preview': 7.0.2
+ '@storybook/preview-api': 7.0.2
+ '@storybook/router': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/store': 7.0.2
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
'@types/node': 16.18.21
- babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@5.76.3)
+ '@types/semver': 7.3.13
+ babel-loader: 9.1.2(@babel/core@7.21.3)(webpack@5.76.3)
babel-plugin-named-exports-order: 0.0.2
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
- core-js: 3.29.1
- css-loader: 5.2.7(webpack@5.76.3)
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.36.0)(typescript@4.9.5)(webpack@5.76.3)
- glob: 7.2.3
- glob-promise: 3.4.0(glob@7.2.3)
+ css-loader: 6.7.3(webpack@5.76.3)
+ express: 4.18.2
+ fork-ts-checker-webpack-plugin: 7.3.0(typescript@4.9.5)(webpack@5.76.3)
+ fs-extra: 11.1.1
html-webpack-plugin: 5.5.0(webpack@5.76.3)
path-browserify: 1.0.1
process: 0.11.10
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- stable: 0.1.8
- style-loader: 2.0.0(webpack@5.76.3)
- terser-webpack-plugin: 5.3.7(webpack@5.76.3)
+ semver: 7.3.8
+ style-loader: 3.3.2(webpack@5.76.3)
+ terser-webpack-plugin: 5.3.7(esbuild@0.17.15)(webpack@5.76.3)
ts-dedent: 2.2.0
typescript: 4.9.5
+ util: 0.12.5
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@5.0.1)
- webpack-dev-middleware: 4.3.0(webpack@5.76.3)
+ webpack: 5.76.3(esbuild@0.17.15)
+ webpack-dev-middleware: 5.3.3(webpack@5.76.3)
webpack-hot-middleware: 2.25.3
webpack-virtual-modules: 0.4.6
transitivePeerDependencies:
- '@swc/core'
- esbuild
- - eslint
- supports-color
- uglify-js
- vue-template-compiler
- webpack-cli
- - webpack-command
dev: true
- /@storybook/channel-postmessage@6.5.16:
- resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==}
+ /@storybook/channel-postmessage@7.0.2:
+ resolution: {integrity: sha512-SZ/KqnZcx10W9hJbrzBKcP9dmgaeTaXugUhcgw1IkmjKWdsKazqFZCPwQWZZKAmhO4wYbyYOhkz3wfSIeB4mFw==}
dependencies:
- '@storybook/channels': 6.5.16
- '@storybook/client-logger': 6.5.16
- '@storybook/core-events': 6.5.16
- core-js: 3.29.1
- global: 4.4.0
+ '@storybook/channels': 7.0.2
+ '@storybook/client-logger': 7.0.2
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
qs: 6.11.1
- telejson: 6.0.8
+ telejson: 7.1.0
dev: true
- /@storybook/channel-websocket@6.5.16:
- resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==}
+ /@storybook/channel-websocket@7.0.2:
+ resolution: {integrity: sha512-YU3lFId6Nsi75ddA+3qfbnLfNUPswboYyx+SALhaLuXqz7zqfzX4ezMgxeS/h0gRlUJ7nf2/yJ5qie/kZaizjw==}
dependencies:
- '@storybook/channels': 6.5.16
- '@storybook/client-logger': 6.5.16
- core-js: 3.29.1
- global: 4.4.0
- telejson: 6.0.8
+ '@storybook/channels': 7.0.2
+ '@storybook/client-logger': 7.0.2
+ '@storybook/global': 5.0.0
+ telejson: 7.1.0
dev: true
- /@storybook/channels@6.5.16:
- resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==}
- dependencies:
- core-js: 3.29.1
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
+ /@storybook/channels@7.0.2:
+ resolution: {integrity: sha512-qkI8mFy9c8mxN2f01etayKhCaauL6RAsxRzbX1/pKj6UqhHWqqUbtHwymrv4hG5qDYjV1e9pd7ae5eNF8Kui0g==}
dev: true
- /@storybook/client-api@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/channel-postmessage': 6.5.16
- '@storybook/channels': 6.5.16
- '@storybook/client-logger': 6.5.16
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@types/qs': 6.9.7
- '@types/webpack-env': 1.18.0
- core-js: 3.29.1
- fast-deep-equal: 3.1.3
- global: 4.4.0
- lodash: 4.17.21
- memoizerific: 1.11.3
- qs: 6.11.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- store2: 2.14.2
- synchronous-promise: 2.0.17
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
- dev: true
-
- /@storybook/client-logger@6.5.16:
- resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==}
- dependencies:
- core-js: 3.29.1
- global: 4.4.0
- dev: true
-
- /@storybook/components@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- dependencies:
- '@storybook/client-logger': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
- memoizerific: 1.11.3
- qs: 6.11.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- util-deprecate: 1.0.2
- dev: true
-
- /@storybook/core-client@6.5.16(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@4.46.0):
- resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- typescript: '*'
- webpack: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/channel-postmessage': 6.5.16
- '@storybook/channel-websocket': 6.5.16
- '@storybook/client-api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/preview-web': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/ui': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- airbnb-js-shims: 2.2.1
- ansi-to-html: 0.6.15
- core-js: 3.29.1
- global: 4.4.0
- lodash: 4.17.21
- qs: 6.11.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- ts-dedent: 2.2.0
- typescript: 4.9.5
- unfetch: 4.2.0
- util-deprecate: 1.0.2
- webpack: 4.46.0
- dev: true
-
- /@storybook/core-client@6.5.16(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3):
- resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- typescript: '*'
- webpack: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/channel-postmessage': 6.5.16
- '@storybook/channel-websocket': 6.5.16
- '@storybook/client-api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/preview-web': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/ui': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- airbnb-js-shims: 2.2.1
- ansi-to-html: 0.6.15
- core-js: 3.29.1
- global: 4.4.0
- lodash: 4.17.21
- qs: 6.11.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- ts-dedent: 2.2.0
- typescript: 4.9.5
- unfetch: 4.2.0
- util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@5.0.1)
- dev: true
-
- /@storybook/core-common@6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ /@storybook/cli@7.0.2:
+ resolution: {integrity: sha512-xMM2QdXNGg09wuXzAGroKrbsnaHSFPmtmefX1XGALhHuKVwxOoC2apWMpek6gY/9vh5EIRTog2Dvfd2BzNrT6Q==}
+ hasBin: true
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.21.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
- '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
- '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
- '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
- '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
- '@babel/register': 7.21.0(@babel/core@7.21.3)
- '@storybook/node-logger': 6.5.16
- '@storybook/semver': 7.3.2
+ '@babel/preset-env': 7.21.4(@babel/core@7.21.3)
+ '@ndelangen/get-tarball': 3.0.7
+ '@storybook/codemod': 7.0.2
+ '@storybook/core-common': 7.0.2
+ '@storybook/core-server': 7.0.2
+ '@storybook/csf-tools': 7.0.2
+ '@storybook/node-logger': 7.0.2
+ '@storybook/telemetry': 7.0.2
+ '@storybook/types': 7.0.2
+ '@types/semver': 7.3.13
+ boxen: 5.1.2
+ chalk: 4.1.2
+ commander: 6.2.1
+ cross-spawn: 7.0.3
+ detect-indent: 6.1.0
+ envinfo: 7.8.1
+ execa: 5.1.1
+ express: 4.18.2
+ find-up: 5.0.0
+ fs-extra: 11.1.1
+ get-npm-tarball-url: 2.0.3
+ get-port: 5.1.1
+ giget: 1.1.2
+ globby: 11.1.0
+ jscodeshift: 0.14.0(@babel/preset-env@7.21.4)
+ leven: 3.1.0
+ prettier: 2.8.7
+ prompts: 2.4.2
+ puppeteer-core: 2.1.1
+ read-pkg-up: 7.0.1
+ semver: 7.3.8
+ shelljs: 0.8.5
+ simple-update-notifier: 1.1.0
+ strip-json-comments: 3.1.1
+ tempy: 1.0.1
+ ts-dedent: 2.2.0
+ util-deprecate: 1.0.2
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@storybook/client-api@7.0.2:
+ resolution: {integrity: sha512-KuMZqN012EX7RBEpafC3WeAofHSbojP3KbKr0EOFTwbdXFFd6Z5x+b5zjkXu21maw0K+qPHh4SiWEi0UA/M8AA==}
+ dependencies:
+ '@storybook/client-logger': 7.0.2
+ '@storybook/preview-api': 7.0.2
+ dev: true
+
+ /@storybook/client-logger@7.0.2:
+ resolution: {integrity: sha512-rv7W2BhzIQHbFpUM5/CP/acS6T5lTmaxT0MbZ9n+9h++9QQU/cFOdkZgSUbLVAb1AeUGoLsk0HYzcqPpV35Xsw==}
+ dependencies:
+ '@storybook/global': 5.0.0
+ dev: true
+
+ /@storybook/codemod@7.0.2:
+ resolution: {integrity: sha512-D9PdByxJlFiaDJcLkM+RN1DHCj4VfQIlSZkADOcNtI4o9H064oiMloWDGZiR1i1FCYMSXuWmW6tMsuCVebA+Nw==}
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/preset-env': 7.21.4(@babel/core@7.21.3)
+ '@babel/types': 7.21.4
+ '@storybook/csf': 0.1.0
+ '@storybook/csf-tools': 7.0.2
+ '@storybook/node-logger': 7.0.2
+ '@storybook/types': 7.0.2
+ cross-spawn: 7.0.3
+ globby: 11.1.0
+ jscodeshift: 0.14.0(@babel/preset-env@7.21.4)
+ lodash: 4.17.21
+ prettier: 2.8.7
+ recast: 0.23.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@storybook/components@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Ee9pY6WlpricPUdYiyR0Ov8zgHkUt541yl1CZ6Ytaom2TA12cAnRjKewbLAgVPPhIE1LsMRhOPFYql0JMtnN4Q==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@storybook/client-logger': 7.0.2
+ '@storybook/csf': 0.1.0
+ '@storybook/global': 5.0.0
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
+ memoizerific: 1.11.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0)
+ util-deprecate: 1.0.2
+ dev: true
+
+ /@storybook/core-client@7.0.2:
+ resolution: {integrity: sha512-tr6Uv41YD2O0xiUrtgujiY1QxuznhbyUI0BRsSh49e8cx3QoW7FgPy7IVZHgb17DXKZ/wY/hgdyTTB87H6IbLA==}
+ dependencies:
+ '@storybook/client-logger': 7.0.2
+ '@storybook/preview-api': 7.0.2
+ dev: true
+
+ /@storybook/core-common@7.0.2:
+ resolution: {integrity: sha512-DayFPTCj695tnEKLuDlogclBim8mzdrbj9U1xzFm23BUReheGSGdLl2zrb3mP1l9Zj4xJ/Ctst1KN9SFbW84vw==}
+ dependencies:
+ '@storybook/node-logger': 7.0.2
+ '@storybook/types': 7.0.2
'@types/node': 16.18.21
'@types/pretty-hrtime': 1.0.1
- babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@4.46.0)
- babel-plugin-macros: 3.1.0
- babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.21.3)
chalk: 4.1.2
- core-js: 3.29.1
- express: 4.18.2
- file-system-cache: 1.1.0
+ esbuild: 0.17.15
+ esbuild-register: 3.4.2(esbuild@0.17.15)
+ file-system-cache: 2.0.2
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.36.0)(typescript@4.9.5)(webpack@4.46.0)
- fs-extra: 9.1.0
- glob: 7.2.3
+ fs-extra: 11.1.1
+ glob: 8.1.0
+ glob-promise: 6.0.2(glob@8.1.0)
handlebars: 4.7.7
- interpret: 2.2.0
- json5: 2.2.3
- lazy-universal-dotenv: 3.0.1
+ lazy-universal-dotenv: 4.0.0
picomatch: 2.3.1
pkg-dir: 5.0.0
pretty-hrtime: 1.0.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
resolve-from: 5.0.0
- slash: 3.0.0
- telejson: 6.0.8
ts-dedent: 2.2.0
- typescript: 4.9.5
- util-deprecate: 1.0.2
- webpack: 4.46.0
transitivePeerDependencies:
- - eslint
- supports-color
- - vue-template-compiler
- - webpack-cli
- - webpack-command
dev: true
- /@storybook/core-events@6.5.16:
- resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==}
- dependencies:
- core-js: 3.29.1
+ /@storybook/core-events@7.0.2:
+ resolution: {integrity: sha512-1DCHCwHRL3+rlvnVVc/BCfReP31XaT2WYgcLeGTmkX1E43Po1MkgcM7PnJPSaa9POvSqZ+6YLZv5Bs1SXbufow==}
dev: true
- /@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==}
- peerDependencies:
- '@storybook/builder-webpack5': '*'
- '@storybook/manager-webpack5': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- typescript: '*'
- peerDependenciesMeta:
- '@storybook/builder-webpack5':
- optional: true
- '@storybook/manager-webpack5':
- optional: true
- typescript:
- optional: true
+ /@storybook/core-server@7.0.2:
+ resolution: {integrity: sha512-7ipGws8YffVaiwkc+D0+MfZc/Sy52aKenG3nDJdK4Ajmp5LPAlelb/sxIhfRvoHDbDsy2FQNz++Mb55Yh03KkA==}
dependencies:
+ '@aw-web-design/x-default-browser': 1.4.88
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-webpack4': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/builder-webpack5': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/core-client': 6.5.16(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@4.46.0)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/csf-tools': 6.5.16
- '@storybook/manager-webpack4': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/manager-webpack5': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/node-logger': 6.5.16
- '@storybook/semver': 7.3.2
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/telemetry': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@storybook/builder-manager': 7.0.2
+ '@storybook/core-common': 7.0.2
+ '@storybook/core-events': 7.0.2
+ '@storybook/csf': 0.1.0
+ '@storybook/csf-tools': 7.0.2
+ '@storybook/docs-mdx': 0.1.0
+ '@storybook/global': 5.0.0
+ '@storybook/manager': 7.0.2
+ '@storybook/node-logger': 7.0.2
+ '@storybook/preview-api': 7.0.2
+ '@storybook/telemetry': 7.0.2
+ '@storybook/types': 7.0.2
+ '@types/detect-port': 1.3.2
'@types/node': 16.18.21
'@types/node-fetch': 2.6.2
'@types/pretty-hrtime': 1.0.1
- '@types/webpack': 4.41.33
+ '@types/semver': 7.3.13
better-opn: 2.1.1
boxen: 5.1.2
chalk: 4.1.2
cli-table3: 0.6.3
- commander: 6.2.1
compression: 1.7.4
- core-js: 3.29.1
- cpy: 8.1.2
detect-port: 1.5.1
express: 4.18.2
- fs-extra: 9.1.0
- global: 4.4.0
+ fs-extra: 11.1.1
globby: 11.1.0
ip: 2.0.0
lodash: 4.17.21
@@ -8533,298 +8518,218 @@ packages:
open: 8.4.2
pretty-hrtime: 1.0.3
prompts: 2.4.2
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
+ read-pkg-up: 7.0.1
+ semver: 7.3.8
serve-favicon: 2.5.0
- slash: 3.0.0
- telejson: 6.0.8
+ telejson: 7.1.0
ts-dedent: 2.2.0
- typescript: 4.9.5
util-deprecate: 1.0.2
watchpack: 2.4.0
- webpack: 4.46.0
ws: 8.13.0
- x-default-browser: 0.4.0
transitivePeerDependencies:
- - '@storybook/mdx2-csf'
- - bluebird
- bufferutil
- encoding
- - eslint
- supports-color
- utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-command
dev: true
- /@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3):
- resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==}
- peerDependencies:
- '@storybook/builder-webpack5': '*'
- '@storybook/manager-webpack5': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- typescript: '*'
- webpack: '*'
- peerDependenciesMeta:
- '@storybook/builder-webpack5':
- optional: true
- '@storybook/manager-webpack5':
- optional: true
- typescript:
- optional: true
+ /@storybook/core-webpack@7.0.2:
+ resolution: {integrity: sha512-uNbum2b3XhknkWEfCebJZ/2PVrORbxK5Ykj7Wuu6buZHmsWAieJ+q+JUyY9VvMQzVjWuoKlJ7hf5QIs04dhxkA==}
dependencies:
- '@storybook/builder-webpack5': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/core-client': 6.5.16(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3)
- '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/manager-webpack5': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- typescript: 4.9.5
- webpack: 5.76.3(webpack-cli@5.0.1)
- transitivePeerDependencies:
- - '@storybook/mdx2-csf'
- - bluebird
- - bufferutil
- - encoding
- - eslint
- - supports-color
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-command
- dev: true
-
- /@storybook/csf-tools@6.5.16:
- resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==}
- peerDependencies:
- '@storybook/mdx2-csf': ^0.0.3
- peerDependenciesMeta:
- '@storybook/mdx2-csf':
- optional: true
- dependencies:
- '@babel/core': 7.21.3
- '@babel/generator': 7.21.3
- '@babel/parser': 7.21.3
- '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
- '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
- '@babel/traverse': 7.21.3(supports-color@5.5.0)
- '@babel/types': 7.21.3
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/mdx1-csf': 0.0.1(@babel/core@7.21.3)
- core-js: 3.29.1
- fs-extra: 9.1.0
- global: 4.4.0
- regenerator-runtime: 0.13.11
+ '@storybook/core-common': 7.0.2
+ '@storybook/node-logger': 7.0.2
+ '@storybook/types': 7.0.2
+ '@types/node': 16.18.21
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/csf@0.0.2--canary.4566f4d.1:
- resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==}
+ /@storybook/csf-plugin@7.0.2:
+ resolution: {integrity: sha512-aGuo+G6G5IwSGkmc+OUA796sOfvJMaQj8QS/Zh5F0nL4ZlQvghHpXON8cRHHvmXHQqUo07KLiy7CZh2I2oq4iQ==}
dependencies:
- lodash: 4.17.21
+ '@storybook/csf-tools': 7.0.2
+ unplugin: 0.10.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@storybook/docs-tools@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==}
+ /@storybook/csf-tools@7.0.2:
+ resolution: {integrity: sha512-sOp355yQSpYiMqNSopmFYWZkPPRJdGgy4tpxGGLxpOZMygK3j1wQ/WQtl2Z0h61KP0S0dl6hrs0pHQz3A/eVrw==}
+ dependencies:
+ '@babel/generator': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/traverse': 7.21.3(supports-color@5.5.0)
+ '@babel/types': 7.21.4
+ '@storybook/csf': 0.1.0
+ '@storybook/types': 7.0.2
+ fs-extra: 11.1.1
+ recast: 0.23.1
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@storybook/csf@0.1.0:
+ resolution: {integrity: sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ==}
+ dependencies:
+ type-fest: 2.19.0
+ dev: true
+
+ /@storybook/docs-mdx@0.1.0:
+ resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==}
+ dev: true
+
+ /@storybook/docs-tools@7.0.2:
+ resolution: {integrity: sha512-w4D5BURrYjLbLGG9VKAaKU2dSdukszxRE3HWkJyhQU9R1JHvS3n8ntcMqYPqRfoHCOeBLBxP0edDYcAfzGNDYQ==}
dependencies:
'@babel/core': 7.21.3
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
+ '@storybook/core-common': 7.0.2
+ '@storybook/preview-api': 7.0.2
+ '@storybook/types': 7.0.2
+ '@types/doctrine': 0.0.3
doctrine: 3.0.0
lodash: 4.17.21
- regenerator-runtime: 0.13.11
transitivePeerDependencies:
- - react
- - react-dom
- supports-color
dev: true
- /@storybook/manager-webpack4@6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==}
+ /@storybook/global@5.0.0:
+ resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
+ dev: true
+
+ /@storybook/instrumenter@7.0.2:
+ resolution: {integrity: sha512-zr9/fuaYtGVUtcL8XgjA4Iq5jtzdcqQyOSH4XLXtz6JtSad3lkRagbJo2Vzbw7dO/4vzjfTMxEzvWjUuPxLOhA==}
+ dependencies:
+ '@storybook/channels': 7.0.2
+ '@storybook/client-logger': 7.0.2
+ '@storybook/core-events': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/preview-api': 7.0.2
+ dev: true
+
+ /@storybook/manager-api@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-PbLj9Rc5uCMPfMdaXv1wE3koA3+d0rmZ3BJI8jeq+mfZEvpvfI4OOpRioT1q04CkkVomFOVFTyO0Q/o6Rb5N7g==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/core': 7.21.3
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
- '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-client': 6.5.16(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@4.46.0)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/node-logger': 6.5.16
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/ui': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@types/node': 16.18.21
- '@types/webpack': 4.41.33
- babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@4.46.0)
- case-sensitive-paths-webpack-plugin: 2.4.0
- chalk: 4.1.2
- core-js: 3.29.1
- css-loader: 3.6.0(webpack@4.46.0)
- express: 4.18.2
- file-loader: 6.2.0(webpack@4.46.0)
- find-up: 5.0.0
- fs-extra: 9.1.0
- html-webpack-plugin: 4.5.2(webpack@4.46.0)
- node-fetch: 2.6.9
- pnp-webpack-plugin: 1.6.4(typescript@4.9.5)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- read-pkg-up: 7.0.1
- regenerator-runtime: 0.13.11
- resolve-from: 5.0.0
- style-loader: 1.3.0(webpack@4.46.0)
- telejson: 6.0.8
- terser-webpack-plugin: 4.2.3(webpack@4.46.0)
- ts-dedent: 2.2.0
- typescript: 4.9.5
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@4.46.0)
- util-deprecate: 1.0.2
- webpack: 4.46.0
- webpack-dev-middleware: 3.7.3(webpack@4.46.0)
- webpack-virtual-modules: 0.2.2
- transitivePeerDependencies:
- - bluebird
- - encoding
- - eslint
- - supports-color
- - vue-template-compiler
- - webpack-cli
- - webpack-command
- dev: true
-
- /@storybook/manager-webpack5@6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@babel/core': 7.21.3
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
- '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-client': 6.5.16(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/node-logger': 6.5.16
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/ui': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@types/node': 16.18.21
- babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@5.76.3)
- case-sensitive-paths-webpack-plugin: 2.4.0
- chalk: 4.1.2
- core-js: 3.29.1
- css-loader: 5.2.7(webpack@5.76.3)
- express: 4.18.2
- find-up: 5.0.0
- fs-extra: 9.1.0
- html-webpack-plugin: 5.5.0(webpack@5.76.3)
- node-fetch: 2.6.9
- process: 0.11.10
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- read-pkg-up: 7.0.1
- regenerator-runtime: 0.13.11
- resolve-from: 5.0.0
- style-loader: 2.0.0(webpack@5.76.3)
- telejson: 6.0.8
- terser-webpack-plugin: 5.3.7(webpack@5.76.3)
- ts-dedent: 2.2.0
- typescript: 4.9.5
- util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@5.0.1)
- webpack-dev-middleware: 4.3.0(webpack@5.76.3)
- webpack-virtual-modules: 0.4.6
- transitivePeerDependencies:
- - '@swc/core'
- - encoding
- - esbuild
- - eslint
- - supports-color
- - uglify-js
- - vue-template-compiler
- - webpack-cli
- - webpack-command
- dev: true
-
- /@storybook/mdx1-csf@0.0.1(@babel/core@7.21.3):
- resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==}
- dependencies:
- '@babel/generator': 7.21.3
- '@babel/parser': 7.21.3
- '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
- '@babel/types': 7.21.3
- '@mdx-js/mdx': 1.6.22
- '@types/lodash': 4.14.191
- js-string-escape: 1.0.1
- loader-utils: 2.0.4
+ '@storybook/channels': 7.0.2
+ '@storybook/client-logger': 7.0.2
+ '@storybook/core-events': 7.0.2
+ '@storybook/csf': 0.1.0
+ '@storybook/global': 5.0.0
+ '@storybook/router': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
+ dequal: 2.0.3
lodash: 4.17.21
- prettier: 2.3.0
+ memoizerific: 1.11.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ semver: 7.3.8
+ store2: 2.14.2
+ telejson: 7.1.0
ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
dev: true
- /@storybook/node-logger@6.5.16:
- resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==}
+ /@storybook/manager@7.0.2:
+ resolution: {integrity: sha512-jsFsFKG0rPNYfuRm/WSXGMBy8vnALyFWU330ObDmfU0JID3SeLlVqAOZT1GlwI6vupYpWodsN6qPZKRmC8onRw==}
+ dev: true
+
+ /@storybook/mdx2-csf@1.0.0:
+ resolution: {integrity: sha512-dBAnEL4HfxxJmv7LdEYUoZlQbWj9APZNIbOaq0tgF8XkxiIbzqvgB0jhL/9UOrysSDbQWBiCRTu2wOVxedGfmw==}
+ dev: true
+
+ /@storybook/node-logger@7.0.2:
+ resolution: {integrity: sha512-UENpXxB1yDqP7JXaODJo+pbGt5y3NFBNurBr4+pI4bMAC4ARjpgRE4wp6fxUKFPu9MAR10oCdcLEHkaVUAjYRg==}
dependencies:
'@types/npmlog': 4.1.4
chalk: 4.1.2
- core-js: 3.29.1
npmlog: 5.0.1
pretty-hrtime: 1.0.3
dev: true
- /@storybook/postinstall@6.5.16:
- resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==}
- dependencies:
- core-js: 3.29.1
+ /@storybook/postinstall@7.0.2:
+ resolution: {integrity: sha512-Hhiu3+N3ZDcbrhOCBJTDJbn/mC4l0v3ziyAP3yalq/2ZR9R5kfsEHHakKmswsKKV+ey0gNGijFTy3soU5oSs+A==}
dev: true
- /@storybook/preview-web@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==}
+ /@storybook/preset-react-webpack@7.0.2(@babel/core@7.21.3)(esbuild@0.17.15)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-HGGn5BNJRDKdBTV8JUc7uBimS554qAMSprJFS5Xro639Aqoi40wGnhBhjA79zSmulf7KbIHjO+dE37GloTcx3g==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ '@babel/core': ^7.11.5
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ typescript:
+ optional: true
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/channel-postmessage': 6.5.16
- '@storybook/client-logger': 6.5.16
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- ansi-to-html: 0.6.15
- core-js: 3.29.1
- global: 4.4.0
- lodash: 4.17.21
- qs: 6.11.1
+ '@babel/core': 7.21.3
+ '@babel/preset-flow': 7.21.4(@babel/core@7.21.3)
+ '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack@5.76.3)
+ '@storybook/core-webpack': 7.0.2
+ '@storybook/docs-tools': 7.0.2
+ '@storybook/node-logger': 7.0.2
+ '@storybook/react': 7.0.2(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.630821.0(typescript@4.9.5)(webpack@5.76.3)
+ '@types/node': 16.18.21
+ '@types/semver': 7.3.13
+ babel-plugin-add-react-displayname: 0.0.5
+ babel-plugin-react-docgen: 4.2.1
+ fs-extra: 11.1.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
+ react-refresh: 0.11.0
+ semver: 7.3.8
+ typescript: 4.9.5
+ webpack: 5.76.3(esbuild@0.17.15)
+ transitivePeerDependencies:
+ - '@swc/core'
+ - '@types/webpack'
+ - esbuild
+ - sockjs-client
+ - supports-color
+ - type-fest
+ - uglify-js
+ - webpack-cli
+ - webpack-dev-server
+ - webpack-hot-middleware
+ - webpack-plugin-serve
+ dev: true
+
+ /@storybook/preview-api@7.0.2:
+ resolution: {integrity: sha512-QAlJM/r92+dQe/kB7MTTR9b/1mt9UJjxNjazGdEWipA/nw23kOF3o/hBcvKwBYkit4zGYsX70H+vuzW8hCo/lA==}
+ dependencies:
+ '@storybook/channel-postmessage': 7.0.2
+ '@storybook/channels': 7.0.2
+ '@storybook/client-logger': 7.0.2
+ '@storybook/core-events': 7.0.2
+ '@storybook/csf': 0.1.0
+ '@storybook/global': 5.0.0
+ '@storybook/types': 7.0.2
+ '@types/qs': 6.9.7
+ dequal: 2.0.3
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ qs: 6.11.1
synchronous-promise: 2.0.17
ts-dedent: 2.2.0
- unfetch: 4.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.76.3):
- resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==}
+ /@storybook/preview@7.0.2:
+ resolution: {integrity: sha512-U7MZkDT9bBq7HggLAXmTO9gI4eqhYs26fZS0L6iTE/PCX4Wg2TJBJSq2X8jhDXRqJFOt8SrQ756+V5Vtwrh4Og==}
+ dev: true
+
+ /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.630821.0(typescript@4.9.5)(webpack@5.76.3):
+ resolution: {integrity: sha512-adrUdN/hb/bzRBmSJtHBEwoPpZzmMbr9WIEp83As69j0hkSa2Rp/Fvp+f97A2FyEx0+skiSX8ENLnwuup+5yuA==}
peerDependencies:
- typescript: '>= 3.x'
+ typescript: '>= 4.x'
webpack: '>= 4'
dependencies:
debug: 4.3.4(supports-color@5.5.0)
@@ -8835,235 +8740,155 @@ packages:
react-docgen-typescript: 2.2.2(typescript@4.9.5)
tslib: 2.5.0
typescript: 4.9.5
- webpack: 5.76.3(webpack-cli@5.0.1)
+ webpack: 5.76.3(esbuild@0.17.15)
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/react@6.5.16(@babel/core@7.21.3)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(require-from-string@2.0.2)(typescript@4.9.5):
- resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==}
- engines: {node: '>=10.13.0'}
- hasBin: true
+ /@storybook/react-dom-shim@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-fMl0aV7mJ3wyQKvt6z+rZuiIiSd9YinS77IJ1ETHqVZ4SxWriOS0GFKP6sZflrlpShoZBh+zl1lDPG7ZZdrQGw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: true
+
+ /@storybook/react-webpack5@7.0.2(@babel/core@7.21.3)(esbuild@0.17.15)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-vEjg9L0MS1ZYBj5oQJBykbBYqFhX0KegugxN0l0DXLMI1zo3LLGMMEAv6SE+kpZIa/0ooFMkHKR+wSDRbF0UuA==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
'@babel/core': ^7.11.5
- '@storybook/builder-webpack4': '*'
- '@storybook/builder-webpack5': '*'
- '@storybook/manager-webpack4': '*'
- '@storybook/manager-webpack5': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- require-from-string: ^2.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
'@babel/core':
optional: true
- '@storybook/builder-webpack4':
- optional: true
- '@storybook/builder-webpack5':
- optional: true
- '@storybook/manager-webpack4':
- optional: true
- '@storybook/manager-webpack5':
- optional: true
typescript:
optional: true
dependencies:
'@babel/core': 7.21.3
- '@babel/preset-flow': 7.18.6(@babel/core@7.21.3)
- '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack@5.76.3)
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/builder-webpack5': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/client-logger': 6.5.16
- '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.76.3)
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/docs-tools': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/manager-webpack5': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@storybook/node-logger': 6.5.16
- '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.76.3)
- '@storybook/semver': 7.3.2
- '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@types/estree': 0.0.51
+ '@storybook/builder-webpack5': 7.0.2(esbuild@0.17.15)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@storybook/preset-react-webpack': 7.0.2(@babel/core@7.21.3)(esbuild@0.17.15)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@storybook/react': 7.0.2(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@types/node': 16.18.21
- '@types/webpack-env': 1.18.0
- acorn: 7.4.1
- acorn-jsx: 5.3.2(acorn@7.4.1)
- acorn-walk: 7.2.0
- babel-plugin-add-react-displayname: 0.0.5
- babel-plugin-react-docgen: 4.2.1
- core-js: 3.29.1
- escodegen: 2.0.0
- fs-extra: 9.1.0
- global: 4.4.0
- html-tags: 3.2.0
- lodash: 4.17.21
- prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-element-to-jsx-string: 14.3.4(react-dom@18.2.0)(react@18.2.0)
- react-refresh: 0.11.0
- read-pkg-up: 7.0.1
- regenerator-runtime: 0.13.11
- require-from-string: 2.0.2
- ts-dedent: 2.2.0
typescript: 4.9.5
- util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@5.0.1)
transitivePeerDependencies:
- - '@storybook/mdx2-csf'
- '@swc/core'
- '@types/webpack'
- - bluebird
- - bufferutil
- - encoding
- esbuild
- - eslint
- sockjs-client
- supports-color
- type-fest
- uglify-js
- - utf-8-validate
- vue-template-compiler
- webpack-cli
- - webpack-command
- webpack-dev-server
- webpack-hot-middleware
- webpack-plugin-serve
dev: true
- /@storybook/router@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==}
+ /@storybook/react@7.0.2(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-2P7Oju1XKWMyn75dO0vjL4gthzBL/lLiCBRyAHKXZJ1H2eNdWjXkOOtH1HxnbRcXjWSU4tW96dqKY8m0iR9zAA==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
- '@storybook/client-logger': 6.5.16
- core-js: 3.29.1
+ '@storybook/client-logger': 7.0.2
+ '@storybook/core-client': 7.0.2
+ '@storybook/docs-tools': 7.0.2
+ '@storybook/global': 5.0.0
+ '@storybook/preview-api': 7.0.2
+ '@storybook/react-dom-shim': 7.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.0.2
+ '@types/escodegen': 0.0.6
+ '@types/estree': 0.0.51
+ '@types/node': 16.18.21
+ acorn: 7.4.1
+ acorn-jsx: 5.3.2(acorn@7.4.1)
+ acorn-walk: 7.2.0
+ escodegen: 2.0.0
+ html-tags: 3.2.0
+ lodash: 4.17.21
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0)
+ ts-dedent: 2.2.0
+ type-fest: 2.19.0
+ typescript: 4.9.5
+ util-deprecate: 1.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@storybook/router@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-ZB2vucfayZUrMLBlXju4v6CNOQQb0YKDLw5RoojdBxOsUFtnp5UiPOE+I8PQR63EBwnRjozeibV1XSM+GlQb5w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@storybook/client-logger': 7.0.2
memoizerific: 1.11.3
qs: 6.11.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
dev: true
- /@storybook/semver@7.3.2:
- resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==}
- engines: {node: '>=10'}
- hasBin: true
+ /@storybook/store@7.0.2:
+ resolution: {integrity: sha512-I4c/BJNL5KAs7S5bRCy1LeBSG3uqNTuXZdDQ5aYNLpnYNSGHV2l5EVJDYkk7mRQ6iayQavESRG1yVPshUWtqcQ==}
dependencies:
- core-js: 3.29.1
- find-up: 4.1.0
+ '@storybook/client-logger': 7.0.2
+ '@storybook/preview-api': 7.0.2
dev: true
- /@storybook/source-loader@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ /@storybook/telemetry@7.0.2:
+ resolution: {integrity: sha512-s2PIwI9nVYQBf3h40EFHLynYUfdqzRJMXyaCWJdVQuvdQfRkAn3CLXaubK+VdjC869z3ZfW20EMu3Mbgzcc0HA==}
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.29.1
- estraverse: 5.3.0
- global: 4.4.0
- loader-utils: 2.0.4
- lodash: 4.17.21
- prettier: 2.3.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- dev: true
-
- /@storybook/store@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 6.5.16
- '@storybook/core-events': 6.5.16
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.29.1
- fast-deep-equal: 3.1.3
- global: 4.4.0
- lodash: 4.17.21
- memoizerific: 1.11.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- slash: 3.0.0
- stable: 0.1.8
- synchronous-promise: 2.0.17
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
- dev: true
-
- /@storybook/telemetry@6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==}
- dependencies:
- '@storybook/client-logger': 6.5.16
- '@storybook/core-common': 6.5.16(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@storybook/client-logger': 7.0.2
+ '@storybook/core-common': 7.0.2
chalk: 4.1.2
- core-js: 3.29.1
detect-package-manager: 2.0.1
fetch-retry: 5.0.4
- fs-extra: 9.1.0
- global: 4.4.0
+ fs-extra: 11.1.1
isomorphic-unfetch: 3.1.0
nanoid: 3.3.6
read-pkg-up: 7.0.1
- regenerator-runtime: 0.13.11
transitivePeerDependencies:
- encoding
- - eslint
- - react
- - react-dom
- supports-color
- - typescript
- - vue-template-compiler
- - webpack-cli
- - webpack-command
dev: true
- /@storybook/theming@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==}
+ /@storybook/theming@7.0.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-c9sE+QAZNbopPvLiJ6BMxBERfTaq1ATyIri97FBvTucuSotNXw7X5q+ip5/nrCOPZuvK2f5wF4DRyD2HnB/rIQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 6.5.16
- core-js: 3.29.1
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0)
+ '@storybook/client-logger': 7.0.2
+ '@storybook/global': 5.0.0
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
dev: true
- /@storybook/ui@6.5.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ /@storybook/types@7.0.2:
+ resolution: {integrity: sha512-0OCt/kAexa8MCcljxA+yZxGMn0n2U2Ync0KxotItqNbKBKVkaLQUls0+IXTWSCpC/QJvNZ049jxUHHanNi/96w==}
dependencies:
- '@storybook/addons': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/api': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/channels': 6.5.16
- '@storybook/client-logger': 6.5.16
- '@storybook/components': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 6.5.16
- '@storybook/router': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/semver': 7.3.2
- '@storybook/theming': 6.5.16(react-dom@18.2.0)(react@18.2.0)
- core-js: 3.29.1
- memoizerific: 1.11.3
- qs: 6.11.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- regenerator-runtime: 0.13.11
- resolve-from: 5.0.0
+ '@storybook/channels': 7.0.2
+ '@types/babel__core': 7.20.0
+ '@types/express': 4.17.17
+ file-system-cache: 2.0.2
dev: true
/@swc/helpers@0.4.14:
@@ -9115,8 +8940,8 @@ packages:
resolution: {integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==}
engines: {node: '>=14'}
peerDependencies:
- react: ^18.0.0 || 18
- react-dom: ^18.0.0 || 18
+ react: ^18.0.0
+ react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@testing-library/dom': 9.2.0
@@ -9208,7 +9033,7 @@ packages:
resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==}
dependencies:
'@babel/parser': 7.21.3
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.18.3
@@ -9217,20 +9042,20 @@ packages:
/@types/babel__generator@7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@types/babel__template@7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
'@babel/parser': 7.21.3
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@types/babel__traverse@7.18.3:
resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
dev: true
/@types/babylon@6.16.6:
@@ -9506,24 +9331,40 @@ packages:
'@types/ms': 0.7.31
dev: false
+ /@types/detect-port@1.3.2:
+ resolution: {integrity: sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==}
+ dev: true
+
+ /@types/doctrine@0.0.3:
+ resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==}
+ dev: true
+
/@types/dragula@3.7.1:
resolution: {integrity: sha512-hbMEG5+wZEwV6NK4cbexldLWEvYNox8PywM9ICIeCTM99g8nJxccE3C8vvl66TCfnN+R8ioNdOrHWJT+5X0pvw==}
+ /@types/ejs@3.1.2:
+ resolution: {integrity: sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==}
+ dev: true
+
/@types/es6template@1.0.1:
resolution: {integrity: sha512-3cg8/6oOpdYSOgGb8PyHBQPvvG2I5EiIoiMWYvgo9EJEHdRNVCn9pEAOtmnjAFjzMRiRTNgMP/+Ktk5DkzHmGQ==}
dev: true
+ /@types/escodegen@0.0.6:
+ resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==}
+ dev: true
+
/@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
dependencies:
'@types/eslint': 8.21.3
- '@types/estree': 0.0.51
+ '@types/estree': 1.0.0
dev: true
/@types/eslint@8.21.3:
resolution: {integrity: sha512-fa7GkppZVEByMWGbTtE5MbmXWJTVbrjjaS8K6uQj+XtuuUv1fsuPAxhygfqLmsb/Ufb3CV8deFCpiMfAgi00Sw==}
dependencies:
- '@types/estree': 0.0.51
+ '@types/estree': 1.0.0
'@types/json-schema': 7.0.11
dev: true
@@ -9557,6 +9398,10 @@ packages:
/@types/filewriter@0.0.29:
resolution: {integrity: sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ==}
+ /@types/find-cache-dir@3.2.1:
+ resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==}
+ dev: true
+
/@types/geojson@7946.0.10:
resolution: {integrity: sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==}
@@ -9564,13 +9409,6 @@ packages:
resolution: {integrity: sha512-dlrC7vGuNvUCD4UXLTPqNSdSFHDa+n6wHmyKWP2OJXwtgY1A3Lttn5Dx7gmo00fg/xuuLILTuzI/1isDV/1V2Q==}
dev: false
- /@types/glob@7.2.0:
- resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
- dependencies:
- '@types/minimatch': 5.1.2
- '@types/node': 18.15.10
- dev: true
-
/@types/glob@8.1.0:
resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
dependencies:
@@ -9587,12 +9425,6 @@ packages:
/@types/har-format@1.2.10:
resolution: {integrity: sha512-o0J30wqycjF5miWDKYKKzzOU1ZTLuA42HZ4HE7/zqTOc/jTLdQ5NhYWvsRQo45Nfi1KHoRdNhteSI4BAxTF1Pg==}
- /@types/hast@2.3.4:
- resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
- dependencies:
- '@types/unist': 2.0.6
- dev: true
-
/@types/hex-rgba@1.0.1:
resolution: {integrity: sha512-7m39MAHAW+EoRYYlsWdah+Dph5ef/JxtrjycrfKuhldoXv0qLxJfxDrY9H6lrXBbJCIQhSw/w+a8LTMPENZ6Ag==}
dev: true
@@ -9614,10 +9446,6 @@ packages:
html-entities: 2.3.3
dev: true
- /@types/html-minifier-terser@5.1.2:
- resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==}
- dev: true
-
/@types/html-minifier-terser@6.1.0:
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
dev: true
@@ -9637,10 +9465,6 @@ packages:
ci-info: 3.8.0
dev: true
- /@types/is-function@1.0.1:
- resolution: {integrity: sha512-A79HEEiwXTFtfY+Bcbo58M2GRYzCr9itHWzbzHVFNEYCcoU/MMGwYYf721gBrnhpj1s6RGVVha/IgNFnR0Iw/Q==}
- dev: true
-
/@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
dev: true
@@ -9737,10 +9561,12 @@ packages:
resolution: {integrity: sha512-v+JFDu96+UYJ3/UWzB0mEglIS//MZXgRaJ4ubUPwOM0gvLc/kcQ3TWNYwENEK7/EcXGQVrW8h/XqednSjBd/Og==}
dev: false
- /@types/mdast@3.0.11:
- resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==}
- dependencies:
- '@types/unist': 2.0.6
+ /@types/mdx@2.0.4:
+ resolution: {integrity: sha512-qCYrNdpKwN6YO6FVnx+ulfqifKlE3lQGsNhvDaW9Oxzyob/cRLBJWow8GHBBD4NxQ7BVvtsATgLsX0vZAWmtrg==}
+ dev: true
+
+ /@types/mime-types@2.1.1:
+ resolution: {integrity: sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==}
dev: true
/@types/mime@3.0.1:
@@ -9799,10 +9625,6 @@ packages:
resolution: {integrity: sha512-0AUXJ8rvB/gSBg4I4ZoCLrlX0V++JVubSGYqr+Zcw+3qRZZaMsCznDA9OdFWvkZlIJF0/lMZn0Qtnhug4TzMHQ==}
dev: true
- /@types/parse5@5.0.3:
- resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
- dev: true
-
/@types/path-browserify@1.0.0:
resolution: {integrity: sha512-XMCcyhSvxcch8b7rZAtFAaierBYdeHXVvg2iYnxOV0MCQHmPuRRmGZPFDRzPayxcGiiSL1Te9UIO+f3cuj0tfw==}
dev: true
@@ -9962,10 +9784,6 @@ packages:
'@types/node': 18.15.10
dev: true
- /@types/source-list-map@0.1.2:
- resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==}
- dev: true
-
/@types/source-map@0.5.2:
resolution: {integrity: sha512-++w4WmMbk3dS3UeHGzAG+xJOSz5Xqtjys/TBkqG3qp3SeWE7Wwezqe5eB7B51cxUyh4PW7bwVotpsLdBK0D8cw==}
dev: true
@@ -10001,10 +9819,6 @@ packages:
'@types/superagent': 4.1.16
dev: true
- /@types/tapable@1.0.8:
- resolution: {integrity: sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==}
- dev: true
-
/@types/tern@0.23.4:
resolution: {integrity: sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==}
dependencies:
@@ -10021,12 +9835,6 @@ packages:
resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==}
dev: true
- /@types/uglify-js@3.17.1:
- resolution: {integrity: sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==}
- dependencies:
- source-map: 0.6.1
- dev: true
-
/@types/unist@2.0.6:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
dev: true
@@ -10050,25 +9858,6 @@ packages:
resolution: {integrity: sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg==}
dev: true
- /@types/webpack-sources@3.2.0:
- resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==}
- dependencies:
- '@types/node': 18.15.10
- '@types/source-list-map': 0.1.2
- source-map: 0.7.4
- dev: true
-
- /@types/webpack@4.41.33:
- resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==}
- dependencies:
- '@types/node': 18.15.10
- '@types/tapable': 1.0.8
- '@types/uglify-js': 3.17.1
- '@types/webpack-sources': 3.2.0
- anymatch: 3.1.3
- source-map: 0.6.1
- dev: true
-
/@types/writable-consumable-stream@2.0.0:
resolution: {integrity: sha512-9pnn3oI+VrFhyp5l8frOvAaK+CS3K34kSJT4+8upBeTWeaMSxkSSyIGM6hVcRx0M1VuStKH3xjMKVLBGCzPgfw==}
dependencies:
@@ -10085,8 +9874,8 @@ packages:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
dev: true
- /@types/yargs@15.0.15:
- resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==}
+ /@types/yargs@16.0.5:
+ resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: true
@@ -10241,54 +10030,18 @@ packages:
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
dev: true
- /@webassemblyjs/ast@1.9.0:
- resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==}
- dependencies:
- '@webassemblyjs/helper-module-context': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/wast-parser': 1.9.0
- dev: true
-
/@webassemblyjs/floating-point-hex-parser@1.11.1:
resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
dev: true
- /@webassemblyjs/floating-point-hex-parser@1.9.0:
- resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==}
- dev: true
-
/@webassemblyjs/helper-api-error@1.11.1:
resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
dev: true
- /@webassemblyjs/helper-api-error@1.9.0:
- resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==}
- dev: true
-
/@webassemblyjs/helper-buffer@1.11.1:
resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
dev: true
- /@webassemblyjs/helper-buffer@1.9.0:
- resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==}
- dev: true
-
- /@webassemblyjs/helper-code-frame@1.9.0:
- resolution: {integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==}
- dependencies:
- '@webassemblyjs/wast-printer': 1.9.0
- dev: true
-
- /@webassemblyjs/helper-fsm@1.9.0:
- resolution: {integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==}
- dev: true
-
- /@webassemblyjs/helper-module-context@1.9.0:
- resolution: {integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==}
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- dev: true
-
/@webassemblyjs/helper-numbers@1.11.1:
resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
dependencies:
@@ -10301,10 +10054,6 @@ packages:
resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
dev: true
- /@webassemblyjs/helper-wasm-bytecode@1.9.0:
- resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==}
- dev: true
-
/@webassemblyjs/helper-wasm-section@1.11.1:
resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
dependencies:
@@ -10314,47 +10063,22 @@ packages:
'@webassemblyjs/wasm-gen': 1.11.1
dev: true
- /@webassemblyjs/helper-wasm-section@1.9.0:
- resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==}
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-buffer': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/wasm-gen': 1.9.0
- dev: true
-
/@webassemblyjs/ieee754@1.11.1:
resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
dependencies:
'@xtuc/ieee754': 1.2.0
dev: true
- /@webassemblyjs/ieee754@1.9.0:
- resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==}
- dependencies:
- '@xtuc/ieee754': 1.2.0
- dev: true
-
/@webassemblyjs/leb128@1.11.1:
resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
dependencies:
'@xtuc/long': 4.2.2
dev: true
- /@webassemblyjs/leb128@1.9.0:
- resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==}
- dependencies:
- '@xtuc/long': 4.2.2
- dev: true
-
/@webassemblyjs/utf8@1.11.1:
resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
dev: true
- /@webassemblyjs/utf8@1.9.0:
- resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==}
- dev: true
-
/@webassemblyjs/wasm-edit@1.11.1:
resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
dependencies:
@@ -10368,19 +10092,6 @@ packages:
'@webassemblyjs/wast-printer': 1.11.1
dev: true
- /@webassemblyjs/wasm-edit@1.9.0:
- resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==}
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-buffer': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/helper-wasm-section': 1.9.0
- '@webassemblyjs/wasm-gen': 1.9.0
- '@webassemblyjs/wasm-opt': 1.9.0
- '@webassemblyjs/wasm-parser': 1.9.0
- '@webassemblyjs/wast-printer': 1.9.0
- dev: true
-
/@webassemblyjs/wasm-gen@1.11.1:
resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
dependencies:
@@ -10391,16 +10102,6 @@ packages:
'@webassemblyjs/utf8': 1.11.1
dev: true
- /@webassemblyjs/wasm-gen@1.9.0:
- resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==}
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/ieee754': 1.9.0
- '@webassemblyjs/leb128': 1.9.0
- '@webassemblyjs/utf8': 1.9.0
- dev: true
-
/@webassemblyjs/wasm-opt@1.11.1:
resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
dependencies:
@@ -10410,15 +10111,6 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.1
dev: true
- /@webassemblyjs/wasm-opt@1.9.0:
- resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==}
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-buffer': 1.9.0
- '@webassemblyjs/wasm-gen': 1.9.0
- '@webassemblyjs/wasm-parser': 1.9.0
- dev: true
-
/@webassemblyjs/wasm-parser@1.11.1:
resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
dependencies:
@@ -10430,28 +10122,6 @@ packages:
'@webassemblyjs/utf8': 1.11.1
dev: true
- /@webassemblyjs/wasm-parser@1.9.0:
- resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==}
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-api-error': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/ieee754': 1.9.0
- '@webassemblyjs/leb128': 1.9.0
- '@webassemblyjs/utf8': 1.9.0
- dev: true
-
- /@webassemblyjs/wast-parser@1.9.0:
- resolution: {integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==}
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/floating-point-hex-parser': 1.9.0
- '@webassemblyjs/helper-api-error': 1.9.0
- '@webassemblyjs/helper-code-frame': 1.9.0
- '@webassemblyjs/helper-fsm': 1.9.0
- '@xtuc/long': 4.2.2
- dev: true
-
/@webassemblyjs/wast-printer@1.11.1:
resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
dependencies:
@@ -10459,14 +10129,6 @@ packages:
'@xtuc/long': 4.2.2
dev: true
- /@webassemblyjs/wast-printer@1.9.0:
- resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==}
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/wast-parser': 1.9.0
- '@xtuc/long': 4.2.2
- dev: true
-
/@webpack-cli/configtest@2.0.1(webpack-cli@5.0.1)(webpack@5.76.3):
resolution: {integrity: sha512-njsdJXJSiS2iNbQVS0eT8A/KPnmyH4pv1APj2K0d1wrZcBLw+yppxOy4CGqa0OxDJkzfL/XELDhD8rocnIwB5A==}
engines: {node: '>=14.15.0'}
@@ -10518,6 +10180,16 @@ packages:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
dev: true
+ /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.17.15):
+ resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==}
+ engines: {node: '>=14.15.0'}
+ peerDependencies:
+ esbuild: '>=0.10.0'
+ dependencies:
+ esbuild: 0.17.15
+ tslib: 2.5.0
+ dev: true
+
/@yarnpkg/lockfile@1.1.0:
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
dev: true
@@ -10625,12 +10297,6 @@ packages:
hasBin: true
dev: true
- /acorn@6.4.2:
- resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- dev: true
-
/acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
@@ -10673,6 +10339,11 @@ packages:
stream-demux: 8.1.0
dev: false
+ /agent-base@5.1.1:
+ resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==}
+ engines: {node: '>= 6.0.0'}
+ dev: true
+
/agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
@@ -10708,36 +10379,6 @@ packages:
indent-string: 5.0.0
dev: true
- /airbnb-js-shims@2.2.1:
- resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==}
- dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
- es5-shim: 4.6.7
- es6-shim: 0.35.8
- function.prototype.name: 1.1.5
- globalthis: 1.0.3
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- object.getownpropertydescriptors: 2.1.5
- object.values: 1.1.6
- promise.allsettled: 1.0.6
- promise.prototype.finally: 3.1.4
- string.prototype.matchall: 4.0.8
- string.prototype.padend: 3.1.4
- string.prototype.padstart: 3.1.4
- symbol.prototype.description: 1.0.5
- dev: true
-
- /ajv-errors@1.0.1(ajv@6.12.6):
- resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==}
- peerDependencies:
- ajv: '>=5.0.0'
- dependencies:
- ajv: 6.12.6
- dev: true
-
/ajv-formats@2.1.1(ajv@8.12.0):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
peerDependencies:
@@ -10802,11 +10443,6 @@ packages:
string-width: 4.2.3
dev: true
- /ansi-colors@3.2.4:
- resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==}
- engines: {node: '>=6'}
- dev: true
-
/ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
@@ -10824,11 +10460,6 @@ packages:
hasBin: true
dev: true
- /ansi-regex@2.1.1:
- resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
@@ -10850,23 +10481,6 @@ packages:
engines: {node: '>=10'}
dev: true
- /ansi-to-html@0.6.15:
- resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==}
- engines: {node: '>=8.0.0'}
- hasBin: true
- dependencies:
- entities: 2.2.0
- dev: true
-
- /anymatch@2.0.0:
- resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==}
- dependencies:
- micromatch: 3.1.10
- normalize-path: 2.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
@@ -10878,10 +10492,6 @@ packages:
resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==}
dev: true
- /aproba@1.2.0:
- resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
- dev: true
-
/aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
@@ -10928,21 +10538,6 @@ packages:
deep-equal: 2.2.0
dev: true
- /arr-diff@4.0.0:
- resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /arr-flatten@1.1.0:
- resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /arr-union@3.1.0:
- resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/array-buffer-byte-length@1.0.0:
resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
dependencies:
@@ -10950,12 +10545,6 @@ packages:
is-array-buffer: 3.0.2
dev: true
- /array-find-index@1.0.2:
- resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
/array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
@@ -10978,28 +10567,11 @@ packages:
is-string: 1.0.7
dev: true
- /array-union@1.0.2:
- resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==}
- engines: {node: '>=0.10.0'}
- dependencies:
- array-uniq: 1.0.3
- dev: true
-
/array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
dev: true
- /array-uniq@1.0.3:
- resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /array-unique@0.3.2:
- resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/array.prototype.flat@1.3.1:
resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
engines: {node: '>= 0.4'}
@@ -11020,28 +10592,6 @@ packages:
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.map@1.0.5:
- resolution: {integrity: sha512-gfaKntvwqYIuC7mLLyv2wzZIJqrRhn5PZ9EfFejSx6a78sV7iDsGpG9P+3oUPtm1Rerqm6nrKS4FYuTIvWfo3g==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-array-method-boxes-properly: 1.0.0
- is-string: 1.0.7
- dev: true
-
- /array.prototype.reduce@1.0.5:
- resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-array-method-boxes-properly: 1.0.0
- is-string: 1.0.7
- dev: true
-
/array.prototype.tosorted@1.1.1:
resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
dependencies:
@@ -11057,11 +10607,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /arrify@2.0.1:
- resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
- engines: {node: '>=8'}
- dev: true
-
/arrify@3.0.0:
resolution: {integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==}
engines: {node: '>=12'}
@@ -11071,25 +10616,13 @@ packages:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
dev: true
- /asn1.js@5.4.1:
- resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
+ /assert@2.0.0:
+ resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==}
dependencies:
- bn.js: 4.12.0
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
- safer-buffer: 2.1.2
- dev: true
-
- /assert@1.5.0:
- resolution: {integrity: sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==}
- dependencies:
- object-assign: 4.1.1
- util: 0.10.3
- dev: true
-
- /assign-symbols@1.0.0:
- resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
- engines: {node: '>=0.10.0'}
+ es6-object-assign: 1.1.0
+ is-nan: 1.3.2
+ object-is: 1.1.5
+ util: 0.12.5
dev: true
/ast-types-flow@0.0.7:
@@ -11103,15 +10636,28 @@ packages:
tslib: 2.5.0
dev: true
+ /ast-types@0.15.2:
+ resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.5.0
+ dev: true
+
+ /ast-types@0.16.1:
+ resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.5.0
+ dev: true
+
/astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
dev: true
- /async-each@1.0.6:
- resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==}
+ /async-limiter@1.0.1:
+ resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
dev: true
- optional: true
/async-retry@1.3.3:
resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
@@ -11124,37 +10670,17 @@ packages:
dependencies:
stream-demux: 8.1.0
+ /async@3.2.4:
+ resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
+ dev: true
+
/asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- /at-least-node@1.0.0:
- resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
- engines: {node: '>= 4.0.0'}
- dev: true
-
/atoa@1.0.0:
resolution: {integrity: sha512-VVE1H6cc4ai+ZXo/CRWoJiHXrA1qfA31DPnx6D20+kSI547hQN5Greh51LQ1baMRMfxO5K5M4ImMtZbZt2DODQ==}
dev: false
- /atob@2.1.2:
- resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
- engines: {node: '>= 4.5.0'}
- hasBin: true
- dev: true
-
- /autoprefixer@9.8.8:
- resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==}
- hasBin: true
- dependencies:
- browserslist: 4.21.5
- caniuse-lite: 1.0.30001470
- normalize-range: 0.1.2
- num2fraction: 1.2.2
- picocolors: 0.2.1
- postcss: 7.0.39
- postcss-value-parser: 4.2.0
- dev: true
-
/available-typed-arrays@1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
@@ -11188,6 +10714,14 @@ packages:
deep-equal: 2.2.0
dev: true
+ /babel-core@7.0.0-bridge.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ dev: true
+
/babel-jest@29.5.0(@babel/core@7.21.3):
resolution: {integrity: sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -11206,36 +10740,6 @@ packages:
- supports-color
dev: true
- /babel-loader@8.3.0(@babel/core@7.21.3)(webpack@4.46.0):
- resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
- dependencies:
- '@babel/core': 7.21.3
- find-cache-dir: 3.3.2
- loader-utils: 2.0.4
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 4.46.0
- dev: true
-
- /babel-loader@8.3.0(@babel/core@7.21.3)(webpack@5.76.3):
- resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
- dependencies:
- '@babel/core': 7.21.3
- find-cache-dir: 3.3.2
- loader-utils: 2.0.4
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.76.3(webpack-cli@5.0.1)
- dev: true
-
/babel-loader@9.1.2(@babel/core@7.21.3)(webpack@5.76.3):
resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==}
engines: {node: '>= 14.15.0'}
@@ -11253,22 +10757,6 @@ packages:
resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==}
dev: true
- /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9):
- resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==}
- peerDependencies:
- '@babel/core': ^7.11.6
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.10.4
- '@mdx-js/util': 1.6.22
- dev: true
-
- /babel-plugin-extract-import-names@1.6.22:
- resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==}
- dependencies:
- '@babel/helper-plugin-utils': 7.10.4
- dev: true
-
/babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
@@ -11287,7 +10775,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/template': 7.20.7
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
'@types/babel__core': 7.20.0
'@types/babel__traverse': 7.18.3
dev: true
@@ -11299,6 +10787,7 @@ packages:
'@babel/runtime': 7.21.0
cosmiconfig: 7.1.0
resolve: 1.22.1
+ dev: false
/babel-plugin-named-exports-order@0.0.2:
resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==}
@@ -11309,7 +10798,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.21.0
+ '@babel/compat-data': 7.21.4
'@babel/core': 7.21.3
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
semver: 6.3.0
@@ -11317,18 +10806,6 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.21.3)
- core-js-compat: 3.29.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.3):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
@@ -11429,10 +10906,6 @@ packages:
hasBin: true
dev: true
- /bail@1.0.5:
- resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
- dev: true
-
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
@@ -11452,19 +10925,6 @@ packages:
engines: {node: ^4.5.0 || >= 5.9}
dev: false
- /base@0.11.2:
- resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- cache-base: 1.0.1
- class-utils: 0.3.6
- component-emitter: 1.3.0
- define-property: 1.0.0
- isobject: 3.0.1
- mixin-deep: 1.3.2
- pascalcase: 0.1.1
- dev: true
-
/basic-auth@2.0.1:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
@@ -11502,24 +10962,10 @@ packages:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
dev: true
- /binary-extensions@1.13.1:
- resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
/binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- /bindings@1.5.0:
- resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
- requiresBuild: true
- dependencies:
- file-uri-to-path: 1.0.0
- dev: true
- optional: true
-
/bl@1.2.3:
resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
dependencies:
@@ -11533,17 +10979,6 @@ packages:
inherits: 2.0.4
readable-stream: 3.6.2
- /bluebird@3.7.2:
- resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
-
- /bn.js@4.12.0:
- resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
- dev: true
-
- /bn.js@5.2.1:
- resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
- dev: true
-
/body-parser@1.20.1:
resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
@@ -11614,19 +11049,11 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /bplist-parser@0.1.1:
- resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==}
- dependencies:
- big-integer: 1.6.51
- dev: true
- optional: true
-
/bplist-parser@0.2.0:
resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
engines: {node: '>= 5.10.0'}
dependencies:
big-integer: 1.6.51
- dev: false
/brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -11640,24 +11067,6 @@ packages:
balanced-match: 1.0.2
dev: true
- /braces@2.3.2:
- resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-flatten: 1.1.0
- array-unique: 0.3.2
- extend-shallow: 2.0.1
- fill-range: 4.0.0
- isobject: 3.0.1
- repeat-element: 1.1.4
- snapdragon: 0.8.2
- snapdragon-node: 2.1.1
- split-string: 3.1.0
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
@@ -11670,67 +11079,14 @@ packages:
wcwidth: 1.0.1
dev: true
- /brorand@1.1.0:
- resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
- dev: true
-
/browser-assert@1.2.1:
resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==}
dev: true
- /browserify-aes@1.2.0:
- resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
+ /browserify-zlib@0.1.4:
+ resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==}
dependencies:
- buffer-xor: 1.0.3
- cipher-base: 1.0.4
- create-hash: 1.2.0
- evp_bytestokey: 1.0.3
- inherits: 2.0.4
- safe-buffer: 5.2.1
- dev: true
-
- /browserify-cipher@1.0.1:
- resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==}
- dependencies:
- browserify-aes: 1.2.0
- browserify-des: 1.0.2
- evp_bytestokey: 1.0.3
- dev: true
-
- /browserify-des@1.0.2:
- resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==}
- dependencies:
- cipher-base: 1.0.4
- des.js: 1.0.1
- inherits: 2.0.4
- safe-buffer: 5.2.1
- dev: true
-
- /browserify-rsa@4.1.0:
- resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==}
- dependencies:
- bn.js: 5.2.1
- randombytes: 2.1.0
- dev: true
-
- /browserify-sign@4.2.1:
- resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==}
- dependencies:
- bn.js: 5.2.1
- browserify-rsa: 4.1.0
- create-hash: 1.2.0
- create-hmac: 1.1.7
- elliptic: 6.5.4
- inherits: 2.0.4
- parse-asn1: 5.1.6
- readable-stream: 3.6.2
- safe-buffer: 5.2.1
- dev: true
-
- /browserify-zlib@0.2.0:
- resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
- dependencies:
- pako: 1.0.11
+ pako: 0.2.9
dev: true
/browserslist@4.21.5:
@@ -11768,18 +11124,6 @@ packages:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
dev: true
- /buffer-xor@1.0.3:
- resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
- dev: true
-
- /buffer@4.9.2:
- resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
- isarray: 1.0.0
- dev: true
-
/buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
@@ -11791,10 +11135,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /builtin-status-codes@3.0.0:
- resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
- dev: true
-
/bundle-name@3.0.0:
resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
engines: {node: '>=12'}
@@ -11830,26 +11170,6 @@ packages:
yargs-parser: 20.2.9
dev: true
- /cacache@12.0.4:
- resolution: {integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==}
- dependencies:
- bluebird: 3.7.2
- chownr: 1.1.4
- figgy-pudding: 3.5.2
- glob: 7.2.3
- graceful-fs: 4.2.11
- infer-owner: 1.0.4
- lru-cache: 5.1.1
- mississippi: 3.0.0
- mkdirp: 0.5.6
- move-concurrently: 1.0.1
- promise-inflight: 1.0.1(bluebird@3.7.2)
- rimraf: 2.7.1
- ssri: 6.0.2
- unique-filename: 1.1.1
- y18n: 4.0.3
- dev: true
-
/cacache@15.3.0:
resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
engines: {node: '>= 10'}
@@ -11867,28 +11187,15 @@ packages:
minipass-pipeline: 1.2.4
mkdirp: 1.0.4
p-map: 4.0.0
- promise-inflight: 1.0.1(bluebird@3.7.2)
+ promise-inflight: 1.0.1
rimraf: 3.0.2
ssri: 8.0.1
tar: 6.1.13
unique-filename: 1.1.1
transitivePeerDependencies:
- bluebird
-
- /cache-base@1.0.1:
- resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- collection-visit: 1.0.0
- component-emitter: 1.3.0
- get-value: 2.0.6
- has-value: 1.0.0
- isobject: 3.0.1
- set-value: 2.0.1
- to-object-path: 0.3.0
- union-value: 1.0.1
- unset-value: 1.0.0
- dev: true
+ dev: false
+ optional: true
/cacheable-lookup@5.0.4:
resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
@@ -11912,10 +11219,6 @@ packages:
function-bind: 1.1.1
get-intrinsic: 1.2.0
- /call-me-maybe@1.0.2:
- resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
- dev: true
-
/callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -11927,20 +11230,6 @@ packages:
tslib: 2.5.0
dev: true
- /camelcase-css@2.0.1:
- resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
- engines: {node: '>= 6'}
- dev: true
-
- /camelcase-keys@2.1.0:
- resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- camelcase: 2.1.1
- map-obj: 1.0.1
- dev: true
- optional: true
-
/camelcase-keys@6.2.2:
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
engines: {node: '>=8'}
@@ -11965,12 +11254,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /camelcase@2.1.1:
- resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
/camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
@@ -11988,22 +11271,11 @@ packages:
resolution: {integrity: sha512-065uNwY6QtHCBOExzbV6m236DDhYCCtPmQUCoQtwkVqzud8v5QPidoMr6CoMkC2nfp6nksjttqWQRRh75LqUmA==}
dev: true
- /capture-exit@2.0.0:
- resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==}
- engines: {node: 6.* || 8.* || >= 10.*}
- dependencies:
- rsvp: 4.8.5
- dev: true
-
/case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
engines: {node: '>=4'}
dev: true
- /ccount@1.1.0:
- resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
- dev: true
-
/center-align@0.1.3:
resolution: {integrity: sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ==}
engines: {node: '>=0.10.0'}
@@ -12061,24 +11333,12 @@ packages:
engines: {node: '>=10'}
dev: true
- /character-entities-legacy@1.1.4:
- resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
- dev: true
-
- /character-entities@1.2.4:
- resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
- dev: true
-
/character-parser@2.2.0:
resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==}
dependencies:
is-regex: 1.1.4
dev: true
- /character-reference-invalid@1.1.4:
- resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
- dev: true
-
/chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
@@ -12086,28 +11346,6 @@ packages:
resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
dev: false
- /chokidar@2.1.8:
- resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==}
- deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
- dependencies:
- anymatch: 2.0.0
- async-each: 1.0.6
- braces: 2.3.2
- glob-parent: 3.1.0
- inherits: 2.0.4
- is-binary-path: 1.0.1
- is-glob: 4.0.3
- normalize-path: 3.0.0
- path-is-absolute: 1.0.1
- readdirp: 2.2.1
- upath: 1.2.0
- optionalDependencies:
- fsevents: 1.2.13
- transitivePeerDependencies:
- - supports-color
- dev: true
- optional: true
-
/chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
@@ -12153,36 +11391,15 @@ packages:
- supports-color
dev: true
- /ci-info@2.0.0:
- resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- dev: true
-
/ci-info@3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
dev: true
- /cipher-base@1.0.4:
- resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
- dependencies:
- inherits: 2.0.4
- safe-buffer: 5.2.1
- dev: true
-
/cjs-module-lexer@1.2.2:
resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==}
dev: true
- /class-utils@0.3.6:
- resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-union: 3.1.0
- define-property: 0.2.5
- isobject: 3.0.1
- static-extend: 0.1.2
- dev: true
-
/classnames@2.3.2:
resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
@@ -12311,22 +11528,10 @@ packages:
resolution: {integrity: sha512-z2jlHBocElRnPYysN2HAuhXbO3DNB0bcSKmNz3hcWR2Js2Dkhc1bEOxG93Z3DeUrnm+qx56XOY5wQmbP5KY0sw==}
dev: false
- /collapse-white-space@1.0.6:
- resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
- dev: true
-
/collect-v8-coverage@1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
dev: true
- /collection-visit@1.0.0:
- resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- map-visit: 1.0.0
- object-visit: 1.0.1
- dev: true
-
/color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
@@ -12371,10 +11576,6 @@ packages:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
dev: true
- /colorette@1.4.0:
- resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
- dev: true
-
/colorette@2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
@@ -12384,10 +11585,6 @@ packages:
dependencies:
delayed-stream: 1.0.0
- /comma-separated-tokens@1.0.8:
- resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
- dev: true
-
/commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
dev: true
@@ -12494,10 +11691,6 @@ packages:
engines: {node: '>=0.8'}
dev: true
- /console-browserify@1.2.0:
- resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
- dev: true
-
/console-control-strings@1.1.0:
resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
@@ -12510,10 +11703,6 @@ packages:
babylon: 6.18.0
dev: true
- /constants-browserify@1.0.0:
- resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
- dev: true
-
/consumable-stream@2.0.0:
resolution: {integrity: sha512-I6WA2JVYXs/68rEvi1ie3rZjP6qusTVFEQkbzR+WC+fY56TpwiGTIDJETsrnlxv5CsnmK69ps6CkYvIbpEEqBA==}
@@ -12557,22 +11746,6 @@ packages:
resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==}
dev: true
- /copy-concurrently@1.0.5:
- resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==}
- dependencies:
- aproba: 1.2.0
- fs-write-stream-atomic: 1.0.10
- iferr: 0.1.5
- mkdirp: 0.5.6
- rimraf: 2.7.1
- run-queue: 1.0.3
- dev: true
-
- /copy-descriptor@0.1.1:
- resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/copy-to-clipboard@3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
dependencies:
@@ -12609,11 +11782,6 @@ packages:
deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
requiresBuild: true
- /core-js@3.29.1:
- resolution: {integrity: sha512-+jwgnhg6cQxKYIIjGtAHq2nwUOolo9eoFZ4sHfUH09BLXBgxnH4gA0zEd+t+BO2cNB8idaBtZFcFTRjQJRJmAw==}
- requiresBuild: true
- dev: true
-
/core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -12625,17 +11793,6 @@ packages:
vary: 1.1.2
dev: false
- /cosmiconfig@6.0.0:
- resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
- engines: {node: '>=8'}
- dependencies:
- '@types/parse-json': 4.0.0
- import-fresh: 3.3.0
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
- dev: true
-
/cosmiconfig@7.1.0:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
@@ -12656,16 +11813,6 @@ packages:
path-type: 4.0.0
dev: true
- /cp-file@7.0.0:
- resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==}
- engines: {node: '>=8'}
- dependencies:
- graceful-fs: 4.2.11
- make-dir: 3.1.0
- nested-error-stacks: 2.1.1
- p-event: 4.2.0
- dev: true
-
/cp-file@9.1.0:
resolution: {integrity: sha512-3scnzFj/94eb7y4wyXRWwvzLFaQp87yyfTnChIjlfYrVqp5lVO3E2hIJMeQIltUT0K2ZAB3An1qXcBmwGyvuwA==}
engines: {node: '>=10'}
@@ -12685,23 +11832,6 @@ packages:
meow: 10.1.5
dev: true
- /cpy@8.1.2:
- resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==}
- engines: {node: '>=8'}
- dependencies:
- arrify: 2.0.1
- cp-file: 7.0.0
- globby: 9.2.0
- has-glob: 1.0.0
- junk: 3.1.0
- nested-error-stacks: 2.1.1
- p-all: 2.1.0
- p-filter: 2.1.0
- p-map: 3.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/cpy@9.0.1:
resolution: {integrity: sha512-D9U0DR5FjTCN3oMTcFGktanHnAG5l020yvOCR1zKILmAyPP7I/9pl6NFgRbDcmSENtbK1sQLBz1p9HIOlroiNg==}
engines: {node: ^12.20.0 || ^14.17.0 || >=16.0.0}
@@ -12716,34 +11846,6 @@ packages:
p-map: 5.5.0
dev: true
- /create-ecdh@4.0.4:
- resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
- dependencies:
- bn.js: 4.12.0
- elliptic: 6.5.4
- dev: true
-
- /create-hash@1.2.0:
- resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
- dependencies:
- cipher-base: 1.0.4
- inherits: 2.0.4
- md5.js: 1.3.5
- ripemd160: 2.0.2
- sha.js: 2.4.11
- dev: true
-
- /create-hmac@1.1.7:
- resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
- dependencies:
- cipher-base: 1.0.4
- create-hash: 1.2.0
- inherits: 2.0.4
- ripemd160: 2.0.2
- safe-buffer: 5.2.1
- sha.js: 2.4.11
- dev: true
-
/create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
dev: true
@@ -12764,17 +11866,6 @@ packages:
which: 1.3.1
dev: true
- /cross-spawn@6.0.5:
- resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
- engines: {node: '>=4.8'}
- dependencies:
- nice-try: 1.0.5
- path-key: 2.0.1
- semver: 5.7.1
- shebang-command: 1.2.0
- which: 1.3.1
- dev: true
-
/cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -12793,20 +11884,9 @@ packages:
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
dev: false
- /crypto-browserify@3.12.0:
- resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
- dependencies:
- browserify-cipher: 1.0.1
- browserify-sign: 4.2.1
- create-ecdh: 4.0.4
- create-hash: 1.2.0
- create-hmac: 1.1.7
- diffie-hellman: 5.0.3
- inherits: 2.0.4
- pbkdf2: 3.1.2
- public-encrypt: 4.0.3
- randombytes: 2.1.0
- randomfill: 1.0.4
+ /crypto-random-string@2.0.0:
+ resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
+ engines: {node: '>=8'}
dev: true
/css-box-model@1.2.1:
@@ -12824,47 +11904,6 @@ packages:
engines: {node: '>=12.22'}
dev: true
- /css-loader@3.6.0(webpack@4.46.0):
- resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==}
- engines: {node: '>= 8.9.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- camelcase: 5.3.1
- cssesc: 3.0.0
- icss-utils: 4.1.1
- loader-utils: 1.4.2
- normalize-path: 3.0.0
- postcss: 7.0.39
- postcss-modules-extract-imports: 2.0.0
- postcss-modules-local-by-default: 3.0.3
- postcss-modules-scope: 2.2.0
- postcss-modules-values: 3.0.0
- postcss-value-parser: 4.2.0
- schema-utils: 2.7.1
- semver: 6.3.0
- webpack: 4.46.0
- dev: true
-
- /css-loader@5.2.7(webpack@5.76.3):
- resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.27.0 || ^5.0.0
- dependencies:
- icss-utils: 5.1.0(postcss@8.4.21)
- loader-utils: 2.0.4
- postcss: 8.4.21
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.21)
- postcss-modules-local-by-default: 4.0.0(postcss@8.4.21)
- postcss-modules-scope: 3.0.0(postcss@8.4.21)
- postcss-modules-values: 4.0.0(postcss@8.4.21)
- postcss-value-parser: 4.2.0
- schema-utils: 3.1.1
- semver: 7.3.8
- webpack: 5.76.3(webpack-cli@5.0.1)
- dev: true
-
/css-loader@6.7.3(webpack@5.76.3):
resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==}
engines: {node: '>= 12.13.0'}
@@ -12969,22 +12008,10 @@ packages:
stream-transform: 2.1.3
dev: true
- /currently-unhandled@0.4.1:
- resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==}
- engines: {node: '>=0.10.0'}
- dependencies:
- array-find-index: 1.0.2
- dev: true
- optional: true
-
/custom-event@1.0.0:
resolution: {integrity: sha512-6nOXX3UitrmdvSJWoVR2dlzhbX5bEUqmqsMUyx1ypCLZkHHkcuYtdpW3p94RGvcFkTV7DkLo+Ilbwnlwi8L+jw==}
dev: false
- /cyclist@1.0.1:
- resolution: {integrity: sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==}
- dev: true
-
/d3-array@3.2.3:
resolution: {integrity: sha512-JRHwbQQ84XuAESWhvIPaUV4/1UYTBOLiOPGWqgFDHZS1D5QN9c57FbH3QpEnQMYiOXNzKUQyGTZf+EVO7RT5TQ==}
engines: {node: '>=12'}
@@ -13292,11 +12319,6 @@ packages:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dev: true
- /decode-uri-component@0.2.2:
- resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
- engines: {node: '>=0.10'}
- dev: true
-
/decompress-response@6.0.0:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
@@ -13341,25 +12363,12 @@ packages:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- /default-browser-id@1.0.4:
- resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==}
- engines: {node: '>=0.10.0'}
- hasBin: true
- requiresBuild: true
- dependencies:
- bplist-parser: 0.1.1
- meow: 3.7.0
- untildify: 2.1.0
- dev: true
- optional: true
-
/default-browser-id@3.0.0:
resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
engines: {node: '>=12'}
dependencies:
bplist-parser: 0.2.0
untildify: 4.0.0
- dev: false
/default-browser@4.0.0:
resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
@@ -13404,26 +12413,22 @@ packages:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
- /define-property@0.2.5:
- resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-descriptor: 0.1.6
+ /defu@6.1.2:
+ resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
dev: true
- /define-property@1.0.0:
- resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
- engines: {node: '>=0.10.0'}
+ /del@6.1.1:
+ resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
+ engines: {node: '>=10'}
dependencies:
- is-descriptor: 1.0.2
- dev: true
-
- /define-property@2.0.2:
- resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-descriptor: 1.0.2
- isobject: 3.0.1
+ globby: 11.1.0
+ graceful-fs: 4.2.11
+ is-glob: 4.0.3
+ is-path-cwd: 2.2.0
+ is-path-inside: 3.0.3
+ p-map: 4.0.0
+ rimraf: 3.0.2
+ slash: 3.0.0
dev: true
/delaunator@5.0.0:
@@ -13450,25 +12455,11 @@ packages:
/dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- dev: false
-
- /des.js@1.0.1:
- resolution: {integrity: sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==}
- dependencies:
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
- dev: true
/destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- /detab@2.0.4:
- resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==}
- dependencies:
- repeat-string: 1.6.1
- dev: true
-
/detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
@@ -13534,21 +12525,6 @@ packages:
engines: {node: '>=0.3.1'}
dev: true
- /diffie-hellman@5.0.3:
- resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==}
- dependencies:
- bn.js: 4.12.0
- miller-rabin: 4.0.1
- randombytes: 2.1.0
- dev: true
-
- /dir-glob@2.2.2:
- resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==}
- engines: {node: '>=4'}
- dependencies:
- path-type: 3.0.0
- dev: true
-
/dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -13614,11 +12590,6 @@ packages:
resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==}
dev: true
- /domain-browser@1.2.0:
- resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==}
- engines: {node: '>=0.4', npm: '>=1.2'}
- dev: true
-
/domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
@@ -13652,8 +12623,9 @@ packages:
tslib: 2.5.0
dev: true
- /dotenv-expand@5.1.0:
- resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
+ /dotenv-expand@10.0.0:
+ resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==}
+ engines: {node: '>=12'}
dev: true
/dotenv@10.0.0:
@@ -13661,9 +12633,9 @@ packages:
engines: {node: '>=10'}
dev: true
- /dotenv@8.6.0:
- resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
- engines: {node: '>=10'}
+ /dotenv@16.0.3:
+ resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
+ engines: {node: '>=12'}
dev: true
/dragula@3.7.2:
@@ -13695,6 +12667,14 @@ packages:
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
+ /ejs@3.1.9:
+ resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+ dependencies:
+ jake: 10.8.5
+ dev: true
+
/electron-to-chromium@1.4.340:
resolution: {integrity: sha512-zx8hqumOqltKsv/MF50yvdAlPF9S/4PXbyfzJS6ZGhbddGkRegdwImmfSVqCkEziYzrIGZ/TlrzBND4FysfkDg==}
dev: true
@@ -13711,18 +12691,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /elliptic@6.5.4:
- resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
- dependencies:
- bn.js: 4.12.0
- brorand: 1.1.0
- hash.js: 1.1.7
- hmac-drbg: 1.0.1
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
- minimalistic-crypto-utils: 1.0.1
- dev: true
-
/emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
engines: {node: '>=12'}
@@ -13770,15 +12738,6 @@ packages:
objectorarray: 1.0.5
dev: true
- /enhanced-resolve@4.5.0:
- resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- graceful-fs: 4.2.11
- memory-fs: 0.5.0
- tapable: 1.1.3
- dev: true
-
/enhanced-resolve@5.12.0:
resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
engines: {node: '>=10.13.0'}
@@ -13818,13 +12777,6 @@ packages:
dev: false
optional: true
- /errno@0.1.8:
- resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
- hasBin: true
- dependencies:
- prr: 1.0.1
- dev: true
-
/error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
@@ -13876,10 +12828,6 @@ packages:
which-typed-array: 1.1.9
dev: true
- /es-array-method-boxes-properly@1.0.0:
- resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
- dev: true
-
/es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
dependencies:
@@ -13922,17 +12870,12 @@ packages:
is-symbol: 1.0.4
dev: true
- /es5-shim@4.6.7:
- resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==}
- engines: {node: '>=0.4.0'}
- dev: true
-
/es6-error@4.1.1:
resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==}
optional: true
- /es6-shim@0.35.8:
- resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==}
+ /es6-object-assign@1.1.0:
+ resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==}
dev: true
/es6-template-regex@0.1.1:
@@ -13949,6 +12892,51 @@ packages:
sliced: 1.0.1
dev: false
+ /esbuild-plugin-alias@0.2.1:
+ resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
+ dev: true
+
+ /esbuild-register@3.4.2(esbuild@0.17.15):
+ resolution: {integrity: sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==}
+ peerDependencies:
+ esbuild: '>=0.12 <1'
+ dependencies:
+ debug: 4.3.4(supports-color@5.5.0)
+ esbuild: 0.17.15
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /esbuild@0.17.15:
+ resolution: {integrity: sha512-LBUV2VsUIc/iD9ME75qhT4aJj0r75abCVS0jakhFzOtR7TQsqQA5w0tZ+KTKnwl3kXE0MhskNdHDh/I5aCR1Zw==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/android-arm': 0.17.15
+ '@esbuild/android-arm64': 0.17.15
+ '@esbuild/android-x64': 0.17.15
+ '@esbuild/darwin-arm64': 0.17.15
+ '@esbuild/darwin-x64': 0.17.15
+ '@esbuild/freebsd-arm64': 0.17.15
+ '@esbuild/freebsd-x64': 0.17.15
+ '@esbuild/linux-arm': 0.17.15
+ '@esbuild/linux-arm64': 0.17.15
+ '@esbuild/linux-ia32': 0.17.15
+ '@esbuild/linux-loong64': 0.17.15
+ '@esbuild/linux-mips64el': 0.17.15
+ '@esbuild/linux-ppc64': 0.17.15
+ '@esbuild/linux-riscv64': 0.17.15
+ '@esbuild/linux-s390x': 0.17.15
+ '@esbuild/linux-x64': 0.17.15
+ '@esbuild/netbsd-x64': 0.17.15
+ '@esbuild/openbsd-x64': 0.17.15
+ '@esbuild/sunos-x64': 0.17.15
+ '@esbuild/win32-arm64': 0.17.15
+ '@esbuild/win32-ia32': 0.17.15
+ '@esbuild/win32-x64': 0.17.15
+ dev: true
+
/escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
@@ -14183,14 +13171,6 @@ packages:
string.prototype.matchall: 4.0.8
dev: true
- /eslint-scope@4.0.3:
- resolution: {integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==}
- engines: {node: '>=4.0.0'}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
- dev: true
-
/eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
@@ -14315,7 +13295,7 @@ packages:
engines: {node: '>=8.3.0'}
dependencies:
'@babel/traverse': 7.21.3(supports-color@5.5.0)
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
c8: 7.13.0
transitivePeerDependencies:
- supports-color
@@ -14342,30 +13322,6 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- /evp_bytestokey@1.0.3:
- resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
- dependencies:
- md5.js: 1.3.5
- safe-buffer: 5.2.1
- dev: true
-
- /exec-sh@0.3.6:
- resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==}
- dev: true
-
- /execa@1.0.0:
- resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
- engines: {node: '>=6'}
- dependencies:
- cross-spawn: 6.0.5
- get-stream: 4.1.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
- dev: true
-
/execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -14400,21 +13356,6 @@ packages:
engines: {node: '>= 0.8.0'}
dev: true
- /expand-brackets@2.1.4:
- resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- debug: 2.6.9
- define-property: 0.2.5
- extend-shallow: 2.0.1
- posix-character-classes: 0.1.1
- regex-not: 1.0.2
- snapdragon: 0.8.2
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/expect@29.5.0:
resolution: {integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -14469,14 +13410,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
-
- /extend-shallow@3.0.2:
- resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==}
- engines: {node: '>=0.10.0'}
- dependencies:
- assign-symbols: 1.0.0
- is-extendable: 1.0.1
- dev: true
+ dev: false
/extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
@@ -14494,18 +13428,14 @@ packages:
iconv-lite: 0.4.24
tmp: 0.0.33
- /extglob@2.0.4:
- resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
- engines: {node: '>=0.10.0'}
+ /extract-zip@1.7.0:
+ resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==}
+ hasBin: true
dependencies:
- array-unique: 0.3.2
- define-property: 1.0.0
- expand-brackets: 2.1.4
- extend-shallow: 2.0.1
- fragment-cache: 0.2.1
- regex-not: 1.0.2
- snapdragon: 0.8.2
- to-regex: 3.0.2
+ concat-stream: 1.6.2
+ debug: 2.6.9
+ mkdirp: 0.5.6
+ yauzl: 2.10.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -14526,20 +13456,6 @@ packages:
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-glob@2.2.7:
- resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==}
- engines: {node: '>=4.0.0'}
- dependencies:
- '@mrmlnc/readdir-enhanced': 2.2.1
- '@nodelib/fs.stat': 1.1.3
- glob-parent: 3.1.0
- is-glob: 4.0.3
- merge2: 1.4.1
- micromatch: 3.1.10
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
@@ -14610,10 +13526,6 @@ packages:
resolution: {integrity: sha512-LXcdgpdcVedccGg0AZqg+S8lX/FCdwXD92WNZ5k5qsb0irRhSFsBOpcJt7oevyqT2/C2nEE0zSFNdBEpj3YOSw==}
dev: true
- /figgy-pudding@3.5.2:
- resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==}
- dev: true
-
/figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
@@ -14627,17 +13539,6 @@ packages:
flat-cache: 3.0.4
dev: true
- /file-loader@6.2.0(webpack@4.46.0):
- resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.1.1
- webpack: 4.46.0
- dev: true
-
/file-loader@6.2.0(webpack@5.76.3):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
@@ -14649,27 +13550,17 @@ packages:
webpack: 5.76.3(webpack-cli@5.0.1)
dev: true
- /file-system-cache@1.1.0:
- resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==}
+ /file-system-cache@2.0.2:
+ resolution: {integrity: sha512-lp4BHO4CWqvRyx88Tt3quZic9ZMf4cJyquYq7UI8sH42Bm2ArlBBjKQAalZOo+UfaBassb7X123Lik5qZ/tSAA==}
dependencies:
- fs-extra: 10.1.0
+ fs-extra: 11.1.1
ramda: 0.28.0
dev: true
- /file-uri-to-path@1.0.0:
- resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- requiresBuild: true
- dev: true
- optional: true
-
- /fill-range@4.0.0:
- resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
- engines: {node: '>=0.10.0'}
+ /filelist@1.0.4:
+ resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
- extend-shallow: 2.0.1
- is-number: 3.0.0
- repeat-string: 1.6.1
- to-regex-range: 2.1.1
+ minimatch: 5.1.6
dev: true
/fill-range@7.0.1:
@@ -14714,15 +13605,6 @@ packages:
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
dev: false
- /find-up@1.1.2:
- resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- path-exists: 2.1.0
- pinkie-promise: 2.0.1
- dev: true
- optional: true
-
/find-up@3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
engines: {node: '>=6'}
@@ -14770,11 +13652,9 @@ packages:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
dev: true
- /flush-write-stream@1.1.1:
- resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
- dependencies:
- inherits: 2.0.4
- readable-stream: 2.3.8
+ /flow-parser@0.203.1:
+ resolution: {integrity: sha512-Nw2M8MPP/Zb+yhvmPDEjzkCXLtgyWGKXZjAYOVftm+wIf3xd4FKa7nRI9v67rODs0WzxMbPc8IPs/7o/dyxo/Q==}
+ engines: {node: '>=0.4.0'}
dev: true
/focus-lock@0.11.6:
@@ -14799,11 +13679,6 @@ packages:
dependencies:
is-callable: 1.2.7
- /for-in@1.0.2:
- resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/foreground-child@2.0.0:
resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==}
engines: {node: '>=8.0.0'}
@@ -14812,96 +13687,31 @@ packages:
signal-exit: 3.0.7
dev: true
- /fork-ts-checker-webpack-plugin@4.1.6(eslint@8.36.0)(typescript@4.9.5)(webpack@4.46.0):
- resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==}
- engines: {node: '>=6.11.5', yarn: '>=1.0.0'}
+ /fork-ts-checker-webpack-plugin@7.3.0(typescript@4.9.5)(webpack@5.76.3):
+ resolution: {integrity: sha512-IN+XTzusCjR5VgntYFgxbxVx3WraPRnKehBFrf00cMSrtUuW9MsG9dhL6MWpY6MkjC3wVwoujfCDgZZCQwbswA==}
+ engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
peerDependencies:
- eslint: '>= 6'
- typescript: '>= 2.7'
+ typescript: '>3.6.0'
vue-template-compiler: '*'
- webpack: '>= 4'
+ webpack: ^5.11.0
peerDependenciesMeta:
- eslint:
- optional: true
vue-template-compiler:
optional: true
dependencies:
'@babel/code-frame': 7.18.6
- chalk: 2.4.2
- eslint: 8.36.0
- micromatch: 3.1.10
- minimatch: 3.1.2
- semver: 5.7.1
- tapable: 1.1.3
- typescript: 4.9.5
- webpack: 4.46.0
- worker-rpc: 0.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.36.0)(typescript@4.9.5)(webpack@4.46.0):
- resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
- engines: {node: '>=10', yarn: '>=1.0.0'}
- peerDependencies:
- eslint: '>= 6'
- typescript: '>= 2.7'
- vue-template-compiler: '*'
- webpack: '>= 4'
- peerDependenciesMeta:
- eslint:
- optional: true
- vue-template-compiler:
- optional: true
- dependencies:
- '@babel/code-frame': 7.18.6
- '@types/json-schema': 7.0.11
chalk: 4.1.2
chokidar: 3.5.3
- cosmiconfig: 6.0.0
+ cosmiconfig: 7.1.0
deepmerge: 4.3.1
- eslint: 8.36.0
- fs-extra: 9.1.0
- glob: 7.2.3
+ fs-extra: 10.1.0
memfs: 3.4.13
minimatch: 3.1.2
- schema-utils: 2.7.0
+ node-abort-controller: 3.1.1
+ schema-utils: 3.1.1
semver: 7.3.8
- tapable: 1.1.3
+ tapable: 2.2.1
typescript: 4.9.5
- webpack: 4.46.0
- dev: true
-
- /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.36.0)(typescript@4.9.5)(webpack@5.76.3):
- resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
- engines: {node: '>=10', yarn: '>=1.0.0'}
- peerDependencies:
- eslint: '>= 6'
- typescript: '>= 2.7'
- vue-template-compiler: '*'
- webpack: '>= 4'
- peerDependenciesMeta:
- eslint:
- optional: true
- vue-template-compiler:
- optional: true
- dependencies:
- '@babel/code-frame': 7.18.6
- '@types/json-schema': 7.0.11
- chalk: 4.1.2
- chokidar: 3.5.3
- cosmiconfig: 6.0.0
- deepmerge: 4.3.1
- eslint: 8.36.0
- fs-extra: 9.1.0
- glob: 7.2.3
- memfs: 3.4.13
- minimatch: 3.1.2
- schema-utils: 2.7.0
- semver: 7.3.8
- tapable: 1.1.3
- typescript: 4.9.5
- webpack: 5.76.3(webpack-cli@5.0.1)
+ webpack: 5.76.3(esbuild@0.17.15)
dev: true
/fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.76.3):
@@ -14957,18 +13767,11 @@ packages:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
- /fragment-cache@0.2.1:
- resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- map-cache: 0.2.2
- dev: true
-
/framer-motion@10.9.1(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-fuCDRGKOu5n9gN2/R7O22mE+BHMGK5D57S3Oq8n2ITd4aYR7D22QM5I4VPD3CWahNt/lyDUs20u9Aw+6ah9oAQ==}
peerDependencies:
- react: ^18.0.0 || 18
- react-dom: ^18.0.0 || 18
+ react: ^18.0.0
+ react-dom: ^18.0.0
peerDependenciesMeta:
react:
optional: true
@@ -14992,13 +13795,6 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- /from2@2.3.0:
- resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
- dependencies:
- inherits: 2.0.4
- readable-stream: 2.3.8
- dev: true
-
/fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
dev: true
@@ -15038,16 +13834,6 @@ packages:
jsonfile: 4.0.0
universalify: 0.1.2
- /fs-extra@9.1.0:
- resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
- engines: {node: '>=10'}
- dependencies:
- at-least-node: 1.0.0
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.0
- dev: true
-
/fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
@@ -15062,30 +13848,9 @@ packages:
resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==}
dev: true
- /fs-write-stream-atomic@1.0.10:
- resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==}
- dependencies:
- graceful-fs: 4.2.11
- iferr: 0.1.5
- imurmurhash: 0.1.4
- readable-stream: 2.3.8
- dev: true
-
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- /fsevents@1.2.13:
- resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
- engines: {node: '>= 4.0'}
- os: [darwin]
- deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
- requiresBuild: true
- dependencies:
- bindings: 1.5.0
- nan: 2.17.0
- dev: true
- optional: true
-
/fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -15160,6 +13925,11 @@ packages:
engines: {node: '>=6'}
dev: false
+ /get-npm-tarball-url@2.0.3:
+ resolution: {integrity: sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==}
+ engines: {node: '>=12.17'}
+ dev: true
+
/get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
@@ -15168,24 +13938,16 @@ packages:
resolution: {integrity: sha512-41eOxtlGgHQRbFyA8KTH+w+32Em3cRdfBud7j67ulzmIfmaHX9doq47s0fa4P5o9H64BZX9nrYI6sJvk46Op+Q==}
dev: false
+ /get-port@5.1.1:
+ resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
+ engines: {node: '>=8'}
+ dev: true
+
/get-port@6.1.2:
resolution: {integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: false
- /get-stdin@4.0.1:
- resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
- /get-stream@4.1.0:
- resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
- engines: {node: '>=6'}
- dependencies:
- pump: 3.0.0
- dev: true
-
/get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
@@ -15207,20 +13969,29 @@ packages:
/get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
+ dev: false
/getopts@2.3.0:
resolution: {integrity: sha512-5eDf9fuSXwxBL6q5HX+dhDj+dslFGWzU5thZ9kNKUkcPtaPdatmUFKwHFrLb/uf/WpA4BHET+AX3Scl56cAjpA==}
dev: false
- /github-slugger@1.5.0:
- resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
+ /giget@1.1.2:
+ resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==}
+ hasBin: true
+ dependencies:
+ colorette: 2.0.19
+ defu: 6.1.2
+ https-proxy-agent: 5.0.1
+ mri: 1.2.0
+ node-fetch-native: 1.0.2
+ pathe: 1.1.0
+ tar: 6.1.13
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /glob-parent@3.1.0:
- resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==}
- dependencies:
- is-glob: 3.1.0
- path-dirname: 1.0.2
+ /github-slugger@1.5.0:
+ resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
dev: true
/glob-parent@5.1.2:
@@ -15236,18 +14007,14 @@ packages:
is-glob: 4.0.3
dev: true
- /glob-promise@3.4.0(glob@7.2.3):
- resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==}
- engines: {node: '>=4'}
+ /glob-promise@6.0.2(glob@8.1.0):
+ resolution: {integrity: sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==}
+ engines: {node: '>=16'}
peerDependencies:
- glob: '*'
+ glob: ^8.0.3
dependencies:
'@types/glob': 8.1.0
- glob: 7.2.3
- dev: true
-
- /glob-to-regexp@0.3.0:
- resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==}
+ glob: 8.1.0
dev: true
/glob-to-regexp@0.4.1:
@@ -15260,7 +14027,7 @@ packages:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 3.0.5
+ minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
dev: true
@@ -15372,22 +14139,6 @@ packages:
slash: 4.0.0
dev: true
- /globby@9.2.0:
- resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==}
- engines: {node: '>=6'}
- dependencies:
- '@types/glob': 7.2.0
- array-union: 1.0.2
- dir-glob: 2.2.2
- fast-glob: 2.2.7
- glob: 7.2.3
- ignore: 4.0.6
- pify: 4.0.1
- slash: 2.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/globjoin@0.1.4:
resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
dev: true
@@ -15430,6 +14181,18 @@ packages:
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
dev: false
+ /gunzip-maybe@1.4.2:
+ resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==}
+ hasBin: true
+ dependencies:
+ browserify-zlib: 0.1.4
+ is-deflate: 1.0.0
+ is-gzip: 1.0.0
+ peek-stream: 1.1.3
+ pumpify: 1.5.1
+ through2: 2.0.5
+ dev: true
+
/handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
dev: true
@@ -15464,13 +14227,6 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-glob@1.0.0:
- resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-glob: 3.1.0
- dev: true
-
/has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
@@ -15494,121 +14250,12 @@ packages:
/has-unicode@2.0.1:
resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
- /has-value@0.3.1:
- resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
- engines: {node: '>=0.10.0'}
- dependencies:
- get-value: 2.0.6
- has-values: 0.1.4
- isobject: 2.1.0
- dev: true
-
- /has-value@1.0.0:
- resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- get-value: 2.0.6
- has-values: 1.0.0
- isobject: 3.0.1
- dev: true
-
- /has-values@0.1.4:
- resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /has-values@1.0.0:
- resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-number: 3.0.0
- kind-of: 4.0.0
- dev: true
-
/has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
- /hash-base@3.1.0:
- resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
- engines: {node: '>=4'}
- dependencies:
- inherits: 2.0.4
- readable-stream: 3.6.2
- safe-buffer: 5.2.1
- dev: true
-
- /hash.js@1.1.7:
- resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
- dependencies:
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
- dev: true
-
- /hast-to-hyperscript@9.0.1:
- resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==}
- dependencies:
- '@types/unist': 2.0.6
- comma-separated-tokens: 1.0.8
- property-information: 5.6.0
- space-separated-tokens: 1.1.5
- style-to-object: 0.3.0
- unist-util-is: 4.1.0
- web-namespaces: 1.1.4
- dev: true
-
- /hast-util-from-parse5@6.0.1:
- resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==}
- dependencies:
- '@types/parse5': 5.0.3
- hastscript: 6.0.0
- property-information: 5.6.0
- vfile: 4.2.1
- vfile-location: 3.2.0
- web-namespaces: 1.1.4
- dev: true
-
- /hast-util-parse-selector@2.2.5:
- resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
- dev: true
-
- /hast-util-raw@6.0.1:
- resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==}
- dependencies:
- '@types/hast': 2.3.4
- hast-util-from-parse5: 6.0.1
- hast-util-to-parse5: 6.0.0
- html-void-elements: 1.0.5
- parse5: 6.0.1
- unist-util-position: 3.1.0
- vfile: 4.2.1
- web-namespaces: 1.1.4
- xtend: 4.0.2
- zwitch: 1.0.5
- dev: true
-
- /hast-util-to-parse5@6.0.0:
- resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==}
- dependencies:
- hast-to-hyperscript: 9.0.1
- property-information: 5.6.0
- web-namespaces: 1.1.4
- xtend: 4.0.2
- zwitch: 1.0.5
- dev: true
-
- /hastscript@6.0.0:
- resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
- dependencies:
- '@types/hast': 2.3.4
- comma-separated-tokens: 1.0.8
- hast-util-parse-selector: 2.2.5
- property-information: 5.6.0
- space-separated-tokens: 1.1.5
- dev: true
-
/he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
@@ -15627,14 +14274,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /hmac-drbg@1.0.1:
- resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
- dependencies:
- hash.js: 1.1.7
- minimalistic-assert: 1.0.1
- minimalistic-crypto-utils: 1.0.1
- dev: true
-
/hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
@@ -15685,20 +14324,6 @@ packages:
webpack: 5.76.3(webpack-cli@5.0.1)
dev: true
- /html-minifier-terser@5.1.1:
- resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==}
- engines: {node: '>=6'}
- hasBin: true
- dependencies:
- camel-case: 4.1.2
- clean-css: 4.2.4
- commander: 4.1.1
- he: 1.2.0
- param-case: 3.0.4
- relateurl: 0.2.7
- terser: 4.8.1
- dev: true
-
/html-minifier-terser@6.1.0:
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
engines: {node: '>=12'}
@@ -15732,28 +14357,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /html-void-elements@1.0.5:
- resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
- dev: true
-
- /html-webpack-plugin@4.5.2(webpack@4.46.0):
- resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==}
- engines: {node: '>=6.9'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- '@types/html-minifier-terser': 5.1.2
- '@types/tapable': 1.0.8
- '@types/webpack': 4.41.33
- html-minifier-terser: 5.1.1
- loader-utils: 1.4.2
- lodash: 4.17.21
- pretty-error: 2.1.2
- tapable: 1.1.3
- util.promisify: 1.0.0
- webpack: 4.46.0
- dev: true
-
/html-webpack-plugin@5.5.0(webpack@5.76.3):
resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
engines: {node: '>=10.13.0'}
@@ -15868,8 +14471,14 @@ packages:
quick-lru: 5.1.1
resolve-alpn: 1.2.1
- /https-browserify@1.0.0:
- resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
+ /https-proxy-agent@4.0.0:
+ resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==}
+ engines: {node: '>= 6.0.0'}
+ dependencies:
+ agent-base: 5.1.1
+ debug: 4.3.4(supports-color@5.5.0)
+ transitivePeerDependencies:
+ - supports-color
dev: true
/https-proxy-agent@5.0.1:
@@ -15917,13 +14526,6 @@ packages:
dependencies:
safer-buffer: 2.1.2
- /icss-utils@4.1.1:
- resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==}
- engines: {node: '>= 6'}
- dependencies:
- postcss: 7.0.39
- dev: true
-
/icss-utils@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
@@ -15936,15 +14538,6 @@ packages:
/ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- /iferr@0.1.5:
- resolution: {integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==}
- dev: true
-
- /ignore@4.0.6:
- resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
- engines: {node: '>= 4'}
- dev: true
-
/ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
@@ -15984,14 +14577,6 @@ packages:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- /indent-string@2.1.0:
- resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- repeating: 2.0.1
- dev: true
- optional: true
-
/indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
@@ -16003,6 +14588,8 @@ packages:
/infer-owner@1.0.4:
resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
+ dev: false
+ optional: true
/inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
@@ -16010,10 +14597,6 @@ packages:
once: 1.4.0
wrappy: 1.0.2
- /inherits@2.0.1:
- resolution: {integrity: sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==}
- dev: true
-
/inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
dev: true
@@ -16025,10 +14608,6 @@ packages:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
dev: true
- /inline-style-parser@0.1.1:
- resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
- dev: true
-
/inquirer@8.2.5:
resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==}
engines: {node: '>=12.0.0'}
@@ -16063,9 +14642,15 @@ packages:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
engines: {node: '>=12'}
+ /interpret@1.4.0:
+ resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
/interpret@2.2.0:
resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==}
engines: {node: '>= 0.10'}
+ dev: false
/interpret@3.1.1:
resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==}
@@ -16100,31 +14685,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /is-accessor-descriptor@0.1.6:
- resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
- dev: true
-
- /is-accessor-descriptor@1.0.0:
- resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 6.0.3
- dev: true
-
- /is-alphabetical@1.0.4:
- resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
- dev: true
-
- /is-alphanumerical@1.0.4:
- resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
- dependencies:
- is-alphabetical: 1.0.4
- is-decimal: 1.0.4
- dev: true
-
/is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
@@ -16153,14 +14713,6 @@ packages:
has-bigints: 1.0.2
dev: true
- /is-binary-path@1.0.1:
- resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==}
- engines: {node: '>=0.10.0'}
- dependencies:
- binary-extensions: 1.13.1
- dev: true
- optional: true
-
/is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
@@ -16178,11 +14730,6 @@ packages:
/is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- /is-buffer@2.0.5:
- resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
- engines: {node: '>=4'}
- dev: true
-
/is-builtin-module@3.2.1:
resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
engines: {node: '>=6'}
@@ -16194,13 +14741,6 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- /is-ci@2.0.0:
- resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
- hasBin: true
- dependencies:
- ci-info: 2.0.0
- dev: true
-
/is-ci@3.0.1:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
@@ -16213,20 +14753,6 @@ packages:
dependencies:
has: 1.0.3
- /is-data-descriptor@0.1.4:
- resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
- dev: true
-
- /is-data-descriptor@1.0.0:
- resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 6.0.3
- dev: true
-
/is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
@@ -16234,26 +14760,8 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-decimal@1.0.4:
- resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
- dev: true
-
- /is-descriptor@0.1.6:
- resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-accessor-descriptor: 0.1.6
- is-data-descriptor: 0.1.4
- kind-of: 5.1.0
- dev: true
-
- /is-descriptor@1.0.2:
- resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-accessor-descriptor: 1.0.0
- is-data-descriptor: 1.0.0
- kind-of: 6.0.3
+ /is-deflate@1.0.0:
+ resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==}
dev: true
/is-docker@2.2.1:
@@ -16267,13 +14775,6 @@ packages:
hasBin: true
dev: false
- /is-dom@1.1.0:
- resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==}
- dependencies:
- is-object: 1.0.2
- is-window: 1.0.2
- dev: true
-
/is-expression@3.0.0:
resolution: {integrity: sha512-vyMeQMq+AiH5uUnoBfMTwf18tO3bM6k1QXBE9D6ueAAquEfCZe3AJPtud9g6qS0+4X8xA7ndpZiDyeb2l2qOBw==}
dependencies:
@@ -16284,32 +14785,16 @@ packages:
/is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
-
- /is-extendable@1.0.1:
- resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-plain-object: 2.0.4
- dev: true
+ dev: false
/is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-finite@1.1.0:
- resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
/is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- /is-function@1.0.2:
- resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==}
- dev: true
-
/is-generator-fn@2.1.0:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
@@ -16320,14 +14805,6 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- dev: false
-
- /is-glob@3.1.0:
- resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-extglob: 2.1.1
- dev: true
/is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
@@ -16335,8 +14812,9 @@ packages:
dependencies:
is-extglob: 2.1.1
- /is-hexadecimal@1.0.4:
- resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
+ /is-gzip@1.0.0:
+ resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==}
+ engines: {node: '>=0.10.0'}
dev: true
/is-in-browser@1.1.3:
@@ -16369,6 +14847,14 @@ packages:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
dev: true
+ /is-nan@1.3.2:
+ resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.0
+ dev: true
+
/is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
@@ -16385,19 +14871,13 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-number@3.0.0:
- resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
- dev: true
-
/is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-object@1.0.2:
- resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==}
+ /is-path-cwd@2.2.0:
+ resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
+ engines: {node: '>=6'}
dev: true
/is-path-inside@3.0.3:
@@ -16410,11 +14890,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /is-plain-obj@2.1.0:
- resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
- engines: {node: '>=8'}
- dev: true
-
/is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
@@ -16463,11 +14938,6 @@ packages:
call-bind: 1.0.2
dev: true
- /is-stream@1.1.0:
- resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -16508,10 +14978,6 @@ packages:
gopd: 1.0.1
has-tostringtag: 1.0.0
- /is-typedarray@1.0.0:
- resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
- dev: true
-
/is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
@@ -16521,11 +14987,6 @@ packages:
resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
dev: true
- /is-utf8@0.2.1:
- resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==}
- dev: true
- optional: true
-
/is-weakmap@2.0.1:
resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
dev: true
@@ -16543,28 +15004,11 @@ packages:
get-intrinsic: 1.2.0
dev: true
- /is-whitespace-character@1.0.4:
- resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
- dev: true
-
- /is-window@1.0.2:
- resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==}
- dev: true
-
/is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
dev: true
- /is-word-character@1.0.4:
- resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==}
- dev: true
-
- /is-wsl@1.1.0:
- resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
- engines: {node: '>=4'}
- dev: true
-
/is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
@@ -16594,22 +15038,10 @@ packages:
/isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- /isobject@2.1.0:
- resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- isarray: 1.0.0
- dev: true
-
/isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- /isobject@4.0.0:
- resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/isomorphic-unfetch@3.1.0:
resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
dependencies:
@@ -16665,15 +15097,15 @@ packages:
istanbul-lib-report: 3.0.0
dev: true
- /iterate-iterator@1.0.2:
- resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==}
- dev: true
-
- /iterate-value@1.0.2:
- resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==}
+ /jake@10.8.5:
+ resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
+ engines: {node: '>=10'}
+ hasBin: true
dependencies:
- es-get-iterator: 1.1.3
- iterate-iterator: 1.0.2
+ async: 3.2.4
+ chalk: 4.1.2
+ filelist: 1.0.4
+ minimatch: 3.1.2
dev: true
/javascript-stringify@2.1.0:
@@ -16852,29 +15284,6 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
- /jest-haste-map@26.6.2:
- resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==}
- engines: {node: '>= 10.14.2'}
- dependencies:
- '@jest/types': 26.6.2
- '@types/graceful-fs': 4.1.6
- '@types/node': 18.15.10
- anymatch: 3.1.3
- fb-watchman: 2.0.2
- graceful-fs: 4.2.11
- jest-regex-util: 26.0.0
- jest-serializer: 26.6.2
- jest-util: 26.6.2
- jest-worker: 26.6.2
- micromatch: 4.0.5
- sane: 4.1.0
- walker: 1.0.8
- optionalDependencies:
- fsevents: 2.3.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/jest-haste-map@29.5.0:
resolution: {integrity: sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -16927,6 +15336,14 @@ packages:
stack-utils: 2.0.6
dev: true
+ /jest-mock@27.5.1:
+ resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@jest/types': 27.5.1
+ '@types/node': 18.15.10
+ dev: true
+
/jest-mock@29.5.0:
resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -16948,11 +15365,6 @@ packages:
jest-resolve: 29.5.0
dev: true
- /jest-regex-util@26.0.0:
- resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==}
- engines: {node: '>= 10.14.2'}
- dev: true
-
/jest-regex-util@29.4.3:
resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -17042,14 +15454,6 @@ packages:
- supports-color
dev: true
- /jest-serializer@26.6.2:
- resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==}
- engines: {node: '>= 10.14.2'}
- dependencies:
- '@types/node': 18.15.10
- graceful-fs: 4.2.11
- dev: true
-
/jest-snapshot@29.5.0:
resolution: {integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -17059,7 +15463,7 @@ packages:
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.3)
'@babel/traverse': 7.21.3(supports-color@5.5.0)
- '@babel/types': 7.21.3
+ '@babel/types': 7.21.4
'@jest/expect-utils': 29.5.0
'@jest/transform': 29.5.0
'@jest/types': 29.5.0
@@ -17081,18 +15485,6 @@ packages:
- supports-color
dev: true
- /jest-util@26.6.2:
- resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==}
- engines: {node: '>= 10.14.2'}
- dependencies:
- '@jest/types': 26.6.2
- '@types/node': 18.15.10
- chalk: 4.1.2
- graceful-fs: 4.2.11
- is-ci: 2.0.0
- micromatch: 4.0.5
- dev: true
-
/jest-util@29.5.0:
resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -17131,15 +15523,6 @@ packages:
string-length: 4.0.2
dev: true
- /jest-worker@26.6.2:
- resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
- engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/node': 18.15.10
- merge-stream: 2.0.0
- supports-color: 7.2.0
- dev: true
-
/jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
@@ -17188,11 +15571,6 @@ packages:
resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==}
dev: true
- /js-string-escape@1.0.1:
- resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==}
- engines: {node: '>= 0.8'}
- dev: true
-
/js-stringify@1.0.2:
resolution: {integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==}
dev: true
@@ -17219,6 +15597,36 @@ packages:
resolution: {integrity: sha512-wStfgOJqMv4QKktuH273f5fyi3D3vy2pHOiSDGPvpcS/q+wb/M7AK3vkCcaHbkZxDOlDU/lDJgccygKSG2OhtA==}
dev: false
+ /jscodeshift@0.14.0(@babel/preset-env@7.21.4):
+ resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
+ hasBin: true
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
+ '@babel/preset-env': 7.21.4(@babel/core@7.21.3)
+ '@babel/preset-flow': 7.21.4(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
+ '@babel/register': 7.21.0(@babel/core@7.21.3)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.21.3)
+ chalk: 4.1.2
+ flow-parser: 0.203.1
+ graceful-fs: 4.2.11
+ micromatch: 4.0.5
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ recast: 0.21.5
+ temp: 0.8.4
+ write-file-atomic: 2.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/jsdom@20.0.3:
resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
engines: {node: '>=14'}
@@ -17273,10 +15681,6 @@ packages:
/json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- /json-parse-better-errors@1.0.2:
- resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
- dev: true
-
/json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
@@ -17510,11 +15914,6 @@ packages:
setimmediate: 1.0.5
dev: true
- /junk@3.1.0:
- resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==}
- engines: {node: '>=8'}
- dev: true
-
/junk@4.0.0:
resolution: {integrity: sha512-ojtSU++zLJ3jQG9bAYjg94w+/DOJtRyD7nPaerMFrBhmdVmiV5/exYH5t4uHga4G/95nT6hr1OJoKIFbYbrW5w==}
engines: {node: '>=12.20'}
@@ -17551,18 +15950,6 @@ packages:
is-buffer: 1.1.6
dev: true
- /kind-of@4.0.0:
- resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-buffer: 1.1.6
- dev: true
-
- /kind-of@5.1.0:
- resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
@@ -17577,11 +15964,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /klona@2.0.6:
- resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
- engines: {node: '>= 8'}
- dev: true
-
/knex@2.4.2(sqlite3@5.1.6):
resolution: {integrity: sha512-tMI1M7a+xwHhPxjbl/H9K1kHX+VncEYcvCx5K00M16bWvpYPKAZd6QrCu68PtHAdIZNQPWZn0GVhqVBEthGWCg==}
engines: {node: '>=12'}
@@ -17655,15 +16037,13 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /lazy-universal-dotenv@3.0.1:
- resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==}
- engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'}
+ /lazy-universal-dotenv@4.0.0:
+ resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@babel/runtime': 7.21.0
app-root-dir: 1.0.2
- core-js: 3.29.1
- dotenv: 8.6.0
- dotenv-expand: 5.1.0
+ dotenv: 16.0.3
+ dotenv-expand: 10.0.0
dev: true
/leven@3.1.0:
@@ -17710,18 +16090,6 @@ packages:
/linked-list@0.1.0:
resolution: {integrity: sha512-Zr4ovrd0ODzF3ut2TWZMdHIxb8iFdJc/P3QM4iCJdlxxGHXo69c9hGIHzLo8/FtuR9E6WUZc5irKhtPUgOKMAg==}
- /load-json-file@1.1.0:
- resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- graceful-fs: 4.2.11
- parse-json: 2.2.0
- pify: 2.3.0
- pinkie-promise: 2.0.1
- strip-bom: 2.0.0
- dev: true
- optional: true
-
/load-yaml-file@0.2.0:
resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==}
engines: {node: '>=6'}
@@ -17732,11 +16100,6 @@ packages:
strip-bom: 3.0.0
dev: true
- /loader-runner@2.4.0:
- resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==}
- engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
- dev: true
-
/loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
@@ -17751,15 +16114,6 @@ packages:
object-assign: 4.1.1
dev: true
- /loader-utils@1.4.2:
- resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
- engines: {node: '>=4.0.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 1.0.2
- dev: true
-
/loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
@@ -17835,10 +16189,6 @@ packages:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
dev: true
- /lodash.uniq@4.5.0:
- resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- dev: true
-
/lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -17880,15 +16230,6 @@ packages:
dependencies:
js-tokens: 4.0.0
- /loud-rejection@1.6.0:
- resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- currently-unhandled: 0.4.1
- signal-exit: 3.0.7
- dev: true
- optional: true
-
/lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
@@ -17984,18 +16325,6 @@ packages:
tmpl: 1.0.5
dev: true
- /map-age-cleaner@0.1.3:
- resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==}
- engines: {node: '>=6'}
- dependencies:
- p-defer: 1.0.0
- dev: true
-
- /map-cache@0.2.2:
- resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/map-obj@1.0.1:
resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
engines: {node: '>=0.10.0'}
@@ -18010,15 +16339,13 @@ packages:
resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
dev: true
- /map-visit@1.0.0:
- resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
- engines: {node: '>=0.10.0'}
+ /markdown-to-jsx@7.2.0(react@18.2.0):
+ resolution: {integrity: sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==}
+ engines: {node: '>= 10'}
+ peerDependencies:
+ react: '>= 0.14.0'
dependencies:
- object-visit: 1.0.1
- dev: true
-
- /markdown-escapes@1.0.4:
- resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
+ react: 18.2.0
dev: true
/matcher@3.0.0:
@@ -18032,14 +16359,6 @@ packages:
resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
dev: true
- /md5.js@1.3.5:
- resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
- dependencies:
- hash-base: 3.1.0
- inherits: 2.0.4
- safe-buffer: 5.2.1
- dev: true
-
/md5@2.3.0:
resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
dependencies:
@@ -18048,31 +16367,12 @@ packages:
is-buffer: 1.1.6
dev: false
- /mdast-squeeze-paragraphs@4.0.0:
- resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==}
- dependencies:
- unist-util-remove: 2.1.0
- dev: true
-
/mdast-util-definitions@4.0.0:
resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==}
dependencies:
unist-util-visit: 2.0.3
dev: true
- /mdast-util-to-hast@10.0.1:
- resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==}
- dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
- mdast-util-definitions: 4.0.0
- mdurl: 1.0.1
- unist-builder: 2.0.3
- unist-util-generated: 1.1.6
- unist-util-position: 3.1.0
- unist-util-visit: 2.0.3
- dev: true
-
/mdast-util-to-string@1.1.0:
resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==}
dev: true
@@ -18081,22 +16381,10 @@ packages:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
dev: true
- /mdurl@1.0.1:
- resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
- dev: true
-
/media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- /mem@8.1.1:
- resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==}
- engines: {node: '>=10'}
- dependencies:
- map-age-cleaner: 0.1.3
- mimic-fn: 3.1.0
- dev: true
-
/memfs@3.4.13:
resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==}
engines: {node: '>= 4.0.0'}
@@ -18114,21 +16402,6 @@ packages:
map-or-similar: 1.5.0
dev: true
- /memory-fs@0.4.1:
- resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==}
- dependencies:
- errno: 0.1.8
- readable-stream: 2.3.8
- dev: true
-
- /memory-fs@0.5.0:
- resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
- engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
- dependencies:
- errno: 0.1.8
- readable-stream: 2.3.8
- dev: true
-
/meow@10.1.5:
resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -18147,23 +16420,6 @@ packages:
yargs-parser: 20.2.9
dev: true
- /meow@3.7.0:
- resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- camelcase-keys: 2.1.0
- decamelize: 1.2.0
- loud-rejection: 1.6.0
- map-obj: 1.0.1
- minimist: 1.2.8
- normalize-package-data: 2.5.0
- object-assign: 4.1.1
- read-pkg-up: 1.0.1
- redent: 1.0.0
- trim-newlines: 1.0.0
- dev: true
- optional: true
-
/meow@6.1.1:
resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==}
engines: {node: '>=8'}
@@ -18214,31 +16470,6 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
- /microevent.ts@0.1.1:
- resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==}
- dev: true
-
- /micromatch@3.1.10:
- resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-diff: 4.0.0
- array-unique: 0.3.2
- braces: 2.3.2
- define-property: 2.0.2
- extend-shallow: 3.0.2
- extglob: 2.0.4
- fragment-cache: 0.2.1
- kind-of: 6.0.3
- nanomatch: 1.2.13
- object.pick: 1.3.0
- regex-not: 1.0.2
- snapdragon: 0.8.2
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
@@ -18247,14 +16478,6 @@ packages:
picomatch: 2.3.1
dev: true
- /miller-rabin@4.0.1:
- resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
- hasBin: true
- dependencies:
- bn.js: 4.12.0
- brorand: 1.1.0
- dev: true
-
/mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
@@ -18280,11 +16503,6 @@ packages:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- /mimic-fn@3.1.0:
- resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==}
- engines: {node: '>=8'}
- dev: true
-
/mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
@@ -18313,10 +16531,6 @@ packages:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
dev: true
- /minimalistic-crypto-utils@1.0.1:
- resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
- dev: true
-
/minimatch@3.0.5:
resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
dependencies:
@@ -18359,6 +16573,8 @@ packages:
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
+ dev: false
+ optional: true
/minipass-fetch@1.4.1:
resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==}
@@ -18377,12 +16593,16 @@ packages:
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
+ dev: false
+ optional: true
/minipass-pipeline@1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
dependencies:
minipass: 3.3.6
+ dev: false
+ optional: true
/minipass-sized@1.0.3:
resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
@@ -18409,35 +16629,15 @@ packages:
minipass: 3.3.6
yallist: 4.0.0
- /mississippi@3.0.0:
- resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==}
- engines: {node: '>=4.0.0'}
- dependencies:
- concat-stream: 1.6.2
- duplexify: 3.7.1
- end-of-stream: 1.4.4
- flush-write-stream: 1.1.1
- from2: 2.3.0
- parallel-transform: 1.2.0
- pump: 3.0.0
- pumpify: 1.5.1
- stream-each: 1.2.3
- through2: 2.0.5
- dev: true
-
- /mixin-deep@1.3.2:
- resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- for-in: 1.0.2
- is-extendable: 1.0.1
- dev: true
-
/mixme@0.5.9:
resolution: {integrity: sha512-VC5fg6ySUscaWUpI4gxCBTQMH2RdUpNrk+MsbpCYtIvf9SBJdiUey4qE7BXviJsJR4nDQxCZ+3yaYNW3guz/Pw==}
engines: {node: '>= 8.0.0'}
dev: true
+ /mkdirp-classic@0.5.3:
+ resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
+ dev: true
+
/mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -18463,15 +16663,9 @@ packages:
- supports-color
dev: false
- /move-concurrently@1.0.1:
- resolution: {integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==}
- dependencies:
- aproba: 1.2.0
- copy-concurrently: 1.0.5
- fs-write-stream-atomic: 1.0.10
- mkdirp: 0.5.6
- rimraf: 2.7.1
- run-queue: 1.0.3
+ /mri@1.2.0:
+ resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
+ engines: {node: '>=4'}
dev: true
/ms@2.0.0:
@@ -18535,12 +16729,6 @@ packages:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
dev: false
- /nan@2.17.0:
- resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==}
- requiresBuild: true
- dev: true
- optional: true
-
/nanoid@3.3.6:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -18552,25 +16740,6 @@ packages:
hasBin: true
dev: false
- /nanomatch@1.2.13:
- resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-diff: 4.0.0
- array-unique: 0.3.2
- define-property: 2.0.2
- extend-shallow: 3.0.2
- fragment-cache: 0.2.1
- is-windows: 1.0.2
- kind-of: 6.0.3
- object.pick: 1.3.0
- regex-not: 1.0.2
- snapdragon: 0.8.2
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
dev: true
@@ -18596,10 +16765,6 @@ packages:
resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==}
dev: true
- /nice-try@1.0.5:
- resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: true
-
/nise@1.5.3:
resolution: {integrity: sha512-Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ==}
dependencies:
@@ -18635,6 +16800,10 @@ packages:
minimatch: 3.1.2
dev: true
+ /node-fetch-native@1.0.2:
+ resolution: {integrity: sha512-KIkvH1jl6b3O7es/0ShyCgWLcfXxlBrLBbP3rOr23WArC66IMcU4DeZEeYEOwnopYhawLTn7/y+YtmASe8DFVQ==}
+ dev: true
+
/node-fetch@2.6.9:
resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
engines: {node: 4.x || >=6.0.0}
@@ -18682,34 +16851,6 @@ packages:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
dev: true
- /node-libs-browser@2.2.1:
- resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==}
- dependencies:
- assert: 1.5.0
- browserify-zlib: 0.2.0
- buffer: 4.9.2
- console-browserify: 1.2.0
- constants-browserify: 1.0.0
- crypto-browserify: 3.12.0
- domain-browser: 1.2.0
- events: 3.3.0
- https-browserify: 1.0.0
- os-browserify: 0.3.0
- path-browserify: 0.0.1
- process: 0.11.10
- punycode: 1.4.1
- querystring-es3: 0.2.1
- readable-stream: 2.3.8
- stream-browserify: 2.0.2
- stream-http: 2.8.3
- string_decoder: 1.3.0
- timers-browserify: 2.0.12
- tty-browserify: 0.0.0
- url: 0.11.0
- util: 0.11.1
- vm-browserify: 1.1.2
- dev: true
-
/node-machine-id@1.1.12:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
dev: true
@@ -18745,33 +16886,14 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-path@2.1.1:
- resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
- engines: {node: '>=0.10.0'}
- dependencies:
- remove-trailing-separator: 1.1.0
- dev: true
-
/normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- /normalize-range@0.1.2:
- resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
- /npm-run-path@2.0.2:
- resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
- engines: {node: '>=4'}
- dependencies:
- path-key: 2.0.1
- dev: true
-
/npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -18810,10 +16932,6 @@ packages:
boolbase: 1.0.0
dev: true
- /num2fraction@1.2.2:
- resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==}
- dev: true
-
/nwsapi@2.2.2:
resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==}
dev: true
@@ -18884,15 +17002,6 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-copy@0.1.0:
- resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- copy-descriptor: 0.1.1
- define-property: 0.2.5
- kind-of: 3.2.2
- dev: true
-
/object-inspect@1.12.3:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
@@ -18913,13 +17022,6 @@ packages:
engines: {node: '>= 10.12.0'}
dev: false
- /object-visit@1.0.1:
- resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- isobject: 3.0.1
- dev: true
-
/object.assign@4.1.4:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
@@ -18948,16 +17050,6 @@ packages:
es-abstract: 1.21.2
dev: true
- /object.getownpropertydescriptors@2.1.5:
- resolution: {integrity: sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==}
- engines: {node: '>= 0.8'}
- dependencies:
- array.prototype.reduce: 1.0.5
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
/object.hasown@1.1.2:
resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
dependencies:
@@ -18965,13 +17057,6 @@ packages:
es-abstract: 1.21.2
dev: true
- /object.pick@1.3.0:
- resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- isobject: 3.0.1
- dev: true
-
/object.values@1.1.6:
resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
engines: {node: '>= 0.4'}
@@ -19090,16 +17175,6 @@ packages:
wcwidth: 1.0.1
dev: false
- /os-browserify@0.3.0:
- resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
- dev: true
-
- /os-homedir@1.0.2:
- resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
/os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
@@ -19112,22 +17187,10 @@ packages:
resolution: {integrity: sha512-AlWY719RF02ujitly7Kk/0QlV+pXGFDHrHf9O2OKqyqgBieaPOIeuSkL8sRK6j2WK+/ZAURq2kZsY0d8JapUiw==}
dev: false
- /p-all@2.1.0:
- resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==}
- engines: {node: '>=6'}
- dependencies:
- p-map: 2.1.0
- dev: true
-
/p-cancelable@2.1.1:
resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
engines: {node: '>=8'}
- /p-defer@1.0.0:
- resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==}
- engines: {node: '>=4'}
- dev: true
-
/p-event@4.2.0:
resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==}
engines: {node: '>=8'}
@@ -19194,13 +17257,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /p-map@3.0.0:
- resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
- engines: {node: '>=8'}
- dependencies:
- aggregate-error: 3.1.0
- dev: true
-
/p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
@@ -19234,16 +17290,12 @@ packages:
engines: {node: '>=6'}
dev: true
- /pako@1.0.11:
- resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
+ /pako@0.2.9:
+ resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
dev: true
- /parallel-transform@1.2.0:
- resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==}
- dependencies:
- cyclist: 1.0.1
- inherits: 2.0.4
- readable-stream: 2.3.8
+ /pako@1.0.11:
+ resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
dev: true
/param-case@3.0.4:
@@ -19259,35 +17311,6 @@ packages:
dependencies:
callsites: 3.1.0
- /parse-asn1@5.1.6:
- resolution: {integrity: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==}
- dependencies:
- asn1.js: 5.4.1
- browserify-aes: 1.2.0
- evp_bytestokey: 1.0.3
- pbkdf2: 3.1.2
- safe-buffer: 5.2.1
- dev: true
-
- /parse-entities@2.0.0:
- resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
- dependencies:
- character-entities: 1.2.4
- character-entities-legacy: 1.1.4
- character-reference-invalid: 1.1.4
- is-alphanumerical: 1.0.4
- is-decimal: 1.0.4
- is-hexadecimal: 1.0.4
- dev: true
-
- /parse-json@2.2.0:
- resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- error-ex: 1.3.2
- dev: true
- optional: true
-
/parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -19301,10 +17324,6 @@ packages:
resolution: {integrity: sha512-ENta7tqTYc2A15JBG2z2b6bNjaqrTnBEgvycQBwnO6Tmfvk3Dix9IhIpuqI4VdvySd4iDoxeWLUjwDODrQ3S7w==}
dev: false
- /parse5@6.0.1:
- resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- dev: true
-
/parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
dependencies:
@@ -19322,30 +17341,9 @@ packages:
tslib: 2.5.0
dev: true
- /pascalcase@0.1.1:
- resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /path-browserify@0.0.1:
- resolution: {integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==}
- dev: true
-
/path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- /path-dirname@1.0.2:
- resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==}
- dev: true
-
- /path-exists@2.1.0:
- resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- pinkie-promise: 2.0.1
- dev: true
- optional: true
-
/path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
@@ -19360,11 +17358,6 @@ packages:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- /path-key@2.0.1:
- resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
- engines: {node: '>=4'}
- dev: true
-
/path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
@@ -19398,36 +17391,20 @@ packages:
resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
dev: false
- /path-type@1.1.0:
- resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- graceful-fs: 4.2.11
- pify: 2.3.0
- pinkie-promise: 2.0.1
- dev: true
- optional: true
-
- /path-type@3.0.0:
- resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
- engines: {node: '>=4'}
- dependencies:
- pify: 3.0.0
- dev: true
-
/path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- /pbkdf2@3.1.2:
- resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
- engines: {node: '>=0.12'}
+ /pathe@1.1.0:
+ resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==}
+ dev: true
+
+ /peek-stream@1.1.3:
+ resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==}
dependencies:
- create-hash: 1.2.0
- create-hmac: 1.1.7
- ripemd160: 2.0.2
- safe-buffer: 5.2.1
- sha.js: 2.4.11
+ buffer-from: 1.1.2
+ duplexify: 3.7.1
+ through2: 2.0.5
dev: true
/pend@1.2.0:
@@ -19449,36 +17426,11 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pify@2.3.0:
- resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
- /pify@3.0.0:
- resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
- engines: {node: '>=4'}
- dev: true
-
/pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
dev: true
- /pinkie-promise@2.0.1:
- resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- pinkie: 2.0.4
- dev: true
- optional: true
-
- /pinkie@2.0.4:
- resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
/pirates@4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'}
@@ -19510,15 +17462,6 @@ packages:
engines: {node: '>=4'}
dev: false
- /pnp-webpack-plugin@1.6.4(typescript@4.9.5):
- resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==}
- engines: {node: '>=6'}
- dependencies:
- ts-pnp: 1.2.0(typescript@4.9.5)
- transitivePeerDependencies:
- - typescript
- dev: true
-
/polished@4.2.2:
resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==}
engines: {node: '>=10'}
@@ -19526,44 +17469,10 @@ packages:
'@babel/runtime': 7.21.0
dev: true
- /posix-character-classes@0.1.1:
- resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /postcss-flexbugs-fixes@4.2.1:
- resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==}
- dependencies:
- postcss: 7.0.39
- dev: true
-
- /postcss-loader@4.3.0(postcss@7.0.39)(webpack@4.46.0):
- resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- postcss: ^7.0.0 || ^8.0.1
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- cosmiconfig: 7.1.0
- klona: 2.0.6
- loader-utils: 2.0.4
- postcss: 7.0.39
- schema-utils: 3.1.1
- semver: 7.3.8
- webpack: 4.46.0
- dev: true
-
/postcss-media-query-parser@0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
dev: true
- /postcss-modules-extract-imports@2.0.0:
- resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==}
- engines: {node: '>= 6'}
- dependencies:
- postcss: 7.0.39
- dev: true
-
/postcss-modules-extract-imports@3.0.0(postcss@8.4.21):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
@@ -19573,16 +17482,6 @@ packages:
postcss: 8.4.21
dev: true
- /postcss-modules-local-by-default@3.0.3:
- resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==}
- engines: {node: '>= 6'}
- dependencies:
- icss-utils: 4.1.1
- postcss: 7.0.39
- postcss-selector-parser: 6.0.11
- postcss-value-parser: 4.2.0
- dev: true
-
/postcss-modules-local-by-default@4.0.0(postcss@8.4.21):
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
@@ -19595,14 +17494,6 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-scope@2.2.0:
- resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==}
- engines: {node: '>= 6'}
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 6.0.11
- dev: true
-
/postcss-modules-scope@3.0.0(postcss@8.4.21):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
@@ -19613,13 +17504,6 @@ packages:
postcss-selector-parser: 6.0.11
dev: true
- /postcss-modules-values@3.0.0:
- resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==}
- dependencies:
- icss-utils: 4.1.1
- postcss: 7.0.39
- dev: true
-
/postcss-modules-values@4.0.0(postcss@8.4.21):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
@@ -19691,25 +17575,12 @@ packages:
engines: {node: '>= 0.8.0'}
dev: true
- /prettier@2.3.0:
- resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- dev: true
-
/prettier@2.8.7:
resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
- /pretty-error@2.1.2:
- resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==}
- dependencies:
- lodash: 4.17.21
- renderkid: 2.0.7
- dev: true
-
/pretty-error@4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
dependencies:
@@ -19752,15 +17623,15 @@ packages:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
- /promise-inflight@1.0.1(bluebird@3.7.2):
+ /promise-inflight@1.0.1:
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
bluebird: '*'
peerDependenciesMeta:
bluebird:
optional: true
- dependencies:
- bluebird: 3.7.2
+ dev: false
+ optional: true
/promise-retry@2.0.1:
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
@@ -19771,27 +17642,6 @@ packages:
dev: false
optional: true
- /promise.allsettled@1.0.6:
- resolution: {integrity: sha512-22wJUOD3zswWFqgwjNHa1965LvqTX87WPu/lreY2KSd7SVcERfuZ4GfUaOnJNnvtoIv2yXT/W00YIGMetXtFXg==}
- engines: {node: '>= 0.4'}
- dependencies:
- array.prototype.map: 1.0.5
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- get-intrinsic: 1.2.0
- iterate-value: 1.0.2
- dev: true
-
- /promise.prototype.finally@3.1.4:
- resolution: {integrity: sha512-nNc3YbgMfLzqtqvO/q5DP6RR0SiHI9pUPGzyDf1q+usTwCN2kjvAnJkBb7bHe3o+fFSBPpsGMoYtaSi+LTNqng==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
/promise@7.3.1:
resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
dependencies:
@@ -19809,7 +17659,7 @@ packages:
/prop-types-extra@1.1.1(react@18.2.0):
resolution: {integrity: sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==}
peerDependencies:
- react: '>=0.14.0 || 18'
+ react: '>=0.14.0'
dependencies:
react: 18.2.0
react-is: 16.13.1
@@ -19823,12 +17673,6 @@ packages:
object-assign: 4.1.1
react-is: 16.13.1
- /property-information@5.6.0:
- resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
- dependencies:
- xtend: 4.0.2
- dev: true
-
/proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
@@ -19840,10 +17684,6 @@ packages:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
dev: true
- /prr@1.0.1:
- resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
- dev: true
-
/pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
dev: true
@@ -19852,17 +17692,6 @@ packages:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: true
- /public-encrypt@4.0.3:
- resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
- dependencies:
- bn.js: 4.12.0
- browserify-rsa: 4.1.0
- create-hash: 1.2.0
- parse-asn1: 5.1.6
- randombytes: 2.1.0
- safe-buffer: 5.2.1
- dev: true
-
/pug-attrs@2.0.4:
resolution: {integrity: sha512-TaZ4Z2TWUPDJcV3wjU3RtUXMrd3kM4Wzjbe3EWnSsZPsJ3LDI0F3yCnf2/W7PPFF+edUFQ0HgDL1IoxSz5K8EQ==}
dependencies:
@@ -19984,18 +17813,30 @@ packages:
pump: 2.0.1
dev: true
- /punycode@1.3.2:
- resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
- dev: true
-
- /punycode@1.4.1:
- resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
- dev: true
-
/punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
+ /puppeteer-core@2.1.1:
+ resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==}
+ engines: {node: '>=8.16.0'}
+ dependencies:
+ '@types/mime-types': 2.1.1
+ debug: 4.3.4(supports-color@5.5.0)
+ extract-zip: 1.7.0
+ https-proxy-agent: 4.0.0
+ mime: 2.6.0
+ mime-types: 2.1.35
+ progress: 2.0.3
+ proxy-from-env: 1.1.0
+ rimraf: 2.7.1
+ ws: 6.2.2
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: true
+
/pure-rand@6.0.1:
resolution: {integrity: sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==}
dev: true
@@ -20013,17 +17854,6 @@ packages:
side-channel: 1.0.4
dev: true
- /querystring-es3@0.2.1:
- resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==}
- engines: {node: '>=0.4.x'}
- dev: true
-
- /querystring@0.2.0:
- resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==}
- engines: {node: '>=0.4.x'}
- deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
- dev: true
-
/querystring@0.2.1:
resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
engines: {node: '>=0.4.x'}
@@ -20056,13 +17886,6 @@ packages:
safe-buffer: 5.2.1
dev: true
- /randomfill@1.0.4:
- resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
- dependencies:
- randombytes: 2.1.0
- safe-buffer: 5.2.1
- dev: true
-
/range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
@@ -20086,17 +17909,6 @@ packages:
unpipe: 1.0.0
dev: false
- /raw-loader@4.0.2(webpack@4.46.0):
- resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.1.1
- webpack: 4.46.0
- dev: true
-
/raw-loader@4.0.2(webpack@5.76.3):
resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
engines: {node: '>= 10.13.0'}
@@ -20112,8 +17924,8 @@ packages:
resolution: {integrity: sha512-WDSln+mG4RLLFO01stkj2bEx/3MF4YihK9D/dWnHaSxOiQZLbhhlf95D2Jb20X3t2m7vMxRe888FVrfLJoGmmA==}
peerDependencies:
'@types/react': '>=16.14.8'
- react: '>=16.14.0 || 18'
- react-dom: '>=16.14.0 || 18'
+ react: '>=16.14.0'
+ react-dom: '>=16.14.0'
peerDependenciesMeta:
'@types/react':
optional: true
@@ -20138,12 +17950,22 @@ packages:
/react-clientside-effect@1.2.6(react@18.2.0):
resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==}
peerDependencies:
- react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
react: 18.2.0
dev: false
+ /react-colorful@5.6.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: true
+
/react-deep-force-update@1.1.2:
resolution: {integrity: sha512-WUSQJ4P/wWcusaH+zZmbECOk7H5N2pOIl0vzheeornkIMhu+qrNdGFm0bDZLCb0hSF0jf/kH1SgkNGfBdTc4wA==}
dev: true
@@ -20178,7 +18000,7 @@ packages:
/react-dom@18.2.0(react@18.2.0):
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
- react: ^18.2.0 || 18
+ react: ^18.2.0
dependencies:
loose-envify: 1.4.0
react: 18.2.0
@@ -20191,17 +18013,17 @@ packages:
dragula: 3.7.2
dev: false
- /react-element-to-jsx-string@14.3.4(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==}
+ /react-element-to-jsx-string@15.0.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==}
peerDependencies:
- react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || 18
- react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || 18
+ react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
+ react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
dependencies:
'@base2/pretty-print-object': 1.0.1
is-plain-object: 5.0.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-is: 17.0.2
+ react-is: 18.1.0
dev: true
/react-fast-compare@3.2.0:
@@ -20212,7 +18034,7 @@ packages:
resolution: {integrity: sha512-7pEdXyMseqm3kVjhdVH18sovparAzLg5h6WvIx7/Ck3ekjhrrDMEegHSa3swwC8wgfdd7DIdUVRGeiHT9/7Sgg==}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -20235,14 +18057,11 @@ packages:
react: 18.2.0
dev: false
- /react-inspector@5.1.1(react@18.2.0):
- resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==}
+ /react-inspector@6.0.1(react@18.2.0):
+ resolution: {integrity: sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg==}
peerDependencies:
- react: ^16.8.4 || ^17.0.0 || 18
+ react: ^16.8.4 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.21.0
- is-dom: 1.1.0
- prop-types: 15.8.1
react: 18.2.0
dev: true
@@ -20256,6 +18075,10 @@ packages:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
dev: true
+ /react-is@18.1.0:
+ resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
+ dev: true
+
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
@@ -20275,8 +18098,8 @@ packages:
peerDependencies:
'@types/react': ^16.8 || ^17.0 || ^18.0
'@types/react-dom': ^16.8 || ^17.0 || ^18.0
- react: ^16.8 || ^17.0 || ^18.0 || 18
- react-dom: ^16.8 || ^17.0 || ^18.0 || 18
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
react-native: '>=0.59'
redux: ^4
peerDependenciesMeta:
@@ -20313,7 +18136,7 @@ packages:
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -20329,7 +18152,7 @@ packages:
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -20347,8 +18170,8 @@ packages:
resolution: {integrity: sha512-/seUAPY01VAuwkGyVBPCn1OXfVbaWGGu4QN9uj0kCPcTyNYgL1ldZpxZUpRU7BLheKQI4Twtl/OW2nHRF1u26Q==}
engines: {node: '>=14'}
peerDependencies:
- react: '>=16.8 || 18'
- react-dom: '>=16.8 || 18'
+ react: '>=16.8'
+ react-dom: '>=16.8'
dependencies:
'@remix-run/router': 1.4.0
react: 18.2.0
@@ -20360,7 +18183,7 @@ packages:
resolution: {integrity: sha512-51lKevGNUHrt6kLuX3e/ihrXoXCa9ixY/nVWRLlob4r/l0f45x3SzBvYJe3ctleLUQQ5fVa4RGgJOTH7D9Umhw==}
engines: {node: '>=14'}
peerDependencies:
- react: '>=16.8 || 18'
+ react: '>=16.8'
dependencies:
'@remix-run/router': 1.4.0
react: 18.2.0
@@ -20369,8 +18192,8 @@ packages:
/react-select@5.7.2(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-cTlJkQ8YjV6T/js8wW0owTzht0hHGABh29vjLscY4HfZGkv7hc3FFTmRp9NzY/Ib1uQ36GieAKEjxpHdpCFpcA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@emotion/cache': 11.10.5
@@ -20390,7 +18213,7 @@ packages:
/react-shallow-renderer@16.15.0(react@18.2.0):
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
- react: ^16.0.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
object-assign: 4.1.1
react: 18.2.0
@@ -20402,7 +18225,7 @@ packages:
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -20417,7 +18240,7 @@ packages:
/react-test-renderer@18.2.0(react@18.2.0):
resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==}
peerDependencies:
- react: ^18.2.0 || 18
+ react: ^18.2.0
dependencies:
react: 18.2.0
react-is: 18.2.0
@@ -20439,8 +18262,8 @@ packages:
/react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
- react: '>=16.6.0 || 18'
- react-dom: '>=16.6.0 || 18'
+ react: '>=16.6.0'
+ react-dom: '>=16.6.0'
dependencies:
'@babel/runtime': 7.21.0
dom-helpers: 5.2.1
@@ -20456,15 +18279,6 @@ packages:
dependencies:
loose-envify: 1.4.0
- /read-pkg-up@1.0.1:
- resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- find-up: 1.1.2
- read-pkg: 1.1.0
- dev: true
- optional: true
-
/read-pkg-up@7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'}
@@ -20483,16 +18297,6 @@ packages:
type-fest: 1.4.0
dev: true
- /read-pkg@1.1.0:
- resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- load-json-file: 1.1.0
- normalize-package-data: 2.5.0
- path-type: 1.1.0
- dev: true
- optional: true
-
/read-pkg@5.2.0:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
@@ -20542,39 +18346,46 @@ packages:
string_decoder: 1.3.0
util-deprecate: 1.0.2
- /readdirp@2.2.1:
- resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
- engines: {node: '>=0.10'}
- dependencies:
- graceful-fs: 4.2.11
- micromatch: 3.1.10
- readable-stream: 2.3.8
- transitivePeerDependencies:
- - supports-color
- dev: true
- optional: true
-
/readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
+ /recast@0.21.5:
+ resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
+ engines: {node: '>= 4'}
+ dependencies:
+ ast-types: 0.15.2
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tslib: 2.5.0
+ dev: true
+
+ /recast@0.23.1:
+ resolution: {integrity: sha512-RokaBcoxSjXUDzz1TXSZmZsSW6ZpLmlA3GGqJ8uuTrQ9hZhEz+4Tpsc+gRvYRJ2BU4H+ZyUlg91eSGDw7bwy7g==}
+ engines: {node: '>= 4'}
+ dependencies:
+ assert: 2.0.0
+ ast-types: 0.16.1
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tslib: 2.5.0
+ dev: true
+
+ /rechoir@0.6.2:
+ resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ resolve: 1.22.1
+ dev: true
+
/rechoir@0.8.0:
resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==}
engines: {node: '>= 10.13.0'}
dependencies:
resolve: 1.22.1
- /redent@1.0.0:
- resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==}
- engines: {node: '>=0.10.0'}
- dependencies:
- indent-string: 2.1.0
- strip-indent: 1.0.1
- dev: true
- optional: true
-
/redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
@@ -20606,7 +18417,7 @@ packages:
/redux-persist@6.0.0(react@18.2.0)(redux@4.2.1):
resolution: {integrity: sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==}
peerDependencies:
- react: '>=16 || 18'
+ react: '>=16'
redux: '>4.0.0'
peerDependenciesMeta:
react:
@@ -20652,14 +18463,6 @@ packages:
'@babel/runtime': 7.21.0
dev: true
- /regex-not@1.0.2:
- resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- extend-shallow: 3.0.2
- safe-regex: 1.1.0
- dev: true
-
/regexp.prototype.flags@1.4.3:
resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
engines: {node: '>= 0.4'}
@@ -20703,46 +18506,6 @@ packages:
unist-util-visit: 2.0.3
dev: true
- /remark-footnotes@2.0.0:
- resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==}
- dev: true
-
- /remark-mdx@1.6.22:
- resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==}
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9)
- '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
- '@mdx-js/util': 1.6.22
- is-alphabetical: 1.0.4
- remark-parse: 8.0.3
- unified: 9.2.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /remark-parse@8.0.3:
- resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==}
- dependencies:
- ccount: 1.1.0
- collapse-white-space: 1.0.6
- is-alphabetical: 1.0.4
- is-decimal: 1.0.4
- is-whitespace-character: 1.0.4
- is-word-character: 1.0.4
- markdown-escapes: 1.0.4
- parse-entities: 2.0.0
- repeat-string: 1.6.1
- state-toggle: 1.0.3
- trim: 0.0.1
- trim-trailing-lines: 1.1.4
- unherit: 1.1.3
- unist-util-remove-position: 2.0.1
- vfile-location: 3.2.0
- xtend: 4.0.2
- dev: true
-
/remark-slug@6.1.0:
resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==}
dependencies:
@@ -20751,26 +18514,6 @@ packages:
unist-util-visit: 2.0.3
dev: true
- /remark-squeeze-paragraphs@4.0.0:
- resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==}
- dependencies:
- mdast-squeeze-paragraphs: 4.0.0
- dev: true
-
- /remove-trailing-separator@1.1.0:
- resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
- dev: true
-
- /renderkid@2.0.7:
- resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==}
- dependencies:
- css-select: 4.3.0
- dom-converter: 0.2.0
- htmlparser2: 6.1.0
- lodash: 4.17.21
- strip-ansi: 3.0.1
- dev: true
-
/renderkid@3.0.0:
resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
dependencies:
@@ -20781,24 +18524,11 @@ packages:
strip-ansi: 6.0.1
dev: true
- /repeat-element@1.1.4:
- resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
dev: true
- /repeating@2.0.1:
- resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-finite: 1.1.0
- dev: true
- optional: true
-
/require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
@@ -20837,11 +18567,6 @@ packages:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- /resolve-url@0.2.1:
- resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
- deprecated: https://github.com/lydell/resolve-url#deprecated
- dev: true
-
/resolve.exports@2.0.2:
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
@@ -20876,11 +18601,6 @@ packages:
onetime: 5.1.2
signal-exit: 3.0.7
- /ret@0.1.15:
- resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
- engines: {node: '>=0.12'}
- dev: true
-
/retry@0.12.0:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
engines: {node: '>= 4'}
@@ -20903,6 +18623,13 @@ packages:
align-text: 0.1.4
dev: true
+ /rimraf@2.6.3:
+ resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: true
+
/rimraf@2.7.1:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
hasBin: true
@@ -20924,13 +18651,6 @@ packages:
glob: 9.3.2
dev: true
- /ripemd160@2.0.2:
- resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
- dependencies:
- hash-base: 3.1.0
- inherits: 2.0.4
- dev: true
-
/rn-host-detect@1.2.0:
resolution: {integrity: sha512-btNg5kzHcjZZ7t7mvvV/4wNJ9e3MPgrWivkRgWURzXL0JJ0pwWlU4zrbmdlz3HHzHOxhBhHB4D+/dbMFfu4/4A==}
dev: false
@@ -20973,11 +18693,6 @@ packages:
fsevents: 2.3.2
dev: true
- /rsvp@4.8.5:
- resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==}
- engines: {node: 6.* || >= 7.*}
- dev: true
-
/run-applescript@5.0.0:
resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
engines: {node: '>=12'}
@@ -20996,12 +18711,6 @@ packages:
queue-microtask: 1.2.3
dev: true
- /run-queue@1.0.3:
- resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==}
- dependencies:
- aproba: 1.2.0
- dev: true
-
/rw@1.3.3:
resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
@@ -21028,34 +18737,9 @@ packages:
is-regex: 1.1.4
dev: true
- /safe-regex@1.1.0:
- resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
- dependencies:
- ret: 0.1.15
- dev: true
-
/safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- /sane@4.1.0:
- resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==}
- engines: {node: 6.* || 8.* || >= 10.*}
- deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added
- hasBin: true
- dependencies:
- '@cnakazawa/watch': 1.0.4
- anymatch: 2.0.0
- capture-exit: 2.0.0
- exec-sh: 0.3.6
- execa: 1.0.0
- fb-watchman: 2.0.2
- micromatch: 3.1.10
- minimist: 1.2.8
- walker: 1.0.8
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
@@ -21074,33 +18758,6 @@ packages:
dependencies:
loose-envify: 1.4.0
- /schema-utils@1.0.0:
- resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==}
- engines: {node: '>= 4'}
- dependencies:
- ajv: 6.12.6
- ajv-errors: 1.0.1(ajv@6.12.6)
- ajv-keywords: 3.5.2(ajv@6.12.6)
- dev: true
-
- /schema-utils@2.7.0:
- resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
- engines: {node: '>= 8.9.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
- dev: true
-
- /schema-utils@2.7.1:
- resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
- engines: {node: '>= 8.9.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
- dev: true
-
/schema-utils@3.1.1:
resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
engines: {node: '>= 10.13.0'}
@@ -21156,6 +18813,11 @@ packages:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
+ /semver@7.0.0:
+ resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
+ hasBin: true
+ dev: true
+
/semver@7.3.4:
resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==}
engines: {node: '>=10'}
@@ -21198,18 +18860,6 @@ packages:
type-fest: 0.13.1
optional: true
- /serialize-javascript@4.0.0:
- resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
- dependencies:
- randombytes: 2.1.0
- dev: true
-
- /serialize-javascript@5.0.1:
- resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==}
- dependencies:
- randombytes: 2.1.0
- dev: true
-
/serialize-javascript@6.0.1:
resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
dependencies:
@@ -21260,16 +18910,6 @@ packages:
resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
dev: false
- /set-value@2.0.1:
- resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- extend-shallow: 2.0.1
- is-extendable: 0.1.1
- is-plain-object: 2.0.4
- split-string: 3.1.0
- dev: true
-
/setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
dev: true
@@ -21287,6 +18927,7 @@ packages:
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
+ dev: false
/shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
@@ -21323,6 +18964,16 @@ packages:
resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==}
dev: true
+ /shelljs@0.8.5:
+ resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ interpret: 1.4.0
+ rechoir: 0.6.2
+ dev: true
+
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
@@ -21347,6 +18998,13 @@ packages:
is-arrayish: 0.3.2
dev: false
+ /simple-update-notifier@1.1.0:
+ resolution: {integrity: sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==}
+ engines: {node: '>=8.10.0'}
+ dependencies:
+ semver: 7.0.0
+ dev: true
+
/sinon-chrome@3.0.1:
resolution: {integrity: sha512-NTEFhyuiWEMnRmIqldUiA2DhKn2EqnZxyEk5Ez5rBXj+Nl54aJ0MEmF4wjltrxecxd8zlNLxyE0HyLabev9JsQ==}
dependencies:
@@ -21422,38 +19080,6 @@ packages:
resolution: {integrity: sha512-V21+XeNni+tTyiST1MHsa84AQhT1aFZipzPpOFAVB8DkHzwJyjjAmt9bgwnuZiZWnIbMo2duE29wybxv/7HWUw==}
dev: true
- /snapdragon-node@2.1.1:
- resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- define-property: 1.0.0
- isobject: 3.0.1
- snapdragon-util: 3.0.1
- dev: true
-
- /snapdragon-util@3.0.1:
- resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
- dev: true
-
- /snapdragon@0.8.2:
- resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- base: 0.11.2
- debug: 2.6.9
- define-property: 0.2.5
- extend-shallow: 2.0.1
- map-cache: 0.2.2
- source-map: 0.5.7
- source-map-resolve: 0.5.3
- use: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/socketcluster-client@17.1.1:
resolution: {integrity: sha512-c1UWpmcVLV10NlM5j5IFeAIodDl8HRqGhmIV52ys8hXFaeJcWikdX2Lo5oa8zHaTJUvlFybWOmPISjL7BjomqQ==}
dependencies:
@@ -21521,26 +19147,11 @@ packages:
dev: false
optional: true
- /source-list-map@2.0.1:
- resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
- dev: true
-
/source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
dev: true
- /source-map-resolve@0.5.3:
- resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
- deprecated: See https://github.com/lydell/source-map-resolve#deprecated
- dependencies:
- atob: 2.1.2
- decode-uri-component: 0.2.2
- resolve-url: 0.2.1
- source-map-url: 0.4.1
- urix: 0.1.0
- dev: true
-
/source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
dependencies:
@@ -21555,11 +19166,6 @@ packages:
source-map: 0.6.1
dev: true
- /source-map-url@0.4.1:
- resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
- deprecated: See https://github.com/lydell/source-map-url#deprecated
- dev: true
-
/source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
@@ -21633,13 +19239,6 @@ packages:
- supports-color
dev: true
- /split-string@3.1.0:
- resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- extend-shallow: 3.0.2
- dev: true
-
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: true
@@ -21666,22 +19265,13 @@ packages:
- supports-color
dev: false
- /ssri@6.0.2:
- resolution: {integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==}
- dependencies:
- figgy-pudding: 3.5.2
- dev: true
-
/ssri@8.0.1:
resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
-
- /stable@0.1.8:
- resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
- deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
- dev: true
+ dev: false
+ optional: true
/stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
@@ -21694,18 +19284,6 @@ packages:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
dev: true
- /state-toggle@1.0.3:
- resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
- dev: true
-
- /static-extend@0.1.2:
- resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
- engines: {node: '>=0.10.0'}
- dependencies:
- define-property: 0.2.5
- object-copy: 0.1.0
- dev: true
-
/statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
@@ -21726,11 +19304,16 @@ packages:
resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
dev: true
- /stream-browserify@2.0.2:
- resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==}
+ /storybook@7.0.2:
+ resolution: {integrity: sha512-/XBLhT9Vb14yNBcA9rlW15y+C6IsCA3kx5PKvK9kL10sKCi8invcY94UfCSisXe8HqsO3u6peumo2xpYucKMjw==}
+ hasBin: true
dependencies:
- inherits: 2.0.4
- readable-stream: 2.3.8
+ '@storybook/cli': 7.0.2
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
dev: true
/stream-demux@8.1.0:
@@ -21739,23 +19322,6 @@ packages:
consumable-stream: 2.0.0
writable-consumable-stream: 3.0.1
- /stream-each@1.2.3:
- resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==}
- dependencies:
- end-of-stream: 1.4.4
- stream-shift: 1.0.1
- dev: true
-
- /stream-http@2.8.3:
- resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==}
- dependencies:
- builtin-status-codes: 3.0.0
- inherits: 2.0.4
- readable-stream: 2.3.8
- to-arraybuffer: 1.0.1
- xtend: 4.0.2
- dev: true
-
/stream-shift@1.0.1:
resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
dev: true
@@ -21805,24 +19371,6 @@ packages:
side-channel: 1.0.4
dev: true
- /string.prototype.padend@3.1.4:
- resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /string.prototype.padstart@3.1.4:
- resolution: {integrity: sha512-XqOHj8horGsF+zwxraBvMTkBFM28sS/jHBJajh17JtJKA92qazidiQbLosV4UA18azvLOVKYo/E3g3T9Y5826w==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
/string.prototype.trim@1.2.7:
resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
engines: {node: '>= 0.4'}
@@ -21858,27 +19406,12 @@ packages:
dependencies:
safe-buffer: 5.2.1
- /strip-ansi@3.0.1:
- resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: true
-
/strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- /strip-bom@2.0.0:
- resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-utf8: 0.2.1
- dev: true
- optional: true
-
/strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
@@ -21889,11 +19422,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /strip-eof@1.0.0:
- resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
@@ -21903,15 +19431,6 @@ packages:
engines: {node: '>=12'}
dev: false
- /strip-indent@1.0.1:
- resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==}
- engines: {node: '>=0.10.0'}
- hasBin: true
- dependencies:
- get-stdin: 4.0.1
- dev: true
- optional: true
-
/strip-indent@3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
@@ -21941,28 +19460,6 @@ packages:
through: 2.3.8
dev: true
- /style-loader@1.3.0(webpack@4.46.0):
- resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==}
- engines: {node: '>= 8.9.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 2.7.1
- webpack: 4.46.0
- dev: true
-
- /style-loader@2.0.0(webpack@5.76.3):
- resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.1.1
- webpack: 5.76.3(webpack-cli@5.0.1)
- dev: true
-
/style-loader@3.3.2(webpack@5.76.3):
resolution: {integrity: sha512-RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw==}
engines: {node: '>= 12.13.0'}
@@ -21976,18 +19473,12 @@ packages:
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
dev: true
- /style-to-object@0.3.0:
- resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
- dependencies:
- inline-style-parser: 0.1.1
- dev: true
-
/styled-components@5.3.9(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Aj3kb13B75DQBo2oRwRa/APdB5rSmwUfN5exyarpX+x/tlM/rwZA2vVk2vQgVSP6WKaZJHWwiFrzgHt+CLtB4A==}
engines: {node: '>=10'}
peerDependencies:
- react: '>= 16.8.0 || 18'
- react-dom: '>= 16.8.0 || 18'
+ react: '>= 16.8.0'
+ react-dom: '>= 16.8.0'
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.18.6
@@ -22181,16 +19672,6 @@ packages:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
- /symbol.prototype.description@1.0.5:
- resolution: {integrity: sha512-x738iXRYsrAt9WBhRCVG5BtIC3B7CUkFwbHW2zOvGtwM33s7JjrCDyq8V0zgMYVb5ymsL8+qkzzpANH63CPQaQ==}
- engines: {node: '>= 0.11.15'}
- dependencies:
- call-bind: 1.0.2
- get-symbol-description: 1.0.0
- has-symbols: 1.0.3
- object.getownpropertydescriptors: 2.1.5
- dev: true
-
/synchronous-promise@2.0.17:
resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==}
dev: true
@@ -22206,16 +19687,20 @@ packages:
strip-ansi: 6.0.1
dev: true
- /tapable@1.1.3:
- resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
- engines: {node: '>=6'}
- dev: true
-
/tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
dev: true
+ /tar-fs@2.1.1:
+ resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
+ dependencies:
+ chownr: 1.1.4
+ mkdirp-classic: 0.5.3
+ pump: 3.0.0
+ tar-stream: 2.2.0
+ dev: true
+
/tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
@@ -22264,63 +19749,41 @@ packages:
- supports-color
dev: true
- /telejson@6.0.8:
- resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==}
+ /telejson@7.1.0:
+ resolution: {integrity: sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA==}
dependencies:
- '@types/is-function': 1.0.1
- global: 4.4.0
- is-function: 1.0.2
- is-regex: 1.1.4
- is-symbol: 1.0.4
- isobject: 4.0.0
- lodash: 4.17.21
memoizerific: 1.11.3
dev: true
+ /temp-dir@2.0.0:
+ resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /temp@0.8.4:
+ resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ rimraf: 2.6.3
+ dev: true
+
+ /tempy@1.0.1:
+ resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==}
+ engines: {node: '>=10'}
+ dependencies:
+ del: 6.1.1
+ is-stream: 2.0.1
+ temp-dir: 2.0.0
+ type-fest: 0.16.0
+ unique-string: 2.0.0
+ dev: true
+
/term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
dev: true
- /terser-webpack-plugin@1.4.5(webpack@4.46.0):
- resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==}
- engines: {node: '>= 6.9.0'}
- peerDependencies:
- webpack: ^4.0.0
- dependencies:
- cacache: 12.0.4
- find-cache-dir: 2.1.0
- is-wsl: 1.1.0
- schema-utils: 1.0.0
- serialize-javascript: 4.0.0
- source-map: 0.6.1
- terser: 4.8.1
- webpack: 4.46.0
- webpack-sources: 1.4.3
- worker-farm: 1.7.0
- dev: true
-
- /terser-webpack-plugin@4.2.3(webpack@4.46.0):
- resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- cacache: 15.3.0
- find-cache-dir: 3.3.2
- jest-worker: 26.6.2
- p-limit: 3.1.0
- schema-utils: 3.1.1
- serialize-javascript: 5.0.1
- source-map: 0.6.1
- terser: 5.16.8
- webpack: 4.46.0
- webpack-sources: 1.4.3
- transitivePeerDependencies:
- - bluebird
- dev: true
-
- /terser-webpack-plugin@5.3.7(webpack@5.76.3):
+ /terser-webpack-plugin@5.3.7(esbuild@0.17.15)(webpack@5.76.3):
resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -22337,22 +19800,12 @@ packages:
optional: true
dependencies:
'@jridgewell/trace-mapping': 0.3.17
+ esbuild: 0.17.15
jest-worker: 27.5.1
schema-utils: 3.1.1
serialize-javascript: 6.0.1
terser: 5.16.8
- webpack: 5.76.3(webpack-cli@5.0.1)
- dev: true
-
- /terser@4.8.1:
- resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- acorn: 8.8.2
- commander: 2.20.3
- source-map: 0.6.1
- source-map-support: 0.5.21
+ webpack: 5.76.3(esbuild@0.17.15)
dev: true
/terser@5.16.8:
@@ -22401,13 +19854,6 @@ packages:
engines: {node: '>=8'}
dev: false
- /timers-browserify@2.0.12:
- resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
- engines: {node: '>=0.6.0'}
- dependencies:
- setimmediate: 1.0.5
- dev: true
-
/tiny-invariant@1.3.1:
resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
dev: false
@@ -22438,10 +19884,6 @@ packages:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
dev: true
- /to-arraybuffer@1.0.1:
- resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==}
- dev: true
-
/to-fast-properties@1.0.3:
resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==}
engines: {node: '>=0.10.0'}
@@ -22451,37 +19893,12 @@ packages:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-object-path@0.3.0:
- resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
- dev: true
-
- /to-regex-range@2.1.1:
- resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-number: 3.0.0
- repeat-string: 1.6.1
- dev: true
-
/to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
- /to-regex@3.0.2:
- resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- define-property: 2.0.2
- extend-shallow: 3.0.2
- regex-not: 1.0.2
- safe-regex: 1.1.0
- dev: true
-
/todomvc-app-css@2.4.2:
resolution: {integrity: sha512-ViAkQ7ed89rmhFIGRsT36njN+97z8+s3XsJnB8E2IKOq+/SLD/6PtSvmTtiwUcVk39qPcjAc/OyeDys4LoJUVg==}
dev: false
@@ -22518,12 +19935,6 @@ packages:
punycode: 2.3.0
dev: true
- /trim-newlines@1.0.0:
- resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==}
- engines: {node: '>=0.10.0'}
- dev: true
- optional: true
-
/trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
@@ -22534,25 +19945,12 @@ packages:
engines: {node: '>=12'}
dev: true
- /trim-trailing-lines@1.1.4:
- resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==}
- dev: true
-
- /trim@0.0.1:
- resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==}
- deprecated: Use String.prototype.trim() instead
- dev: true
-
- /trough@1.0.5:
- resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
- dev: true
-
/ts-dedent@2.2.0:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
engines: {node: '>=6.10'}
dev: true
- /ts-jest@29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5):
+ /ts-jest@29.0.5(@babel/core@7.21.3)(esbuild@0.17.15)(jest@29.5.0)(typescript@4.9.5):
resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -22575,6 +19973,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
bs-logger: 0.2.6
+ esbuild: 0.17.15
fast-json-stable-stringify: 2.1.0
jest: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
jest-util: 29.5.0
@@ -22617,18 +20016,6 @@ packages:
yn: 3.1.1
dev: true
- /ts-pnp@1.2.0(typescript@4.9.5):
- resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
- engines: {node: '>=6'}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- typescript: 4.9.5
- dev: true
-
/ts-toolbelt@6.15.5:
resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==}
dev: true
@@ -22672,10 +20059,6 @@ packages:
typescript: 4.9.5
dev: true
- /tty-browserify@0.0.0:
- resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==}
- dev: true
-
/tty-table@4.2.1:
resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==}
engines: {node: '>=8.0.0'}
@@ -22713,6 +20096,11 @@ packages:
resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
engines: {node: '>=10'}
+ /type-fest@0.16.0:
+ resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
+ engines: {node: '>=10'}
+ dev: true
+
/type-fest@0.18.1:
resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==}
engines: {node: '>=10'}
@@ -22745,7 +20133,6 @@ packages:
/type-fest@2.19.0:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
- dev: false
/type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
@@ -22762,12 +20149,6 @@ packages:
is-typed-array: 1.1.10
dev: true
- /typedarray-to-buffer@3.1.5:
- resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
- dependencies:
- is-typedarray: 1.0.0
- dev: true
-
/typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
dev: true
@@ -22814,7 +20195,7 @@ packages:
/uncontrollable@7.2.1(react@18.2.0):
resolution: {integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==}
peerDependencies:
- react: '>=15.0.0 || 18'
+ react: '>=15.0.0'
dependencies:
'@babel/runtime': 7.21.0
'@types/react': 18.0.29
@@ -22826,7 +20207,7 @@ packages:
/uncontrollable@8.0.0(react@18.2.0):
resolution: {integrity: sha512-a954G/0JyXoZdpt0YIzTfoQyWtRS1VvygOBsHttCtZL8jDTKd6vQlUo811y46XnWoXIqQ36QKi3cSEdPuFADkA==}
peerDependencies:
- react: '>=17.0.0 || 18'
+ react: '>=17.0.0'
dependencies:
'@types/react': 18.0.29
react: 18.2.0
@@ -22836,13 +20217,6 @@ packages:
resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
dev: true
- /unherit@1.1.3:
- resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
- dependencies:
- inherits: 2.0.4
- xtend: 4.0.2
- dev: true
-
/unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
@@ -22866,72 +20240,31 @@ packages:
engines: {node: '>=4'}
dev: true
- /unified@9.2.0:
- resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==}
- dependencies:
- '@types/unist': 2.0.6
- bail: 1.0.5
- extend: 3.0.2
- is-buffer: 2.0.5
- is-plain-obj: 2.1.0
- trough: 1.0.5
- vfile: 4.2.1
- dev: true
-
- /union-value@1.0.1:
- resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-union: 3.1.0
- get-value: 2.0.6
- is-extendable: 0.1.1
- set-value: 2.0.1
- dev: true
-
/unique-filename@1.1.1:
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
dependencies:
unique-slug: 2.0.2
+ dev: false
+ optional: true
/unique-slug@2.0.2:
resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==}
dependencies:
imurmurhash: 0.1.4
+ dev: false
+ optional: true
- /unist-builder@2.0.3:
- resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==}
- dev: true
-
- /unist-util-generated@1.1.6:
- resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==}
+ /unique-string@2.0.0:
+ resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
+ engines: {node: '>=8'}
+ dependencies:
+ crypto-random-string: 2.0.0
dev: true
/unist-util-is@4.1.0:
resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
dev: true
- /unist-util-position@3.1.0:
- resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==}
- dev: true
-
- /unist-util-remove-position@2.0.1:
- resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==}
- dependencies:
- unist-util-visit: 2.0.3
- dev: true
-
- /unist-util-remove@2.1.0:
- resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==}
- dependencies:
- unist-util-is: 4.1.0
- dev: true
-
- /unist-util-stringify-position@2.0.3:
- resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
- dependencies:
- '@types/unist': 2.0.6
- dev: true
-
/unist-util-visit-parents@3.1.1:
resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
dependencies:
@@ -22965,32 +20298,18 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- /unset-value@1.0.0:
- resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
- engines: {node: '>=0.10.0'}
+ /unplugin@0.10.2:
+ resolution: {integrity: sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==}
dependencies:
- has-value: 0.3.1
- isobject: 3.0.1
+ acorn: 8.8.2
+ chokidar: 3.5.3
+ webpack-sources: 3.2.3
+ webpack-virtual-modules: 0.4.6
dev: true
- /untildify@2.1.0:
- resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==}
- engines: {node: '>=0.10.0'}
- dependencies:
- os-homedir: 1.0.2
- dev: true
- optional: true
-
/untildify@4.0.0:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- dev: false
-
- /upath@1.2.0:
- resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
- engines: {node: '>=4'}
- dev: true
- optional: true
/update-browserslist-db@1.0.10(browserslist@4.21.5):
resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
@@ -23012,28 +20331,6 @@ packages:
resolution: {integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==}
dev: true
- /urix@0.1.0:
- resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
- deprecated: Please see https://github.com/lydell/urix#deprecated
- dev: true
-
- /url-loader@4.1.1(file-loader@6.2.0)(webpack@4.46.0):
- resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- file-loader: '*'
- webpack: ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- file-loader:
- optional: true
- dependencies:
- file-loader: 6.2.0(webpack@4.46.0)
- loader-utils: 2.0.4
- mime-types: 2.1.35
- schema-utils: 3.1.1
- webpack: 4.46.0
- dev: true
-
/url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
dependencies:
@@ -23041,19 +20338,12 @@ packages:
requires-port: 1.0.0
dev: true
- /url@0.11.0:
- resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==}
- dependencies:
- punycode: 1.3.2
- querystring: 0.2.0
- dev: true
-
/use-callback-ref@1.3.0(@types/react@18.0.29)(react@18.2.0):
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -23067,7 +20357,7 @@ packages:
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -23076,12 +20366,23 @@ packages:
react: 18.2.0
dev: false
+ /use-resize-observer@9.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==}
+ peerDependencies:
+ react: 16.8.0 - 18
+ react-dom: 16.8.0 - 18
+ dependencies:
+ '@juggle/resize-observer': 3.4.0
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: true
+
/use-sidecar@1.1.2(@types/react@18.0.29)(react@18.2.0):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -23095,37 +20396,13 @@ packages:
/use-sync-external-store@1.2.0(react@18.2.0):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
react: 18.2.0
- /use@3.1.1:
- resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /util.promisify@1.0.0:
- resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==}
- dependencies:
- define-properties: 1.2.0
- object.getownpropertydescriptors: 2.1.5
- dev: true
-
- /util@0.10.3:
- resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==}
- dependencies:
- inherits: 2.0.1
- dev: true
-
- /util@0.11.1:
- resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==}
- dependencies:
- inherits: 2.0.3
- dev: true
-
/util@0.12.5:
resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
dependencies:
@@ -23134,7 +20411,6 @@ packages:
is-generator-function: 1.0.10
is-typed-array: 1.1.10
which-typed-array: 1.1.9
- dev: false
/utila@0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
@@ -23148,12 +20424,6 @@ packages:
resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==}
dev: true
- /uuid@3.4.0:
- resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
- deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
- hasBin: true
- dev: true
-
/uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
@@ -23216,36 +20486,12 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- /vfile-location@3.2.0:
- resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==}
- dev: true
-
- /vfile-message@2.0.4:
- resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
- dependencies:
- '@types/unist': 2.0.6
- unist-util-stringify-position: 2.0.3
- dev: true
-
- /vfile@4.2.1:
- resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
- dependencies:
- '@types/unist': 2.0.6
- is-buffer: 2.0.5
- unist-util-stringify-position: 2.0.3
- vfile-message: 2.0.4
- dev: true
-
/vinyl-buffer@1.0.1:
resolution: {integrity: sha512-LRBE2/g3C1hSHL2k/FynSZcVTRhEw8sb08oKGt/0hukZXwrh2m8nfy+r5yLhGEk7eFFuclhyIuPct/Bxlxk6rg==}
dependencies:
bl: 1.2.3
through2: 2.0.5
- /vm-browserify@1.1.2:
- resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
- dev: true
-
/void-elements@2.0.1:
resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==}
engines: {node: '>=0.10.0'}
@@ -23270,28 +20516,6 @@ packages:
loose-envify: 1.4.0
dev: false
- /watchpack-chokidar2@2.0.1:
- resolution: {integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==}
- requiresBuild: true
- dependencies:
- chokidar: 2.1.8
- transitivePeerDependencies:
- - supports-color
- dev: true
- optional: true
-
- /watchpack@1.7.5:
- resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==}
- dependencies:
- graceful-fs: 4.2.11
- neo-async: 2.6.2
- optionalDependencies:
- chokidar: 3.5.3
- watchpack-chokidar2: 2.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/watchpack@2.4.0:
resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
@@ -23319,10 +20543,6 @@ packages:
'@zxing/text-encoding': 0.9.0
dev: false
- /web-namespaces@1.1.4:
- resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==}
- dev: true
-
/webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -23365,35 +20585,6 @@ packages:
webpack-merge: 5.8.0
dev: true
- /webpack-dev-middleware@3.7.3(webpack@4.46.0):
- resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==}
- engines: {node: '>= 6'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- memory-fs: 0.4.1
- mime: 2.6.0
- mkdirp: 0.5.6
- range-parser: 1.2.1
- webpack: 4.46.0
- webpack-log: 2.0.0
- dev: true
-
- /webpack-dev-middleware@4.3.0(webpack@5.76.3):
- resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==}
- engines: {node: '>= v10.23.3'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- colorette: 1.4.0
- mem: 8.1.1
- memfs: 3.4.13
- mime-types: 2.1.35
- range-parser: 1.2.1
- schema-utils: 3.1.1
- webpack: 5.76.3(webpack-cli@5.0.1)
- dev: true
-
/webpack-dev-middleware@5.3.3(webpack@5.76.3):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
@@ -23460,15 +20651,6 @@ packages:
- utf-8-validate
dev: true
- /webpack-filter-warnings-plugin@1.2.1(webpack@4.46.0):
- resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==}
- engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'}
- peerDependencies:
- webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
- dependencies:
- webpack: 4.46.0
- dev: true
-
/webpack-hot-middleware@2.25.3:
resolution: {integrity: sha512-IK/0WAHs7MTu1tzLTjio73LjS3Ov+VvBKQmE8WPlJutgG5zT6Urgq/BbAdRrHTRpyzK0dvAvFh1Qg98akxgZpA==}
dependencies:
@@ -23477,14 +20659,6 @@ packages:
strip-ansi: 6.0.1
dev: true
- /webpack-log@2.0.0:
- resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==}
- engines: {node: '>= 6'}
- dependencies:
- ansi-colors: 3.2.4
- uuid: 3.4.0
- dev: true
-
/webpack-merge@5.8.0:
resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
engines: {node: '>=10.0.0'}
@@ -23493,68 +20667,53 @@ packages:
wildcard: 2.0.0
dev: true
- /webpack-sources@1.4.3:
- resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
- dependencies:
- source-list-map: 2.0.1
- source-map: 0.6.1
- dev: true
-
/webpack-sources@3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
dev: true
- /webpack-virtual-modules@0.2.2:
- resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==}
- dependencies:
- debug: 3.2.7
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/webpack-virtual-modules@0.4.6:
resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==}
dev: true
- /webpack@4.46.0:
- resolution: {integrity: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==}
- engines: {node: '>=6.11.5'}
+ /webpack@5.76.3(esbuild@0.17.15):
+ resolution: {integrity: sha512-18Qv7uGPU8b2vqGeEEObnfICyw2g39CHlDEK4I7NK13LOur1d0HGmGNKGT58Eluwddpn3oEejwvBPoP4M7/KSA==}
+ engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
webpack-cli: '*'
- webpack-command: '*'
peerDependenciesMeta:
webpack-cli:
optional: true
- webpack-command:
- optional: true
dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-module-context': 1.9.0
- '@webassemblyjs/wasm-edit': 1.9.0
- '@webassemblyjs/wasm-parser': 1.9.0
- acorn: 6.4.2
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
+ '@types/eslint-scope': 3.7.4
+ '@types/estree': 0.0.51
+ '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/wasm-edit': 1.11.1
+ '@webassemblyjs/wasm-parser': 1.11.1
+ acorn: 8.8.2
+ acorn-import-assertions: 1.8.0(acorn@8.8.2)
+ browserslist: 4.21.5
chrome-trace-event: 1.0.3
- enhanced-resolve: 4.5.0
- eslint-scope: 4.0.3
- json-parse-better-errors: 1.0.2
- loader-runner: 2.4.0
- loader-utils: 1.4.2
- memory-fs: 0.4.1
- micromatch: 3.1.10
- mkdirp: 0.5.6
+ enhanced-resolve: 5.12.0
+ es-module-lexer: 0.9.3
+ 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.3.0
+ mime-types: 2.1.35
neo-async: 2.6.2
- node-libs-browser: 2.2.1
- schema-utils: 1.0.0
- tapable: 1.1.3
- terser-webpack-plugin: 1.4.5(webpack@4.46.0)
- watchpack: 1.7.5
- webpack-sources: 1.4.3
+ schema-utils: 3.1.1
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.7(esbuild@0.17.15)(webpack@5.76.3)
+ watchpack: 2.4.0
+ webpack-sources: 3.2.3
transitivePeerDependencies:
- - supports-color
+ - '@swc/core'
+ - esbuild
+ - uglify-js
dev: true
/webpack@5.76.3(webpack-cli@5.0.1):
@@ -23588,7 +20747,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.1.1
tapable: 2.2.1
- terser-webpack-plugin: 5.3.7(webpack@5.76.3)
+ terser-webpack-plugin: 5.3.7(esbuild@0.17.15)(webpack@5.76.3)
watchpack: 2.4.0
webpack-cli: 5.0.1(webpack-dev-server@4.13.1)(webpack@5.76.3)
webpack-sources: 3.2.3
@@ -23735,18 +20894,6 @@ packages:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
dev: true
- /worker-farm@1.7.0:
- resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==}
- dependencies:
- errno: 0.1.8
- dev: true
-
- /worker-rpc@0.1.1:
- resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==}
- dependencies:
- microevent.ts: 0.1.1
- dev: true
-
/wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
@@ -23778,13 +20925,12 @@ packages:
dependencies:
consumable-stream: 2.0.0
- /write-file-atomic@3.0.3:
- resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
+ /write-file-atomic@2.4.3:
+ resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
dependencies:
+ graceful-fs: 4.2.11
imurmurhash: 0.1.4
- is-typedarray: 1.0.0
signal-exit: 3.0.7
- typedarray-to-buffer: 3.1.5
dev: true
/write-file-atomic@4.0.2:
@@ -23803,6 +20949,20 @@ packages:
signal-exit: 3.0.7
dev: true
+ /ws@6.2.2:
+ resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dependencies:
+ async-limiter: 1.0.1
+ dev: true
+
/ws@8.13.0:
resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
engines: {node: '>=10.0.0'}
@@ -23815,13 +20975,6 @@ packages:
utf-8-validate:
optional: true
- /x-default-browser@0.4.0:
- resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==}
- hasBin: true
- optionalDependencies:
- default-browser-id: 1.0.4
- dev: true
-
/xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
@@ -23942,10 +21095,6 @@ packages:
engines: {node: '>=10'}
dev: true
- /zwitch@1.0.5:
- resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
- dev: true
-
github.com/Methuselah96/chalk/7e66d0ff681fc10462ce327f1c4f82bfa13193e2:
resolution: {tarball: https://codeload.github.com/Methuselah96/chalk/tar.gz/7e66d0ff681fc10462ce327f1c4f82bfa13193e2}
name: chalk