diff --git a/apps/docs/tsconfig.json b/apps/docs/tsconfig.json index 3ea66c2..6193caa 100644 --- a/apps/docs/tsconfig.json +++ b/apps/docs/tsconfig.json @@ -8,5 +8,5 @@ "@@/*": [".dumi/tmp/*"] } }, - "include": [".dumi/**/*", ".dumirc.ts"] + "include": [".dumirc.ts"] } diff --git a/apps/platform/config/config.ts b/apps/platform/config/config.ts index 59dc459..db137e3 100644 --- a/apps/platform/config/config.ts +++ b/apps/platform/config/config.ts @@ -37,6 +37,19 @@ export default defineConfig({ 'babel-plugin-parameter-decorator', ], mfsu: false, + codeSplitting: { + jsStrategy: 'granularChunks', + }, + // oneApi: { + // apps: [ + // { + // name: 'secretpad', // 后端应用名 + // tag: 'feat/cx_merge', // 分支 tag + // source: 'ZAPPINFO', // 应用来源,默认 ZAPPINFO,其他来源可在官网的应用信息中查看 + // }, + // ], + // typescript: true, // 每个接口的类型定义,自动生成,默认 false + // }, esbuildMinifyIIFE: true, ...proxyOptions, }); diff --git a/apps/platform/package.json b/apps/platform/package.json index 22e0dbf..738cb7a 100644 --- a/apps/platform/package.json +++ b/apps/platform/package.json @@ -12,11 +12,14 @@ "lint:typing": "tsc --noEmit", "test": "jest --coverage", "preview": "umi preview", - "openapi": "node config/openapi.config.js" + "openapi": "node config/openapi.config.js", + "oneapi": "bigfish api generate service" }, "dependencies": { "@ant-design/icons": "^5.0.1", "@antv/g2": "^4.2.9", + "@antv/s2": "^1.52.0", + "@antv/s2-react": "^1.44.2", "@antv/x6": "^2.11.1", "@antv/x6-plugin-keyboard": "2.2.1", "@antv/x6-plugin-selection": "^2.1.7", @@ -50,5 +53,6 @@ "peerDependencies": { "antd": "^5.0.0", "react": "^18.0.0" - } + }, + "repository": "https://code.alipay.com/Secret-Flow/platform-web.git" } diff --git a/apps/platform/src/assets/redo.svg b/apps/platform/src/assets/redo.svg new file mode 100644 index 0000000..a245470 --- /dev/null +++ b/apps/platform/src/assets/redo.svg @@ -0,0 +1,7 @@ + + + 7 ICON/1 Line/redo + + + + \ No newline at end of file diff --git a/apps/platform/src/assets/undo.svg b/apps/platform/src/assets/undo.svg new file mode 100644 index 0000000..7fed529 --- /dev/null +++ b/apps/platform/src/assets/undo.svg @@ -0,0 +1,7 @@ + + + 7 ICON/1 Line/undo + + + + \ No newline at end of file diff --git a/apps/platform/src/components/monaco-editor/index.less b/apps/platform/src/components/monaco-editor/index.less new file mode 100644 index 0000000..cdae032 --- /dev/null +++ b/apps/platform/src/components/monaco-editor/index.less @@ -0,0 +1,74 @@ +.toolbar { + display: flex; + height: 36px; + align-items: center; + justify-content: space-between; + background: rgb(0 0 0 / 2%); +} + +.toolButton { + color: rgb(0 0 0 / 65%); + + &:hover { + color: rgb(0 0 0 / 65%) !important; + } +} + +.editor { + background-color: #fff; + + .title { + display: flex; + height: 56px; + align-items: center; + justify-content: space-between; + margin: 0 24px; + + .titleInput { + color: #1d2129; + font-size: 20px; + font-weight: 500; + } + } + + .content { + display: flex; + + .fullscreenWorkspace { + width: calc(100vw - 275px); + } + + .normalWorkspace { + width: 100%; + } + + .rightConfig { + width: 280px; + border-top: 1px solid rgb(0 0 0 / 6%); + border-left: 1px solid rgb(0 0 0 / 6%); + background: #fff; + + .titleText { + padding: 16px 12px; + color: rgb(0 0 0 / 88%); + font-size: 14px; + font-weight: 500; + line-height: 20px; + } + } + } + + .code { + height: 320px; + } + + .fullscreenCode { + height: calc(100vh - 140px); + } +} + +.footer { + padding: 12px 8px 8px; + background: #fff; + box-shadow: inset 0 1px 0 0 rgb(0 0 0 / 6%); +} diff --git a/apps/platform/src/components/monaco-editor/index.tsx b/apps/platform/src/components/monaco-editor/index.tsx new file mode 100644 index 0000000..19b04a4 --- /dev/null +++ b/apps/platform/src/components/monaco-editor/index.tsx @@ -0,0 +1,278 @@ +import { + FullscreenOutlined, + FullscreenExitOutlined, + QuestionCircleOutlined, +} from '@ant-design/icons'; +import { useFullscreen } from 'ahooks'; +import { Button, Space, Tooltip } from 'antd'; +import classNames from 'classnames'; +import * as Monaco from 'monaco-editor'; +import { language as pythonLanguage } from 'monaco-editor/esm/vs/basic-languages/python/python.js'; +import type { FC } from 'react'; +import { useEffect, useRef } from 'react'; + +import redoIcon from '@/assets/redo.svg'; +import undoIcon from '@/assets/undo.svg'; + +import styles from './index.less'; + +// import type { RenderProp } from './config-render-protocol'; + +interface PythonEditorProps { + value: string; + onChange: (val: string) => void; + disabled?: boolean; + name?: string; + tooltip?: string; +} + +// const outputTypeSuggestions = [ +// { +// label: 'fedTable', +// insertText: 'fedTable_', +// detail: '联合表', +// }, +// { +// label: 'model', +// insertText: 'model_', +// detail: '模型', +// }, +// { +// label: 'rule', +// insertText: 'rule_', +// detail: '规则', +// }, +// ]; + +export const PythonEditor: FC = (props) => { + const { value = '', onChange, disabled = false, name, tooltip } = props; + const editorRef = useRef(null); + const fullscreenRef = useRef(null); + const monacoSuggestion = useRef(null); + const [isFullscreen, { enterFullscreen, exitFullscreen }] = + useFullscreen(fullscreenRef); + const editor = useRef(null); + + const handleValueChange = () => { + editor?.current?.onDidChangeModelContent(() => { + const editedValue = editor?.current?.getValue(); + if (editedValue && editedValue !== value) { + onChange(editedValue); + } + }); + }; + + const initEditor = () => { + if (editorRef?.current) { + const monacoEditor = Monaco.editor.create(editorRef?.current, { + language: 'python', + value, + readOnly: disabled, + contextmenu: false, + suggestLineHeight: 24, + formatOnPaste: true, + automaticLayout: true, + minimap: { enabled: false }, + lineHeight: 20, + folding: true, + wordWrap: 'on', + lineDecorationsWidth: 0, + lineNumbersMinChars: 1, + suggestSelection: 'first', + wordBasedSuggestions: false, + suggest: { snippetsPreventQuickSuggestions: false }, + autoClosingQuotes: 'always', + autoDetectHighContrast: false, + quickSuggestions: false, + hover: { + enabled: false, + }, + }); + + editor.current = monacoEditor; + handleValueChange(); + } + }; + + const disposeEditor = () => { + if (editor?.current) { + editor.current.dispose(); + editor.current = null; + } + if (monacoSuggestion?.current) { + monacoSuggestion.current.dispose(); + monacoSuggestion.current = null; + } + }; + + useEffect(() => { + if (editor.current) { + editor.current?.updateOptions({ + quickSuggestions: isFullscreen, + contextmenu: isFullscreen, + }); + } + if (isFullscreen) { + monacoSuggestion.current = Monaco.languages.registerCompletionItemProvider( + 'python', + { + provideCompletionItems( + model: any, + position: { lineNumber: number; column: number }, + ) { + const suggestions = []; + pythonLanguage.keywords.forEach((item) => { + suggestions.push({ + label: item, + kind: Monaco.languages.CompletionItemKind.Keyword, + insertText: item, + }); + }); + return { + suggestions: suggestions, + }; + }, + // triggerCharacters: ['.'], + }, + ); + } else { + if (monacoSuggestion.current) { + monacoSuggestion.current?.dispose(); + } + } + }, [isFullscreen]); + + useEffect(() => { + initEditor(); + + return () => { + disposeEditor(); + }; + }, []); + + const undo = () => { + if (editor && editor?.current) { + editor.current.trigger('', 'undo', ''); + } + }; + + const redo = () => { + if (editor && editor?.current) { + editor.current.trigger('', 'redo', ''); + } + }; + + const handleFullScreen = () => { + if (isFullscreen) { + exitFullscreen(); + } else { + enterFullscreen(); + } + }; + + return ( +
+ {isFullscreen && ( +
+
+ +
{name}
+ {tooltip && ( + + document.getElementById('scriptIdInput') as HTMLDivElement + } + > + + + )} +
+
+ +
+ )} + +
+
+
+ + + + + + {!isFullscreen && ( + + )} +
+
+
+ + {isFullscreen && ( +
+
输入输出
+
+ )} +
+ + {isFullscreen && ( +
+ + + + +
+ )} +
+ ); +}; diff --git a/apps/platform/components/react-hight-lighter/declaration.d.ts b/apps/platform/src/components/react-hight-lighter/declaration.d.ts similarity index 100% rename from apps/platform/components/react-hight-lighter/declaration.d.ts rename to apps/platform/src/components/react-hight-lighter/declaration.d.ts diff --git a/apps/platform/components/react-hight-lighter/index.tsx b/apps/platform/src/components/react-hight-lighter/index.tsx similarity index 100% rename from apps/platform/components/react-hight-lighter/index.tsx rename to apps/platform/src/components/react-hight-lighter/index.tsx diff --git a/apps/platform/src/modules/component-config/component-config-protocol.ts b/apps/platform/src/modules/component-config/component-config-protocol.ts index 5926327..140c855 100644 --- a/apps/platform/src/modules/component-config/component-config-protocol.ts +++ b/apps/platform/src/modules/component-config/component-config-protocol.ts @@ -9,6 +9,7 @@ import type { export type AtomicConfigNode = { name: string; type: AtomicParameterType; + fromInputIndex?: number; docString: string; isRequired: boolean; prefixes?: string[]; @@ -18,6 +19,13 @@ export type AtomicConfigNode = { col_min_cnt_inclusive?: number; } & AtomicParameterDef; +export type CustomConfigNode = { + name: string; + type: 'AT_CUSTOM_PROTOBUF'; + custom_protobuf_cls: string; + prefixes?: string[]; +}; + export type StructConfigNode = { selectedName?: string; name: string; @@ -42,9 +50,13 @@ export type ComponentConfigRegistry = { export const codeNameRenderKey = { 'read_data/datatable': 'DATA_TABLE_SELECT', - 'ml.eval/biclassification_eval': 'COL_INPUT', - 'ml.eval/prediction_bias_eval': 'COL_INPUT', + 'data_prep/psi': 'UNION_KEY_SELECT', 'preprocessing/psi': 'UNION_KEY_SELECT', + 'preprocessing/sqlite': 'SQL', +}; + +export const codeNameRenderIndex = { + 'preprocessing/binary_op': [0, 2, 1, 3, 4], }; export interface ComponentConfig { @@ -105,12 +117,26 @@ type GraphNodeTaskStatus = type ResultKind = 'FedTable' | 'Model' | 'Rule' | 'Report'; export const getUpstreamKey = { - 'preprocessing/psi': (upstreamNodes: GraphNodeDetail[]) => { - return upstreamNodes.map((n) => { + 'data_prep/psi': (upstreamNodes: GraphNodeDetail[], graphNode?: GraphNodeDetail) => { + const { inputs = [] } = graphNode || {}; + return upstreamNodes.map((n, index) => { + const { codeName, nodeDef } = n || {}; + if (codeName !== 'read_data/datatable') return inputs[index]; + const { attrs } = nodeDef; + if (!attrs) return inputs[index]; + return attrs[0]?.s; + }); + }, + 'preprocessing/psi': ( + upstreamNodes: GraphNodeDetail[], + graphNode?: GraphNodeDetail, + ) => { + const { inputs = [] } = graphNode || {}; + return upstreamNodes.map((n, index) => { const { codeName, nodeDef } = n || {}; - if (codeName !== 'read_data/datatable') return; + if (codeName !== 'read_data/datatable') return inputs[index]; const { attrs } = nodeDef; - if (!attrs) return; + if (!attrs) return inputs[index]; return attrs[0]?.s; }); }, diff --git a/apps/platform/src/modules/component-config/component-config-registry.ts b/apps/platform/src/modules/component-config/component-config-registry.ts index 7dfa2ac..427da03 100644 --- a/apps/platform/src/modules/component-config/component-config-registry.ts +++ b/apps/platform/src/modules/component-config/component-config-registry.ts @@ -32,6 +32,7 @@ export class ComponentConfigRegistry extends Model { version, children: [], }; + if (inputs) { const inputsNode = this.createInputConfigNode(inputs); inputsNode && parent.children.push(inputsNode); @@ -74,7 +75,7 @@ export class ComponentConfigRegistry extends Model { name: 'input', children: [], }; - input.map((i) => { + input.map((i, inputIndex) => { if (i.attrs) { const { name: inputName, attrs } = i; @@ -94,6 +95,7 @@ export class ComponentConfigRegistry extends Model { docString: desc, type: 'AT_SF_TABLE_COL', prefixes: ['input', inputName], + fromInputIndex: inputIndex, col_max_cnt_inclusive, col_min_cnt_inclusive, isRequired, @@ -109,7 +111,7 @@ export class ComponentConfigRegistry extends Model { createNode(param: ParameterNode): ConfigItem { let isRequired = true; - const { type, name, desc: docString, prefixes } = param; + const { type, name, desc: docString, prefixes, custom_protobuf_cls } = param; switch (type) { case 'AT_UNION_GROUP': return { @@ -126,6 +128,15 @@ export class ComponentConfigRegistry extends Model { children: [], docString, }; + case 'AT_CUSTOM_PROTOBUF': + return { + name, + prefixes, + type, + custom_protobuf_cls, + isRequired: true, + docString, + }; default: isRequired = (param as AtomicParameterNode).atomic?.is_optional !== true; return { diff --git a/apps/platform/src/modules/component-config/config-form-view.tsx b/apps/platform/src/modules/component-config/config-form-view.tsx index c109136..f8b9d30 100644 --- a/apps/platform/src/modules/component-config/config-form-view.tsx +++ b/apps/platform/src/modules/component-config/config-form-view.tsx @@ -1,6 +1,5 @@ -import type { GraphNode } from '@secretflow/dag'; -import { Form, Button, Space } from 'antd'; -import { debounce } from 'lodash'; +import { Form, Button, Space, Alert } from 'antd'; +// import { debounce } from 'lodash'; import { parse } from 'query-string'; import { useEffect, useState } from 'react'; import { useLocation } from 'umi'; @@ -19,6 +18,7 @@ import type { import type { AtomicConfigNode, ConfigItem, + CustomConfigNode, GraphNodeDetail, NodeDef, StructConfigNode, @@ -26,11 +26,14 @@ import type { import { getInputTables, getUpstreamKey, + codeNameRenderIndex, codeNameRenderKey, } from './component-config-protocol'; import { ComponentConfigRegistry } from './component-config-registry'; import { DefaultComponentConfigService } from './component-config-service'; +import type { NodeAllInfo } from './config-item-render/config-render-protocol'; import { ConfigRenderRegistry } from './config-item-render/config-render-registry'; +import { customSerializerRegistry } from './config-item-render/custom-serializer-registry'; import styles from './index.less'; import { getDefaultValue, isStructConfigNode, typesMap } from './utils'; @@ -44,13 +47,7 @@ const layout = { }; interface IConfigFormComponent { - node: { - nodeId: string; - name: string; - upstreamNodes: GraphNodeDetail[]; - graphNode: GraphNodeDetail; - inputNodes: GraphNode[]; - }; + node: NodeAllInfo; onClose: () => void; } @@ -72,6 +69,7 @@ export const ConfigFormComponent: React.FC = (prop) => { ); const [graphNode, setGraphNode] = useState(); const [isEditable, setIsEditable] = useState(true); + const [isShowSaveBtn, setIsShowSaveBtn] = useState(true); const [translation, setTranslation] = useState({}); const interpreter = useModel(DefaultComponentInterpreterService); @@ -79,12 +77,29 @@ export const ConfigFormComponent: React.FC = (prop) => { const componentConfigService = useModel(DefaultComponentConfigService); const projectEditService = useModel(ProjectEditService); + const exif = { + renderKey: codeNameRenderKey[nodeName as keyof typeof codeNameRenderKey], + renderIndex: codeNameRenderIndex[nodeName as keyof typeof codeNameRenderIndex], + upstreamTables: + nodeName in getUpstreamKey + ? getUpstreamKey[nodeName as keyof typeof getUpstreamKey]( + upstreamNodes, + graphNode, + ) + : graphNode?.inputs?.length + ? graphNode?.inputs.concat(getInputTables(inputNodes)) + : getInputTables(inputNodes), + }; + + const [renderIndex, setRenderIndex] = useState(exif.renderIndex); + useEffect(() => { const fetchConfig = () => { const configNode = componentConfigService.getComponentConfig( node, mode as ComputeMode, ); + setConfig(configNode); }; const getTranslation = () => { @@ -103,6 +118,7 @@ export const ConfigFormComponent: React.FC = (prop) => { getTranslation(); setGraphNode(savedNode); fetchConfig(); + setRenderIndex(exif.renderIndex); }, [node, nodeId, savedNode, mode]); useEffect(() => { @@ -114,14 +130,16 @@ export const ConfigFormComponent: React.FC = (prop) => { } }, [pathname, projectEditService.canEdit.configFormDisabled]); useEffect(() => { + /** 1. fetch 组件信息的时候,unserializer 反序列化,转换成表单需要的格式 */ const fetchGraphNode = async () => { const { nodeDef } = graphNode || {}; - // init values in form const initVal = await initFormVal(); + form.setFieldsValue(getGraphNodeAttrs(initVal.attrPaths, initVal.attrs)); if (!nodeDef) return; + const { attrs, attrPaths } = nodeDef; if (attrPaths && attrs) form.setFieldsValue(getGraphNodeAttrs(attrPaths, attrs)); @@ -131,20 +149,29 @@ export const ConfigFormComponent: React.FC = (prop) => { const ret: Record = {}; attrPaths.forEach((path, index) => { - const { is_na, ...val } = attrs[index]; - - let attrVal = Object.values(val)[0]; - - if ( - codeNameRenderKey[nodeName as keyof typeof codeNameRenderKey] === - 'UNION_KEY_SELECT' - ) - if (Array.isArray(attrVal) && attrVal.length === 0) attrVal = [null]; - if (!is_na) ret[path] = attrVal; + const { is_na, custom_protobuf_cls, ...val } = attrs[index]; + + // custom proto + if (custom_protobuf_cls) { + const attrVal = val; + const { unserializer } = customSerializerRegistry[custom_protobuf_cls]; + + ret[path] = unserializer(attrVal); + } else { + let attrVal = Object.values(val)[0]; + + if ( + codeNameRenderKey[nodeName as keyof typeof codeNameRenderKey] === + 'UNION_KEY_SELECT' + ) + if (Array.isArray(attrVal) && attrVal.length === 0) attrVal = [null]; + if (!is_na) ret[path] = attrVal; + } }); return ret; }; + fetchGraphNode(); }, [graphNode, form]); @@ -164,23 +191,43 @@ export const ConfigFormComponent: React.FC = (prop) => { params.attrPaths.push(name); const { type } = node; - const param: Record> = {}; - const typeKey = typesMap[type]; - let attrVal: ValueOf | undefined = - typeKey === 'ss' ? [] : undefined; + if (node.custom_protobuf_cls === 'Binning_modifications') { + setIsShowSaveBtn(false); + } else { + setIsShowSaveBtn(true); + } + + if (type === 'AT_CUSTOM_PROTOBUF') { + const typeKey = node['custom_protobuf_cls']; + const param: Record> = {}; + const { unserializer } = customSerializerRegistry[typeKey]; + + const initVal = unserializer(); - if (node.default_value) attrVal = node.default_value[typeKey]; + param[typeKey] = initVal; - param[typeKey] = attrVal; + params.attrs.push(param as Attribute); + } else { + const param: Record> = {}; + const typeKey = typesMap[type]; - params.attrs.push(param as Attribute); + let attrVal: ValueOf | undefined = + typeKey === 'ss' ? [] : undefined; + + if (node.default_value) attrVal = node.default_value[typeKey]; + + param[typeKey] = attrVal; + + params.attrs.push(param as Attribute); + } } }); return params; }; + /** 2. 把表单格式,serializer 序列化,转换成 node info */ const onSaveConfig = async (val: Record | undefined>) => { const params: { attrPaths: string[]; attrs: Attribute[] } = { attrPaths: [], @@ -188,6 +235,7 @@ export const ConfigFormComponent: React.FC = (prop) => { }; // serialize the params according to type let isFinished = true; + componentConfig?.map((_node) => { const name = _node.prefixes && _node.prefixes.length > 0 @@ -195,15 +243,30 @@ export const ConfigFormComponent: React.FC = (prop) => { : _node.name; params.attrPaths.push(name); - const { type } = _node as AtomicConfigNode; + + const { type } = _node as AtomicConfigNode | CustomConfigNode; + + if (type === 'AT_CUSTOM_PROTOBUF') { + const { custom_protobuf_cls } = _node as unknown as CustomConfigNode; + const { serializer } = customSerializerRegistry[custom_protobuf_cls]; + const formattedVal = serializer(val[name], custom_protobuf_cls); + + params.attrs.push(formattedVal as Attribute); + isFinished = true; + return; + } + const param: Record> = {}; const typeKey = typesMap[type]; const attrVal = typeKey === 'ss' && !Array.isArray(val[name]) ? [val[name]] : val[name]; const formedAttrVal = Array.isArray(attrVal) ? attrVal.filter((i) => i) : attrVal; + param[typeKey] = formedAttrVal as ValueOf; + let isNA = false; + if (formedAttrVal === null || formedAttrVal === undefined) { isNA = true; } @@ -220,6 +283,7 @@ export const ConfigFormComponent: React.FC = (prop) => { const { search } = window.location; const { projectId, dagId } = parse(search); + componentConfigService.saveComponentConfig({ projectId: projectId as string, graphId: dagId as string, @@ -242,29 +306,21 @@ export const ConfigFormComponent: React.FC = (prop) => { onClose(); }; - const handleFormChange = debounce( - (_, allValues: Record | undefined>) => { - form.validateFields().then(() => onSaveConfig(allValues)); - }, - 500, - ); - - const exif = { - renderKey: codeNameRenderKey[nodeName as keyof typeof codeNameRenderKey], - upstreamTables: - nodeName in getUpstreamKey - ? getUpstreamKey[nodeName as keyof typeof getUpstreamKey](upstreamNodes) - : getInputTables(inputNodes), - }; + // const handleFormChange = debounce( + // (_, allValues: Record | undefined>) => { + // form.validateFields().then(() => onSaveConfig(allValues)); + // }, + // 500, + // ); return (
- {/* {componentConfig && componentConfig.length > 0 && isEditable && ( + {componentConfig && componentConfig.length > 0 && isEditable && ( - )} */} + )} {componentConfig && componentConfig.length > 0 && (
= (prop) => { labelAlign={'left'} onFinish={() => onFormFinished(form.getFieldsValue())} disabled={!isEditable} - onValuesChange={handleFormChange} + // onValuesChange={handleFormChange} validateMessages={{ required: '「${label}」是必填字段' }} + preserve={false} > - {componentConfig.map((config, index) => { - return ( - - ); - })} - - {isEditable && ( + {renderIndex + ? renderIndex.map((order) => { + return ( + + ); + }) + : componentConfig.map((config, index) => { + return ( + + ); + })} + + {isEditable && isShowSaveBtn && (
@@ -305,28 +377,24 @@ export const ConfigFormComponent: React.FC = (prop) => { ); }; -export const ConfigurationNodeRender: React.FC<{ - node: AtomicConfigNode; - exif: Record; - index: number; - translation: Record; - disabled?: boolean; -}> = ({ +export const ConfigurationNodeRender = ({ node, + config, exif, index, translation, disabled = false, }: { - node: AtomicConfigNode; + config: AtomicConfigNode; + node: NodeAllInfo; exif: Record; index: number; translation: Record; disabled?: boolean; }) => { const configRenderRegistry = useModel(ConfigRenderRegistry); - const Render = configRenderRegistry.getRender(node, exif); - const defaultVal = getDefaultValue(node); + const Render = configRenderRegistry.getRender(config, exif); + const defaultVal = getDefaultValue(config); const { upstreamTables } = exif; const [value, setValue] = useState(defaultVal); @@ -336,7 +404,8 @@ export const ConfigurationNodeRender: React.FC<{ | undefined | null) => { setValue(val); diff --git a/apps/platform/src/modules/component-config/config-item-render/config-render-contribution.ts b/apps/platform/src/modules/component-config/config-item-render/config-render-contribution.ts index 8692b5b..90a7db6 100644 --- a/apps/platform/src/modules/component-config/config-item-render/config-render-contribution.ts +++ b/apps/platform/src/modules/component-config/config-item-render/config-render-contribution.ts @@ -1,6 +1,10 @@ -import type { AtomicConfigNode } from '../component-config-protocol'; +import type { AtomicConfigNode, CustomConfigNode } from '../component-config-protocol'; import type { ConfigRenderProtocol } from './config-render-protocol'; +import { BinModificationsRender } from './custom-render/binning-modification'; +import { CalculateOpRender } from './custom-render/calculate-op-render'; +import { CaseWhenRender } from './custom-render/case-when-render'; +import { GroupByRender } from './custom-render/groupby-render'; import { DefaultColSelection } from './defalt-col-selection-template'; import { DefaultMultiTableFeatureSelection } from './default-feature-selection/default-feature-selection'; import { DefaultNodeSelect } from './default-node-selection-template'; @@ -10,26 +14,53 @@ import { DefaultInput, DefaultSelect, } from './default-render-template'; +import { DefaultSQLEditor } from './default-sql-editor'; import { DefaultTableSelect } from './default-table-selection-temple'; export class DefaultConfigRender implements ConfigRenderProtocol { registerConfigRenders() { return [ { - canHandle: (node: AtomicConfigNode, renderKey?: string) => { - return renderKey === 'UNION_KEY_SELECT' && node.type === 'AT_SF_TABLE_COL' - ? 3 - : false; - }, - component: DefaultColSelection, + canHandle: (node: CustomConfigNode) => + node.type === 'AT_CUSTOM_PROTOBUF' && + node.custom_protobuf_cls === 'Binning_modifications' + ? 1 + : false, + component: BinModificationsRender, + }, + { + canHandle: (node: CustomConfigNode) => + node.type === 'AT_CUSTOM_PROTOBUF' && + node.custom_protobuf_cls === 'case_when_rules_pb2.CaseWhenRule' + ? 1 + : false, + component: CaseWhenRender, + }, + { + canHandle: (node: CustomConfigNode) => + node.type === 'AT_CUSTOM_PROTOBUF' && + node.custom_protobuf_cls === 'calculate_rules_pb2.CalculateOpRules' + ? 1 + : false, + component: CalculateOpRender, }, + { + canHandle: (node: CustomConfigNode) => + node.type === 'AT_CUSTOM_PROTOBUF' && + node.custom_protobuf_cls === + 'groupby_aggregation_config_pb2.GroupbyAggregationConfig' + ? 1 + : false, + component: GroupByRender, + }, + { canHandle: (node: AtomicConfigNode, renderKey?: string) => { - return renderKey === 'COL_INPUT' && node.type === 'AT_SF_TABLE_COL' + return renderKey === 'UNION_KEY_SELECT' && node.type === 'AT_SF_TABLE_COL' ? 3 : false; }, - component: DefaultInput, + component: DefaultColSelection, }, { canHandle: (node: AtomicConfigNode) => { @@ -55,7 +86,13 @@ export class DefaultConfigRender implements ConfigRenderProtocol { node.type === 'AT_SF_TABLE_COL' ? 1 : false, component: DefaultMultiTableFeatureSelection, }, - + { + canHandle: (node: AtomicConfigNode, renderKey?: string) => + node.type === 'AT_STRING' && node.name === 'sql' && renderKey === 'SQL' + ? 1 + : false, + component: DefaultSQLEditor, + }, { canHandle: (node: AtomicConfigNode) => (node.type === 'AT_BOOL' ? 1 : false), component: DefaultSwitch, diff --git a/apps/platform/src/modules/component-config/config-item-render/config-render-protocol.ts b/apps/platform/src/modules/component-config/config-item-render/config-render-protocol.ts index 4ae6fa5..e93529a 100644 --- a/apps/platform/src/modules/component-config/config-item-render/config-render-protocol.ts +++ b/apps/platform/src/modules/component-config/config-item-render/config-render-protocol.ts @@ -1,17 +1,28 @@ +import type { GraphNode } from '@secretflow/dag'; + import type { Attribute, ValueOf } from '@/modules/component-tree/component-protocol'; -import type { AtomicConfigNode } from '../component-config-protocol'; +import type { AtomicConfigNode, GraphNodeDetail } from '../component-config-protocol'; export type ConfigRenderProtocol = { registerConfigRenders: () => ConfigRender[]; }; +export interface NodeAllInfo { + nodeId: string; + name: string; + upstreamNodes: GraphNodeDetail[]; + graphNode: GraphNodeDetail; + inputNodes: GraphNode[]; +} + export type RenderProp = { docString?: string; type: AtomicConfigNode['type']; value: T; defaultVal: T; node: AtomicConfigNode; + nodeAllInfo: NodeAllInfo; onChange: (val: ValueOf | undefined | null) => void; translation: Record; disabled: boolean; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/binning-modification-service.ts b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/binning-modification-service.ts new file mode 100644 index 0000000..7838cfc --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/binning-modification-service.ts @@ -0,0 +1,192 @@ +import { ActionType } from '@secretflow/dag'; +import { message } from 'antd'; +import { parse } from 'query-string'; + +import type { + AtomicConfigNode, + CustomConfigNode, + NodeDef, +} from '@/modules/component-config/component-config-protocol'; +import { DefaultComponentConfigService } from '@/modules/component-config/component-config-service'; +import type { + Attribute, + ComputeMode, +} from '@/modules/component-tree/component-protocol'; +import mainDag from '@/modules/main-dag/dag'; +import { + getGraphNodeOutput, + updateGraphNode, +} from '@/services/secretpad/GraphController'; +import { Model, getModel } from '@/util/valtio-helper'; + +import type { NodeAllInfo } from '../../config-render-protocol'; + +import type { BinningData, Record } from './types'; +import { DefaultUndoService } from './undo-service'; + +import { binModificationsSerializer, binModificationsUnSerializer } from '.'; + +/** 希望 binning service 有哪些能力 */ +export class DefaultBinningModificationService extends Model { + /** 分箱数据 */ + binningDatas?: BinningData[]; + + componentConfigService = getModel(DefaultComponentConfigService); + + undoService = getModel(DefaultUndoService); + + private convertToBinningConfig = (binningData: BinningData, node: NodeAllInfo) => { + const params: { attrPaths: string[]; attrs: Attribute[] } = { + attrPaths: [], + attrs: [], + }; + + const { search } = window.location; + const { projectId, dagId, mode } = parse(search); + + const isFinished = true; + + const componentConfig = this.componentConfigService.getComponentConfig( + node, + mode as ComputeMode, + ); + + // 根据 componentConfig 生成 attrPaths + componentConfig?.map((_node) => { + const name = + _node.prefixes && _node.prefixes.length > 0 + ? _node.prefixes.join('/') + '/' + _node.name + : _node.name; + + params.attrPaths.push(name); + + const { type } = _node as AtomicConfigNode | CustomConfigNode; + + if (type === 'AT_CUSTOM_PROTOBUF') { + const formattedVal = binModificationsSerializer(binningData); + + params.attrs.push({ + s: JSON.stringify(formattedVal), + }); + return; + } + }); + + return { + projectId: projectId as string, + graphId: dagId as string, + isFinished, + node: { + ...node.graphNode, + codeName: node.name, + graphNodeId: node.nodeId, + nodeDef: { + ...node.graphNode?.nodeDef, + ...params, + } as NodeDef, + }, + }; + }; + + /** 更新 binning config + * 更新组件配置,会变更组件状态为 default + */ + public saveBinningConfig = async (binningData: BinningData, node: NodeAllInfo) => { + const config = this.convertToBinningConfig(binningData, node); + + this.componentConfigService.saveComponentConfig(config); + }; + + /** 更新 binning config + * 与 saveBinningConfig 区别:单纯地更新组件配置,不会变更组件状态为 default + * 目的:不让用户感知不必要的状态变化,如「合并」操作 + */ + public updateBinningConfig = async (binningData: BinningData, node: NodeAllInfo) => { + const config = this.convertToBinningConfig(binningData, node); + + const { nodeDef, graphNodeId } = config.node; + + const { status } = await updateGraphNode(config); + + if (status && status.code === 0) { + mainDag.graphManager.executeAction(ActionType.changeNodeData, graphNodeId, { + nodeDef, + }); + } else { + message.error(status?.msg || '更新失败'); + } + }; + + /** 获取 binning(目前:by output) + * return [0, 1] + * 0: 上游输出的结果表信息 + * 1: 最新的结果表信息 + */ + public getBinningDatas = async (nodeId: string, outputId: string) => { + if (outputId) { + const { search } = window.location; + const { projectId, dagId } = parse(search); + + const output = await getGraphNodeOutput({ + graphId: dagId as string, + graphNodeId: nodeId, + outputId, + projectId: projectId as string, + }); + + const data = output.data?.tabs; + + if (!data) return; + + const parseDatas = JSON.parse(data); + + if (parseDatas.length) { + this.binningDatas = parseDatas.map((data) => + binModificationsUnSerializer(JSON.parse(data)), + ); + + return this.binningDatas; + } + } + }; + + /** 合并 binning */ + public merge = (binningData: BinningData, node: NodeAllInfo) => { + this.updateBinningConfig(binningData, node); + setTimeout(() => { + this.execBinningCal(node.graphNode?.graphNodeId); + }, 1000); + }; + + /** 撤销 binning */ + public undo = () => { + const { undo } = this.undoService; + const snapshot = undo(); + + return snapshot; + }; + + /** redo binning */ + public redo = () => { + const { redo } = this.undoService; + const snapshot = redo(); + + return snapshot; + }; + + /** 重做 binning */ + public reset = () => { + const { reset } = this.undoService; + reset(); + + return []; + }; + + /** 引擎执行真正的 计算 */ + private execBinningCal = (nodeId: string) => { + mainDag.graphManager.executeAction(ActionType.runSingle, [nodeId]); + // 执行执行过程 有 loading + // 执行结束之后,成功的话,获取最新的结果,重新 getOutput + mainDag.graphManager.executeAction(ActionType.queryStatus, []); + }; +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/binning-table/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/binning-table/index.tsx new file mode 100644 index 0000000..d9c8280 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/binning-table/index.tsx @@ -0,0 +1,64 @@ +import { Table } from 'antd'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '..'; +import ExpandedTable from '../expanded-table'; +import styles from '../index.less'; +import { TableTypeEnum } from '../types'; + +const woeColumnsType = [ + { + title: '特征', + dataIndex: 'feature', + key: 'feature', + }, + { + title: '类型', + dataIndex: 'type', + key: 'type', + }, + { + title: 'IV', + dataIndex: 'iv', + key: 'iv', + sorter: (a: any, b: any) => a.iv - b.iv, + }, + { title: '分箱数', dataIndex: 'binCount', key: 'binCount' }, +]; + +const defaultColumnsType = [ + { + title: '特征', + dataIndex: 'feature', + key: 'feature', + }, + { + title: '类型', + dataIndex: 'type', + key: 'type', + }, + { title: '分箱数', dataIndex: 'binCount', key: 'binCount' }, +]; + +export const BinningTable = () => { + const { binningData, type } = useModel(BinModificationsRenderView); + + const columns = + type === TableTypeEnum.WoeBinning ? woeColumnsType : defaultColumnsType; + + return ( +
+ { + return ; + }, + }} + dataSource={binningData?.variableBins} + /> + + ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/drawer/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/drawer/index.tsx new file mode 100644 index 0000000..5b16ff5 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/drawer/index.tsx @@ -0,0 +1,48 @@ +import { Drawer, Spin } from 'antd'; + +import { Model, useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '..'; +import { BinningTable } from '../binning-table'; +import { ToolBar } from '../toolbar'; +import SaveBtn from '../toolbar/save-btn'; + +const BinningResultDrawer = () => { + const { isVisible, setVisible } = useModel(BinningResultDrawerView); + const { loading, setCurrOperation } = useModel(BinModificationsRenderView); + + return ( + { + setCurrOperation(undefined); + setVisible(false); + }} + > + + + + {/* 保存按钮 */} + + + + ); +}; + +export class BinningResultDrawerView extends Model { + isVisible = false; + + setVisible = (visible: boolean) => { + this.isVisible = visible; + }; +} + +export default BinningResultDrawer; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/expanded-table/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/expanded-table/index.tsx new file mode 100644 index 0000000..31fd98e --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/expanded-table/index.tsx @@ -0,0 +1,191 @@ +import { Table, message } from 'antd'; +import { useEffect } from 'react'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '..'; +import { checkIsConsecutive } from '../helper'; +import styles from '../index.less'; +import type { Bin, Record, SelectedRowMap } from '../types'; +import { TableTypeEnum } from '../types'; + +const woeColumnsType = [ + { + title: '区间', + key: 'label', + dataIndex: 'label', + }, + { + title: '数量', + key: 'totalCount', + dataIndex: 'totalCount', + }, + { + title: 'WOE', + key: 'woe', + dataIndex: 'woe', + }, +]; + +const defaultColumnsType = [ + { + title: '序号', + key: 'order', + dataIndex: 'order', + }, + { + title: '区间', + key: 'label', + dataIndex: 'label', + }, + { + title: '数量', + key: 'totalCount', + dataIndex: 'totalCount', + }, +]; + +const ExpandedTable = (props: IProps) => { + const { + selectedRowKeys, + setSelectedRowKeys, + type, + disabled, + binningData, + setBinningData, + selectedRowMap, + setSelectedRowMap, + } = useModel(BinModificationsRenderView); + + const columns = + type === TableTypeEnum.WoeBinning ? woeColumnsType : defaultColumnsType; + + useEffect(() => { + const keys: string[] = []; + binningData?.variableBins?.forEach((bins) => { + bins.bins?.forEach((bin) => { + if (bin.markForMerge) { + keys.push(bin.key); + } + }); + }); + setSelectedRowKeys(keys); + const newSelectedRowMap: SelectedRowMap = {}; + keys.map((item) => { + const featureName = item?.split('/')?.[1]; + const featureNameIndex = Number(item?.split('/')?.[0]); + const currentIndexList = newSelectedRowMap[featureName]?.index || []; + const currentValueList = newSelectedRowMap[featureName]?.value || []; + newSelectedRowMap[featureName] = { + index: [...new Set([...currentIndexList, featureNameIndex])], + value: [...new Set([...currentValueList, item])], + }; + }); + setSelectedRowMap(newSelectedRowMap); + }, [binningData]); + + const onCheckboxPropsChange = (record: { label: string }) => { + const isDisable = record.label.toUpperCase() === 'ELSE'; + return { disabled: disabled || isDisable }; + }; + + const onSelectChange = (record: { key: string }, selected: boolean) => { + const currentRowkey = record.key; + const featureName = currentRowkey?.split('/')?.[1]; + const featureNameIndex = Number(currentRowkey?.split('/')?.[0]); + let newIndexArr = selectedRowMap[featureName]?.index || []; + + if (selected) { + newIndexArr = [...newIndexArr, featureNameIndex]; + } else { + newIndexArr = newIndexArr.filter((idx: number) => idx !== featureNameIndex); + } + + /** 需选择相邻的分箱进行合并 */ + const isConsecutive = checkIsConsecutive(newIndexArr); + if (!isConsecutive) { + message.warning('需选择相邻的分箱进行合并'); + return; + } + + /** 不支持合并到两个以及以下的分桶 */ + const records = binningData?.variableBins?.find( + (record: Record) => record.feature === featureName, + ); + const test = selected ? newIndexArr.length : newIndexArr.length - 1; + if (records && test > records.binCount - 1) { + message.warning('不支持合并到 2 个以下的分桶'); + return; + } + + updateSelectedRowMap(currentRowkey, selected); + + const currentSelectedRowKeys = selected + ? [...selectedRowKeys, currentRowkey] + : selectedRowKeys.filter((key) => key !== currentRowkey); + setSelectedRowKeys(currentSelectedRowKeys); + + const markedbinningData = binningData?.variableBins?.map((record) => { + const valueList = selectedRowMap[record.key]?.value || []; + const rowKeys = valueList.length >= 1 ? valueList : []; + return { + ...record, + bins: record.bins?.map((bin) => { + return { + ...bin, + markForMerge: rowKeys.includes(bin.key), + }; + }), + }; + }); + if (binningData && markedbinningData) { + setBinningData({ + modelHash: binningData.modelHash, + variableBins: markedbinningData, + }); + } + }; + + const updateSelectedRowMap = (currentRowkey: string, isSelect: boolean) => { + const featureName = currentRowkey?.split('/')?.[1]; + const featureNameIndex = Number(currentRowkey?.split('/')?.[0]); + + const currentIndexList = selectedRowMap[featureName]?.index || []; + const currentValueList = selectedRowMap[featureName]?.value || []; + + if (isSelect) { + selectedRowMap[featureName] = { + index: [...currentIndexList, featureNameIndex], + value: [...currentValueList, currentRowkey], + }; + } else { + selectedRowMap[featureName] = { + index: currentIndexList.filter((index: number) => index !== featureNameIndex), + value: currentValueList.filter((key: string) => key !== currentRowkey), + }; + } + }; + + // table rowSelection 配置 + const rowSelection = { + selectedRowKeys, + getCheckboxProps: onCheckboxPropsChange, + onSelect: onSelectChange, + }; + + return ( +
+ ); +}; + +export default ExpandedTable; + +interface IProps { + bins: Bin[]; +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/helper.ts b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/helper.ts new file mode 100644 index 0000000..b3279a0 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/helper.ts @@ -0,0 +1,36 @@ +// 渲染 结果表的 标签 +export const getLabel = (leftBound: number | string, rightBound: number | string) => { + if (leftBound === 0 && rightBound === 0) { + return 'ELSE'; + } else { + let rightBoundBracket = ']'; + if (typeof rightBound === 'string' && rightBound.includes('Infinity')) { + rightBoundBracket = ')'; + } + return `(${leftBound}, ${rightBound}${rightBoundBracket}`; + } +}; + +// 返回 引擎所需要的 区间值 +export const getBoundValue = (label: string) => { + if (label === 'ELSE') return [0, 0]; + + const left = label.split(',')[0].replace('(', ''); + const right = label.split(',')[1].replace(']', '').replace(')', ''); + + return [ + left.includes('Infinity') ? left : Number(left), + right.includes('Infinity') ? right : Number(right), + ]; +}; + +// 检查相邻的两个数字是否连续 +export function checkIsConsecutive(arr: number[]) { + arr.sort((a, b) => a - b); + for (let i = 0; i < arr.length - 1; i++) { + if (arr[i] + 1 !== arr[i + 1]) { + return false; + } + } + return true; +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/index.less b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/index.less new file mode 100644 index 0000000..13125c9 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/index.less @@ -0,0 +1,19 @@ +.binningTable { + margin: 0 16px; +} + +.expandedTableContent { + :global(.ant-table-pagination) { + margin-top: 32px; + margin-bottom: 0; + } +} + +.saveBtnArea { + position: sticky; + bottom: 0; + left: 0; + height: 52px; + padding: 16px 16px 0; + background-color: white; +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/index.tsx new file mode 100644 index 0000000..8a6f994 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/index.tsx @@ -0,0 +1,393 @@ +import { QuestionCircleOutlined } from '@ant-design/icons'; +import type { GraphNode } from '@secretflow/dag'; +import { Button, Space, Tooltip } from 'antd'; +import React, { useEffect } from 'react'; + +import type { GraphNodeDetail } from '@/modules/component-config/component-config-protocol'; +import mainDag from '@/modules/main-dag/dag'; +import { Model, getModel, useModel } from '@/util/valtio-helper'; + +import type { NodeAllInfo } from '../../config-render-protocol'; + +import { DefaultBinningModificationService } from './binning-modification-service'; +import { BinningResultDrawerView } from './drawer'; +import { getLabel, getBoundValue } from './helper'; +import type { BinningData, CurrOperationEnum, SelectedRowMap } from './types'; +import { TableTypeEnum, type Record, SourceTypeEnum } from './types'; +import { DefaultUndoService } from './undo-service'; + +/** 2. 把表单格式,serializer 序列化,转换成 node info */ +export const binModificationsSerializer = (binningData: BinningData) => { + const variableBins = binningData?.variableBins?.map((record: Record) => { + const { feature, isWoe, binCount, type, iv, bins, partyName } = record; + + /** woe 分箱 和 普通分箱 参数有区别 */ + const _recordParams = isWoe ? { iv } : {}; + + const _elseBin = bins.find((bin) => bin.label === 'ELSE'); + const _validBins = bins.filter((bin) => bin.label !== 'ELSE'); + + return { + ..._recordParams, + isWoe, + featureName: feature, + featureType: type === 'float' ? 'numeric' : type, + validBinCount: binCount, + partyName, + elseBin: { + fillingValue: isWoe ? _elseBin?.woe : _elseBin?.order, + totalCount: _elseBin?.totalCount, + leftBound: 0, + rightBound: 0, + markForMerge: false, + }, + validBins: _validBins?.map((bin) => { + const { markForMerge, label, woe, order, totalCount } = bin; + return { + markForMerge, + leftBound: getBoundValue(label)[0], + rightBound: getBoundValue(label)[1], + fillingValue: isWoe ? woe : order, // woe 或 序号 + totalCount, + }; + }), + }; + }); + + return { + modelHash: binningData.modelHash, + variableBins, + }; +}; + +/** 1. fetch 组件信息的时候,unserializer 反序列化,转换成表单需要的格式 */ +export const binModificationsUnSerializer = (originBinningData?: { + modelHash: string; + variableBins: any[]; +}) => { + if (!originBinningData) return; + + // b. 转换成 table 所需格式 + const variableBins = originBinningData?.variableBins?.map((record: any) => { + const { + featureName, + validBinCount, + iv, + featureType, + validBins, + isWoe, + elseBin, + partyName, + } = record; + + /** woe 分箱 和 普通分箱 参数有区别 */ + const _recordParams = isWoe ? { iv } : {}; + const bins = elseBin ? [...validBins, elseBin] : [...validBins]; + return { + ..._recordParams, + key: featureName, + feature: featureName, + binCount: validBinCount, + type: featureType === 'numeric' ? 'float' : featureType, + isWoe, + partyName, + bins: bins?.map((bin: any, index) => { + const { + markForMerge, + leftBound, + rightBound, + fillingValue, // woe 或 序号 + totalCount, + } = bin; + + /** woe 分箱 和 普通分箱 参数有区别 */ + const _binParams = isWoe ? { woe: fillingValue } : { order: fillingValue }; + const _label = getLabel(leftBound, rightBound); + + return { + ..._binParams, + key: `${index}/${featureName}/${_label}`, + label: _label, + markForMerge, + totalCount, + }; + }), + }; + }); + + return { + modelHash: originBinningData.modelHash, + variableBins, + }; +}; + +interface INode { + nodeId: string; + name: string; + upstreamNodes: GraphNodeDetail[]; + graphNode: GraphNodeDetail; + inputNodes: GraphNode[]; +} + +interface IBinModificationsRender { + nodeAllInfo: INode; + disabled: boolean; +} + +export const BinModificationsRender: React.FC = ( + params: IBinModificationsRender, +) => { + // 打开分箱结果表 + const { initBinningTable, binningData } = useModel(BinModificationsRenderView); + const { setVisible } = useModel(BinningResultDrawerView); + + const undoService = useModel(DefaultUndoService); + + /** init binning data & undo service + * 分箱的初始化数据入口,不走 config-form-view.tsx form 表单的逻辑 + */ + useEffect(() => { + // 防止其他 component 的 nodeAllInfo 进入 + if (params.nodeAllInfo.graphNode.codeName === 'feature/binning_modifications') { + undoService.init(); + initBinningTable(params.nodeAllInfo, params.disabled); + } + }, [params.nodeAllInfo.nodeId]); + + return ( +
+ {/* 编辑分箱 */} + + + {!binningData ? ( + + + + ) : null} + +
+ ); +}; + +/** 含有 binning 交互逻辑的 实体 */ +export class BinModificationsRenderView extends Model { + /** 分箱数据 */ + binningData?: BinningData; + /** 初始分箱数据 */ + initData?: BinningData; + + /** woe 分箱结果表 or 常规分箱表 */ + type: TableTypeEnum = TableTypeEnum.WoeBinning; + /** 分箱结果表来源 */ + sourceType: SourceTypeEnum = SourceTypeEnum.Upstream; + /** 默认 woe 的值 */ + defaultWoeValue = 0; + /** 选择需要合并的 桶 */ + selectedRowKeys: React.Key[] = []; + /** 选择需要合并的 所有桶 */ + selectedRowMap: SelectedRowMap = {}; + /** 上游数据 */ + upstreamBinningData?: BinningData; + /** 最新数据 */ + latestBinningData?: BinningData; + + /** 当前的操作 */ + currOperation?: CurrOperationEnum; + + /** loading */ + loading = false; + + /** 分箱算子的节点信息 */ + node?: NodeAllInfo; + + /** 是否需要禁用:从配置面板透传 */ + disabled = false; + + undoService = getModel(DefaultUndoService); + binningModificationService = getModel(DefaultBinningModificationService); + + setLoading = (loading: boolean) => { + this.loading = loading; + }; + + setCurrOperation = (currOperation?: CurrOperationEnum) => { + this.currOperation = currOperation; + }; + + setSelectedRowKeys = (selectedRowKeys: React.Key[]) => { + this.selectedRowKeys = selectedRowKeys; + }; + + setSelectedRowMap = (obj: SelectedRowMap) => { + this.selectedRowMap = obj; + }; + + setDefaultWoeValue = (value: number) => { + this.defaultWoeValue = value; + }; + + setSourceType = (sourceType: SourceTypeEnum) => { + this.sourceType = sourceType; + }; + + getLatestBinningData = async () => { + this.binningData = this.latestBinningData; + }; + + setBinningData = (binningData: BinningData) => { + this.binningData = binningData; + }; + + resetBinningTable = () => { + this.defaultWoeValue = 0; + }; + + getUpstreamBinningData = async () => { + if (!this.upstreamBinningData) { + // 先获取上游的 + const nodeId = this.node?.graphNode.graphNodeId as string; + const outputId = this.node?.graphNode?.outputs?.[1] as string; + + const tabs = await this.binningModificationService.getBinningDatas( + nodeId, + outputId, + ); + + this.upstreamBinningData = tabs?.[0]; + this.binningData = this.upstreamBinningData; + } else { + this.binningData = this.upstreamBinningData; + } + }; + + initBinningTable = async (node: NodeAllInfo, disabled: boolean) => { + const graphNode = await mainDag.requestService.getGraphNode(node.nodeId); + + /** node 信息 */ + this.node = { + ...node, + graphNode: graphNode as GraphNodeDetail, + }; + + this.binningData = undefined; + this.currOperation = undefined; + + this.latestBinningData = undefined; + this.upstreamBinningData = undefined; + + this.selectedRowKeys = []; + + this.sourceType = SourceTypeEnum.Upstream; + this.disabled = disabled; + + this.loading = false; + + /** 上游输出 */ + if (!this.node?.graphNode?.nodeDef?.attrs) { + this.sourceType = SourceTypeEnum.Upstream; + + const nodeId = this.node?.graphNode?.graphNodeId; + const outputId = this.node?.graphNode?.outputs?.[1]; + + const tabs = await this.binningModificationService.getBinningDatas( + nodeId, + outputId, + ); + + if (tabs) { + const upstreamBinningData = tabs?.[0]; + + this.upstreamBinningData = upstreamBinningData; + this.binningData = upstreamBinningData; + this.initData = upstreamBinningData; + } + } else { + /** 最新结果表 */ + this.sourceType = SourceTypeEnum.Latest; + + const nodeDefVal = this.node?.graphNode?.nodeDef?.attrs[0]?.s; + + if (nodeDefVal) { + // tabs[1] + const data = JSON.parse(nodeDefVal); + const binningData = binModificationsUnSerializer(data); + + this.latestBinningData = binningData; + this.binningData = binningData; + this.initData = binningData; + } + } + + /** 是否是 woe 分箱 */ + this.type = this.binningData?.variableBins?.[0]?.isWoe + ? TableTypeEnum.WoeBinning + : TableTypeEnum.Binning; + }; + + refreshData = async () => { + const nodeId = this.node?.graphNode.graphNodeId as string; + const outputId = this.node?.graphNode?.outputs?.[1] as string; + + const tabs = await this.binningModificationService.getBinningDatas( + nodeId, + outputId, + ); + + if (tabs) { + const binningData = tabs?.[1]; + + this.binningModificationService.updateBinningConfig( + binningData, + this.node as NodeAllInfo, + ); + + this.binningData = binningData; + + return binningData; + } else { + return; + } + }; + + saveComponentConfig = (binningData: BinningData) => { + this.binningModificationService.saveBinningConfig( + binningData, + this.node as NodeAllInfo, + ); + }; + + merge = (binningData: BinningData) => { + this.binningModificationService.merge(binningData, this.node as NodeAllInfo); + }; + + undo = () => { + const snapshot = this.binningModificationService.undo(); + if (snapshot?.length <= 0) { + this.binningData = this.initData; + return; + } + this.binningData = snapshot; + }; + + redo = () => { + const snapshot = this.binningModificationService.redo(); + this.binningData = snapshot; + }; + + reset = () => { + this.binningModificationService.reset(); + this.binningData = this.initData; + }; +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/edit-default-woe/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/edit-default-woe/index.tsx new file mode 100644 index 0000000..a1ceb01 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/edit-default-woe/index.tsx @@ -0,0 +1,79 @@ +import { InputNumber } from 'antd'; +import { useEffect } from 'react'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import { CurrOperationEnum, TableTypeEnum } from '../../types'; + +export const EditDefaultWoe = () => { + const { + type, + disabled, + defaultWoeValue, + binningData, + setDefaultWoeValue, + setCurrOperation, + setBinningData, + } = useModel(BinModificationsRenderView); + + const handleChange = (value: number | null) => { + setDefaultWoeValue(value as number); + + if (binningData) { + setCurrOperation(CurrOperationEnum.EditDefaultWoe); + + const changedBinningData = binningData?.variableBins?.map((record) => { + return { + ...record, + bins: record.bins?.map((bin) => { + if (bin.label === 'ELSE') { + return { + ...bin, + woe: value, + }; + } else { + return bin; + } + }), + }; + }); + + if (changedBinningData && binningData) { + setBinningData({ + modelHash: binningData.modelHash as string, + variableBins: changedBinningData, + }); + } + } + }; + + useEffect(() => { + const elseBin = binningData?.variableBins?.[0]?.bins?.find( + (bin) => bin.label === 'ELSE', + ); + + if (elseBin?.woe) { + setDefaultWoeValue(elseBin.woe); + } + }, [binningData]); + + return type === TableTypeEnum.WoeBinning ? ( +
+ { + <> + 默认 WOE: + + + } +
+ ) : null; +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/export-data/csv-export/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/export-data/csv-export/index.tsx new file mode 100644 index 0000000..7b78f48 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/export-data/csv-export/index.tsx @@ -0,0 +1,41 @@ +interface CSVOptionsType { + columnDelimiter?: string; + lineDelimiter?: string; + columnNames?: string[]; + name?: string; +} + +function convertArrayToCSV(data: (string | number)[], options: CSVOptionsType): string { + const { columnDelimiter = ',', lineDelimiter = '\n', columnNames = [] } = options; + const CalcCsv = columnNames + .concat(data as any) + .reduce( + (tempCSV, lineData: any) => + `${tempCSV}${lineData.join(columnDelimiter)}${lineDelimiter}`, + '', + ); + + return CalcCsv; +} + +export function downloadCSV(blob: Blob, name: any = 'data'): void { + const fileName = `${name}.csv`; + const data = URL.createObjectURL(blob); + const link = document.createElement('a'); + link.setAttribute('href', data); + link.setAttribute('download', fileName); + link.click(); +} + +export function csv(data: (string | number)[], options: CSVOptionsType = {}): void { + if (!data.length) { + return; + } + const csvArray = convertArrayToCSV(data, options); + if (csvArray) { + const blob = new Blob([`\uFEFF${csvArray}`], { + type: 'text/csv; charset=utf-8', + }); + downloadCSV(blob, options.name); + } +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/export-data/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/export-data/index.tsx new file mode 100644 index 0000000..1d0c250 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/export-data/index.tsx @@ -0,0 +1,111 @@ +import { DownloadOutlined } from '@ant-design/icons'; +import { Button } from 'antd'; +import { cloneDeep } from 'lodash'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import type { Bin } from '../../types'; +import { TableTypeEnum } from '../../types'; +import styles from '../index.less'; + +import { csv } from './csv-export'; + +export const ExportData = () => { + const coreService = useModel(BinModificationsRenderView); + const { binningData, type, node } = coreService; + + // 0. init columns + const columns = [ + { + title: '特征', + dataIndex: 'feature', + key: 'feature', + }, + { title: '类型', dataIndex: 'type', key: 'type' }, + ]; + + if (type === TableTypeEnum.WoeBinning) { + columns.push({ title: 'IV', dataIndex: 'iv', key: 'iv' }); + } + + columns.push({ title: '分箱数', dataIndex: 'binCount', key: 'binCount' }); + columns.push({ title: 'partyName', dataIndex: 'partyName', key: 'partyName' }); + + const handleExport = () => { + const data = cloneDeep(binningData?.variableBins); + + // 初始化表头 + const cols = columns.map(({ title }) => title); + if (type === TableTypeEnum.WoeBinning) { + cols.push(...['区间', '数量', 'WOE']); + } else { + cols.push(...['序号', '区间', '数量']); + } + + const exportData = data?.reduce( + (tempRes, info) => { + const row = columns.map(({ dataIndex }) => { + return info[dataIndex]; + }); + + const binsInfo = getBinsInfo(info.bins); + + tempRes.push(row); + + if (binsInfo) { + tempRes.push(...binsInfo); + } + return tempRes; + }, + [cols], + ); + + const isIncludeUnderline = binningData?.modelHash.includes('_'); + + const _modelHash = isIncludeUnderline + ? binningData?.modelHash + : `${binningData?.modelHash}_${node?.graphNode.graphNodeId}`; + + csv([[`modelHash:${_modelHash}`], ...exportData], { name: _modelHash }); + }; + + // 获取 bins 的 row + const getBinsInfo = (bins: Bin[]) => { + if (bins && bins.length) { + if (type === TableTypeEnum.WoeBinning) { + return bins.map((item) => { + return [ + '', + '', + '', + '', + '', + `"${item.label}"`, + `${item.totalCount}`, + `${item.woe}`, + ]; + }); + } else { + return bins.map((item) => { + return [ + '', + '', + '', + '', + `${item.order}`, + `"${item.label}"`, + `${item.totalCount}`, + ]; + }); + } + } + return null; + }; + + return ( + + ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/index.less b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/index.less new file mode 100644 index 0000000..713a001 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/index.less @@ -0,0 +1,28 @@ +.container { + display: flex; + align-items: center; + justify-content: space-between; + margin: 16px 0 8px; + + .left { + margin-left: 4px; + } + + .right { + margin-right: 16px; + } + + :global { + .ant-btn-link:disabled { + color: rgb(0 0 0 / 25%) !important; + } + } +} + +.operationBtn { + color: rgb(0 0 0 / 65%) !important; +} + +.operationBtn:hover { + color: #0068fa !important; +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/index.tsx new file mode 100644 index 0000000..35aac7d --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/index.tsx @@ -0,0 +1,34 @@ +import { ExportData } from './export-data'; +import styles from './index.less'; +import { MergeOperation } from './merge-operation'; +import { RedoOperation } from './redo-operation'; +import { ResetOperation } from './reset-operation'; +import SourceSelection from './source-selection'; +import { UndoOperation } from './undo-operation'; +import { UploadBinning } from './upload-binning'; + +export const ToolBar = () => { + return ( +
+ {/* 分箱结果表选择 */} + +
+
+ + + + {/* */} + + + +
+ {/*
+ +
*/} +
+
+ ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/merge-operation/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/merge-operation/index.tsx new file mode 100644 index 0000000..5c223ec --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/merge-operation/index.tsx @@ -0,0 +1,134 @@ +import { MergeCellsOutlined, QuestionCircleOutlined } from '@ant-design/icons'; +import { NodeStatus } from '@secretflow/dag'; +import { Button, Tooltip, message } from 'antd'; + +import { GraphService } from '@/modules/main-dag/graph-service'; +import { Model, getModel, useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import type { BinningData } from '../../types'; +import { CurrOperationEnum } from '../../types'; +import { DefaultUndoService } from '../../undo-service'; +import styles from '../index.less'; + +export const MergeOperation = () => { + const { + selectedRowKeys, + binningData, + merge, + setCurrOperation, + disabled, + selectedRowMap, + } = useModel(BinModificationsRenderView); + + useModel(MergeBtnView); + + const handleMergeRow = async () => { + if (!binningData || selectedRowKeys.length <= 1) return; + + setCurrOperation(CurrOperationEnum.Merge); + + // 1. 标记要合并的 桶 + const markedbinningData = binningData?.variableBins?.map((record) => { + return { + ...record, + bins: record.bins?.map((bin) => { + return { + ...bin, + markForMerge: selectedRowKeys.includes(bin.key), + }; + }), + }; + }); + + // 2. 更新右侧面板配置 update nodeDef: updateBinningTable(markedbinningData); + // 3. 执行算子 run single:execBinningCal(); + merge({ + modelHash: binningData.modelHash, + variableBins: markedbinningData, + }); + }; + + return ( + + + + + + + ); +}; + +export class MergeBtnView extends Model { + graphService = getModel(GraphService); + undoService = getModel(DefaultUndoService); + binningModificationView = getModel(BinModificationsRenderView); + + prevStatus?: NodeStatus; + + constructor() { + super(); + + /** 监听 all node status */ + this.graphService.onNodeStatusChangedEvent( + async (allNodeStatus: { nodeId: string; status: NodeStatus }[]) => { + const isMerge = + this.binningModificationView.currOperation === CurrOperationEnum.Merge; + + /** 仅在合并模式下:针对合并是否成功的监听 */ + if (isMerge) { + const currNodeStatus = allNodeStatus?.find( + (node) => this.binningModificationView.node?.nodeId === node.nodeId, + )?.status; + + if ( + [NodeStatus.running, NodeStatus.pending].includes( + currNodeStatus as NodeStatus, + ) + ) { + this.prevStatus = currNodeStatus; + this.binningModificationView.setLoading(true); + } else { + this.binningModificationView.setLoading(false); + } + + if ( + currNodeStatus === NodeStatus.success && + this.prevStatus !== currNodeStatus + ) { + // 拿到合并后的数据 + const binningData = await this.binningModificationView.refreshData(); + + if (binningData) { + message.success('合并成功'); + this.prevStatus = currNodeStatus; + + this.undoService.record(binningData); + this.binningModificationView.setSelectedRowKeys([]); + } + } + + if ( + currNodeStatus === NodeStatus.failed && + this.prevStatus !== currNodeStatus + ) { + message.error('合并失败!请重新尝试'); + this.prevStatus = currNodeStatus; + } + } + }, + ); + } +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/redo-operation/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/redo-operation/index.tsx new file mode 100644 index 0000000..cc41dcf --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/redo-operation/index.tsx @@ -0,0 +1,32 @@ +import { RedoOutlined } from '@ant-design/icons'; +import { Button } from 'antd'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import type { BinningData } from '../../types'; +import { CurrOperationEnum } from '../../types'; +import { DefaultUndoService } from '../../undo-service'; +import styles from '../index.less'; + +export const RedoOperation = () => { + const viewInstance = useModel(BinModificationsRenderView); + const undoService = useModel(DefaultUndoService); + + const handleRedo = async () => { + viewInstance.setCurrOperation(CurrOperationEnum.Redo); + viewInstance.redo(); + }; + + return ( + + ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/reset-operation/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/reset-operation/index.tsx new file mode 100644 index 0000000..f2890b7 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/reset-operation/index.tsx @@ -0,0 +1,48 @@ +import { SyncOutlined } from '@ant-design/icons'; +import { Button } from 'antd'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import type { BinningData, Record } from '../../types'; +import { CurrOperationEnum } from '../../types'; +import { DefaultUndoService } from '../../undo-service'; +import styles from '../index.less'; + +export const ResetOperation = () => { + const { undoStack, redoStack } = useModel(DefaultUndoService); + const viewInstance = useModel(BinModificationsRenderView); + + const handleReset = async () => { + viewInstance.reset(); + viewInstance.setCurrOperation(CurrOperationEnum.Reset); + + viewInstance.setBinningData({ + modelHash: viewInstance.binningData?.modelHash as string, + variableBins: viewInstance.binningData?.variableBins?.map((record) => { + return { + ...record, + bins: record.bins?.map((bin) => { + return { + ...bin, + markForMerge: false, + }; + }), + }; + }) as Record[], + }); + }; + + return ( + + ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/save-btn/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/save-btn/index.tsx new file mode 100644 index 0000000..3ccbdd5 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/save-btn/index.tsx @@ -0,0 +1,32 @@ +import { Button } from 'antd'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import { BinningResultDrawerView } from '../../drawer'; +import styles from '../../index.less'; + +const SaveBtn = () => { + const { saveComponentConfig, binningData, resetBinningTable } = useModel( + BinModificationsRenderView, + ); + + const { setVisible } = useModel(BinningResultDrawerView); + + return ( +
+ +
+ ); +}; + +export default SaveBtn; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/source-selection/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/source-selection/index.tsx new file mode 100644 index 0000000..c0b7a07 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/source-selection/index.tsx @@ -0,0 +1,44 @@ +import { QuestionCircleOutlined } from '@ant-design/icons'; +import { Radio, Space, Tooltip } from 'antd'; +import type { RadioChangeEvent } from 'antd/lib'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import { SourceTypeEnum } from '../../types'; + +const SourceSelection = () => { + const { + setSourceType, + sourceType, + getLatestBinningData, + latestBinningData, + getUpstreamBinningData, + disabled, + } = useModel(BinModificationsRenderView); + + const handleChange = (e: RadioChangeEvent) => { + setSourceType(e.target.value); + + if (e.target.value === SourceTypeEnum.Upstream) { + getUpstreamBinningData(); + } + + if (e.target.value === SourceTypeEnum.Latest) { + getLatestBinningData(); + } + }; + return ( + <> + 分箱结果表选择 : + + + 上次分箱修改结果 + + 上游输出 + + + ); +}; + +export default SourceSelection; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/undo-operation/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/undo-operation/index.tsx new file mode 100644 index 0000000..ce35044 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/undo-operation/index.tsx @@ -0,0 +1,32 @@ +import { UndoOutlined } from '@ant-design/icons'; +import { Button } from 'antd'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import type { BinningData } from '../../types'; +import { CurrOperationEnum } from '../../types'; +import { DefaultUndoService } from '../../undo-service'; +import styles from '../index.less'; + +export const UndoOperation = () => { + const viewInstance = useModel(BinModificationsRenderView); + const undoService = useModel(DefaultUndoService); + + const handleUndo = async () => { + viewInstance.setCurrOperation(CurrOperationEnum.Undo); + viewInstance.undo(); + }; + + return ( + + ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/upload-binning/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/upload-binning/index.tsx new file mode 100644 index 0000000..e24882b --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/toolbar/upload-binning/index.tsx @@ -0,0 +1,315 @@ +import { QuestionCircleOutlined, UploadOutlined } from '@ant-design/icons'; +import { Button, message, Tooltip, Upload } from 'antd'; + +import { useModel } from '@/util/valtio-helper'; + +import { BinModificationsRenderView } from '../..'; +import type { BinningData, Record } from '../../types'; +import { CurrOperationEnum, TableTypeEnum } from '../../types'; +import { DefaultUndoService } from '../../undo-service'; +import styles from '../index.less'; + +const checkFeaturesIsEqual = ( + variableBins: BinningData['variableBins'], + testData: BinningData['variableBins'], +) => { + if (!(variableBins && testData)) return false; + + const features = variableBins.map((record) => record.feature); + const testFeatures = testData.map((record) => record.feature); + + if (features.length !== testFeatures.length) return false; + + const copyTestFeatures = [...testFeatures]; + + testFeatures.forEach((feature) => { + const index = features.indexOf(feature); + const testIndex = copyTestFeatures.indexOf(feature); + + if (index !== -1) { + features.splice(index, 1); + copyTestFeatures.splice(testIndex, 1); + } + }); + + return copyTestFeatures.length === 0 && features.length === 0; +}; + +export const UploadBinning = () => { + const { + setSelectedRowKeys, + binningData, + setCurrOperation, + setBinningData, + type, + disabled, + } = useModel(BinModificationsRenderView); + const { init } = useModel(DefaultUndoService); + + /** + * woe 分箱 上传文件方法 + */ + const woeBinningUploadHandler = (reader: any) => { + const content = reader.result as string; + const rows = content.split('\n').filter((str) => str !== ''); + + // 空数据校验 + if (rows.length < 3) { + message.warning('不能上传空数据'); + return; + } + + const res: Record[] = []; + + const modelHashRow = rows.splice(0, 1); + const modelHash = modelHashRow[0].split(':')[1]?.trim(); + + // modelHash 校验 + if (!modelHash) { + message.warning('请传入 modelHash'); + return; + } + + // 模版校验 + const rowHeader = rows.splice(0, 1); + + if (rowHeader?.[0] !== '特征,类型,IV,分箱数,partyName,区间,数量,WOE') { + message.warning('格式与导出的分箱不匹配'); + return; + } + + rows.forEach((row, index) => { + if (row) { + let featureName; + // row = x1,double,0.3,9,alice + if (!row.startsWith(',,,,,')) { + // cols = [x1, double, 0.3, 9, alice] + const cols = row.split(','); + + featureName = cols[0]; + + res.push({ + key: cols[0], + feature: cols[0], + isWoe: true, + type: cols[1], + iv: Number(cols[2]), + binCount: parseInt(cols[3], 10), + partyName: cols[4], + bins: [], + }); + } else { + // row = ,,,,"(-inf, -0.4]",2,'-0.1' + + // str = "(-inf, -0.4]",2,'-0.1' + let str = row.slice(5); + + if (str.includes('(') || str.includes('[')) { + // str = "(-inf, -0.4]",2,'-0.1' => "(-inf* -0.4]",2,'-0.1' + str = str.replace(',', '*'); + } + + // arr = ['"(-inf* -0.4]"', '2', "'-0.1'"] + const arr = str.split(','); + + // label = '"(-inf* -0.4]"' + let label = arr[0]; + + if (label.startsWith('"')) { + // label = "(-inf* -0.4]" => (-inf* -0.4] + label = label.slice(1, label.length - 1); + } + + // label = (-inf, -0.4] + label = label.replace('*', ','); + + const tmp = res[res.length - 1]; + + const totalCount = arr[1]; + + const woe = arr[2]; + + tmp.bins.push({ + key: `${index - 1}/${featureName}/${label}`, + label, + markForMerge: false, + totalCount: parseInt(totalCount, 10), + woe: Number(woe), + }); + } + } + }); + + if (res.length > 0) { + return { + modelHash, + variableBins: res, + }; + } + }; + + /** + * 常规分箱 上传文件方法 + */ + const binningUploadHandler = (reader: any) => { + const content = reader.result as string; + const rows = content.split('\n').filter((str) => str !== ''); + + // 空数据校验 + if (rows.length < 3) { + message.warning('不能上传空数据'); + return; + } + + const res: Record[] = []; + + const modelHashRow = rows.splice(0, 1); + const modelHash = modelHashRow[0].split(':')[1]?.trim(); + + // modelHash 校验 + if (!modelHash) { + message.warning('请传入 modelHash'); + return; + } + + const rowHeader = rows.splice(0, 1); + + // 模版校验 + if (rowHeader?.[0] !== '特征,类型,分箱数,partyName,序号,区间,数量') { + message.warning('格式与导出的分箱不匹配'); + return; + } + + rows.forEach((row, index) => { + if (row) { + let featureName; + // row = x1,double,9,alice + if (!row.startsWith(',,,,')) { + // cols = [x1, double, 9] + const cols = row.split(','); + featureName = cols[0]; + res.push({ + key: cols[0], + feature: cols[0], + isWoe: false, + type: cols[1], + binCount: parseInt(cols[2], 10), + partyName: cols[3], + bins: [], + }); + } else { + // row = ,,,,0,"(-inf, -0.4]",2 + + // str = 0,"(-inf, -0.4]",2 + let str = row.slice(4); + + str = str.replace(',', '*'); + + // arr = [0,'"(-inf, -0.4]",2'] + const arr = str.split('*'); + + const order = arr[0]; + + // rest = '"(-inf, -0.4]",2' + let rest = arr[1]; + // rest = '"(-inf* -0.4]",2' + + if (str.includes('(') || str.includes('[')) { + rest = rest.replace(',', '*'); + } + + // restArr = ["(-inf* -0.4]", 2] + const restArr = rest.split(','); + + // label = "(-inf, -0.4]" + const label = restArr[0].replace('*', ',').replaceAll('"', ''); + // totalCount = 2 + const totalCount = restArr[1]; + + const tmp = res[res.length - 1]; + + tmp.bins.push({ + key: `${index - 1}/${featureName}/${label}`, + order: parseInt(order, 10), + label, + markForMerge: false, + totalCount: parseInt(totalCount, 10), + }); + } + } + }); + + if (res.length > 0) { + return { + modelHash, + variableBins: res, + }; + } + }; + + const uploadBinningTableData = (file: File) => { + setCurrOperation(CurrOperationEnum.Upload); + + // 文件类型校验 + if (!/\.csv$/.test(file.name)) { + message.error('请选择csv文件上传'); + return; + } + + const reader = new FileReader(); + + reader.onload = () => { + let data; + + if (type === TableTypeEnum.WoeBinning) { + data = woeBinningUploadHandler(reader); + } else { + data = binningUploadHandler(reader); + } + + if (data && binningData) { + const isEqual = checkFeaturesIsEqual( + binningData.variableBins, + data.variableBins, + ); + + if (!isEqual) { + // 特征一致校验 + message.warning('请上传特征相同的分箱结果表!'); + return; + } else { + message.success('上传成功'); + } + + setBinningData(data); + setSelectedRowKeys([]); + init(); + } + }; + + reader.readAsText(file); + + return false; + }; + + return ( + <> + + + + + + + + + + ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/types.ts b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/types.ts new file mode 100644 index 0000000..e0b01a2 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/types.ts @@ -0,0 +1,52 @@ +export enum SourceTypeEnum { + 'Latest', + 'Upstream', +} + +export type Bin = { + key: string; + label: string; + markForMerge: boolean; + totalCount: number; + woe?: number; + order?: number; +}; + +export type BinningData = { + modelHash: string; + variableBins: Record[]; +}; + +export type Record = { + key: string; + partyName: string; + feature: string; + type: string; // 特征类型 + isWoe: boolean; + binCount: number; + iv?: number; + bins: Bin[]; +}; + +export enum TableTypeEnum { + 'WoeBinning', + 'Binning', +} + +export enum CurrOperationEnum { + 'Reset', + 'Undo', + 'Merge', + 'Upload', + 'EditDefaultWoe', + 'Redo', +} + +export interface SelectedRowMapItem { + index: number[]; + value: string[]; +} + +export interface SelectedRowMap { + [key: string]: SelectedRowMapItem; +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/undo-service.ts b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/undo-service.ts new file mode 100644 index 0000000..132e4a5 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/binning-modification/undo-service.ts @@ -0,0 +1,62 @@ +import { Model } from '@/util/valtio-helper'; + +export class DefaultUndoService extends Model { + undoStack: T[] = []; + redoStack: T[] = []; + + public init = () => { + this.undoStack = []; + this.redoStack = []; + }; + + // 记录 + public record = (snapshot: T) => { + this.undoStack.push(snapshot); + + if (this.redoStack.length > 0) { + this.redoStack = []; + } + + return snapshot; + }; + + // 撤销 + public undo = () => { + if (this.undoStack.length <= 0) { + return; + } + + const curr = this.undoStack.pop(); + this.redoStack.push(curr!); + + if (this.undoStack.length <= 0) { + return []; + } + + return this.undoStack[this.undoStack.length - 1]; + }; + + // redo + public redo = () => { + if (this.redoStack.length <= 0) { + return; + } + + const curr = this.redoStack.pop(); + this.undoStack.push(curr!); + + return this.undoStack[this.undoStack.length - 1]; + }; + + // 重做(重新来过) + public reset = () => { + if (this.undoStack.length <= 0) { + return; + } + + this.undoStack = []; + this.redoStack = []; + + return; + }; +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/index.less b/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/index.less new file mode 100644 index 0000000..52225da --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/index.less @@ -0,0 +1,96 @@ +.font { + color: rgb(0 0 0 / 45%); + font-size: 12px; +} + +.effectiveContent { + display: flex; + align-items: center; + justify-content: space-between; + + .text { + width: 72px; + color: rgb(0 0 0 / 45%); + font-size: 12px; + font-weight: 400; + letter-spacing: 0; + line-height: 20px; + } + + .input { + width: 100px !important; + } +} + +.subStrContent { + .text { + margin-bottom: 4px; + color: rgb(0 0 0 / 85%); + color: rgb(0 0 0 / 45%); + font-size: 12px; + font-weight: 400; + letter-spacing: 0; + line-height: 20px; + } + + .subStrStart { + margin-top: 12px; + + .tip { + color: rgb(0 0 0 / 45%); + + div { + white-space: nowrap !important; + } + } + } +} + +.LogContent { + .content { + display: flex; + align-items: center; + margin-bottom: 12px; + gap: 8px; + } +} + +.UnaryContent { + .content { + display: flex; + align-items: center; + margin-bottom: 12px; + gap: 8px; + } + + .select { + width: 70px; + margin-bottom: 8px; + } +} + +.disableBtn { + width: 40px; + height: 28px; + box-sizing: border-box; + flex-shrink: 0; + padding: 4px 8px; + border-radius: 2px; + background-color: #e5e5e5; + color: rgb(0 0 0 / 45%); + font-size: 12px; + font-weight: 400; + line-height: 20px; +} + +.RangeContent { + .text { + margin-bottom: 4px; + color: rgb(0 0 0 / 45%); + font-size: 12px; + } + + .content { + margin-bottom: 12px; + } +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/index.tsx new file mode 100644 index 0000000..6c2816b --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/index.tsx @@ -0,0 +1,214 @@ +import { Form, Select } from 'antd'; +import { useEffect } from 'react'; + +import styles from './index.less'; +import { + LogOperands, + RangeOperands, + SubstrOperands, + UnaryOperands, + LogRoundOperands, +} from './operand-items'; +import { OP } from './types'; + +const opList = [ + { + value: OP.STANDARDIZE, + label: 'Standardize(标准化)', + }, + { + value: OP.NORMALIZATION, + label: '归一化', + }, + { + value: OP.RANGE_LIMIT, + label: 'Range(范围限制)', + }, + { + value: OP.UNARY, + label: 'Unary(单变量四则运算)', + }, + { + value: OP.ROUND, + label: 'Round(圆整)', + }, + { + value: OP.LOG_ROUND, + label: 'LogRound(取log后圆整)', + }, + { + value: OP.SQRT, + label: 'sqrt(根号)', + }, + { + value: OP.LOG, + label: 'Log', + }, + { + value: OP.EXP, + label: 'exp', + }, + { + value: OP.LENGTH, + label: 'length', + }, + { + value: OP.SUBSTR, + label: 'Substr', + }, + { + value: OP.RECIPROCAL, + label: 'Reciprocal(倒数)', + }, +]; + +const operandRenderMap = { + [OP.UNARY]: { + render: UnaryOperands, + initialValue: ['+', '/', null], + }, + [OP.LOG]: { + render: LogOperands, + initialValue: ['e', null], + }, + [OP.LOG_ROUND]: { + render: LogRoundOperands, + initialValue: [null], + }, + [OP.RANGE_LIMIT]: { + render: RangeOperands, + initialValue: [null, null], + }, + [OP.SUBSTR]: { + render: SubstrOperands, + initialValue: [null], + }, +}; + +// const hasNewCol = { +// [OP.CONCAT]: true, +// }; + +export const calculateSerializer = (val, clsName) => { + const name = 'custom_value'; + const cw = val; + + const { newColNames } = cw || {}; + + if (newColNames) { + const newCols = newColNames.split(',').filter((col: string) => col.length > 0); + cw['newColNames'] = newCols; + } + return { ...{ custom_value: cw }, custom_protobuf_cls: clsName }; +}; + +export const calculateUnserializer = (val?) => { + const name = 'custom_value'; + if (!val || !val[name]) { + return { op: OP.STANDARDIZE }; + } + const { custom_value } = val || {}; + const { newColNames } = custom_value || {}; + if (newColNames) { + custom_value['newColNames'] = newColNames.join(','); + } + return custom_value; +}; + +export const CalculateOpRender = (prop) => { + const { node } = prop; + const { name } = node; + + const form = Form.useFormInstance(); + Form.useWatch([name, 'op'], form); + + return ( + + 算子选择} + initialValue={OP.STANDARDIZE} + rules={[{ required: true, message: '请选择算子' }]} + > + + + ); + } else { + <>; + } + }} + */} + + ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/operand-items.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/operand-items.tsx new file mode 100644 index 0000000..f7cf83e --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/operand-items.tsx @@ -0,0 +1,301 @@ +import { QuestionCircleOutlined } from '@ant-design/icons'; +import { Select, Input, InputNumber, Tooltip, Space } from 'antd'; +import { useState } from 'react'; + +import styles from './index.less'; + +export const UnaryOperands = (prop: { + value?: (string | number)[]; + onChange?: (value: (string | number)[]) => void; +}) => { + const { value = [], onChange } = prop; + const prefixOptions = [ + { value: '+', label: '+' }, + { value: '-', label: '-' }, + ]; + + const opOptions = [ + { value: '+', label: '+' }, + { value: '-', label: '-' }, + { value: '/', label: '/' }, + { value: '*', label: '*' }, + ]; + + const triggerChange = (changedVal: (string | number)[]) => { + onChange?.(changedVal); + }; + + const val = value?.length === 3 ? value : ['+', '/', null]; + const [selected, setSelected] = useState<(string | number)[]>(val); + + return ( +
+ { + const arr = [...selected]; + arr[1] = val; + setSelected(arr); + triggerChange(arr); + }} + /> + { + const arr = [...selected]; + arr[2] = val + ''; + setSelected(arr); + triggerChange(arr); + }} + placeholder="请输入数值" + /> + {')'} +
+ + ); +}; + +export const RangeOperands = (prop: { + value?: (string | number)[]; + onChange?: (value: (string | number)[]) => void; +}) => { + const { value = [], onChange } = prop; + const [selected, setSelected] = useState<(string | number)[]>([]); + + const triggerChange = (changedVal: (string | number)[]) => { + onChange?.(changedVal); + }; + return ( +
+
限制范围
+ +
+ { + const arr = [...selected]; + arr[0] = val + ''; + setSelected(arr); + triggerChange(arr); + }} + placeholder="最小值" + /> +
+ , +
+ { + const arr = [...selected]; + arr[1] = val + ''; + setSelected(arr); + triggerChange(arr); + }} + placeholder="最大值" + /> +
+
+
+ ); +}; + +export const LogOperands = (prop: { + value?: (string | number)[]; + onChange?: (value: (string | number)[]) => void; +}) => { + const { value = [], onChange } = prop; + const [selected, setSelected] = useState<(string | number)[]>(['e']); + + const triggerChange = (changedVal: (string | number)[]) => { + onChange?.(changedVal); + }; + return ( +
+
+ Log + { + const arr = [...selected]; + arr[0] = e.target.value; + setSelected(arr); + triggerChange(arr); + }} + /> + {'('}
原值
+ + + { + const arr = [...selected]; + arr[1] = e + ''; + setSelected(arr); + triggerChange(arr); + }} + placeholder="常量" + /> + {')'} +
+
+ ); +}; + +export const LogRoundOperands = (prop: { + value?: (string | number)[]; + onChange?: (value: (string | number)[]) => void; +}) => { + const { value = [], onChange } = prop; + const [selected, setSelected] = useState<(string | number)[]>([]); + + const triggerChange = (changedVal: (string | number)[]) => { + onChange?.(changedVal); + }; + return ( +
+
+ Log2 + {'('}
原值
+ + + { + const arr = [...selected]; + arr[0] = e + ''; + setSelected(arr); + triggerChange(arr); + }} + placeholder="常量" + /> + {')'} +
+
+ ); +}; + +export const SqrtOperands = (prop: { + value?: number[]; + onChange?: (value: (number | null)[]) => void; +}) => { + const { value = [], onChange } = prop; + const [selected, setSelected] = useState<(null | number)[]>([]); + + const triggerChange = (changedVal: (null | number)[]) => { + onChange?.(changedVal); + }; + return ( + { + const arr = [...selected]; + arr[0] = val; + setSelected(arr); + triggerChange(arr); + }} + /> + ); +}; + +export const SubstrOperands = (prop: { + value?: (string | number)[]; + onChange?: (value: (string | number)[]) => void; +}) => { + const { value = [], onChange } = prop; + const [selected, setSelected] = useState<(string | number)[]>([]); + + const triggerChange = (changedVal: (string | number)[]) => { + onChange?.(changedVal); + }; + return ( +
+
+
截取长度
+ { + const arr = [...selected]; + arr[1] = val + ''; + setSelected(arr); + triggerChange(arr); + }} + placeholder="请输入正整数" + /> +
+ +
+ +
开始截取位数
+ +
如输入正数,则从左边开始往后从左到右截取;
+
如输入负数,则从结尾往前数从左到右截取位数截取。
+
{`例:select substr('abcdefg',3,4) from dual; 结果是cdef`}
+
{`select substr('abcdefg',-3,4) from dual; 结果efg`}
+
+ } + > + + + + { + const arr = [...selected]; + arr[0] = e + ''; + setSelected(arr); + triggerChange(arr); + }} + placeholder="请输入" + /> +
+ + ); +}; + +export const EffectiveNumber = (prop: { + value?: number; + onChange?: (value: number | null) => void; +}) => { + const { value = null, onChange } = prop; + const triggerChange = (changedVal: number | null) => { + onChange?.(changedVal); + }; + return ( +
+ 有效数字位数 + { + triggerChange(val); + }} + /> +
+ ); +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/types.ts b/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/types.ts new file mode 100644 index 0000000..941cb8c --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/calculate-op-render/types.ts @@ -0,0 +1,20 @@ +export enum OP { + STANDARDIZE = 'STANDARDIZE', + NORMALIZATION = 'NORMALIZATION', + RANGE_LIMIT = 'RANGE_LIMIT', + UNARY = 'UNARY', + ROUND = 'ROUND', + LOG_ROUND = 'LOG_ROUND', + SQRT = 'SQRT', + LOG = 'LOG', + EXP = 'EXP', + LENGTH = 'LENGTH', + SUBSTR = 'SUBSTR', + RECIPROCAL = 'RECIPROCAL', +} + +export type OpCalculateRule = { + op: OP; + operands?: string | number[]; + newColNames?: string; +}; diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/case-when-render/index.less b/apps/platform/src/modules/component-config/config-item-render/custom-render/case-when-render/index.less new file mode 100644 index 0000000..a9ac6c4 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/case-when-render/index.less @@ -0,0 +1,20 @@ +.font { + color: rgb(0 0 0 / 45%); + font-size: 12px; +} + +.icon { + color: rgb(0 0 0 / 45%); + font-size: 12px; +} + +.row { + display: flex; + align-items: center; + justify-content: space-between; + margin: 8px 0; + + :global(.ant-form-item) { + margin: 0 !important; + } +} diff --git a/apps/platform/src/modules/component-config/config-item-render/custom-render/case-when-render/index.tsx b/apps/platform/src/modules/component-config/config-item-render/custom-render/case-when-render/index.tsx new file mode 100644 index 0000000..5bdb486 --- /dev/null +++ b/apps/platform/src/modules/component-config/config-item-render/custom-render/case-when-render/index.tsx @@ -0,0 +1,878 @@ +import { PlusCircleFilled, DeleteOutlined } from '@ant-design/icons'; +import { Button, Divider, Form, Input, Select, Switch } from 'antd'; +import { parse } from 'query-string'; +import { useEffect, useState, useMemo } from 'react'; +import { useLocation } from 'umi'; + +import type { AtomicConfigNode } from '@/modules/component-config/component-config-protocol'; +import { getGraphNodeOutput } from '@/services/secretpad/GraphController'; +import { + getProject, + getProjectAllOutTable, + getProjectDatatable, +} from '@/services/secretpad/ProjectController'; + +import type { IDataTable, IOutputDataTable } from '../types'; + +import styles from './index.less'; + +const valueTypeOptions = [ + { value: 'COLUMN', label: '列' }, + { value: 'CONST', label: '常量' }, +]; +const opOptions = [ + { + value: 'EQ', + label: '==', + }, + { + value: 'NE', + label: '!=', + }, + + { value: 'LT', label: '<' }, + { value: 'GT', label: '>' }, + { value: 'LE', label: '<=' }, + { value: 'GE', label: '>=' }, +]; + +export const caseWhenSerializer = (val, clsName) => { + const name = 'custom_value'; + const cw = val; + const { whens, else_value, output_column, as_label, float_epsilon } = cw || {}; + if (whens && whens.length > 0) { + const convertedWhens = whens.map((w) => { + const connections = []; + const { conds, when, then } = w; + const convertedConds = [when]; + conds?.forEach((cond) => { + const { connection, ...rest } = cond; + if (connection) connections.push(connection); + if (rest) convertedConds.push(rest); + }); + + return { conds: convertedConds, then, connections }; + }); + + const ret = { custom_protobuf_cls: clsName }; + ret[name] = { + whens: convertedWhens, + else_value, + output_column, + as_label, + float_epsilon, + }; + + return ret; + } + return { ...{ custom_value: cw }, custom_protobuf_cls: clsName }; +}; + +export const caseWhenUnserializer = (val?) => { + const name = 'custom_value'; + if (!val || !val[name]) + return { + whens: [ + { + then: { type: 'CONST_FLOAT' }, + when: { cond_value: { type: 'CONST_FLOAT' }, op: 'EQ' }, + }, + ], + else_value: { type: 'CONST_FLOAT', value: undefined }, + output_column: undefined, + as_label: false, + float_epsilon: 10e-7, + }; + + const value = val[name]; + const { whens, ...rest } = value; + + const convertedWhens = whens.map((w) => { + const { connections, conds, then } = w; + let when; + + if (conds && conds.length > 0) { + when = conds[0]; + conds.shift(); + } + + if (connections && connections.length > 0) { + connections.forEach((connection, index) => { + if (conds[index]) conds[index].connection = connection; + }); + } + + return when ? { when, conds, then } : { conds, then }; + }); + return { whens: convertedWhens, ...rest }; +}; + +export const CaseWhenRender = (prop: { node: AtomicConfigNode }) => { + const { node, upstreamTables = [] } = prop; + + const [tables, setTables] = useState([]); + const [outputTables, setOutputTables] = useState([]); + const [columns, setColumns] = useState<{ label: string; value: string }[]>([]); + const [columnInfo, setColumnInfo] = useState<{ colName: string; colType: string }[]>( + [], + ); + const { search } = useLocation(); + const { projectId, dagId } = parse(search) as { projectId: string; dagId: string }; + + useEffect(() => { + const getTables = async () => { + const dataTableList: IDataTable[] = []; + + const { data } = await getProject({ projectId }); + const { data: outputData } = await getProjectAllOutTable({ + projectId, + graphId: dagId, + }); + + if (outputData?.nodes) { + setOutputTables( + outputData.nodes.reduce( + (ret, { outputs, graphNodeId }) => + outputs && graphNodeId + ? ret.concat( + outputs.map((output) => ({ + graphNodeId, + datatableId: output, + datatableName: output, + nodeId: '', + })), + ) + : ret, + [], + ), + ); + } + if (!data) return; + + const { nodes } = data; + if (!nodes) return; + + nodes.map((_node) => { + const { datatables } = _node; + if (!datatables) return; + datatables.map((table) => + dataTableList.push({ + ...table, + nodeId: _node?.nodeId, + } as IDataTable), + ); + }); + + setTables( + dataTableList.filter( + ({ datatableId }) => (upstreamTables as string[]).indexOf(datatableId) > -1, + ), + ); + }; + + getTables(); + }, [upstreamTables]); + + const { name } = node; + + const fromInputIndex = 0; + + const fromTable = useMemo(() => { + if (fromInputIndex !== undefined && upstreamTables[fromInputIndex]) { + const tableName = upstreamTables[fromInputIndex]; + + return outputTables.find(({ datatableName }) => datatableName === tableName); + } + }, [fromInputIndex, upstreamTables, outputTables]); + + useEffect(() => { + const getColumns = async (tableList) => { + const tableInfos: { colName: string; colType: string }[] = []; + // const tableColInfos: { colName: string; colType: string }[] = []; + await Promise.all( + tableList.map(async (s) => { + if (!s) return; + const { datatableId, nodeId, graphNodeId } = s; + const tableFields: { colName: string; colType: string }[] = []; + // const tableColInfo: { colName: string; colType: string }[] = []; + if (!nodeId && graphNodeId) { + const { data } = await getGraphNodeOutput({ + projectId, + graphId: dagId, + graphNodeId, + outputId: datatableId, + }); + + if (data?.meta?.rows?.length) { + data.meta.rows.forEach( + ({ fieldTypes, fields }: { fieldTypes: string; fields: string }) => { + if (fieldTypes && fields) { + const fieldList = fields.split(','); + const fieldTypeList = fieldTypes.split(','); + tableFields.push( + ...fieldList.map((f, i) => ({ + colName: f, + colType: fieldTypeList[i], + })), + ); + + // tableFields.push(...fieldList); + } + }, + ); + } + } else { + const { data } = await getProjectDatatable({ + datatableId, + nodeId, + projectId, + }); + if (!data) return; + const { configs } = data; + + configs.map((c) => { + tableFields.push({ colName: c.colName, colType: c.colType }); + }); + + // tableFields.push(...colsName); + } + + // tableColInfos.push(...tableColInfo); + tableInfos.push(...tableFields); + }), + ); + + return tableInfos; + }; + + const getTotalCols = async () => { + const fromTableCols = await getColumns([fromTable]); + if (fromTableCols.length < 1) { + const inputTableCols = await getColumns(tables); + + setColumns( + inputTableCols.map((option: { colName: string; colType: string }) => ({ + value: option.colName, + label: option.colName, + })), + ); + setColumnInfo(inputTableCols); + return; + } + setColumns( + fromTableCols.map((option: { colName: string; colType: string }) => ({ + value: option.colName, + label: option.colName, + })), + ); + setColumnInfo(fromTableCols); + return; + }; + + getTotalCols(); + }, [fromTable, tables, upstreamTables]); + + return ( + + + {(fields, { add, remove }, { errors }) => ( + <> +
+
Case
{' '} +
+
+
+ {fields.map((field, index) => { + return ( +
+
+ WHEN} + name={[field.name, 'when', 'cond_column']} + style={{ width: '65%' }} + labelCol={{ span: 9 }} + colon={false} + rules={[ + { + required: true, + message: '', + }, + ]} + > + + +
+
+ + {({ getFieldValue }) => { + const col = getFieldValue([ + name, + 'whens', + field.name, + 'when', + 'cond_column', + ]); + + const { colType } = + columnInfo.find(({ colName }) => colName === col) || {}; + let valType = 'CONST_STR'; + if (colType) { + if (colType.toLowerCase().includes('int')) + valType = 'CONST_INT'; + + if (colType.toLowerCase().includes('float')) + valType = 'CONST_FLOAT'; + } + + return ( + + + + ); + }} + + + {({ getFieldValue }) => { + const type = getFieldValue([ + name, + 'whens', + field.name, + 'when', + 'cond_value', + 'type', + ]); + const col = getFieldValue([ + name, + 'whens', + field.name, + 'when', + 'cond_column', + ]); + + const { colType } = + columnInfo.find(({ colName }) => colName === col) || {}; + let valType = 'CONST_STR'; + if (colType) { + if (colType.toLowerCase().includes('int')) + valType = 'CONST_INT'; + + if (colType.toLowerCase().includes('float')) + valType = 'CONST_FLOAT'; + } + return ( + + ); + }} + +
+ + {(subFields, subOpt, { errors }) => { + const { add: addCond, remove: removeCond } = subOpt; + return ( + <> + {/* */} + {subFields.map((sub) => ( +
+
+ + + (option?.label ?? '') + .toLowerCase() + .includes(input.toLowerCase()) + } + /> + + + + + + + float epsilon} + tooltip={ + '在相等判断中,如果两个float的差距小于epsilon,就认为这两个float是相等的' + } + name={[name, 'float_epsilon']} + initialValue={10e-7} + rules={[ + { + pattern: /^[0-9]+(.([0-9]*))?$/, ///^[0-9]+.{0,1}[0-9]*$/, + message: '请输入数字', + }, + ]} + > + + + + 输出为标签列} + name={[name, 'as_label']} + initialValue={false} + valuePropName="checked" + labelCol={{ span: 20 }} + colon={false} + wrapperCol={{ span: 4 }} + > + + + + ); +}; + +const ValueTypeSelect = (props: { + value?: string; + onChange?: (value: string) => void; +}) => { + const { value, onChange } = props; + const [selected, setSelected] = useState(); + + const constOptions = [ + { label: 'float', value: 'CONST_FLOAT' }, + { + label: 'int', + value: 'CONST_INT', + }, + { label: 'str', value: 'CONST_STR' }, + ]; + + const triggerChange = (changedVal: string) => { + onChange?.(changedVal); + }; + + return value === 'COLUMN' || selected === 'COLUMN' ? ( + { + if (val === 'COLUMN') { + setSelected(val); + triggerChange(val); + } + }} + /> + { + if (val === 'COLUMN') { + setSelected(val); + triggerChange(val); + } else { + setSelected(type); + triggerChange(type); + } + }} + /> + ); +}; + +const ValueInput = (prop: { + namePrefix: (string | number)[]; + type: string; + cols: { value: string; label: string }[]; + required: boolean; +}) => { + const { namePrefix, type, cols, required = false, ...field } = prop; + const map = { + CONST_FLOAT: 'f', + CONST_INT: 'i', + CONST_STR: 's', + COLUMN: 'column_name', + }; + + return type !== 'COLUMN' ? ( + + + + ) : ( + + + + { + if (groupCols.includes(value)) { + return Promise.reject(new Error('分组列不可选')); + } + return Promise.resolve(); + }, + }, + ]} + > + + + + + + + + 结果接收方
} diff --git a/apps/platform/src/modules/component-tree/component-icon.tsx b/apps/platform/src/modules/component-tree/component-icon.tsx index 41fb38b..52f9349 100644 --- a/apps/platform/src/modules/component-tree/component-icon.tsx +++ b/apps/platform/src/modules/component-tree/component-icon.tsx @@ -9,11 +9,10 @@ import { export const ComponentIcons: Record = { default: , - database: , - chart: , + stats: , preprocessing: , + feature: , control: , - 'ml.linear': , - 'ml.boost': , - stats: , + 'ml.train': , + 'ml.eval': , }; diff --git a/apps/platform/src/modules/component-tree/component-protocol.ts b/apps/platform/src/modules/component-tree/component-protocol.ts index 0c4e117..1ad4aa0 100644 --- a/apps/platform/src/modules/component-tree/component-protocol.ts +++ b/apps/platform/src/modules/component-tree/component-protocol.ts @@ -30,7 +30,12 @@ export type ParameterNode = { // `input` and `output` are reserved. name: string; desc: string; -} & (AtomicParameterNode | UnionParameterNode | StructParameterNode); +} & ( + | AtomicParameterNode + | UnionParameterNode + | StructParameterNode + | CustomParameterNode +); type OneOf = { [K in P]-?: Required> & Partial, never>>; @@ -98,6 +103,11 @@ type StructParameterNode = { type: 'AT_STRUCT_GROUP'; }; +type CustomParameterNode = { + type: 'AT_CUSTOM_PROTOBUF'; + custom_protobuf_cls: string; +}; + // Define an input/output for component. export type IoDef = { // should be unique among all IOs of the component. @@ -147,9 +157,10 @@ export type ComponentList = { export type ComponentTreeItem = { isLeaf: boolean; key: string; - title: string; + title: { val: string }; children?: ComponentTreeItem[]; docString: string; + category: string; }; export type ComputeMode = 'MPC' | 'TEE'; diff --git a/apps/platform/src/modules/component-tree/component-tree-service.ts b/apps/platform/src/modules/component-tree/component-tree-service.ts index efe4270..88009e0 100644 --- a/apps/platform/src/modules/component-tree/component-tree-service.ts +++ b/apps/platform/src/modules/component-tree/component-tree-service.ts @@ -4,7 +4,6 @@ import { message } from 'antd'; import { listComponents, - getComponent, batchGetComponent, } from '@/services/secretpad/GraphController'; import { getModel, Model } from '@/util/valtio-helper'; @@ -129,49 +128,94 @@ export class DefaultComponentTreeService extends Model { } convertToTree(mode: ComputeMode): ComponentTreeItem[] { - return this.componentList[mode].reduce((acc, component) => { - const { domain: category, name: label, desc, version } = component; - const treeItem = { - category, - title: { val: label }, - docString: desc, - isLeaf: true, - key: label, - version, - }; - - if (category) { - const dir = acc.find(({ key }) => category === key); - if (dir) { - if (!dir.children) dir.children = []; - dir.children.push(treeItem); + const mergedDomainMap: { [key: string]: string } = { + feature: '特征预处理', + preprocessing: '特征预处理', + read_data: '数据准备', + data_prep: '数据准备', + }; + const list = this.componentList[mode].reduce( + (acc, component) => { + const { domain: category, name: label, desc, version } = component; + const treeItem = { + category, + title: { val: label }, + docString: desc, + isLeaf: true, + key: label, + version, + }; + + if (category) { + const dir = acc.find(({ key }) => + mergedDomainMap[category] + ? mergedDomainMap[category] === key + : category === key, + ); + if (dir) { + if (!dir.children) dir.children = []; + dir.children.push(treeItem); + } else { + acc.push({ + category: '', + title: { + val: mergedDomainMap[category] ? mergedDomainMap[category] : category, + }, + key: mergedDomainMap[category] ? mergedDomainMap[category] : category, + isLeaf: false, + docString: '', + children: [treeItem], + }); + } } else { - acc.push({ - category: '', - title: { val: category }, - key: category, - isLeaf: false, - docString: '', - children: [treeItem], - }); + acc.push(treeItem); } - } else { - acc.push(treeItem); - } - const order = [ - 'read_data', - 'feature', - 'preprocessing', - 'stats', - 'ml.train', - 'ml.predict', - 'ml.eval', - ]; + return acc; + }, + [], + ); - acc.sort((a, b) => order.indexOf(a.title.val) - order.indexOf(b.title.val)); + const domainOrder = [ + '数据准备', + 'data_filter', + '特征预处理', + 'stats', + 'ml.train', + 'ml.predict', + 'ml.eval', + ]; + + const childrenOrder: { [key: string]: string[] } = { + 数据准备: ['datatable', 'psi', 'train_test_split'], + 特征预处理: [ + 'binary_op', + 'case_when', + 'feature_calculate', + 'fillna', + 'onehot_encode', + 'substitution', + 'vert_binning', + 'vert_woe_binning', + 'vert_bin_substitution', + 'binning_modifications', + ], + }; + + // Order the components list for better UX + list.map((domain: ComponentTreeItem) => { + if (childrenOrder[domain.key] && domain.children) { + const order = childrenOrder[domain.key]; + domain.children.sort( + (a, b) => order.indexOf(a.title.val) - order.indexOf(b.title.val), + ); + } + }); + + list.sort( + (a, b) => domainOrder.indexOf(a.title.val) - domainOrder.indexOf(b.title.val), + ); - return acc; - }, []); + return list; } } diff --git a/apps/platform/src/modules/cooperative-node-list/cooperative-node-detail-modal.tsx b/apps/platform/src/modules/cooperative-node-list/cooperative-node-detail-modal.tsx index c4ec83b..3bf7914 100644 --- a/apps/platform/src/modules/cooperative-node-list/cooperative-node-detail-modal.tsx +++ b/apps/platform/src/modules/cooperative-node-list/cooperative-node-detail-modal.tsx @@ -206,7 +206,10 @@ export const CooperativeNodeDetailDrawer = ({ open={showDeleteModal} data={data} onClose={() => setShowDeleteModal(false)} - onOk={onOk} + onOk={() => { + onOk(); + onClose(); + }} /> ); diff --git a/apps/platform/src/modules/cooperative-node-list/cooperative-node.service.ts b/apps/platform/src/modules/cooperative-node-list/cooperative-node.service.ts index 65fa03b..30b2b76 100644 --- a/apps/platform/src/modules/cooperative-node-list/cooperative-node.service.ts +++ b/apps/platform/src/modules/cooperative-node-list/cooperative-node.service.ts @@ -11,7 +11,7 @@ import { listNode, get, } from '@/services/secretpad/NodeRouteController'; -import { createP2pNode, deleteNode } from '@/services/secretpad/P2pNodeController'; +import { createP2pNode, deleteP2pNode } from '@/services/secretpad/P2pNodeController'; import { Model, getModel } from '@/util/valtio-helper'; export class CooperativeNodeService extends Model { @@ -93,7 +93,7 @@ export class CooperativeNodeService extends Model { * @returns */ p2pDeleteCooperativeNode = async (routerId: string) => { - return await deleteNode({ routerId }); + return await deleteP2pNode({ routerId }); }; /** diff --git a/apps/platform/src/modules/create-project/create-project.service.ts b/apps/platform/src/modules/create-project/create-project.service.ts index 8d76a00..a1c9d44 100644 --- a/apps/platform/src/modules/create-project/create-project.service.ts +++ b/apps/platform/src/modules/create-project/create-project.service.ts @@ -103,7 +103,7 @@ export class CreateProjectService extends Model { nodeId: 'alice', datatableId: aliceData[0].datatableId, configs: [ - { colName: 'id1', isAssociateKey: true }, + { colName: 'id1', isAssociateKey: true, isProtection: true }, { colName: 'y', isLabelKey: true }, ], }), @@ -112,7 +112,7 @@ export class CreateProjectService extends Model { nodeId: 'bob', datatableId: bobData[0].datatableId, configs: [ - { colName: 'id2', isAssociateKey: true }, + { colName: 'id2', isAssociateKey: true, isProtection: true }, { colName: 'y', isLabelKey: true }, ], }), @@ -134,7 +134,7 @@ export class CreateProjectService extends Model { nodeId: 'alice', datatableId: (alice?.datatables || [])[0].datatableId, configs: [ - { colName: 'id1', isAssociateKey: true }, + { colName: 'id1', isAssociateKey: true, isProtection: true }, { colName: 'y', isLabelKey: true }, ], }), @@ -147,7 +147,7 @@ export class CreateProjectService extends Model { nodeId: 'bob', datatableId: (bob?.datatables || [])[0].datatableId, configs: [ - { colName: 'id2', isAssociateKey: true }, + { colName: 'id2', isAssociateKey: true, isProtection: true }, { colName: 'y', isLabelKey: true }, ], }), diff --git a/apps/platform/src/modules/dag-modal-manager/index.ts b/apps/platform/src/modules/dag-modal-manager/index.ts index c170e54..a9e909b 100644 --- a/apps/platform/src/modules/dag-modal-manager/index.ts +++ b/apps/platform/src/modules/dag-modal-manager/index.ts @@ -50,7 +50,9 @@ export class DefaultModalManager extends Model implements ModalManager { closeAllModalsBut: (modalId: string) => void = (modalId) => { for (const id in this.modals) { - if (id !== modalId) this.closeModal(id); + if (id !== modalId) { + this.closeModal(id); + } } }; } diff --git a/apps/platform/src/modules/dag-record/graph-hook-service.ts b/apps/platform/src/modules/dag-record/graph-hook-service.ts index b768b20..523bbc2 100644 --- a/apps/platform/src/modules/dag-record/graph-hook-service.ts +++ b/apps/platform/src/modules/dag-record/graph-hook-service.ts @@ -7,6 +7,11 @@ import { getModel } from '@/util/valtio-helper'; import type { ComputeMode } from '../component-tree/component-protocol'; +const DISTDATA_TYPE = { + REPORT: 'sf.report', + READ_DATA: 'sf.read_data', +}; + export class GraphHookService extends DefaultHookService { componentService = getModel(DefaultComponentTreeService); @@ -25,6 +30,14 @@ export class GraphHookService extends DefaultHookService { const results: GraphNodeOutput[] = []; const { outputs } = component; outputs.forEach((output, index) => { + if ( + output.types && + output.types[0] && + [DISTDATA_TYPE.READ_DATA].includes(output.types[0]) + ) { + return; + } + results.push({ id: `${nodeId}-output-${index}`, name: output.name, @@ -37,6 +50,13 @@ export class GraphHookService extends DefaultHookService { return []; } + /** + * Create input and output ports on graph nodes. + * Node: When the output type is a report, the render of this port should be ignored + * @param nodeId graphNode id + * @param codeName the component name + * @returns the ports list + */ async createPort(nodeId: string, codeName: string) { const [domain, name] = codeName.split('/'); const { mode } = parse(window.location.search); @@ -66,10 +86,19 @@ export class GraphHookService extends DefaultHookService { }); outputs.forEach((output, index) => { + // ignore the report output + if ( + output.types && + output.types[0] && + [DISTDATA_TYPE.REPORT, DISTDATA_TYPE.READ_DATA].includes(output.types[0]) + ) { + return; + } + ports.push({ id: `${nodeId}-output-${index}`, group: 'bottom', - type: output.types[0], + type: output.types, attrs: { circle: { magnet: false, diff --git a/apps/platform/src/modules/dag-record/graph-service.ts b/apps/platform/src/modules/dag-record/graph-service.ts index 28b2930..fd14356 100644 --- a/apps/platform/src/modules/dag-record/graph-service.ts +++ b/apps/platform/src/modules/dag-record/graph-service.ts @@ -1,6 +1,7 @@ import { NodeStatus } from '@secretflow/dag'; import type { Cell, GraphNode, Node } from '@secretflow/dag'; import type { GraphEventHandlerProtocol } from '@secretflow/dag'; +import { message } from 'antd'; import { parse } from 'query-string'; import { componentConfigDrawer } from '@/modules/component-config/config-modal'; @@ -33,13 +34,18 @@ export class RecordGraphService extends Model implements GraphEventHandlerProtoc const { projectId } = parse(search); const [, nodeId] = outputId.match(/(.*)-output-([0-9]+)$/) || []; if (!nodeId) return; - const { data } = await getJobTaskOutput({ + const { data, status } = await getJobTaskOutput({ projectId: projectId as string, jobId: graphId, taskId: `${graphId}-${nodeId}`, outputId, }); + if (status?.code !== 0) { + message.error('结果不存在'); + return; + } + if (data) { if (this.modalManager.modals[componentConfigDrawer.id].visible) { this.modalManager.closeModal(componentConfigDrawer.id); diff --git a/apps/platform/src/modules/dag-record/index.less b/apps/platform/src/modules/dag-record/index.less index 3bdd789..301fff0 100644 --- a/apps/platform/src/modules/dag-record/index.less +++ b/apps/platform/src/modules/dag-record/index.less @@ -157,8 +157,7 @@ } .statusIcon { - padding-inline-end: 8px; - padding-inline-start: 8px; + padding-inline: 8px 8px; } .resultTypeIcon { diff --git a/apps/platform/src/modules/dag-result/index.less b/apps/platform/src/modules/dag-result/index.less index 1e475a7..1cf8bfb 100644 --- a/apps/platform/src/modules/dag-result/index.less +++ b/apps/platform/src/modules/dag-result/index.less @@ -129,6 +129,7 @@ } :global(.ant-tabs-nav) { + margin-right: 90px; margin-bottom: 8px !important; } } diff --git a/apps/platform/src/modules/dag-result/result-modal.tsx b/apps/platform/src/modules/dag-result/result-modal.tsx index 02fd69b..29dc3be 100644 --- a/apps/platform/src/modules/dag-result/result-modal.tsx +++ b/apps/platform/src/modules/dag-result/result-modal.tsx @@ -29,16 +29,12 @@ export const ResultDrawer = () => { useFullscreen(fullScreenRef); const { visible, data, close } = modalManager.modals[resultDrawer.id]; - const { data: report, codeName, outputId } = data || {}; + const { data: resultData, codeName, outputId } = data || {}; - const [resultData, setResultData] = React.useState(report); const handleClose = () => { modalManager.closeModal(resultDrawer.id); }; - React.useEffect(() => { - setResultData(report); - }, [report]); return ( { data={resultData} id={outputId} codeName={codeName} + visible={visible} /> )} {!resultData?.type && 非数据参与方,无计算结果} diff --git a/apps/platform/src/modules/dag-result/result-report-types.ts b/apps/platform/src/modules/dag-result/result-report-types.ts index 95b89cd..7db114b 100644 --- a/apps/platform/src/modules/dag-result/result-report-types.ts +++ b/apps/platform/src/modules/dag-result/result-report-types.ts @@ -8,7 +8,7 @@ export type Tab = { divs: ReportDiv[]; }; -type Item = { +export type Item = { name: string; desc: string; type: @@ -23,7 +23,7 @@ type Item = { value: Value; }; -type Descriptions = { +export type Descriptions = { name: string; desc: string; items: Item[]; @@ -63,7 +63,7 @@ type ReportDivChildren = } | { type: 'div'; div: ReportDiv }; -type Value = { +export type Value = { f: string; i64: number | string; s: string; @@ -73,3 +73,14 @@ type Value = { ss: string[]; bs: boolean[]; }; + +export const TypeMap = { + float: 'f', + int: 'i64', + bool: 'b', + str: 's', + AT_FLOAT: 'f', + AT_INT: 'i64', + AT_STRING: 's', + AT_BOOL: 'b', +}; diff --git a/apps/platform/src/modules/dag-result/result-report.tsx b/apps/platform/src/modules/dag-result/result-report.tsx index 50ba008..832d7cd 100644 --- a/apps/platform/src/modules/dag-result/result-report.tsx +++ b/apps/platform/src/modules/dag-result/result-report.tsx @@ -5,8 +5,10 @@ import type { Tab } from './result-report-types'; import type { ResultComponentProps } from './types'; import { formatTimestamp } from './utils'; import { CorrMatrix } from './vis/corr-matrix'; +import { GroupPivotTable } from './vis/groupby-pivot-table'; import { PVAChart } from './vis/mpc-pva-chart'; import { OutputTable } from './vis/output-table'; +import { RegressionTable } from './vis/regression-table'; import { transformCorrMatrixData } from './vis/utils'; export const getTabsName = (name: string | undefined, index: number) => { @@ -22,8 +24,10 @@ export const getTabsName = (name: string | undefined, index: number) => { return reportMapZh[name] || name; }; -export const ResultReportComponent = (props: ResultComponentProps<'report'>) => { - const { data, id, codeName } = props; +export const ResultReportComponent = ( + props: ResultComponentProps<'report'> & { visible: boolean }, +) => { + const { data, id, codeName, visible } = props; const { gmtCreate, tabs = [] } = data; return ( <> @@ -38,17 +42,7 @@ export const ResultReportComponent = (props: ResultComponentProps<'report'>) => {formatTimestamp(gmtCreate || '')}
- { - return { - label: getTabsName(item.name, index), - key: `${index}`, - children:
{getVisComponents(codeName, item, id)}
, - }; - })} - /> + {visible && <>{getVisTabsContent(codeName, tabs, id)}} ); }; @@ -69,6 +63,7 @@ export const getVisComponents = ( showFullscreen={showFullscreen} /> ), + // 'stats/groupby_statistics': , // 全表统计 // "stats/table_statistics": div, }; @@ -79,3 +74,28 @@ export const getVisComponents = ( return ; }; + +export const getVisTabsContent = (codeName: string, tabs: Tab[], id: string) => { + const ComponentVisMap: Record = { + // 分组统计 + 'stats/groupby_statistics': , + // 回归模型评估 + 'ml.eval/regression_eval': , + }; + if (ComponentVisMap[codeName]) { + return ComponentVisMap[codeName]; + } + return ( + { + return { + label: getTabsName(item.name, index), + key: `${index}`, + children:
{getVisComponents(codeName, item, id)}
, + }; + })} + /> + ); +}; diff --git a/apps/platform/src/modules/dag-result/vis/groupby-pivot-table/index.less b/apps/platform/src/modules/dag-result/vis/groupby-pivot-table/index.less new file mode 100644 index 0000000..024be54 --- /dev/null +++ b/apps/platform/src/modules/dag-result/vis/groupby-pivot-table/index.less @@ -0,0 +1,87 @@ +.tableTab { + margin-top: 24px; +} + +.tabsTable { + position: relative; + + :global { + .ant-tabs-nav::before { + border-bottom: none !important; + } + + .ant-table-container { + border-radius: 0; + } + } + + :global(.ant-tabs-tab) { + padding: 0 0 8px !important; + } + + :global(.ant-tabs-nav) { + width: calc(100% - 110px); + margin-bottom: 8px !important; + } +} + +.palette-legend { + display: flex; + align-items: center; + justify-content: flex-end; + margin-bottom: 8px; +} + +.palette-color { + width: 12px; + height: 12px; +} + +.palette-limit { + color: rgb(94 94 94); + font-size: 12px; +} + +.palette-color + .palette-limit { + margin-left: 5px; +} + +.palette-limit + .palette-color { + margin-left: 5px; +} + +.pivotHeader { + :global { + .s2-header-content { + padding-top: 0; + } + + // .s2-header-heading { + // margin-top: -25px; + // } + } +} + +.customBtn { + // border: none; + // animation: none; + color: rgb(0 10 26/68%); + + &:hover { + color: #0068fa !important; + } +} + +.switcherButton { + :global(.antv-s2-switcher-entry-button.ant-btn) { + position: absolute; + top: 5px; + } +} + +.switcherPopover { + :global(.antv-s2-switcher-dimension-items) { + padding: 0; + margin: 8px; + } +} diff --git a/apps/platform/src/modules/dag-result/vis/groupby-pivot-table/index.tsx b/apps/platform/src/modules/dag-result/vis/groupby-pivot-table/index.tsx new file mode 100644 index 0000000..4820123 --- /dev/null +++ b/apps/platform/src/modules/dag-result/vis/groupby-pivot-table/index.tsx @@ -0,0 +1,417 @@ +import { DownloadOutlined } from '@ant-design/icons'; +import type { SpreadSheet } from '@antv/s2'; +import { SheetComponent, Switcher } from '@antv/s2-react'; +import type { RadioChangeEvent } from 'antd'; +import { Radio, Tabs, Button } from 'antd'; +import { useState, useEffect, useRef, useMemo } from 'react'; + +import { getTabsName } from '../../result-report'; +import { OutputTable } from '../output-table'; +import type { ResultOriginData } from '../typing'; +import '@antv/s2-react/dist/style.min.css'; + +import styles from './index.less'; + +export const GroupPivotTable = (prop: { data: any; id: string }) => { + const { data, id } = prop; + const [sheetType, setSheetType] = useState('group'); + const [activeTab, setActiveTab] = useState('0'); + + useEffect(() => { + setActiveTab('0'); + setSheetType('group'); + }, [id]); + return ( +
+ setSheetType(e.target.value)} + > + 分组结果表 + 交叉透视表 + +
+ setActiveTab(key)} + items={(data || []).map((item: ResultOriginData, index: number) => { + return { + label: getTabsName(item.name, index), + key: `${index}`, + children: ( +
+ {sheetType === 'group' && } + {sheetType === 'cross' && ( + + )} +
+ ), + }; + })} + /> +
+
+ ); +}; + +export const PivotTable = (props: { data: any; active: string }) => { + const { data, active } = props; + const tableRef = useRef(null); + + const [tableOptions, setTableOptions] = useState({}); + useEffect(() => { + tableRef?.current?.tooltip.destroy(); + if (document.fullscreenElement) { + const fullscreenOption = { + ...tableOptions, + ...{ + width: 1300, + tooltip: { + getContainer: () => { + return ( + document.fullscreenElement + ? document.getElementsByClassName( + document.fullscreenElement.className, + )[0] || document.body + : document.body + ) as HTMLElement; + }, + }, + }, + }; + setTableOptions(fullscreenOption); + } else { + setTableOptions({ + ...tableOptions, + ...{ + width: 550, + tooltip: { + getContainer: () => { + return ( + document.fullscreenElement + ? document.getElementsByClassName( + document.fullscreenElement.className, + )[0] || document.body + : document.body + ) as HTMLElement; + }, + }, + }, + }); + } + }, [document.fullscreenElement]); + + useEffect(() => { + tableRef?.current?.tooltip.destroy(); + }, [active]); + const byCols = useMemo(() => { + return getByCols(data) || []; + }, [data]); + + // 生成 switcher 所需要的 fields 结构 + const generateSwitcherFields = (updatedResult) => { + return { + rows: { + items: updatedResult.rows.items.map((i) => ({ ...i, checked: true })), + selectable: false, + allowEmpty: false, + }, + columns: { items: updatedResult.columns.items, selectable: true }, + values: { + selectable: false, + items: updatedResult.values.items, + }, + }; + }; + + const [switcherFields, setSwitcherFields] = useState({}); + useEffect(() => { + setSwitcherFields({ + rows: { + allowEmpty: false, + selectable: false, + items: [{ id: byCols[0], checked: true }], + }, + columns: { + selectable: true, + items: + byCols.length > 1 + ? byCols + .slice(1) + .map((i, index) => + index > 0 ? { id: i, checked: false } : { id: i, checked: true }, + ) + : [{ id: byCols[0], checked: true }], + }, + values: { + selectable: false, + items: [{ id: 'number' }], + }, + }); + + setFieldConfig( + byCols.length < 2 + ? { rows: ['number'], columns: byCols } + : { rows: [byCols[0]], columns: [byCols[1]] }, + ); + + const defaultS2Option = { + width: document.fullscreenElement ? 1300 : 550, + height: 480, + showDefaultHeaderActionIcon: true, + tooltip: { + getContainer: () => { + return ( + document.fullscreenElement + ? document.getElementsByClassName( + document.fullscreenElement.className, + )[0] || document.body + : document.body + ) as HTMLElement; + }, + }, + conditions: { + // text: [ + // { + // field: 'number', + // mapping() { + // return { + // fill: '#', + // }; + // }, + // }, + // ], + background: [ + { + field: 'number', + mapping(value: string | number) { + if (byCols.length === 1) return; + const backgroundColor = getTargetColor( + value, + Math.max(...numberList), + Math.min(...numberList), + ); + return { + fill: backgroundColor as string, + }; + }, + }, + // ...conditionsBackground, + ], + }, + style: { + // 设置高度 + colCfg: { + // height: 48, + // 隐藏数值 (数值挂列头时生效, 即 s2DataConfig.fields.values) + // hideMeasureColumn: true, + }, + }, + interaction: { + copyWithFormat: true, + }, + }; + + setTableOptions(defaultS2Option); + }, [byCols]); + + const [fieldConfig, setFieldConfig] = useState({}); + const onSubmit = (result) => { + const { rows, columns } = result; + + const rowItems = rows.items?.map((i) => i.id); + const colItems = columns.items.filter((i) => i.checked).map((i) => i.id); + + setFieldConfig({ rows: rowItems, columns: colItems }); + setSwitcherFields(generateSwitcherFields(result)); + }; + + if (byCols.length < 1) { + return <>; + } + + const table = transformPivotTableData(data, fieldConfig.columns?.[1]); + const numberList = getNumberList(table); + const s2DataConfig = { + describe: '标准交叉表数据。', + fields: { + ...fieldConfig, + values: ['number'], + valueInCols: true, + }, + meta: [ + { + field: 'number', + name: data.name, + formatter: (value) => value || 0, + }, + ], + data: table, + }; + + return ( + <> + { + tableRef.current = s; + }} + header={{ + className: styles.pivotHeader, + exportCfg: { + open: true, + icon: ( + + ), + dropdown: { + getPopupContainer: () => { + return ( + document.fullscreenElement + ? document.getElementsByClassName( + document.fullscreenElement.className, + )[0] || document.body + : document.body + ) as HTMLElement; + }, + }, + }, + extra: , + }} + /> + {byCols.length > 1 && ( +
+ { + return ( + document.fullscreenElement + ? document.getElementsByClassName( + document.fullscreenElement.className, + )[0] || document.body + : document.body + ) as HTMLElement; + }, + }} + /> +
+ )} + + ); +}; + +const getByCols = (resultObj: ResultOriginData) => { + const result = resultObj.divs[0]?.children[0]; + if (result?.type === 'table') { + const headers = result.table.headers; + return headers + .filter((header) => header.desc === 'key') + .map((header) => header.name); + } +}; + +const transformPivotTableData = (resultObj: ResultOriginData, col: string) => { + const result = resultObj.divs[0]?.children[0]; + const arr: { [key]: string }[] = []; + if (result?.type === 'table') { + const headers = result.table.headers; + const NotRowLength = headers.filter((header) => header.desc === 'value').length; + result.table.rows.forEach((row) => { + const items = row.items; + const objList = Array.from( + { length: NotRowLength }, + () => ({} as Record), + ); + let onjListIndex = 0; + items.forEach((item, index) => { + if (headers[index].desc === 'key') { + const name = headers[index].name; + const type = headers[index].type; + if (type === 'str') { + objList.forEach((obj) => { + obj[name] = item.s; + }); + } + } else { + const type = headers[index].type; + if (type === 'str') { + objList[onjListIndex].number = item.s; + } + onjListIndex++; + } + }); + arr.push(...objList); + }); + } + return arr; +}; + +const getNumberList = (data: { number?: string }[]) => { + return data.map((item) => Math.floor(Number(item?.number || 0))); +}; +const PALETTE_COLORS = [ + '#ffffff', + '#f7fcf5', + '#e5f4e0', + '#c7e9bf', + '#a1d89b', + '#74c476', + '#41ab5d', + '#228b44', + '#016d2c', + '#00441b', +]; + +const PaletteLegend = () => { + return ( +
+
MIN
+ {PALETTE_COLORS.map((color) => ( + + ))} +
MAX
+
+ ); +}; + +// 自定义颜色 +const getTargetColor = (value: number | string, max: number, min: number) => { + if (isNaN(Number(value))) { + return '#ffffff'; + } + const val = Math.floor(Number(value)); + const range = max - min; + const interval = range / 10; + const colors = PALETTE_COLORS; + const index = Math.floor((val - min) / interval); + if (index < 0 || isNaN(index)) { + // 如果小于最小值,返回第一种颜色 + return colors[0]; + } else if (index >= colors.length) { + // 如果大于等于最大值,返回最后一种颜色 + return colors[colors.length - 1]; + } else { + // 返回对应的颜色 + return colors[index]; + } +}; diff --git a/apps/platform/src/modules/dag-result/vis/output-table/index.tsx b/apps/platform/src/modules/dag-result/vis/output-table/index.tsx index 1b4f9f1..bd3257a 100644 --- a/apps/platform/src/modules/dag-result/vis/output-table/index.tsx +++ b/apps/platform/src/modules/dag-result/vis/output-table/index.tsx @@ -6,7 +6,7 @@ import { import { useFullscreen } from 'ahooks'; import { Button, Empty, Space, Table } from 'antd'; import classNames from 'classnames'; -import React, { useRef } from 'react'; +import React, { useEffect, useRef } from 'react'; import { CSVLink } from 'react-csv'; import type { DescriptionList, ResultOriginData } from '../typing'; @@ -35,6 +35,16 @@ export const OutputTable: React.FC = (props) => { } }; + const [isEllipsis, setEllipsis] = React.useState(false); + + useEffect(() => { + if (tableInfo.schema.length > 3) { + setEllipsis(true); + } else { + setEllipsis(false); + } + }, [tableInfo.schema.length]); + if (!tableInfo) { return (
@@ -51,7 +61,6 @@ export const OutputTable: React.FC = (props) => { /> ); } - const columnsList: Columns[] = []; tableInfo.schema.forEach(({ name, type }) => { if (name !== 'name') { @@ -74,7 +83,7 @@ export const OutputTable: React.FC = (props) => { render: (text) => { return (
- {text.length > 12 + {text.length > 12 && isEllipsis ? `${text.slice(0, 6)}...${text.slice(text.length - 6, text.length)}` : text}
@@ -90,7 +99,7 @@ export const OutputTable: React.FC = (props) => { render: (text) => { return (
- {text.length > 12 + {text.length > 12 && isEllipsis ? `${text.slice(0, 6)}...${text.slice(text.length - 6, text.length)}` : text}
diff --git a/apps/platform/src/modules/dag-result/vis/regression-table/index.less b/apps/platform/src/modules/dag-result/vis/regression-table/index.less new file mode 100644 index 0000000..a5e841c --- /dev/null +++ b/apps/platform/src/modules/dag-result/vis/regression-table/index.less @@ -0,0 +1,25 @@ +.tableTab { + margin-top: 24px; +} + +.tabsTable { + position: relative; + + :global { + .ant-tabs-nav::before { + border-bottom: none !important; + } + + .ant-table-container { + border-radius: 0; + } + } + + :global(.ant-tabs-tab) { + padding: 0 0 8px !important; + } + + :global(.ant-tabs-nav) { + margin-bottom: 8px !important; + } +} diff --git a/apps/platform/src/modules/dag-result/vis/regression-table/index.tsx b/apps/platform/src/modules/dag-result/vis/regression-table/index.tsx new file mode 100644 index 0000000..b9deff6 --- /dev/null +++ b/apps/platform/src/modules/dag-result/vis/regression-table/index.tsx @@ -0,0 +1,150 @@ +import { Chart, registerShape } from '@antv/g2'; +import { Tabs } from 'antd'; +import { useEffect, useRef } from 'react'; + +import { getTabsName } from '../../result-report'; +import type { Value } from '../../result-report-types'; +import { TypeMap } from '../../result-report-types'; +import { OutputTable } from '../output-table'; +import type { ResultOriginData } from '../typing'; + +import styles from './index.less'; + +/** + * 通过自定义shape来将图表最小高度设为1 + * 优化图表toolTip难hover问题 + */ +registerShape('interval', 'triangle', { + getPoints(cfg) { + const x = cfg.x as number; + const y = cfg.y as number; + const y0 = cfg.y0 as number; + const width = cfg.size!; + return [ + { x: x - width / 2, y: y0 }, + { x: x - width / 2, y: y }, + { x: x + width / 2, y: y }, + { x: x + width / 2, y: y0 }, + ]; + }, + draw(cfg, group) { + // @ts-expect-error G2 的类型定义中缺少 parsePoints 方法 + const points = this.parsePoints(cfg.points); + const reactHeight = points[0].y - points[1].y; + const minHeight = 1; + let newPoints1 = points[0].y; + let newPoints3 = points[3].y; + if (Math.abs(reactHeight) <= minHeight && Math.abs(reactHeight) > 0) { + newPoints1 = points[1].y - minHeight; + newPoints3 = points[2].y - minHeight; + } + const newPath = [ + ['M', points[0].x, newPoints1], + ['L', points[1].x, points[1].y], + ['L', points[2].x, points[2].y], + ['L', points[3].x, newPoints3], + ]; + const polygon = group.addShape('path', { + attrs: { + path: newPath, + ...cfg.defaultStyle, + }, + }); + return polygon; + }, +}); + +export const RegressionTable = (prop: { data: ResultOriginData[]; id: string }) => { + const { data, id } = prop; + return ( + { + return { + label: getTabsName(item.name, index), + key: `${index}`, + children: ( +
+ {index === 0 ? ( + + ) : ( + + )} +
+ ), + }; + })} + /> + ); +}; + +export const RegressionChart: React.FC = (props: { + data: ResultOriginData; + id: string; +}) => { + const { data, id } = props; + const table = transformRegressionData(data); + const chartRef = useRef(null); + useEffect(() => { + const chartRefDom = chartRef.current; + if (chartRefDom === null) return; + const chart = new Chart({ + height: 300, + container: chartRefDom, + autoFit: true, + padding: [24, 0, 10, 50], + }); + chart.data(table || []); + + chart.axis('name', { + label: null, + }); + + chart.axis('count', {}); + + chart.tooltip({ + crosshairs: { + type: 'xy', + }, + }); + + chart.interval().position('name*count').shape('triangle'); + chart.render(); + // eslint-disable-next-line react-hooks/exhaustive-deps + return () => { + chart.destroy(); + }; + }, [data, id]); + return
; +}; + +interface IDistributionChartProps { + data: ResultOriginData; + id: string; +} + +const transformRegressionData = (resultObj: ResultOriginData) => { + const result = resultObj.divs[0]?.children[0]; + const arr: { [key]: string }[] = []; + if (result?.type === 'table') { + const headers = result.table.headers; + const nameList = result.table.rows[0].items; + const countList = result.table.rows[1].items; + nameList.forEach((item, index, list) => { + const type = headers[index].type as keyof typeof TypeMap; + const key = TypeMap[type] as keyof Value; + const value = item[key]; + if (index > 0) { + const leftValue = list[index - 1][key]; + const name = `[${leftValue},${value})`; + const countObj = countList[index - 1]; + arr.push({ + name, + count: countObj[key], + }); + } + }); + } + return arr; +}; diff --git a/apps/platform/src/modules/dag-result/vis/utils.ts b/apps/platform/src/modules/dag-result/vis/utils.ts index f40da32..84460a4 100644 --- a/apps/platform/src/modules/dag-result/vis/utils.ts +++ b/apps/platform/src/modules/dag-result/vis/utils.ts @@ -1,3 +1,5 @@ +import type { Item, Descriptions } from '../result-report-types'; + import type { ResultOriginData } from './typing'; export function parseData( @@ -77,27 +79,49 @@ export const lexicographicalOrder = (a: string, b: string) => { }; export const modifyDataStructure = (resultObj: ResultOriginData) => { - const result = resultObj.divs[0].children[0]; - if (result.type === 'descriptions') { - const records = result.descriptions.items?.map((item) => { - let value: number | string | boolean | undefined = '-'; - if (item.type === 'AT_INT' || item.type === 'int') { - value = item.value?.i64 ?? '-'; - } - if (item.type === 'float' || item.type === 'AT_FLOAT') { - value = item.value?.f ?? '-'; - } - if (item.type === 'str' || item.type === 'AT_STRING') { - value = item.value?.s ?? '-'; - } - if (item.type === 'bool' || item.type === 'AT_BOOL') { - value = item.value?.b ?? '-'; - } - return { - name: item.name, - value, - }; - }); + const result = resultObj.divs[0]?.children[0]; + if (result?.type === 'descriptions') { + const records = resultObj.divs + ?.reduce( + (ret, div) => + div?.children + ? ret.concat( + div.children.reduce( + ( + childrenRet, + { + descriptions, + type, + }: { type: string; descriptions?: Descriptions }, + ) => + type === 'descriptions' && descriptions && descriptions?.items + ? childrenRet.concat(descriptions.items) + : childrenRet, + [], + ), + ) + : ret, + [], + ) + .map((item) => { + let value: number | string | boolean | undefined = '-'; + if (item.type === 'AT_INT' || item.type === 'int') { + value = item.value?.i64 ?? '-'; + } + if (item.type === 'float' || item.type === 'AT_FLOAT') { + value = item.value?.f ?? '-'; + } + if (item.type === 'str' || item.type === 'AT_STRING') { + value = item.value?.s ?? '-'; + } + if (item.type === 'bool' || item.type === 'AT_BOOL') { + value = item.value?.b ?? '-'; + } + return { + name: item.name, + value, + }; + }); const schemaHeader = result.descriptions.items.map((item) => ({ name: item.name, type: item.type, @@ -109,7 +133,7 @@ export const modifyDataStructure = (resultObj: ResultOriginData) => { }; } - if (result.type === 'table') { + if (result?.type === 'table') { const arr = result.table; const recordList = arr.rows.map((row, i) => { const { items, name = i } = row; @@ -143,9 +167,9 @@ export const modifyDataStructure = (resultObj: ResultOriginData) => { // 转换相关系数矩阵需要的数据格式 export const transformCorrMatrixData = (resultObj: ResultOriginData) => { - const result = resultObj.divs[0].children[0]; + const result = resultObj.divs[0]?.children[0]; const records: string[][] = []; - if (result.type === 'table') { + if (result?.type === 'table') { const headers = result.table.headers; result.table.rows.forEach((row) => { const name = row.name; diff --git a/apps/platform/src/modules/data-table-add/component/upload-table/data-table-add-for-registerd-node.tsx b/apps/platform/src/modules/data-table-add/component/upload-table/data-table-add-for-registerd-node.tsx index 8e129d7..0fc1f82 100644 --- a/apps/platform/src/modules/data-table-add/component/upload-table/data-table-add-for-registerd-node.tsx +++ b/apps/platform/src/modules/data-table-add/component/upload-table/data-table-add-for-registerd-node.tsx @@ -1,3 +1,5 @@ +/** DEPRECATED */ +/** Data table will be added by dragging */ import { DeleteOutlined, PlusOutlined } from '@ant-design/icons'; import { Space, @@ -287,7 +289,11 @@ export const AddDataTableForRegisteredNode = () => { validateTrigger="onBlur" rules={[ { required: true, message: '请输入特征名称' }, - { max: 32, message: '特征名称长度限制32字符' }, + { + max: 64, + message: + '特征名称长度限制64字符,请缩短特征名,需要同步修改本地数据文件schema', + }, { pattern: /^([a-zA-Z0-9-_]*)$/, message: '名称可由英文/数字/下划线/中划线组成', diff --git a/apps/platform/src/modules/data-table-add/component/upload-table/index.less b/apps/platform/src/modules/data-table-add/component/upload-table/index.less index d57f9e1..838151b 100644 --- a/apps/platform/src/modules/data-table-add/component/upload-table/index.less +++ b/apps/platform/src/modules/data-table-add/component/upload-table/index.less @@ -168,7 +168,7 @@ .tableColsTitle { display: flex; - padding-top: 16px; + padding-top: 24px; margin-bottom: 8px; } diff --git a/apps/platform/src/modules/data-table-add/component/upload-table/upload-table.view.tsx b/apps/platform/src/modules/data-table-add/component/upload-table/upload-table.view.tsx index 48dc3fe..992c971 100644 --- a/apps/platform/src/modules/data-table-add/component/upload-table/upload-table.view.tsx +++ b/apps/platform/src/modules/data-table-add/component/upload-table/upload-table.view.tsx @@ -153,9 +153,6 @@ export const UploadTable: React.FC = ({ setDisabled }) => { viewInstance.uploadingHandler(a); }} maxCount={1} - customRequest={() => { - return; - }} > 重新上传 @@ -291,7 +288,11 @@ export const UploadTable: React.FC = ({ setDisabled }) => { validateTrigger="onBlur" rules={[ { required: true, message: '请输入特征名称' }, - { max: 32, message: '特征名称长度限制32字符' }, + { + max: 64, + message: + '特征名称长度限制64字符,请缩短特征名,需要同步修改本地数据文件schema', + }, { pattern: /^([a-zA-Z0-9-_]*)$/, message: '名称可由英文/数字/下划线/中划线组成', @@ -603,25 +604,30 @@ export class UploadTableView extends Model { } async submit() { - this.submitting = true; - const validateRes = await this.validateForm(); - const values = validateRes; - - const res = await createData({ - nodeId: this.nodeService.currentNode?.nodeId || '', - name: this.fileInfo?.name, - tableName: values.tbl_name, - description: values.tbl_desc, - datatableSchema: values.schema, - realName: this.fileInfo?.realName, - }); - - this.submitting = false; - if (res.status?.code === 0) { - message.success('添加成功'); - } else { - message.error(res.status?.msg || '添加失败'); - throw new Error('保存失败'); + try { + this.submitting = true; + const validateRes = await this.validateForm(); + const values = validateRes; + + const res = await createData({ + nodeId: this.nodeService.currentNode?.nodeId || '', + name: this.fileInfo?.name, + tableName: values.tbl_name, + description: values.tbl_desc, + datatableSchema: values.schema, + realName: this.fileInfo?.realName, + }); + + this.submitting = false; + if (res.status?.code === 0) { + message.success('添加成功'); + } else { + message.error(res.status?.msg || '添加失败'); + throw new Error('保存失败'); + } + } catch (e) { + this.submitting = false; + throw e; } } diff --git a/apps/platform/src/modules/data-table-add/data-table-add-by-source.view.tsx b/apps/platform/src/modules/data-table-add/data-table-add-by-source.view.tsx index 9133973..41d0ee8 100644 --- a/apps/platform/src/modules/data-table-add/data-table-add-by-source.view.tsx +++ b/apps/platform/src/modules/data-table-add/data-table-add-by-source.view.tsx @@ -1,3 +1,5 @@ +/** DEPRECATED */ +/** Data table will be added by dragging */ import { Button, Space } from 'antd'; import { Drawer } from 'antd'; import { debounce } from 'lodash'; diff --git a/apps/platform/src/modules/data-table-info/component/data-table-auth/data-table-auth.view.tsx b/apps/platform/src/modules/data-table-info/component/data-table-auth/data-table-auth.view.tsx index 77660c1..d9d63b5 100644 --- a/apps/platform/src/modules/data-table-info/component/data-table-auth/data-table-auth.view.tsx +++ b/apps/platform/src/modules/data-table-info/component/data-table-auth/data-table-auth.view.tsx @@ -14,12 +14,7 @@ import { } from 'antd'; import React, { useEffect } from 'react'; -import { - AccessWrapper, - PadMode, - Platform, - hasAccess, -} from '@/components/platform-wrapper'; +import { PadMode, Platform, hasAccess } from '@/components/platform-wrapper'; import { formatTimestamp } from '@/modules/dag-result/utils'; import { NodeService } from '@/modules/node'; import { @@ -363,6 +358,7 @@ export class DataTableAuth extends Model { { colName: item.key, isAssociateKey: true, + isProtection: true, }, ]; diff --git a/apps/platform/src/modules/data-table-info/data-table-auth-drawer.tsx b/apps/platform/src/modules/data-table-info/data-table-auth-drawer.tsx index d08e9b2..5510efd 100644 --- a/apps/platform/src/modules/data-table-info/data-table-auth-drawer.tsx +++ b/apps/platform/src/modules/data-table-info/data-table-auth-drawer.tsx @@ -2,7 +2,8 @@ import { CloseOutlined } from '@ant-design/icons'; import { Drawer } from 'antd'; import React from 'react'; -import { DataTableAuthComponent } from './component/data-table-auth/data-table-auth.view'; +// import { DataTableAuthComponent } from './component/data-table-auth/data-table-auth.view'; +import { DataTableAuth as DataTableAuthComponent } from './data-table-auth/data-tabel-auth.view'; export enum DataAuthDrawerArea { Auth = 'Auth', @@ -29,6 +30,7 @@ export const DataTableAuth: React.FC> = ({ closable={false} > + {/* */} ); }; diff --git a/apps/platform/src/modules/data-table-info/data-table-auth/data-tabel-auth.view.tsx b/apps/platform/src/modules/data-table-info/data-table-auth/data-tabel-auth.view.tsx new file mode 100644 index 0000000..5152d47 --- /dev/null +++ b/apps/platform/src/modules/data-table-info/data-table-auth/data-tabel-auth.view.tsx @@ -0,0 +1,160 @@ +import { PlusOutlined } from '@ant-design/icons'; +import { Button, message, Popconfirm, Space, Tag, Table } from 'antd'; +import { parse } from 'query-string'; +import React, { useEffect } from 'react'; + +import { formatTimestamp } from '@/modules/dag-result/utils'; +import { DataManagerView } from '@/modules/data-manager/data-manager.view'; +import { NodeService } from '@/modules/node'; +import { ComputeModeType, computeModeText } from '@/modules/project-list'; +import { getDatatable } from '@/services/secretpad/DatatableController'; +import { deleteProjectDatatable } from '@/services/secretpad/ProjectController'; +import { getModel, Model, useModel } from '@/util/valtio-helper'; + +import styles from './index.less'; +import type { ProjectAuthConfigType } from './project-auth-config'; +import { ProjectAuthConfigDrawer } from './project-auth-config'; + +interface IProps { + tableInfo: API.DatatableVO; + size: 'small' | 'large' | 'middle' | undefined; +} + +export const DataTableAuth: React.FC = (props: IProps) => { + const viewInstance = useModel(DataTableAuthModel); + const { tableInfo, size } = props; + + useEffect(() => { + viewInstance.getTableInfo(tableInfo); + }, [viewInstance, tableInfo]); + + const columns = [ + { + title: '已授权项目', + dataIndex: 'name', + key: 'name', + ellipsis: true, + width: '30%', + render: (text: string, record: API.AuthProjectVO) => ( +
+ + {computeModeText[record?.computeMode as keyof typeof computeModeText] || + computeModeText[ComputeModeType.MPC]} + + {text} +
+ ), + }, + { + title: '授权时间', + dataIndex: 'gmtCreate', + key: 'gmtCreate', + ellipsis: true, + width: '30%', + render: (gmtCreate: string) => ( +
{formatTimestamp(gmtCreate as string)}
+ ), + }, + { + title: '操作', + dataIndex: 'options', + key: 'options', + ellipsis: true, + width: '30%', + render: (text: string, record: API.AuthProjectVO) => ( + + viewInstance.cancelAuth(record, tableInfo)} + okText="确定" + cancelText="取消" + > + 取消授权 + + viewInstance.openProjectAuthDrawer('EDIT', record)}> + 配置授权 + + + ), + }, + ]; + + return ( +
+ +
record.projectId as string} + /> + (viewInstance.showProjectAuthDrawer = false)} + data={viewInstance.projectAuthRecord} + type={viewInstance.projectAuthConfigType} + tableInfo={viewInstance.tableInfo} + onOk={() => viewInstance.getTableInfo(viewInstance.tableInfo)} + /> + + ); +}; + +export class DataTableAuthModel extends Model { + nodeService = getModel(NodeService); + dataManagerViewService = getModel(DataManagerView); + + projectAuthRecord: API.AuthProjectVO | undefined = undefined; + + showProjectAuthDrawer = false; + + projectAuthConfigType: ProjectAuthConfigType = 'ADD'; + + openProjectAuthDrawer = (type: ProjectAuthConfigType, record?: any) => { + if (type === 'EDIT') { + this.projectAuthRecord = record; + } + this.projectAuthConfigType = type; + this.showProjectAuthDrawer = true; + }; + + projectAuthList: API.AuthProjectVO[] = []; + + tableInfo: API.DatatableVO = {}; + + async getTableInfo(tableInfo: API.DatatableVO) { + const { nodeId } = parse(window.location.search); + const response = await getDatatable({ + datatableId: tableInfo.datatableId, + nodeId: nodeId as string, + }); + this.tableInfo = response.data || {}; + this.projectAuthList = [...(this.tableInfo.authProjects || [])].reverse() || []; + } + + async cancelAuth(item: API.AuthProjectVO, tableInfo: API.DatatableVO) { + const res = await deleteProjectDatatable({ + projectId: item.projectId, + nodeId: this.nodeService.currentNode?.nodeId, + datatableId: tableInfo.datatableId, + }); + + if (res.status?.code == 0) { + message.success('取消成功'); + this.dataManagerViewService.getTableList(); + } else { + message.error('操作失败'); + } + await this.getTableInfo(tableInfo); + } +} diff --git a/apps/platform/src/modules/data-table-info/data-table-auth/index.less b/apps/platform/src/modules/data-table-info/data-table-auth/index.less new file mode 100644 index 0000000..0d98a27 --- /dev/null +++ b/apps/platform/src/modules/data-table-info/data-table-auth/index.less @@ -0,0 +1,4 @@ +.addAuthBtn { + margin-bottom: 12px; + float: right; +} diff --git a/apps/platform/src/modules/data-table-info/data-table-auth/project-auth-config/index.less b/apps/platform/src/modules/data-table-info/data-table-auth/project-auth-config/index.less new file mode 100644 index 0000000..e278e3f --- /dev/null +++ b/apps/platform/src/modules/data-table-info/data-table-auth/project-auth-config/index.less @@ -0,0 +1,46 @@ +.drawerTitleText { + overflow: hidden; + max-width: 200px; + margin-right: 4px; + text-overflow: ellipsis; + white-space: nowrap; +} + +.fields { + label { + width: 100%; + } +} + +.fieldsTip { + display: flex; + width: 100%; + align-items: center; + justify-content: space-between; + + .tips { + color: rgb(0 0 0 / 88%); + font-size: 14px; + font-weight: 500; + line-height: 22px; + } + + .linkTips { + margin-right: -4px; + } +} + +.selectProject { + display: flex; + align-items: baseline; + gap: 10px; +} + +.emptyProject { + height: 168px; + padding-top: 50px; + border-radius: 6px; + margin-left: 0; + background-color: #f5f5f5; + margin-block: 0 !important; +} diff --git a/apps/platform/src/modules/data-table-info/data-table-auth/project-auth-config/index.tsx b/apps/platform/src/modules/data-table-info/data-table-auth/project-auth-config/index.tsx new file mode 100644 index 0000000..9f21f27 --- /dev/null +++ b/apps/platform/src/modules/data-table-info/data-table-auth/project-auth-config/index.tsx @@ -0,0 +1,264 @@ +import { CloseOutlined, LeftOutlined } from '@ant-design/icons'; +import { + Button, + Drawer, + Form, + Typography, + Select, + Space, + message, + Empty, + Tag, +} from 'antd'; +import { parse } from 'query-string'; +import React, { useEffect, useState } from 'react'; + +import { hasAccess, Platform } from '@/components/platform-wrapper'; +import { DataManagerView } from '@/modules/data-manager/data-manager.view'; +import { ComputeModeType, computeModeText } from '@/modules/project-list'; +import { listP2PProject } from '@/services/secretpad/P2PProjectController'; +import { + listProject, + getProjectDatatable, + addProjectDatatable, + updateProjectTableConfig, +} from '@/services/secretpad/ProjectController'; +import { Model, useModel } from '@/util/valtio-helper'; + +import { SafeSettingModal } from '../safe-setting-modal.tsx'; + +import styles from './index.less'; +import { ProjectTableField } from './project-table-field'; + +export type ProjectAuthConfigType = 'ADD' | 'EDIT'; + +const { Link } = Typography; + +export const ProjectAuthConfigDrawer = ({ + open, + onClose, + type, + tableInfo, + data, + onOk, +}: { + open: boolean; + onClose: () => void; + type: ProjectAuthConfigType; + tableInfo: API.DatatableVO; // 原始schema, 只有添加授权的时候才会用到 + data?: API.AuthProjectVO; // 编辑授权的时候使用的关于项目的信息 + onOk?: () => void; +}) => { + const [form] = Form.useForm(); + const { nodeId } = parse(window.location.search); + + const viewInstance = useModel(ProjectAuthConfigModel); + const dataManagerViewService = useModel(DataManagerView); + + const selectedProject = Form.useWatch('project', form); + + const [projectOptions, setProjectOptions] = useState< + { label: JSX.Element | string; value: string }[] + >([]); + + const onDrawerClose = () => { + onClose(); + form.resetFields(); + }; + + useEffect(() => { + const getProjectList = async () => { + const isP2p = hasAccess({ type: [Platform.AUTONOMY] }); + + const { data, status } = isP2p ? await listP2PProject() : await listProject(); + if (status?.code !== 0) { + setProjectOptions([]); + return; + } else { + const projectData = isP2p + ? (data || []).filter((item) => item.status === 'APPROVED') + : data || []; + setProjectOptions( + projectData.map((item) => ({ + value: item.projectId!, + label: ( +
+ + {computeModeText[item.computeMode as keyof typeof computeModeText] || + computeModeText[ComputeModeType.MPC]} + +
{item.projectName}
+
+ ), + })), + ); + } + }; + if (type === 'ADD' && open) { + getProjectList(); + } + }, [type, open]); + + useEffect(() => { + // 选择项目后,设置schema原始表信息 tableInfo + if (selectedProject) { + form.setFieldsValue({ + fields: tableInfo.schema, + }); + } + }, [selectedProject]); + + React.useEffect(() => { + const getProjectDatatableRequest = async () => { + const res = await getProjectDatatable({ + projectId: data?.projectId, + nodeId: nodeId as string, + datatableId: tableInfo.datatableId, + }); + if (res?.status?.code === 0) { + form.setFieldsValue({ + fields: res?.data?.configs || [], + }); + } + }; + // 获取编辑数据 + if (type === 'EDIT' && data && open) { + getProjectDatatableRequest(); + } + }, [data, type, open]); + + const onSave = async () => { + const value = await form.validateFields(); + if (type === 'ADD') { + const res = await addProjectDatatable({ + projectId: value.project, + nodeId: nodeId as string, + datatableId: tableInfo.datatableId, + configs: value.fields, + }); + if (res.status?.code == 0) { + message.success('授权成功'); + dataManagerViewService.getTableList(); + onDrawerClose(); + onOk && onOk(); + } else { + message.error(res.status?.msg); + } + } else if (type === 'EDIT') { + if (!value.fields) return; + const res = await updateProjectTableConfig({ + projectId: data?.projectId, + nodeId: nodeId as string, + datatableId: tableInfo.datatableId, + configs: value.fields, + }); + if (res.status?.code == 0) { + message.success('授权修改成功'); + onDrawerClose(); + } else { + message.error(res.status?.msg); + } + } + }; + + return ( + + {type === 'ADD' && ( + + 添加授权项目 + + )} + {type === 'EDIT' && ( + + +
+ 「 + + {computeModeText[data?.computeMode as keyof typeof computeModeText] || + computeModeText[ComputeModeType.MPC]} + +
{data?.name}
」 配置授权 +
+
+ )} + + } + extra={} + open={open} + placement="right" + closable={false} + onClose={onDrawerClose} + footer={ + + + + + } + > + <> + + {type === 'ADD' && ( +
+
关联项目:
+ +
record.colName as string} + columns={columns} + pagination={{ showSizeChanger: false }} + /> + ); +}; diff --git a/apps/platform/src/modules/data-table-info/data-table-auth/reademe.md b/apps/platform/src/modules/data-table-info/data-table-auth/reademe.md new file mode 100644 index 0000000..23205e6 --- /dev/null +++ b/apps/platform/src/modules/data-table-info/data-table-auth/reademe.md @@ -0,0 +1,2 @@ +这个文件夹下代码属于车险需求代码视觉: +https://done.alibaba-inc.com/file/TYrxgfwK25ys/MmpLFFqGSs01mIjw/preview?m=SPECS&aid=750E996B-28F6-483B-97AE-0CDB6DFBBC02&pageId=D8760893-E92B-437D-BF46-9C2383BD2A58 diff --git a/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/index.less b/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/index.less new file mode 100644 index 0000000..7b6bf44 --- /dev/null +++ b/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/index.less @@ -0,0 +1,178 @@ +.safeSettingModal { + padding: 0; + + :global { + .ant-modal-header { + display: flex; + height: 64px; + align-items: center; + padding-left: 24px; + border-bottom: 1px solid #e5e5e5; + margin-bottom: 0 !important; + color: rgb(0 0 0 / 88%); + font-size: 16px; + font-weight: 500; + line-height: 24px; + } + + .ant-modal-content { + padding: 0; + } + } +} + +.content { + display: flex; + width: 100%; + height: 743px; + + .left { + width: 260px; + height: 743px; + box-sizing: border-box; + flex-basis: 260px; + padding: 24px; + border-radius: 0 0 0 8px; + background-color: #f5f5f5; + } + + .right { + height: 743px; + flex: 1; + padding: 24px 16px; + + .desc { + width: 636px; + margin-bottom: 16px; + color: rgb(0 0 0 / 88%); + font-size: 12px; + font-weight: 400; + line-height: 20px; + } + + .table { + :global { + .highlight-row { + background-color: #faad14; + } + + .highlight-col { + background-color: #fff; + } + } + + .safeConfigTable { + :global { + .ant-table-content { + .ant-table-thead > tr > th { + background-color: #fafafa !important; + } + } + } + } + } + + .code { + position: relative; + height: 456px; + margin-top: 16px; + + .codeTitle { + position: absolute; + top: 12px; + right: 16px; + display: flex; + align-items: center; + color: rgb(0 0 0 / 65%); + font-size: 14px; + font-weight: 400; + gap: 24px; + line-height: 16px; + + .copy { + color: rgb(0 0 0 / 65%); + } + + :global { + .ant-typography { + margin-bottom: 0; + + svg { + margin-right: 8px; + color: rgb(0 0 0 / 65%); + } + } + } + } + + .codeContent { + overflow: auto; + width: 100%; + height: 100%; + background-color: #f5f5f5 !important; + } + } + } +} + +.checkBox { + display: flex; + width: 212px; + height: 74px; + box-sizing: border-box; + align-items: center; + justify-content: space-around; + padding: 16px 12px; + border: 1px solid #e8e9ea; + border-radius: 4px; + margin-bottom: 16px; + background-color: #fff; + cursor: pointer; + + &:hover { + border: 1px solid #0068fa; + transition: all 0.3s; + } + + .box { + display: flex; + flex-direction: column; + align-items: center; + + div { + margin-bottom: 4px; + color: rgb(0 0 0 / 55%); + font-size: 12px; + font-weight: 400; + line-height: 18px; + text-align: center; + } + + span { + color: rgb(0 0 0 / 85%); + font-size: 12px; + font-weight: 500; + line-height: 20px; + text-align: center; + } + } +} + +.checkReady { + position: relative; + border: 1px solid #0068fa; + + &::after { + position: absolute; + top: 0; + right: -4px; + display: block; + width: 0; + height: 0; + border-top: 10px solid #0068fa; + border-right: 10px solid transparent; + border-left: 10px solid transparent; + content: ''; + transform: rotate(227deg); + } +} diff --git a/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/index.tsx b/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/index.tsx new file mode 100644 index 0000000..c80a987 --- /dev/null +++ b/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/index.tsx @@ -0,0 +1,163 @@ +import { CopyOutlined } from '@ant-design/icons'; +import { Modal, Table, Typography } from 'antd'; +import classNames from 'classnames'; +import { useState } from 'react'; + +import ReactHightLighter from '@/components/react-hight-lighter'; + +import styles from './index.less'; +import { KeyTypes, QuerySql, SafeConfigTableData, safeConfigData } from './safe-data'; + +export const SafeSettingModal = ({ + open, + onClose, +}: { + open: boolean; + onClose: () => void; +}) => { + const [checkReady, setCheckReady] = useState(0); + + const columns = [ + { + title: 'Owned By', + dataIndex: 'ownedBy', + width: 90, + className: 'highlight-col', + onCell: (_: string, index: number) => { + if (index === 0 || index === 2) { + return { rowSpan: 2 }; + } + if (index === 1 || index === 3) { + return { colSpan: 0 }; + } + return {}; + }, + }, + { + title: 'Table', + dataIndex: 'Table', + className: 'highlight-col', + onCell: (_: string, index: number) => { + if (index === 0 || index === 2) { + return { rowSpan: 2 }; + } + if (index === 1 || index === 3) { + return { colSpan: 0 }; + } + }, + }, + { + title: 'Column', + dataIndex: 'column', + }, + { + title: 'Type', + dataIndex: 'Type', + }, + { + title: '关联键', + dataIndex: 'correlationKey', + width: 60, + }, + { + title: '分组列', + dataIndex: 'groupKey', + width: 60, + }, + { + title: '保护开关', + dataIndex: 'auth', + width: 75, + }, + { + title: '保护意图', + dataIndex: 'desc', + width: 180, + }, + ]; + + return ( + +
+
+ {safeConfigData.map((item: { [key: string]: any }, index) => { + return ( +
setCheckReady(index)} + key={item.key} + > + {KeyTypes.map((keyItem: { label: string; keys: string }) => ( +
+
{keyItem.label}
+ {item[keyItem.keys]} +
+ ))} +
+ ); + })} +
+
+
+ {safeConfigData[checkReady].desclist.map((item) => ( +
{item}
+ ))} +
+
+ {checkReady !== 3 && ( +
record.key} + pagination={false} + rowClassName={(record) => { + return record.highlight === checkReady ? 'highlight-row' : ''; + }} + className={styles.safeConfigTable} + /> + )} + +
+ {QuerySql[safeConfigData[checkReady].key] && ( +
+
SQL
+ + + 复制代码 + , + ], + }} + /> +
+ )} + {QuerySql[safeConfigData[checkReady].key] && ( + + )} +
+ + + + ); +}; diff --git a/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/safe-data.ts b/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/safe-data.ts new file mode 100644 index 0000000..96caf6f --- /dev/null +++ b/apps/platform/src/modules/data-table-info/data-table-auth/safe-setting-modal.tsx/safe-data.ts @@ -0,0 +1,202 @@ +export enum CaseKey { + NoCorrelationNoGroupAuth = '0-0-1', + CorrelationNoGroupAuth = '1-0-1', + NoCorrelationGroupAuth = '0-1-1', + NoCorrelationNoGroupNoAuth = '0-0-0', +} + +export const safeConfigData = [ + { + key: CaseKey.NoCorrelationNoGroupAuth, + correlationKey: '关', + groupKey: '关', + auth: '开', + desclist: [ + '不能用做关联键,不能用做分组键。经比较函数、聚合函数处理后,才能出现在SELECT的分析结果中', + ], + }, + { + key: CaseKey.CorrelationNoGroupAuth, + correlationKey: '开', + groupKey: '关', + auth: '开', + desclist: [ + '可以用做关联键,不能用做分组键。经比较函数、聚合函数处理后,才能出现在SELECT的分析结果中', + ], + }, + { + key: CaseKey.NoCorrelationGroupAuth, + correlationKey: '关', + groupKey: '开', + auth: '开', + desclist: [ + '不可以用做关联键,能用做分组键。经比较函数、聚合函数、或 GROUP-BY 处理后,才能出现在SELECT的分析结果中', + ], + }, + { + key: CaseKey.NoCorrelationNoGroupNoAuth, + correlationKey: '关', + groupKey: '关', + auth: '关', + desclist: [ + '任意操作,可以用作关联键,可以用作分组键。可以直接出现在SELECT的分析结果中', + '注意:关闭保护时,字段数值可以明文透出在结果中,字段可以任意操作', + ], + }, +]; + +export const KeyTypes = [ + { + label: '关联键', + keys: 'correlationKey', + }, + { + label: '分组列', + keys: 'groupKey', + }, + { + label: '保护开关', + keys: 'auth', + }, +]; + +export const QuerySql = { + [CaseKey.NoCorrelationNoGroupAuth]: ` # 不能执行成功,试图套出某个id对应的label + select + tb.label + from + ta join tb + on ta.id_a = tb.id_b + where ta.id_a = "123"; + + # 不能执行成功,试图拿到所有交集id的label + select + tb.label + from + ta join tb + on ta.id_a = tb.id_b; + + # 每组样本数均不小于3时,能执行成功,不拿个体的分箱值、label,也不会拿出具体的id值 + # 存在分组样本数小于3时,不能执行成功,有套出个体分箱值、label的风险 + select + ta.pred_a_binned, + count(*), + sum(tb.label) + from + ta join tb + on ta.id_a = tb.id_b + group by + ta.pred_a_binned;`, + [CaseKey.CorrelationNoGroupAuth]: ` # 不能执行成功,试图拿到具体id值 + select + id_a + from + ta join tb + on ta.id_a = tb.id_b; + + # 不能执行成功,试图套出某个id值 + select + max(id_a) + from + ta join tb + on ta.id_a = tb.id_b; + + # 可以执行成功,不会泄露个体的id值 + select + count(*) + from + ta join tb + on ta.id_a = tb.id_b + group by + ta.pred_a_binned; + + # 每组样本数均不小于3时,能执行成功,不拿个体的分箱值、label,也不会拿出具体的id值 + # 存在分组样本数小于3时,不能执行成功,有套出个体分箱值、label的风险 + select + ta.pred_a_binned, + count(*), + sum(tb.label) + from + ta join tb + on ta.id_a = tb.id_b + group by + ta.pred_a_binned;`, + [CaseKey.NoCorrelationGroupAuth]: ` # 不能执行成功,试图套出某个id对应的分箱值 + select + ta.pred_a_binned + from + ta join tb + on ta.id_a = tb.id_b + where ta.id_a = "123"; + + # 不能执行成功,试图拿到所有交集id的明细分箱值 + select + ta.pred_a_binned + from + ta join tb + on ta.id_a = tb.id_b; + + # 每组样本数均不小于3时,能执行成功,不拿个体的分箱值、label,也不会拿出具体的id值 + # 存在分组样本数小于3时,不能执行成功,有套出个体分箱值、label的风险 + select + ta.pred_a_binned, + count(*), + sum(tb.label) + from + ta join tb + on ta.id_a = tb.id_b + group by + ta.pred_a_binned;`, + [CaseKey.NoCorrelationNoGroupNoAuth]: '', +}; + +export const SafeConfigTableData = [ + { + key: '1', + ownedBy: 'Ant', + Table: 'ta', + column: 'id_a', + Type: 'STRING', + correlationKey: '开', + groupKey: '关', + auth: '开', + desc: '任意id明文不会透出', + highlight: 1, + }, + { + key: '2', + ownedBy: 'Ant', + Table: 'ta', + column: 'pred_a_binned', + Type: 'INT', + correlationKey: '关', + groupKey: '开', + auth: '开', + desc: '不能拿到个体的分箱值', + highlight: 2, + }, + { + key: '3', + ownedBy: 'Bank', + Table: 'tb', + column: 'id_b', + Type: 'STRING', + correlationKey: '开', + groupKey: '关', + auth: '开', + desc: '任意id明文不会透出', + highlight: 1, + }, + { + key: '4', + ownedBy: 'Bank', + Table: 'tb', + column: 'label', + Type: 'INT', + correlationKey: '关', + groupKey: '关', + auth: '开', + desc: '不能拿到个体的label值', + highlight: 0, + }, +]; diff --git a/apps/platform/src/modules/data-table-info/data-table-info.view.tsx b/apps/platform/src/modules/data-table-info/data-table-info.view.tsx index 50ef6a2..69ff27a 100644 --- a/apps/platform/src/modules/data-table-info/data-table-info.view.tsx +++ b/apps/platform/src/modules/data-table-info/data-table-info.view.tsx @@ -38,11 +38,11 @@ export const DataTableInfoDrawer: React.FC> = (props) => { label: '数据表结构', children: , }, - { - key: '2', - label: '授权信息', - children: , - }, + // { + // key: '2', + // label: '授权信息', + // children: , + // }, ]; return ( diff --git a/apps/platform/src/modules/layout/dag-layout/index.tsx b/apps/platform/src/modules/layout/dag-layout/index.tsx index 3aa740e..d5d28d9 100644 --- a/apps/platform/src/modules/layout/dag-layout/index.tsx +++ b/apps/platform/src/modules/layout/dag-layout/index.tsx @@ -7,6 +7,7 @@ import { useEffect } from 'react'; import { history } from 'umi'; import { AccessWrapper, Platform } from '@/components/platform-wrapper'; +import BinningResultDrawer from '@/modules/component-config/config-item-render/custom-render/binning-modification/drawer'; import { componentConfigDrawer, ComponentConfigDrawer, @@ -186,6 +187,8 @@ export const DagLayout = () => {
+ {/* 分箱修改 drawer 独立不与 modalManager 耦合:解决执行算子的时候不关闭 modal 问题 */} + ); }; diff --git a/apps/platform/src/modules/login/login.service.ts b/apps/platform/src/modules/login/login.service.ts index 1b6c0b5..b59e13e 100644 --- a/apps/platform/src/modules/login/login.service.ts +++ b/apps/platform/src/modules/login/login.service.ts @@ -14,13 +14,10 @@ export class LoginService extends Model { userInfo: User | null = null; async login(loginField: { name: string; password: string }) { - return await API.AuthController.login( - {}, - { - name: loginField.name, - passwordHash: sha256(loginField.password).toString(), - }, - ); + return await API.AuthController.login({ + name: loginField.name, + passwordHash: sha256(loginField.password).toString(), + }); } getUserInfo = async () => { @@ -31,6 +28,12 @@ export class LoginService extends Model { return this.userInfo; }; + getUserInfoAsync = async () => { + const { data } = await API.UserController.get(); + this.userInfo = data as User; + return this.userInfo; + }; + resetUserPwd = async ( name: string, currentPwd: string, diff --git a/apps/platform/src/modules/main-dag/graph-hook-service.ts b/apps/platform/src/modules/main-dag/graph-hook-service.ts index 5998de9..a69ada8 100644 --- a/apps/platform/src/modules/main-dag/graph-hook-service.ts +++ b/apps/platform/src/modules/main-dag/graph-hook-service.ts @@ -7,6 +7,11 @@ import { getModel } from '@/util/valtio-helper'; import type { ComputeMode } from '../component-tree/component-protocol'; import { DefaultComponentTreeService } from '../component-tree/component-tree-service'; +const DISTDATA_TYPE = { + REPORT: 'sf.report', + READ_DATA: 'sf.read_data', +}; + export class GraphHookService extends DefaultHookService { componentService = getModel(DefaultComponentTreeService); @@ -26,6 +31,14 @@ export class GraphHookService extends DefaultHookService { const results: GraphNodeOutput[] = []; const { outputs } = component; outputs?.forEach((output, index) => { + if ( + output.types && + output.types[0] && + [DISTDATA_TYPE.READ_DATA].includes(output.types[0]) + ) { + return; + } + results.push({ id: `${nodeId}-output-${index}`, name: output.name, @@ -38,6 +51,13 @@ export class GraphHookService extends DefaultHookService { return []; } + /** + * Create input and output ports on graph nodes. + * Node: When the output type is a report, the render of this port should be ignored + * @param nodeId graphNode id + * @param codeName the component name + * @returns the ports list + */ async createPort(nodeId: string, codeName: string) { const [domain, name] = codeName.split('/'); const { mode } = parse(window.location.search); @@ -61,6 +81,15 @@ export class GraphHookService extends DefaultHookService { }); outputs?.forEach((output, index) => { + // ignore the report output + if ( + output.types && + output.types[0] && + [DISTDATA_TYPE.REPORT, DISTDATA_TYPE.READ_DATA].includes(output.types[0]) + ) { + return; + } + ports.push({ id: `${nodeId}-output-${index}`, group: 'bottom', diff --git a/apps/platform/src/modules/main-dag/graph-request-service.tsx b/apps/platform/src/modules/main-dag/graph-request-service.tsx index 89297e1..1f2baaa 100644 --- a/apps/platform/src/modules/main-dag/graph-request-service.tsx +++ b/apps/platform/src/modules/main-dag/graph-request-service.tsx @@ -306,6 +306,22 @@ export class GraphRequestService extends DefaultRequestService { return Math.max(...nodeIndices); } + async fetchGraph() { + const { search } = window.location; + const { projectId, dagId } = parse(search); + + const { data, status } = await getGraphDetail({ + projectId: projectId as string, + graphId: dagId as string, + }); + + if (!data || status?.code !== 0) { + return; + } + + return data; + } + async getGraphNode(nodeId: string) { const { search } = window.location; const { projectId, dagId } = parse(search); diff --git a/apps/platform/src/modules/main-dag/graph-service.ts b/apps/platform/src/modules/main-dag/graph-service.ts index 038518e..3a3e869 100644 --- a/apps/platform/src/modules/main-dag/graph-service.ts +++ b/apps/platform/src/modules/main-dag/graph-service.ts @@ -1,3 +1,4 @@ +import type { Edge, Graph } from '@antv/x6'; import { ActionType, NodeStatus } from '@secretflow/dag'; import type { GraphNode, Node, GraphEventHandlerProtocol } from '@secretflow/dag'; import { Emitter } from '@secretflow/utils'; @@ -7,8 +8,8 @@ import { parse } from 'query-string'; import { fullUpdateGraph, getGraphNodeOutput, - updateGraphNode, } from '@/services/secretpad/GraphController'; +import { updateGraphNode } from '@/services/secretpad/GraphController'; import { getModel } from '@/util/valtio-helper'; import type { ComponentConfig } from '../component-config/component-config-protocol'; @@ -35,6 +36,9 @@ export class GraphService implements GraphEventHandlerProtocol { protected nodeRunningEmitter = new Emitter(); onNodeRunningEvent = this.nodeRunningEmitter.on; + protected nodeStatusEmitter = new Emitter<{ nodeId: string; status: NodeStatus }[]>(); + onNodeStatusChangedEvent = this.nodeStatusEmitter.on; + componentService = getModel(DefaultComponentTreeService); componentInterpreter = getModel(DefaultComponentInterpreterService); componentConfigRegistry = getModel(ComponentConfigRegistry); @@ -96,6 +100,7 @@ export class GraphService implements GraphEventHandlerProtocol { if (this.modalManager.modals['component-result']) { this.modalManager.closeModal(resultDrawer.id); } + this.logService.cancel(); const data = node.getData(); @@ -133,12 +138,16 @@ export class GraphService implements GraphEventHandlerProtocol { const { projectId } = parse(search); const [, nodeId] = outputId.match(/(.*)-output-([0-9]+)$/) || []; if (!nodeId) return; - const { data } = await getGraphNodeOutput({ + const { data, status } = await getGraphNodeOutput({ projectId: projectId as string, graphId, graphNodeId: nodeId, outputId, }); + if (status?.code !== 0) { + message.error('结果不存在'); + return; + } if (data) { this.modalManager.openModal(resultDrawer.id, { @@ -159,10 +168,94 @@ export class GraphService implements GraphEventHandlerProtocol { this.modalManager.closeModal(componentConfigDrawer.id); } + async onEdgeConnected(edge: Edge) { + /** + * 特殊处理,每当「重新连接」下游的分箱修改算子时 + * 就清空分箱修改算子「codeName = feature/binning_modifications」的配置「nodeDef」 + * + * 若不清空,就无法再次拿到最新的上游 + * TODO: 长期。需引擎支持上游输出分箱结果表 + */ + const componentId = edge?.store?.data?.target?.cell; + const sourcePortId = edge?.store?.data?.source?.port; + if (componentId && sourcePortId) { + const { search } = window.location; + const { projectId, dagId } = parse(search); + const node = await mainDag.requestService.getGraphNode(componentId); + if (node?.codeName === 'feature/binning_modifications') { + const { attrs, attrPaths, ...restNodeDef } = node.nodeDef || {}; + const updatedNode = { + ...node, + inputs: [sourcePortId], + nodeDef: { + ...restNodeDef, + }, + }; + await updateGraphNode({ + projectId: projectId as string, + graphId: dagId as string, + node: updatedNode, + }); + + mainDag.dataService.fetch(); + } + } + } + onNodeRunning(isRunning: boolean) { this.nodeRunningEmitter.fire(isRunning); } + onNodeStatusChanged(status: { nodeId: string; status: NodeStatus }[]) { + this.nodeStatusEmitter.fire(status); + } + + async onNodesPasted(nodes: Node[]) { + /** + * 特殊处理,情况同 onEdgeConnected + */ + const binningModificationNodeIds = nodes + .filter((node) => node?.codeName === 'feature/binning_modifications') + .map((node) => node.id); + + this.cleanNodeDef(binningModificationNodeIds); + } + + async cleanNodeDef(nodeIds: string[]) { + if (!nodeIds?.length) { + return; + } + + const { search } = window.location; + const { projectId, dagId } = parse(search); + + const graph = await mainDag.requestService.fetchGraph(); + + const nodes = graph?.nodes?.map((node) => { + if (nodeIds.includes(node?.graphNodeId)) { + const { attrs, attrPaths, ...restNodeDef } = node?.nodeDef || {}; + return { + ...node, + nodeDef: { + ...restNodeDef, + }, + }; + } else { + return node; + } + }); + + await fullUpdateGraph({ + projectId: projectId as string, + graphId: dagId as string, + edges: graph?.edges, + nodes: nodes, + }); + + // 更新最新的 nodes + mainDag.dataService.fetch(); + } + saveTemplateQuickConfig = async (quickConfig: { type: PipelineTemplateType; options: any; @@ -215,10 +308,39 @@ export class GraphService implements GraphEventHandlerProtocol { status: NodeStatus.unfinished, }); } + + /** + * 特殊处理,情况同 onEdgeConnected + */ + const subNodeIdSet = this.getSubNodeIds( + mainDag.graphManager.graph as Graph, + node.graphNodeId, + ); + + const binningModificationNodeIds = Array.from(subNodeIdSet) + .filter((id) => id !== node.graphNodeId) + .map((id) => { + return mainDag.graphManager.graph?.getCellById(id).store.data.data; + }) + .filter((node) => node?.codeName === 'feature/binning_modifications') + .map((node) => node.id); + + this.cleanNodeDef(binningModificationNodeIds); } else { message.error(status?.msg || '操作失败'); } }; + + getSubNodeIds(graph: Graph, nodeId: string, nodeIds: Set = new Set()) { + nodeIds.add(nodeId); + const outgoingEdges = graph.getOutgoingEdges(nodeId); + outgoingEdges?.forEach((edge) => { + const data = edge.getData(); + const { target } = data; + this.getSubNodeIds(graph, target, nodeIds); + }); + return nodeIds; + } } mainDag.addGraphEvents(getModel(GraphService)); diff --git a/apps/platform/src/modules/main-dag/graph.tsx b/apps/platform/src/modules/main-dag/graph.tsx index 2650eba..a0ce9a4 100644 --- a/apps/platform/src/modules/main-dag/graph.tsx +++ b/apps/platform/src/modules/main-dag/graph.tsx @@ -9,6 +9,7 @@ import { useLocation } from 'umi'; import templateImg from '@/assets/dag-background.svg'; import { ProjectEditService } from '@/modules/layout/header-project-list/project-edit.service'; +import { DefaultPipelineService } from '@/modules/pipeline/pipeline-service'; import { getModel, Model, useModel } from '@/util/valtio-helper'; import { DefaultComponentInterpreterService } from '../component-interpreter/component-interpreter-service'; @@ -34,6 +35,7 @@ export const GraphComponents: React.FC<{ const dagInstatnce = props?.dagInstatnce || mainDag; const modalManager = useModel(DefaultModalManager); const projectEditService = useModel(ProjectEditService); + const pipelineService = useModel(DefaultPipelineService); const { search, pathname } = useLocation(); const { dagId, mode } = parse(search); @@ -42,16 +44,20 @@ export const GraphComponents: React.FC<{ const { width, height } = useSize(viewRef.current) || {}; React.useEffect(() => { - dagInstatnce.dispose(); - if (dagId && containerRef.current) { - modalManager.closeAllModalsBut(RecordListDrawerItem.id); - viewInstance.initGraph( - dagId as string, - containerRef.current, - mode as ComputeMode, - projectEditService.canEdit.graphHotKeyDisabled ? 'LITE' : 'FULL', - ); - } + const getGraphInit = async () => { + dagInstatnce.dispose(); + if (dagId && containerRef.current) { + modalManager.closeAllModalsBut(RecordListDrawerItem.id); + await pipelineService.changePipelineCanEdit(dagId as string); + viewInstance.initGraph( + dagId as string, + containerRef.current, + mode as ComputeMode, + projectEditService.canEdit.graphHotKeyDisabled ? 'LITE' : 'FULL', + ); + } + }; + getGraphInit(); }, [dagId, mode]); React.useEffect(() => { @@ -83,6 +89,7 @@ export const GraphComponents: React.FC<{ open={true} arrow={true} placement="top" + overlayStyle={{ height: 'fit-content' }} > diff --git a/apps/platform/src/modules/message-center/component/common.tsx b/apps/platform/src/modules/message-center/component/common.tsx index 24cd61e..59d2bf2 100644 --- a/apps/platform/src/modules/message-center/component/common.tsx +++ b/apps/platform/src/modules/message-center/component/common.tsx @@ -28,7 +28,7 @@ export enum MessageItemType { export const ListItemTitleMap = { [MessageItemType.TEE_DOWNLOAD]: { - tagColor: 'orange', + // tagColor: 'orange', tagIcon: , tagText: '结果下载', suffix: '下载申请', @@ -37,7 +37,7 @@ export const ListItemTitleMap = { }, }, [MessageItemType.NODE_ROUTE]: { - tagColor: 'cyan', + // tagColor: 'cyan', tagIcon: , tagText: '节点合作', suffix: '授权邀约', @@ -46,7 +46,7 @@ export const ListItemTitleMap = { }, }, [MessageItemType.PROJECT_NODE_ADD]: { - tagColor: 'orange', + // tagColor: 'orange', tagIcon: , tagText: '项目邀约', suffix: '邀约', @@ -55,7 +55,7 @@ export const ListItemTitleMap = { }, }, [MessageItemType.PROJECT_ARCHIVE]: { - tagColor: 'orange', + // tagColor: 'orange', tagIcon: , tagText: '项目归档', suffix: '归档', @@ -72,7 +72,7 @@ export const MessageTypeTag = ({ type }: { type: MessageItemType }) => { return ( diff --git a/apps/platform/src/modules/message-center/index.tsx b/apps/platform/src/modules/message-center/index.tsx index e36f7c6..3c943f1 100644 --- a/apps/platform/src/modules/message-center/index.tsx +++ b/apps/platform/src/modules/message-center/index.tsx @@ -111,7 +111,7 @@ export const MessageComponent: React.FC = () => { ]; const { Link } = Typography; - const loadMore = isP2PWorkbench() && ( + const loadMore = isP2PWorkbench() && !!viewInstance.totalNum && (
{ diff --git a/apps/platform/src/modules/p2p-project-list/index.less b/apps/platform/src/modules/p2p-project-list/index.less index 10fdf8d..1f38feb 100644 --- a/apps/platform/src/modules/p2p-project-list/index.less +++ b/apps/platform/src/modules/p2p-project-list/index.less @@ -113,6 +113,18 @@ white-space: nowrap; } + @media only screen and (min-width: 1441px) { + :global(.ant-typography) { + max-width: 188px; + } + } + + @media only screen and (min-width: 2560px) { + :global(.ant-typography) { + max-width: 220px; + } + } + :global(.anticon-edit):hover { color: rgb(22 119 255 / 100%); cursor: pointer; diff --git a/apps/platform/src/modules/pipeline-record-list/index.less b/apps/platform/src/modules/pipeline-record-list/index.less index 0ea4518..5252f33 100644 --- a/apps/platform/src/modules/pipeline-record-list/index.less +++ b/apps/platform/src/modules/pipeline-record-list/index.less @@ -149,8 +149,7 @@ } .statusIcon { - padding-inline-end: 8px; - padding-inline-start: 8px; + padding-inline: 8px 8px; } // HACK FIX cannot find reason for focus diff --git a/apps/platform/src/modules/pipeline/index.less b/apps/platform/src/modules/pipeline/index.less index bbe32a0..9b8cf39 100644 --- a/apps/platform/src/modules/pipeline/index.less +++ b/apps/platform/src/modules/pipeline/index.less @@ -120,8 +120,7 @@ .treeContainer { height: 100%; - overflow-x: hidden; - overflow-y: auto; + overflow-x: hidden auto; } .templates { diff --git a/apps/platform/src/modules/pipeline/pipeline-service.ts b/apps/platform/src/modules/pipeline/pipeline-service.ts index be2c2b1..5ab06e5 100644 --- a/apps/platform/src/modules/pipeline/pipeline-service.ts +++ b/apps/platform/src/modules/pipeline/pipeline-service.ts @@ -25,6 +25,10 @@ import { PipelineCommands } from './pipeline-protocol'; import { getPipelineTemplates } from '.'; +const CUSTOM_COMPONENT = { + BinningModification: 'feature/binning_modifications', +}; + export class DefaultPipelineService extends Model { pipelines: Pipeline[] = []; currentPipeline: Pipeline | undefined; @@ -111,9 +115,12 @@ export class DefaultPipelineService extends Model { * 归档项目不可编辑。 * 非本方创建的训练流不可编辑 */ - changePipelineCanEdit = (pipelineId?: string) => { + changePipelineCanEdit = async (pipelineId?: string) => { const { projectId } = parse(window.location.search); if (this.projectEditService.isP2pMode()) { + if (this.projectListService.projectList.length === 0) { + await this.projectListService.getListProject(); + } const project = this.projectListService.projectList?.find( (item) => item.projectId === projectId, ); @@ -296,7 +303,23 @@ export class DefaultPipelineService extends Model { ) { const { nodes, edges } = graph; const newNodes = nodes.map((node) => { - const { graphNodeId, inputs, outputs } = node; + const { graphNodeId, inputs, outputs, codeName, nodeDef } = node; + + /** 粘贴训练流时,清空 分箱修改 配置 */ + let newNodeDef = nodeDef; + if (codeName === CUSTOM_COMPONENT.BinningModification) { + const { domain, name, version } = nodeDef as { + domain: string; + name: string; + version: string; + }; + newNodeDef = { + domain, + name, + version, + }; + } + const newGraphNodeId = graphNodeId?.replace(/.*(-node-[0-9]+$)/, id + '$1'); const newInputs = inputs?.map((i) => i.replace(/.*(-node-[0-9]+-output-[0-9]+$)/, id + '$1'), @@ -307,6 +330,7 @@ export class DefaultPipelineService extends Model { return { ...node, + nodeDef: newNodeDef, graphNodeId: newGraphNodeId, inputs: newInputs, jobId: null, diff --git a/apps/platform/src/modules/pipeline/pipeline-view.tsx b/apps/platform/src/modules/pipeline/pipeline-view.tsx index 89cbbd8..5d046a5 100644 --- a/apps/platform/src/modules/pipeline/pipeline-view.tsx +++ b/apps/platform/src/modules/pipeline/pipeline-view.tsx @@ -131,13 +131,7 @@ export const PipelineViewComponent = () => { */ useEffect(() => { viewInstance.pipelineService.changePipelineCanEdit(dagId as string); - }, [ - projectId, - dagId, - searchParams, - viewInstance.projectListService.projectList, - viewInstance.pipelineService.pipelines, - ]); + }, [projectId, dagId, searchParams, viewInstance.pipelineService.pipelines]); return (
diff --git a/apps/platform/src/modules/pipeline/templates/pipeline-template-psi-guide.ts b/apps/platform/src/modules/pipeline/templates/pipeline-template-psi-guide.ts index 455798c..6bc0585 100644 --- a/apps/platform/src/modules/pipeline/templates/pipeline-template-psi-guide.ts +++ b/apps/platform/src/modules/pipeline/templates/pipeline-template-psi-guide.ts @@ -83,15 +83,14 @@ export class TemplateGuidePSI extends Model implements PipelineTemplateContribut { outputs: [`${graphId}-node-3-output-0`], nodeDef: { - domain: `preprocessing`, + domain: `data_prep`, name: `psi`, - version: `0.0.1`, + version: `0.0.2`, attrPaths: [ 'input/receiver_input/key', 'input/sender_input/key', 'protocol', - 'bucket_size', - 'ecdh_curve_type', + 'ecdh_curve', ], attrs: [ { @@ -101,10 +100,7 @@ export class TemplateGuidePSI extends Model implements PipelineTemplateContribut ss: ['id2'], }, { - s: 'ECDH_PSI_2PC', - }, - { - i64: 1048576, + s: 'PROTOCOL_ECDH', }, { s: 'CURVE_FOURQ', @@ -112,7 +108,7 @@ export class TemplateGuidePSI extends Model implements PipelineTemplateContribut ], }, inputs: [`${graphId}-node-1-output-0`, `${graphId}-node-2-output-0`], - codeName: `preprocessing/psi`, + codeName: `data_prep/psi`, x: -260, y: -100, label: `隐私求交`, diff --git a/apps/platform/src/modules/pipeline/templates/pipeline-template-psi.ts b/apps/platform/src/modules/pipeline/templates/pipeline-template-psi.ts index 93c110b..18b012b 100644 --- a/apps/platform/src/modules/pipeline/templates/pipeline-template-psi.ts +++ b/apps/platform/src/modules/pipeline/templates/pipeline-template-psi.ts @@ -95,12 +95,12 @@ export class TemplatePSI extends Model implements PipelineTemplateContribution { ], } : {}), - domain: `preprocessing`, + domain: `data_prep`, name: `psi`, - version: `0.0.1`, + version: `0.0.2`, }, inputs: [`${graphId}-node-1-output-0`, `${graphId}-node-2-output-0`], - codeName: `preprocessing/psi`, + codeName: `data_prep/psi`, x: -260, y: -100, label: `隐私求交`, diff --git a/apps/platform/src/modules/pipeline/templates/pipeline-template-risk-guide.ts b/apps/platform/src/modules/pipeline/templates/pipeline-template-risk-guide.ts index 910a3e6..41e1100 100644 --- a/apps/platform/src/modules/pipeline/templates/pipeline-template-risk-guide.ts +++ b/apps/platform/src/modules/pipeline/templates/pipeline-template-risk-guide.ts @@ -126,33 +126,19 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu target: `${graphId}-node-13`, }, { - edgeId: `${graphId}-node-13-output-0__${graphId}-node-15-input-1`, + edgeId: `${graphId}-node-13-output-0__${graphId}-node-15-input-0`, sourceAnchor: `${graphId}-node-13-output-0`, - targetAnchor: `${graphId}-node-15-input-1`, + targetAnchor: `${graphId}-node-15-input-0`, source: `${graphId}-node-13`, target: `${graphId}-node-15`, }, { - edgeId: `${graphId}-node-13-output-0__${graphId}-node-14-input-1`, + edgeId: `${graphId}-node-13-output-0__${graphId}-node-14-input-0`, sourceAnchor: `${graphId}-node-13-output-0`, - targetAnchor: `${graphId}-node-14-input-1`, - source: `${graphId}-node-13`, - target: `${graphId}-node-14`, - }, - { - edgeId: `${graphId}-node-8-output-0__${graphId}-node-14-input-0`, - sourceAnchor: `${graphId}-node-8-output-0`, targetAnchor: `${graphId}-node-14-input-0`, - source: `${graphId}-node-8`, + source: `${graphId}-node-13`, target: `${graphId}-node-14`, }, - { - edgeId: `${graphId}-node-8-output-0__${graphId}-node-15-input-0`, - sourceAnchor: `${graphId}-node-8-output-0`, - targetAnchor: `${graphId}-node-15-input-0`, - source: `${graphId}-node-8`, - target: `${graphId}-node-15`, - }, ], nodes: [ { @@ -202,6 +188,7 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu outputs: [`${graphId}-node-11-output-0`], nodeDef: { attrPaths: [ + 'input/train_dataset/feature_selects', 'input/train_dataset/label', 'epochs', 'learning_rate', @@ -213,6 +200,10 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu 'eps', ], attrs: [ + { + is_na: false, + ss: ['duration'], + }, { is_na: false, ss: ['y'], @@ -294,12 +285,8 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu is_na: false, s: 'pred', }, - { - is_na: true, - }, - { - is_na: true, - }, + { b: true, is_na: false }, + { b: true, is_na: false }, ], domain: 'ml.predict', name: 'ss_sgd_predict', @@ -319,8 +306,13 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu domain: `ml.eval`, name: `biclassification_eval`, version: `0.0.1`, + attrPaths: ['input/in_ds/label', 'input/in_ds/prediction'], + attrs: [ + { ss: ['y'], is_na: false }, + { ss: ['pred'], is_na: false }, + ], }, - inputs: [`${graphId}-node-8-output-0`, `${graphId}-node-13-output-0`], + inputs: [`${graphId}-node-13-output-0`], codeName: `ml.eval/biclassification_eval`, x: 130, y: 450, @@ -334,8 +326,13 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu domain: `ml.eval`, name: `prediction_bias_eval`, version: `0.0.1`, + attrPaths: ['input/in_ds/label', 'input/in_ds/prediction'], + attrs: [ + { ss: ['y'], is_na: false }, + { ss: ['pred'], is_na: false }, + ], }, - inputs: [`${graphId}-node-8-output-0`, `${graphId}-node-13-output-0`], + inputs: [`${graphId}-node-13-output-0`], codeName: `ml.eval/prediction_bias_eval`, x: -110, y: 540, @@ -372,9 +369,7 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu 'input/receiver_input/key', 'input/sender_input/key', 'protocol', - 'sort', - 'bucket_size', - 'ecdh_curve_type', + 'ecdh_curve', ], attrs: [ { @@ -387,26 +382,19 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu }, { is_na: false, - s: 'ECDH_PSI_2PC', - }, - { - is_na: true, - }, - { - i64: 1048576, - is_na: false, + s: 'PROTOCOL_ECDH', }, { is_na: false, s: 'CURVE_FOURQ', }, ], - domain: 'preprocessing', + domain: 'data_prep', name: 'psi', - version: '0.0.1', + version: '0.0.2', }, inputs: [`${graphId}-node-1-output-0`, `${graphId}-node-2-output-0`], - codeName: `preprocessing/psi`, + codeName: `data_prep/psi`, x: -240, y: -160, label: `隐私求交`, @@ -431,12 +419,12 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu { outputs: [`${graphId}-node-5-output-0`, `${graphId}-node-5-output-1`], nodeDef: { - domain: `preprocessing`, + domain: `data_prep`, name: `train_test_split`, version: `0.0.1`, }, inputs: [`${graphId}-node-3-output-0`], - codeName: `preprocessing/train_test_split`, + codeName: `data_prep/train_test_split`, x: -120, y: -80, label: `随机分割`, @@ -444,11 +432,11 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu status: `STAGING`, }, { - outputs: [`${graphId}-node-6-output-0`], + outputs: [`${graphId}-node-6-output-0`, `${graphId}-node-6-output-1`], nodeDef: { domain: `feature`, name: `vert_woe_binning`, - version: `0.0.1`, + version: `0.0.2`, attrPaths: [ 'input/input_data/feature_selects', 'input/input_data/label', @@ -503,30 +491,30 @@ export class TemplateGuideRisk extends Model implements PipelineTemplateContribu { outputs: [`${graphId}-node-7-output-0`], nodeDef: { - domain: `feature`, + domain: `preprocessing`, name: `vert_bin_substitution`, version: `0.0.1`, }, inputs: [`${graphId}-node-5-output-0`, `${graphId}-node-6-output-0`], - codeName: `feature/vert_bin_substitution`, + codeName: `preprocessing/vert_bin_substitution`, x: -320, y: 110, - label: `WOE转换`, + label: `分箱转换`, graphNodeId: `${graphId}-node-7`, status: `STAGING`, }, { outputs: [`${graphId}-node-8-output-0`], nodeDef: { - domain: `feature`, + domain: `preprocessing`, name: `vert_bin_substitution`, version: `0.0.1`, }, inputs: [`${graphId}-node-5-output-1`, `${graphId}-node-6-output-0`], - codeName: `feature/vert_bin_substitution`, + codeName: `preprocessing/vert_bin_substitution`, x: -10, y: 100, - label: `WOE转换`, + label: `分箱转换`, graphNodeId: `${graphId}-node-8`, status: `STAGING`, }, diff --git a/apps/platform/src/modules/pipeline/templates/pipeline-template-risk.ts b/apps/platform/src/modules/pipeline/templates/pipeline-template-risk.ts index 8949d3f..5c92fd7 100644 --- a/apps/platform/src/modules/pipeline/templates/pipeline-template-risk.ts +++ b/apps/platform/src/modules/pipeline/templates/pipeline-template-risk.ts @@ -21,6 +21,7 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution featureSelects, labelSelects, receiver, + pred, } = quickConfigs || {}; return { edges: [ @@ -137,33 +138,19 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution target: `${graphId}-node-13`, }, { - edgeId: `${graphId}-node-13-output-0__${graphId}-node-15-input-1`, + edgeId: `${graphId}-node-13-output-0__${graphId}-node-15-input-0`, sourceAnchor: `${graphId}-node-13-output-0`, - targetAnchor: `${graphId}-node-15-input-1`, + targetAnchor: `${graphId}-node-15-input-0`, source: `${graphId}-node-13`, target: `${graphId}-node-15`, }, { - edgeId: `${graphId}-node-13-output-0__${graphId}-node-14-input-1`, + edgeId: `${graphId}-node-13-output-0__${graphId}-node-14-input-0`, sourceAnchor: `${graphId}-node-13-output-0`, - targetAnchor: `${graphId}-node-14-input-1`, - source: `${graphId}-node-13`, - target: `${graphId}-node-14`, - }, - { - edgeId: `${graphId}-node-8-output-0__${graphId}-node-14-input-0`, - sourceAnchor: `${graphId}-node-8-output-0`, targetAnchor: `${graphId}-node-14-input-0`, - source: `${graphId}-node-8`, + source: `${graphId}-node-13`, target: `${graphId}-node-14`, }, - { - edgeId: `${graphId}-node-8-output-0__${graphId}-node-15-input-0`, - sourceAnchor: `${graphId}-node-8-output-0`, - targetAnchor: `${graphId}-node-15-input-0`, - source: `${graphId}-node-8`, - target: `${graphId}-node-15`, - }, ], nodes: [ { @@ -214,10 +201,16 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution domain: `ml.train`, name: `ss_sgd_train`, version: `0.0.1`, - ...(labelSelects + ...(labelSelects && featureSelects ? { - attrPaths: ['input/train_dataset/label'], - attrs: [{ ...labelSelects, is_na: false }], + attrPaths: [ + 'input/train_dataset/label', + 'input/train_dataset/feature_selects', + ], + attrs: [ + { ...labelSelects, is_na: false }, + { ...featureSelects, is_na: false }, + ], } : {}), }, @@ -247,10 +240,14 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution { outputs: [`${graphId}-node-13-output-0`], nodeDef: { - ...(receiver + ...(receiver && pred ? { - attrPaths: ['receiver'], - attrs: [{ ...receiver, is_na: false }], + attrPaths: ['receiver', 'pred_name', 'save_label'], + attrs: [ + { ...receiver, is_na: false }, + { ...pred, is_na: false }, + { b: true, is_na: false }, + ], } : {}), @@ -272,8 +269,17 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution domain: `ml.eval`, name: `biclassification_eval`, version: `0.0.1`, + ...(labelSelects && pred + ? { + attrPaths: ['input/in_ds/label', 'input/in_ds/prediction'], + attrs: [ + { ...labelSelects, is_na: false }, + { ...{ ss: [pred.s] }, is_na: false }, + ], + } + : {}), }, - inputs: [`${graphId}-node-8-output-0`, `${graphId}-node-13-output-0`], + inputs: [`${graphId}-node-13-output-0`], codeName: `ml.eval/biclassification_eval`, x: 130, y: 450, @@ -287,8 +293,17 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution domain: `ml.eval`, name: `prediction_bias_eval`, version: `0.0.1`, + ...(labelSelects && pred + ? { + attrPaths: ['input/in_ds/label', 'input/in_ds/prediction'], + attrs: [ + { ...labelSelects, is_na: false }, + { ...{ ss: [pred.s] }, is_na: false }, + ], + } + : {}), }, - inputs: [`${graphId}-node-8-output-0`, `${graphId}-node-13-output-0`], + inputs: [`${graphId}-node-13-output-0`], codeName: `ml.eval/prediction_bias_eval`, x: -110, y: 540, @@ -329,12 +344,12 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution ], } : {}), - domain: `preprocessing`, + domain: `data_prep`, name: `psi`, - version: `0.0.1`, + version: `0.0.2`, }, inputs: [`${graphId}-node-1-output-0`, `${graphId}-node-2-output-0`], - codeName: `preprocessing/psi`, + codeName: `data_prep/psi`, x: -240, y: -160, label: `隐私求交`, @@ -359,12 +374,12 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution { outputs: [`${graphId}-node-5-output-0`, `${graphId}-node-5-output-1`], nodeDef: { - domain: `preprocessing`, + domain: `data_prep`, name: `train_test_split`, version: `0.0.1`, }, inputs: [`${graphId}-node-3-output-0`], - codeName: `preprocessing/train_test_split`, + codeName: `data_prep/train_test_split`, x: -120, y: -80, label: `随机分割`, @@ -372,7 +387,7 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution status: `STAGING`, }, { - outputs: [`${graphId}-node-6-output-0`], + outputs: [`${graphId}-node-6-output-0`, `${graphId}-node-6-output-1`], nodeDef: { ...(featureSelects ? { @@ -388,7 +403,7 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution : {}), domain: `feature`, name: `vert_woe_binning`, - version: `0.0.1`, + version: `0.0.2`, }, inputs: [`${graphId}-node-5-output-0`], codeName: `feature/vert_woe_binning`, @@ -401,30 +416,30 @@ export class TemplateRisk extends Model implements PipelineTemplateContribution { outputs: [`${graphId}-node-7-output-0`], nodeDef: { - domain: `feature`, + domain: `preprocessing`, name: `vert_bin_substitution`, version: `0.0.1`, }, inputs: [`${graphId}-node-5-output-0`, `${graphId}-node-6-output-0`], - codeName: `feature/vert_bin_substitution`, + codeName: `preprocessing/vert_bin_substitution`, x: -320, y: 110, - label: `WOE转换`, + label: `分箱转换`, graphNodeId: `${graphId}-node-7`, status: `STAGING`, }, { outputs: [`${graphId}-node-8-output-0`], nodeDef: { - domain: `feature`, + domain: `preprocessing`, name: `vert_bin_substitution`, version: `0.0.1`, }, inputs: [`${graphId}-node-5-output-1`, `${graphId}-node-6-output-0`], - codeName: `feature/vert_bin_substitution`, + codeName: `preprocessing/vert_bin_substitution`, x: -10, y: 100, - label: `WOE转换`, + label: `分箱转换`, graphNodeId: `${graphId}-node-8`, status: `STAGING`, }, diff --git a/apps/platform/src/modules/result-details/graph-hook-service.ts b/apps/platform/src/modules/result-details/graph-hook-service.ts index 2dd63b5..a7bd734 100644 --- a/apps/platform/src/modules/result-details/graph-hook-service.ts +++ b/apps/platform/src/modules/result-details/graph-hook-service.ts @@ -6,6 +6,11 @@ import { getModel } from '@/util/valtio-helper'; import type { GraphDataService } from './graph-data-service'; +const DISTDATA_TYPE = { + REPORT: 'sf.report', + READ_DATA: 'sf.read_data', +}; + export class GraphHookService extends DefaultHookService { componentService = getModel(DefaultComponentTreeService); @@ -25,6 +30,14 @@ export class GraphHookService extends DefaultHookService { const { outputs } = component; outputs.forEach((output, index) => { + if ( + output.types && + output.types[0] && + [DISTDATA_TYPE.READ_DATA].includes(output.types[0]) + ) { + return; + } + results.push({ id: `${nodeId}-output-${index}`, name: output.name, @@ -37,6 +50,13 @@ export class GraphHookService extends DefaultHookService { return []; } + /** + * Create input and output ports on graph nodes. + * Node: When the output type is a report, the render of this port should be ignored + * @param nodeId graphNode id + * @param codeName the component name + * @returns the ports list + */ async createPort(nodeId: string, codeName: string) { const [domain, name] = codeName.split('/'); const { mode = 'MPC' } = this.context.dataService as GraphDataService; @@ -61,6 +81,14 @@ export class GraphHookService extends DefaultHookService { }); outputs.forEach((output, index) => { + // ignore the report output + if ( + output.types && + output.types[0] && + [DISTDATA_TYPE.REPORT, DISTDATA_TYPE.READ_DATA].includes(output.types[0]) + ) { + return; + } ports.push({ id: `${nodeId}-output-${index}`, group: 'bottom', diff --git a/apps/platform/src/modules/result-manager/result-manager.service.ts b/apps/platform/src/modules/result-manager/result-manager.service.ts index c5179b1..770182b 100644 --- a/apps/platform/src/modules/result-manager/result-manager.service.ts +++ b/apps/platform/src/modules/result-manager/result-manager.service.ts @@ -38,12 +38,15 @@ export class ResultManagerService extends Model { 'content-type': 'application/json', 'User-Token': token, }, + body: JSON.stringify({ nodeId, domainDataId: tableInfo.domainDataId, }), }).then((res) => res.blob().then((blob) => { + const data = new Blob(['\ufeff', blob], { type: 'text/plain;charset=utf-8' }); + const disposition = res.headers.get('Content-Disposition'); let filename = ''; const filenameRegex = /filename[^;=\n]*=[^'"]*['"]*((['"]).*?\2|[^;\n]*)/; @@ -53,7 +56,7 @@ export class ResultManagerService extends Model { } const a = document.createElement('a'); document.body.appendChild(a); //兼容火狐,将a标签添加到body当中 - const url = window.URL.createObjectURL(blob); // 获取 blob 本地文件连接 (blob 为纯二进制对象,不能够直接保存到磁盘上) + const url = window.URL.createObjectURL(data); // 获取 blob 本地文件连接 (blob 为纯二进制对象,不能够直接保存到磁盘上) a.href = url; a.download = filename; a.click(); diff --git a/apps/platform/src/pages/new-home.tsx b/apps/platform/src/pages/new-home.tsx index edd1657..b23216e 100644 --- a/apps/platform/src/pages/new-home.tsx +++ b/apps/platform/src/pages/new-home.tsx @@ -39,6 +39,7 @@ const HomePage = () => { useEffect(() => { homeLayoutService.setSubTitle('Center'); homeLayoutService.setBgClassName('centerBg'); + getUserInfo(); }, []); const [hasNotNodeMenu, setHasNotNodeMenu] = React.useState(true); @@ -54,6 +55,10 @@ const HomePage = () => { } }, [loginService.userInfo]); + const getUserInfo = async () => { + await loginService.getUserInfoAsync(); + }; + return ( ('/api/login', { method: 'POST', headers: { 'Content-Type': 'application/json', }, - params: { - ...params, - response: undefined, - ...params['response'], - }, data: body, ...(options || {}), }); @@ -33,7 +19,6 @@ export async function login( /** User logout api @param request http servlet request -@param response @return {@link SecretPadResponse }<{@link String }> @author lihaixin @date 2023/12/15 diff --git a/apps/platform/src/services/secretpad/P2pNodeController.ts b/apps/platform/src/services/secretpad/P2pNodeController.ts index 06544ff..6763113 100644 --- a/apps/platform/src/services/secretpad/P2pNodeController.ts +++ b/apps/platform/src/services/secretpad/P2pNodeController.ts @@ -24,7 +24,7 @@ export async function createP2pNode( @param request delete collaborative node request @return void POST /api/v1alpha1/p2p/node/delete */ -export async function deleteNode( +export async function deleteP2pNode( body?: API.RouterIdRequest, options?: { [key: string]: any }, ) { diff --git a/apps/platform/src/services/secretpad/ProjectController.ts b/apps/platform/src/services/secretpad/ProjectController.ts index 53d467d..0e277ba 100644 --- a/apps/platform/src/services/secretpad/ProjectController.ts +++ b/apps/platform/src/services/secretpad/ProjectController.ts @@ -194,6 +194,27 @@ export async function getProject( }); } +/** project_graph_node outputs fix derived fields for chexian +@param request projectId graphId +@return ProjectOutputVO + POST /api/v1alpha1/project/getOutTable */ +export async function getProjectAllOutTable( + body?: API.GetProjectGraphRequest, + options?: { [key: string]: any }, +) { + return request( + '/api/v1alpha1/project/getOutTable', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }, + ); +} + /** Query project datatable detail api @param request get project request @return successful SecretPadResponse with project datatable view object @@ -291,3 +312,24 @@ export async function updateProject( ...(options || {}), }); } + +/** Update project schema api +@param request update project request +@return successful SecretPadResponse with null data + POST /api/v1alpha1/project/update/tableConfig */ +export async function updateProjectTableConfig( + body?: API.AddProjectDatatableRequest, + options?: { [key: string]: any }, +) { + return request( + '/api/v1alpha1/project/update/tableConfig', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }, + ); +} diff --git a/apps/platform/src/services/secretpad/UserController.ts b/apps/platform/src/services/secretpad/UserController.ts index 017719e..943644f 100644 --- a/apps/platform/src/services/secretpad/UserController.ts +++ b/apps/platform/src/services/secretpad/UserController.ts @@ -15,8 +15,6 @@ export async function get(options?: { [key: string]: any }) { /** Update user pwd by userName @param userUpdatePwdRequest @return {@link SecretPadResponse }<{@link Boolean }> -@author lihaixin -@date 2023/12/11 POST /api/v1alpha1/user/updatePwd */ export async function updatePwd( body?: API.UserUpdatePwdRequest, diff --git a/apps/platform/src/services/secretpad/index.ts b/apps/platform/src/services/secretpad/index.ts index 62e19ad..ce722f8 100644 --- a/apps/platform/src/services/secretpad/index.ts +++ b/apps/platform/src/services/secretpad/index.ts @@ -1,6 +1,6 @@ /* eslint-disable */ -// API 更新时间:2024-01-03 20:13:08 -// API 唯一标识:65954f53385be66b3d55a101 +// API 更新时间:2024-01-09 19:03:58 +// API 唯一标识:659d281d8eb7d68955de26a7 // 该文件由 OneAPI 自动生成,请勿手动修改! import * as ApprovalController from './ApprovalController'; @@ -15,8 +15,8 @@ import * as MessageController from './MessageController'; import * as NodeController from './NodeController'; import * as NodeRouteController from './NodeRouteController'; import * as NodeUserController from './NodeUserController'; -import * as P2pNodeController from './P2pNodeController'; import * as P2PProjectController from './P2PProjectController'; +import * as P2pNodeController from './P2pNodeController'; import * as ProjectController from './ProjectController'; import * as RemoteUserController from './RemoteUserController'; import * as UserController from './UserController'; diff --git a/apps/platform/src/services/secretpad/typings.d.ts b/apps/platform/src/services/secretpad/typings.d.ts index 0e5adec..f2098b0 100644 --- a/apps/platform/src/services/secretpad/typings.d.ts +++ b/apps/platform/src/services/secretpad/typings.d.ts @@ -56,7 +56,9 @@ declare namespace API { | 202011602 | 'AUTH_FAILED' | 202011603 - | 'USER_IS_LOCKED'; + | 'USER_IS_LOCKED' + | 202011604 + | 'RESET_PASSWORD_IS_LOCKED'; interface AuthProjectVO { /** Project id */ @@ -315,6 +317,13 @@ manipulate, derived from the value returned by the back end in the uplink mouth datatableId?: string; } + interface GetProjectGraphRequest { + /** Project id, it can not be blank */ + projectId?: string; + /** graphId, it can not be blank */ + graphId?: string; + } + interface GetProjectJobRequest { /** Project id */ projectId?: string; @@ -935,7 +944,10 @@ result management list interface */ data?: OrgSecretflowSecretpadCommonDtoSecretPadResponse_SyncDataDTO; } - type OrgSecretflowSecretpadServiceModelApprovalParticipantVoteInfo = Record; + type OrgSecretflowSecretpadServiceModelApprovalParticipantVoteInfo = Record< + string, + any + >; interface P2pCreateNodeRequest { /** Node name, the value cannot be empty and can be the same */ @@ -1054,7 +1066,18 @@ result management list interface */ | 202011508 | 'PROJECT_UPDATE_FAIL' | 202011509 - | 'PROJECT_CAN_NOT_ARCHIVE'; + | 'PROJECT_CAN_NOT_ARCHIVE' + | 202011510 + | 'PROJECT_CAN_NOT_CREATE_ARCHIVE_VOTE'; + + interface ProjectGraphOutputVO { + /** graphId */ + graphId?: string; + /** graphNodeId */ + graphNodeId?: string; + /** outputs */ + outputs?: Array; + } interface ProjectJobBaseVO { /** Job id */ @@ -1130,6 +1153,25 @@ result management list interface */ type ProjectNodesInfo = Record; + interface ProjectOutputVO { + /** Project id */ + projectId?: string; + /** Project name */ + projectName?: string; + /** Project description */ + description?: string; + /** List of added nodes output */ + nodes?: Array; + /** The count of graph */ + graphCount?: number; + /** The count of job */ + jobCount?: number; + /** Start time of the project */ + gmtCreate?: string; + /** computeMode pipeline: ,hub: */ + computeMode?: string; + } + interface ProjectResultBaseVO { /** Result kind enum */ kind?: ResultKind; @@ -1215,9 +1257,11 @@ result management list interface */ type ResourceTypeEnum = 'API' | 'NODE_ID'; - type ResultKind = 'FedTable' | 'Model' | 'Rule' | 'Report'; + type ResultKind = 'FedTable' | 'Model' | 'Rule' | 'Report' | 'READ_DATA'; interface RouterIdRequest { + /** nodeId */ + nodeId?: string; /** routerId */ routerId?: string; } @@ -1381,6 +1425,11 @@ result management list interface */ data?: ProjectJobVO; } + interface SecretPadResponse_ProjectOutputVO_ { + status?: SecretPadResponseSecretPadResponseStatus; + data?: ProjectOutputVO; + } + interface SecretPadResponse_ProjectVO_ { status?: SecretPadResponseSecretPadResponseStatus; data?: ProjectVO; @@ -1502,6 +1551,8 @@ result management list interface */ isGroupKey?: boolean; /** Label key or not. False by default */ isLabelKey?: boolean; + /** key protection or not, false by default */ + isProtection?: boolean; } interface TableColumnVO { @@ -1586,11 +1637,11 @@ create operation */ } type UserErrorCode = - | 202312601 + | 202012001 | 'USER_UPDATE_PASSWORD_ERROR_INCONSISTENT' - | 202312602 + | 202012002 | 'USER_UPDATE_PASSWORD_ERROR_SAME' - | 202312603 + | 202012003 | 'USER_UPDATE_PASSWORD_ERROR_INCORRECT'; type UserOwnerTypeEnum = 'EDGE' | 'CENTER' | 'P2P'; @@ -1631,7 +1682,15 @@ create operation */ voteParticipantID?: string; } - type VoteStatusEnum = 0 | 'REVIEWING' | 1 | 'APPROVED' | 2 | 'REJECTED' | 3 | 'NOT_INITIATED'; + type VoteStatusEnum = + | 0 + | 'REVIEWING' + | 1 + | 'APPROVED' + | 2 + | 'REJECTED' + | 3 + | 'NOT_INITIATED'; interface VoteSyncRequest { /** vote request vote result diff --git a/apps/platform/src/wrappers/node-auth.tsx b/apps/platform/src/wrappers/node-auth.tsx new file mode 100644 index 0000000..2f25a25 --- /dev/null +++ b/apps/platform/src/wrappers/node-auth.tsx @@ -0,0 +1,33 @@ +import { parse } from 'query-string'; +import { useEffect, useState } from 'react'; +import { Navigate, Outlet } from 'umi'; + +import { get1 as get } from '@/services/secretpad/NodeController'; + +// 在这里控制/node-new 和 //my-node 有没有正确的nodeId, 没有跳转到/home-new +const EdgeNodeAuth = () => { + const { nodeId } = parse(window.location.search); + if (!nodeId) return ; + const [canOutlet, setCanOutlet] = useState(true); + useEffect(() => { + if (!nodeId) return; + getNodeInfo(nodeId as string); + }, [nodeId]); + + const getNodeInfo = async (id: string) => { + const info = await get({ + nodeId: id, + }); + if (info.status && info.status.code !== 0) { + setCanOutlet(false); + } + }; + + if (canOutlet) { + return ; + } else { + return ; + } +}; + +export default EdgeNodeAuth; diff --git a/packages/dag/src/actions/paste.ts b/packages/dag/src/actions/paste.ts index 755fb56..5652f19 100644 --- a/packages/dag/src/actions/paste.ts +++ b/packages/dag/src/actions/paste.ts @@ -58,22 +58,28 @@ export class PasteAction extends DAGContext implements ActionProtocol { graph.addEdges(fixedData.edges, { dry: true }); graph.resetSelection(fixedData.nodes.map((n) => n.id!)); - this.context.dataService.addNodes( - fixedData.nodes.map((node) => ({ - id: node.data.id, - codeName: node.data.codeName, - label: node.data.label, - x: node.position!.x, - y: node.position!.y, - status: - node.data.status === NodeStatus.unfinished - ? NodeStatus.default - : node.data.status, - nodeDef: node.data.nodeDef, - })), - ); + const nodes = fixedData.nodes.map((node) => ({ + id: node.data.id, + codeName: node.data.codeName, + label: node.data.label, + x: node.position!.x, + y: node.position!.y, + status: + node.data.status === NodeStatus.unfinished + ? NodeStatus.default + : node.data.status, + nodeDef: node.data.nodeDef, + })); + await this.context.dataService.addNodes(nodes); + + const events = this.context.EventHub.getData(); + for (const event of events) { + if (event.onNodesPasted) { + event.onNodesPasted(nodes); + } + } - this.context.dataService.addEdges( + await this.context.dataService.addEdges( fixedData.edges.map((edge) => ({ id: edge.data.id, source: edge.data.source, diff --git a/packages/dag/src/actions/query-status.ts b/packages/dag/src/actions/query-status.ts index 685187d..4432463 100644 --- a/packages/dag/src/actions/query-status.ts +++ b/packages/dag/src/actions/query-status.ts @@ -45,16 +45,25 @@ export class QueryStatusAction extends DAGContext implements ActionProtocol { this.timer = window.setTimeout(() => { this.queryStatus(graph, dagId); }, 2000); + for (const event of events) { if (event.onNodeRunning) { event.onNodeRunning(true); } + + if (event.onNodeStatusChanged) { + event.onNodeStatusChanged(nodeStatus); + } } } else { for (const event of events) { if (event.onNodeRunning) { event.onNodeRunning(false); } + + if (event.onNodeStatusChanged) { + event.onNodeStatusChanged(nodeStatus); + } } } } diff --git a/packages/dag/src/actions/update-node-data.ts b/packages/dag/src/actions/update-node-data.ts index 06e9a66..44b8f3a 100644 --- a/packages/dag/src/actions/update-node-data.ts +++ b/packages/dag/src/actions/update-node-data.ts @@ -8,16 +8,23 @@ import { ActionType } from './protocol'; export class ChangeNodeDataAction extends DAGContext implements ActionProtocol { type = ActionType.changeNodeData; label = '改变节点参数'; - handle(graph: Graph, dagId: string, nodeId: string, option: any) { if (graph) { const node = graph.getCellById(nodeId); if (!node) return; - - node.setData({ - ...node.getData(), - ...option, - }); + this.context.dataService.changeNode([ + { + nodeId: node.id, + meta: option, + }, + ]); + node.setData( + { + ...node.getData(), + ...option, + }, + { overwrite: true, silent: true }, + ); } } } diff --git a/packages/dag/src/data/data-service.ts b/packages/dag/src/data/data-service.ts index 1abe293..f2e979a 100644 --- a/packages/dag/src/data/data-service.ts +++ b/packages/dag/src/data/data-service.ts @@ -36,7 +36,7 @@ export class DefaultDataService extends DAGContext implements DataService { async addNodes(nodes: GraphNode[]) { this.nodes.push(...nodes); - this.context.requestService.saveDag(this.context.dagId, { + await this.context.requestService.saveDag(this.context.dagId, { nodes: this.nodes, edges: this.edges, }); @@ -44,7 +44,7 @@ export class DefaultDataService extends DAGContext implements DataService { async addEdges(edges: GraphEdge[]) { this.edges.push(...edges); - this.context.requestService.saveDag(this.context.dagId, { + await this.context.requestService.saveDag(this.context.dagId, { nodes: this.nodes, edges: this.edges, }); diff --git a/packages/dag/src/manager/graph-manager.ts b/packages/dag/src/manager/graph-manager.ts index e07b700..a03015c 100644 --- a/packages/dag/src/manager/graph-manager.ts +++ b/packages/dag/src/manager/graph-manager.ts @@ -234,6 +234,13 @@ export class DefaultGraphManager extends DAGContext implements GraphManager { }); this.graph.on('edge:connected', ({ edge }) => { this.executeAction(ActionType.addEdge, edge); + + const events = this.context.EventHub.getData(); + for (const event of events) { + if (event.onEdgeConnected) { + event.onEdgeConnected(edge); + } + } }); this.graph.on('node:added', () => { diff --git a/packages/dag/src/shapes/node-icon.tsx b/packages/dag/src/shapes/node-icon.tsx index 0d0fd9b..c68974c 100644 --- a/packages/dag/src/shapes/node-icon.tsx +++ b/packages/dag/src/shapes/node-icon.tsx @@ -9,11 +9,10 @@ import { export const ComponentIcons: Record = { default: , - database: , - chart: , + stats: , preprocessing: , + feature: , control: , - 'ml.linear': , - 'ml.boost': , - stats: , + 'ml.train': , + 'ml.eval': , }; diff --git a/packages/dag/src/types/index.ts b/packages/dag/src/types/index.ts index ebca229..f244641 100644 --- a/packages/dag/src/types/index.ts +++ b/packages/dag/src/types/index.ts @@ -1,4 +1,4 @@ -import type { Node, Cell } from '@antv/x6'; +import type { Node, Cell, Edge } from '@antv/x6'; export enum NodeStatus { success, @@ -72,4 +72,7 @@ export interface GraphEventHandlerProtocol { onResultClick?: (graphId: string, outputId: string, codeName: string) => void; onNodeRunning?: (isRunning: boolean) => void; onCopyActionChange?: (isCopied: boolean) => void; + onNodeStatusChanged?: (status: { nodeId: string; status: NodeStatus }[]) => void; + onEdgeConnected?: (edge: Edge) => void; + onNodesPasted?: (nodes: Node[]) => void; } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c91740b..0c09939 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,7 +10,7 @@ importers: dependencies: '@ant-design/icons': specifier: ^5.0.1 - version: 5.2.5(react-dom@18.1.0)(react@18.1.0) + version: 5.2.6(react-dom@18.2.0)(react@18.2.0) jschardet: specifier: ^3.0.0 version: 3.0.0 @@ -26,10 +26,10 @@ importers: devDependencies: '@commitlint/cli': specifier: ^17.4.4 - version: 17.7.1 + version: 17.8.1 '@commitlint/config-conventional': specifier: ^17.4.4 - version: 17.7.0 + version: 17.8.1 '@secretflow/config-eslint': specifier: workspace:^ version: link:tooling/eslint @@ -41,7 +41,7 @@ importers: version: 7.3.0 eslint: specifier: ^8.35.0 - version: 8.47.0 + version: 8.56.0 husky: specifier: ^8.0.3 version: 8.0.3 @@ -50,22 +50,22 @@ importers: version: 3.0.1 jest: specifier: ^29.5.0 - version: 29.6.3(@types/node@20.4.7)(ts-node@10.9.1) + version: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2) lint-staged: specifier: ^13.1.2 version: 13.3.0 nx: specifier: ^15.8.6 - version: 15.9.5 + version: 15.9.7 prettier: specifier: ^2.8.4 version: 2.8.8 stylelint: specifier: ^15.2.0 - version: 15.10.3 + version: 15.11.0(typescript@4.9.5) tsup: specifier: ^6.7.0 - version: 6.7.0(@swc/core@1.3.78)(postcss@8.4.28)(ts-node@10.9.1)(typescript@4.9.5) + version: 6.7.0(@swc/core@1.3.102)(postcss@8.4.33)(ts-node@10.9.2)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -74,28 +74,34 @@ importers: devDependencies: dumi: specifier: ^2.2.0 - version: 2.2.6(@babel/core@7.22.10)(@types/node@20.4.7)(eslint@8.47.0)(jest@29.6.3)(postcss@8.4.28)(prettier@2.8.8)(react-dom@18.1.0)(react@18.1.0)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.88.2) + version: 2.2.16(@babel/core@7.23.7)(@types/node@20.5.1)(eslint@8.56.0)(jest@29.7.0)(prettier@2.8.8)(react-dom@18.2.0)(react@18.2.0)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.89.0) apps/platform: dependencies: '@ant-design/icons': specifier: ^5.0.1 - version: 5.2.5(react-dom@18.1.0)(react@18.1.0) + version: 5.2.6(react-dom@18.2.0)(react@18.2.0) '@antv/g2': specifier: ^4.2.9 version: 4.2.10 + '@antv/s2': + specifier: ^1.52.0 + version: 1.54.2(@antv/g-base@0.4.7) + '@antv/s2-react': + specifier: ^1.44.2 + version: 1.46.0(@ant-design/icons@5.2.6)(@antv/s2@1.54.2)(antd@5.12.8)(react-dom@18.2.0)(react@18.2.0) '@antv/x6': specifier: ^2.11.1 - version: 2.13.1 + version: 2.17.1 '@antv/x6-plugin-keyboard': specifier: 2.2.1 - version: 2.2.1(@antv/x6@2.13.1) + version: 2.2.1(@antv/x6@2.17.1) '@antv/x6-plugin-selection': specifier: ^2.1.7 - version: 2.1.7(@antv/x6@2.13.1) + version: 2.2.1(@antv/x6@2.17.1) '@antv/x6-react-shape': specifier: ^2.2.2 - version: 2.2.2(@antv/x6@2.13.1)(react-dom@18.1.0)(react@18.1.0) + version: 2.2.2(@antv/x6@2.17.1)(react-dom@18.2.0)(react@18.2.0) '@secretflow/dag': specifier: workspace:^ version: link:../../packages/dag @@ -104,16 +110,16 @@ importers: version: link:../../packages/utils ahooks: specifier: ^3.7.8 - version: 3.7.8(react@18.1.0) + version: 3.7.8(react@18.2.0) classnames: specifier: ^2.3.2 - version: 2.3.2 + version: 2.5.1 crypto-js: specifier: ^4.1.1 - version: 4.1.1 + version: 4.2.0 dayjs: specifier: ^1.11.8 - version: 1.11.9 + version: 1.11.10 lodash: specifier: ^4.17.21 version: 4.17.21 @@ -128,44 +134,44 @@ importers: version: 6.14.1 react: specifier: ^18.0.0 - version: 18.1.0 + version: 18.2.0 react-csv: specifier: ^2.2.2 version: 2.2.2 react-syntax-highlighter: specifier: ^15.5.0 - version: 15.5.0(react@18.1.0) + version: 15.5.0(react@18.2.0) umi: specifier: ^4.0.64 - version: 4.0.76(@babel/core@7.22.10)(@types/node@20.4.7)(@types/react@18.2.21)(eslint@8.47.0)(jest@29.6.3)(postcss@8.4.28)(prettier@2.8.8)(react-dom@18.1.0)(react@18.1.0)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.88.2) + version: 4.1.0(@babel/core@7.23.7)(@types/node@20.5.1)(@types/react@18.2.47)(eslint@8.56.0)(jest@29.7.0)(prettier@2.8.8)(react-dom@18.2.0)(react@18.2.0)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.89.0) valtio: specifier: ^1.10.7 - version: 1.11.2(@types/react@18.2.21)(react@18.1.0) + version: 1.13.0(@types/react@18.2.47)(react@18.2.0) devDependencies: '@types/lodash': specifier: ^4.14.191 - version: 4.14.197 + version: 4.14.202 '@types/papaparse': specifier: ^5.3.7 - version: 5.3.7 + version: 5.3.14 '@types/react': specifier: ^18.0.0 - version: 18.2.21 + version: 18.2.47 '@types/react-dom': specifier: ^18.0.0 - version: 18.2.7 + version: 18.2.18 '@umijs/openapi': specifier: ^1.8.5 - version: 1.8.5 + version: 1.9.4 antd: specifier: ^5.0.0 - version: 5.8.4(react-dom@18.1.0)(react@18.1.0) + version: 5.12.8(react-dom@18.2.0)(react@18.2.0) babel-plugin-parameter-decorator: specifier: ^1.0.16 version: 1.0.16 babel-plugin-transform-typescript-metadata: specifier: ^0.3.2 - version: 0.3.2(@babel/core@7.22.10) + version: 0.3.2(@babel/core@7.23.7) dotenv: specifier: ^16.3.1 version: 16.3.1 @@ -174,49 +180,49 @@ importers: dependencies: '@ant-design/icons': specifier: ^5.0.1 - version: 5.2.5(react-dom@18.1.0)(react@18.1.0) + version: 5.2.6(react-dom@18.2.0)(react@18.2.0) '@antv/g2': specifier: ^4.2.9 version: 4.2.10 '@antv/layout': specifier: ^0.3.23 - version: 0.3.23(dagre@0.8.5) + version: 0.3.25(dagre@0.8.5) '@antv/x6': specifier: ^2.9.7 - version: 2.13.1 + version: 2.17.1 '@antv/x6-plugin-dnd': specifier: ^2.0.5 - version: 2.0.6(@antv/x6@2.13.1) + version: 2.1.1(@antv/x6@2.17.1) '@antv/x6-plugin-keyboard': specifier: 2.2.1 - version: 2.2.1(@antv/x6@2.13.1) + version: 2.2.1(@antv/x6@2.17.1) '@antv/x6-plugin-selection': specifier: ^2.1.7 - version: 2.1.7(@antv/x6@2.13.1) + version: 2.2.1(@antv/x6@2.17.1) '@antv/x6-react-components': specifier: ^2.0.8 - version: 2.0.8(antd@5.8.4)(react-dom@18.1.0)(react@18.1.0) + version: 2.0.8(antd@5.12.8)(react-dom@18.2.0)(react@18.2.0) '@antv/x6-react-shape': specifier: ^2.1.2 - version: 2.2.2(@antv/x6@2.13.1)(react-dom@18.1.0)(react@18.1.0) + version: 2.2.2(@antv/x6@2.17.1)(react-dom@18.2.0)(react@18.2.0) '@secretflow/utils': specifier: workspace:^ version: link:../utils classnames: specifier: ^2.3.2 - version: 2.3.2 + version: 2.5.1 lodash: specifier: ^4.17.21 version: 4.17.21 react: specifier: ^18.0.0 - version: 18.1.0 + version: 18.2.0 react-csv: specifier: ^2.2.2 version: 2.2.2 react-syntax-highlighter: specifier: ^15.4.3 - version: 15.5.0(react@18.1.0) + version: 15.5.0(react@18.2.0) devDependencies: '@secretflow/config-tsconfig': specifier: workspace:^ @@ -229,13 +235,13 @@ importers: version: link:../../tooling/jest '@types/lodash': specifier: ^4.14.191 - version: 4.14.197 + version: 4.14.202 '@types/react': specifier: ^18.0.28 - version: 18.2.21 + version: 18.2.47 antd: specifier: ^5.0.0 - version: 5.8.4(react-dom@18.1.0)(react@18.1.0) + version: 5.12.8(react-dom@18.2.0)(react@18.2.0) packages/utils: devDependencies: @@ -253,22 +259,22 @@ importers: dependencies: '@typescript-eslint/eslint-plugin': specifier: ^5.56.0 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.47.0)(typescript@4.9.5) + version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^5.56.0 - version: 5.62.0(eslint@8.47.0)(typescript@4.9.5) + version: 5.62.0(eslint@8.56.0)(typescript@4.9.5) eslint-config-prettier: specifier: ^8.8.0 - version: 8.10.0(eslint@8.47.0) + version: 8.10.0(eslint@8.56.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.47.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.56.0) eslint-plugin-react: specifier: ^7.32.2 - version: 7.33.2(eslint@8.47.0) + version: 7.33.2(eslint@8.56.0) eslint-plugin-react-hooks: specifier: ^4.6.0 - version: 4.6.0(eslint@8.47.0) + version: 4.6.0(eslint@8.56.0) tooling/jest: dependencies: @@ -277,43 +283,43 @@ importers: version: 5.17.0 '@testing-library/react': specifier: ^14.0.0 - version: 14.0.0(react-dom@18.1.0)(react@18.1.0) + version: 14.1.2(react-dom@18.2.0)(react@18.2.0) '@types/jest': specifier: ^29.4.0 - version: 29.5.4 + version: 29.5.11 '@types/testing-library__jest-dom': specifier: ^5.14.5 version: 5.14.9 jest-environment-jsdom: specifier: ^29.5.0 - version: 29.6.3 + version: 29.7.0 ts-jest: specifier: ^29.0.5 - version: 29.1.1(@babel/core@7.22.10)(esbuild@0.17.19)(jest@29.6.3)(typescript@4.9.5) + version: 29.1.1(@babel/core@7.23.7)(esbuild@0.17.19)(jest@29.7.0)(typescript@4.9.5) tooling/stylelint: dependencies: postcss: specifier: ^8.0.0 - version: 8.4.28 + version: 8.4.33 postcss-less: specifier: ^6.0.0 - version: 6.0.0(postcss@8.4.28) + version: 6.0.0(postcss@8.4.33) stylelint-config-css-modules: specifier: ^4.2.0 - version: 4.3.0(stylelint@15.10.3) + version: 4.4.0(stylelint@15.11.0) stylelint-config-idiomatic-order: specifier: ^9.0.0 - version: 9.0.0(stylelint@15.10.3) + version: 9.0.0(stylelint@15.11.0) stylelint-config-prettier: specifier: ^9.0.5 - version: 9.0.5(stylelint@15.10.3) + version: 9.0.5(stylelint@15.11.0) stylelint-config-standard: specifier: ^30.0.1 - version: 30.0.1(stylelint@15.10.3) + version: 30.0.1(stylelint@15.11.0) stylelint-order: specifier: ^6.0.3 - version: 6.0.3(stylelint@15.10.3) + version: 6.0.4(stylelint@15.11.0) tooling/tsconfig: {} @@ -321,7 +327,7 @@ importers: dependencies: '@swc/core': specifier: ^1.3.42 - version: 1.3.78 + version: 1.3.102 colorette: specifier: ^2.0.19 version: 2.0.20 @@ -330,7 +336,7 @@ importers: version: 1.1.0 tsup: specifier: ^6.7.0 - version: 6.7.0(@swc/core@1.3.78)(postcss@8.4.28)(ts-node@10.9.1)(typescript@4.9.5) + version: 6.7.0(@swc/core@1.3.102)(postcss@8.4.33)(ts-node@10.9.2)(typescript@4.9.5) packages: @@ -338,8 +344,8 @@ packages: resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} engines: {node: '>=0.10.0'} - /@adobe/css-tools@4.3.1: - resolution: {integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==} + /@adobe/css-tools@4.3.2: + resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==} dev: false /@ampproject/remapping@2.2.1: @@ -347,57 +353,56 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/trace-mapping': 0.3.21 - /@ant-design/colors@7.0.0: - resolution: {integrity: sha512-iVm/9PfGCbC0dSMBrz7oiEXZaaGH7ceU40OJEfKmyuzR9R5CRimJYPlRiFtMQGQcbNMea/ePcoIebi4ASGYXtg==} + /@ant-design/colors@7.0.2: + resolution: {integrity: sha512-7KJkhTiPiLHSu+LmMJnehfJ6242OCxSlR3xHVBecYxnMW8MS/878NXct1GqYARyL59fyeFdKRxXTfvR9SnDgJg==} dependencies: - '@ctrl/tinycolor': 3.6.0 + '@ctrl/tinycolor': 3.6.1 - /@ant-design/cssinjs@1.16.2(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-W+LT6Xm5sEYZn7ocMAIP9LvX99woxGg1aYu15o608/uUAaJDR7LrxBu/5cnMLa6AQK1829zdoKmRnRFOxAgzEg==} + /@ant-design/cssinjs@1.18.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-514V9rjLaFYb3v4s55/8bg2E6fb81b99s3crDZf4nSwtiDLLXs8axnIph+q2TVkY2hbJPZOn/cVsVcnLkzFy7w==} peerDependencies: react: '>=16.0.0' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 '@emotion/hash': 0.8.0 '@emotion/unitless': 0.7.5 - classnames: 2.3.2 - csstype: 3.1.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - stylis: 4.3.0 - - /@ant-design/icons-svg@4.3.0: - resolution: {integrity: sha512-WOgvdH/1Wl8Z7VXigRbCa5djO14zxrNTzvrAQzhWiBQtEKT0uTc8K1ltjKZ8U1gPn/wXhMA8/jE39SJl0WNxSg==} - - /@ant-design/icons@5.2.5(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-9Jc59v5fl5dzmxqLWtRev3dJwU7Ya9ZheoI6XmZjZiQ7PRtk77rC+Rbt7GJzAPPg43RQ4YO53RE1u8n+Et97vQ==} + classnames: 2.5.1 + csstype: 3.1.3 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + stylis: 4.3.1 + + /@ant-design/icons-svg@4.3.1: + resolution: {integrity: sha512-4QBZg8ccyC6LPIRii7A0bZUk3+lEDCLnhB+FVsflGdcWPPmV+j3fire4AwwoqHV/BibgvBmR9ZIo4s867smv+g==} + + /@ant-design/icons@5.2.6(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-4wn0WShF43TrggskBJPRqCD0fcHbzTYjnaoskdiJrVHg86yxoZ8ZUqsXvyn4WUqehRiFKnaclOhqk9w4Ui2KVw==} engines: {node: '>=8'} peerDependencies: react: '>=16.0.0' react-dom: '>=16.0.0' dependencies: - '@ant-design/colors': 7.0.0 - '@ant-design/icons-svg': 4.3.0 - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - lodash.camelcase: 4.3.0 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@ant-design/colors': 7.0.2 + '@ant-design/icons-svg': 4.3.1 + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /@ant-design/react-slick@1.0.2(react@18.1.0): + /@ant-design/react-slick@1.0.2(react@18.2.0): resolution: {integrity: sha512-Wj8onxL/T8KQLFFiCA4t8eIRGpRR+UPgOdac2sYzonv+i0n3kXHmvHLLiOYL655DQx2Umii9Y9nNgL7ssu5haQ==} peerDependencies: react: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 + '@babel/runtime': 7.23.8 + classnames: 2.5.1 json2mq: 0.2.0 - react: 18.1.0 + react: 18.2.0 resize-observer-polyfill: 1.5.1 throttle-debounce: 5.0.0 @@ -407,8 +412,8 @@ packages: execa: 5.1.1 find-up: 5.0.0 - /@antfu/utils@0.7.6: - resolution: {integrity: sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==} + /@antfu/utils@0.7.7: + resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==} /@antv/adjust@0.2.5: resolution: {integrity: sha512-MfWZOkD9CqXRES6MBGRNe27Q577a72EIwyMnE29wIlPliFvJfWwsrONddpGU7lilMpVKecS3WAzOoip3RfPTRQ==} @@ -465,6 +470,21 @@ packages: resolution: {integrity: sha512-4ddpsiHN9Pd4UIlWuKVK1C4IiZIdbwQvy9i7DUSI3xNJ89FPUFt8lxDYj8GzzfdllV0NkJTRxnG+FvLk0llidg==} dev: false + /@antv/g-base@0.4.7: + resolution: {integrity: sha512-wKSpS3/M1slU92iOgi2QV4MCd82J1d2PyPcQArqSFRUZU0KnVMIl95v79dG0Be4YvFaZ3bVrT6Ns1Czr8oplhA==} + dependencies: + '@antv/event-emitter': 0.1.3 + '@antv/g-math': 0.1.9 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/util': 2.0.17 + '@types/d3-timer': 1.0.12 + d3-ease: 1.0.7 + d3-interpolate: 1.4.0 + d3-timer: 1.0.10 + detect-browser: 5.3.0 + dev: false + /@antv/g-base@0.5.15: resolution: {integrity: sha512-QOtq50QpnKez9J75/Z8j2yZ7QDQdk8R8mVQJiHtaEO5eI7DM4ZbrsWff/Ew26JYmPWdq7nbRuARMAD4PX9uuLA==} dependencies: @@ -473,7 +493,7 @@ packages: '@antv/matrix-util': 3.1.0-beta.3 '@antv/path-util': 2.0.15 '@antv/util': 2.0.17 - '@types/d3-timer': 2.0.1 + '@types/d3-timer': 2.0.3 d3-ease: 1.0.7 d3-interpolate: 3.0.1 d3-timer: 1.0.10 @@ -493,6 +513,16 @@ packages: tslib: 2.6.2 dev: false + /@antv/g-gesture@1.0.1(@antv/g-base@0.4.7): + resolution: {integrity: sha512-7zANDfE/aWSWTetJO8uKcI/rvnGPzpfsga0F3IuLKcVjWwSAHocmccMz0bzkltNcm43UY1C2vX2HCBKMCwDdvg==} + peerDependencies: + '@antv/g-base': ~0.4.4 + dependencies: + '@antv/event-emitter': 0.1.3 + '@antv/g-base': 0.4.7 + d3-ease: 1.0.7 + dev: false + /@antv/g-math@0.1.9: resolution: {integrity: sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==} dependencies: @@ -562,16 +592,16 @@ packages: resolution: {integrity: sha512-hhJOMThec51nU4Fe5p/viLlNIL71uDEgYFzKPajWjr2715SFG1HAgiP6AVylIeqBcAZ04u3Lw7usjl/TuI5RuQ==} dev: false - /@antv/layout@0.3.23(dagre@0.8.5): - resolution: {integrity: sha512-F/CyfQuc1WSgCVemX0jA3pE3XuDRbDJmMueY1cL8WgL6nhdzm3/jg5UPamwbBVnhLk+rzNUDYdEIyX+RJbpcMA==} + /@antv/layout@0.3.25(dagre@0.8.5): + resolution: {integrity: sha512-d29Aw1PXoAavMRZy7iTB9L5rMBeChFEX0BJ9ELP4TI35ySdCu07YbmPo9ju9OH/6sG2/NB3o85Ayxrre3iwX/g==} dependencies: '@antv/g-webgpu': 0.7.2 '@antv/graphlib': 1.2.0 - '@antv/util': 3.3.4 + '@antv/util': 3.3.5 d3-force: 2.1.1 d3-quadtree: 2.0.0 dagre-compound: 0.0.11(dagre@0.8.5) - ml-matrix: 6.10.4 + ml-matrix: 6.5.0 transitivePeerDependencies: - dagre dev: false @@ -600,6 +630,42 @@ packages: tslib: 2.6.2 dev: false + /@antv/s2-react@1.46.0(@ant-design/icons@5.2.6)(@antv/s2@1.54.2)(antd@5.12.8)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-C6zDeE6Qxf+7jFzgb3Ft9MsiIwPqFVYtNB2Th/3W4npjyyr5PJyHthXQelJ9aNi4N0bOqOUPh9FuqkRDF+xcoA==} + peerDependencies: + '@ant-design/icons': '>=4.7.0' + '@antv/s2': '>=1.0.0' + antd: '>=4.16.13' + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0) + '@antv/s2': 1.54.2(@antv/g-base@0.4.7) + ahooks: 3.7.8(react@18.2.0) + antd: 5.12.8(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + lodash: 4.17.21 + react: 18.2.0 + react-beautiful-dnd: 13.1.1(react-dom@18.2.0)(react@18.2.0) + react-dom: 18.2.0(react@18.2.0) + transitivePeerDependencies: + - react-native + dev: false + + /@antv/s2@1.54.2(@antv/g-base@0.4.7): + resolution: {integrity: sha512-mFLKxbIxA4g4dZS8hGVcICVY6kzvHEefIWNAUybFeODRy38Ts/nDtQttID5VIqpNRn2TsYcv0x5BR2sZEHVp0A==} + dependencies: + '@antv/event-emitter': 0.1.3 + '@antv/g-canvas': 0.5.14 + '@antv/g-gesture': 1.0.1(@antv/g-base@0.4.7) + d3-interpolate: 1.4.0 + d3-timer: 1.0.10 + decimal.js: 10.4.3 + lodash: 4.17.21 + transitivePeerDependencies: + - '@antv/g-base' + dev: false + /@antv/scale@0.3.18: resolution: {integrity: sha512-GHwE6Lo7S/Q5fgaLPaCsW+CH+3zl4aXpnN1skOiEY0Ue9/u+s2EySv6aDXYkAqs//i0uilMDD/0/4n8caX9U9w==} dependencies: @@ -611,20 +677,21 @@ packages: /@antv/util@2.0.17: resolution: {integrity: sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==} dependencies: - csstype: 3.1.2 + csstype: 3.1.3 tslib: 2.6.2 dev: false - /@antv/util@3.3.4: - resolution: {integrity: sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==} + /@antv/util@3.3.5: + resolution: {integrity: sha512-bVv1loamL/MgUEN9dNt7VKAsghO4Wgb+kzr8B9TgkM5tHgKk++xiTwi3pejIdgU8DDkzcyaRsO+VTOXJt8jLng==} dependencies: fast-deep-equal: 3.1.3 + flru: 1.0.2 gl-matrix: 3.4.3 tslib: 2.6.2 dev: false - /@antv/x6-common@2.0.14: - resolution: {integrity: sha512-/8OmYV2hxUIwNKt/YurWhGmhbTBu95mZRcF5cwUVp0oR0SmOGNFqMT710w1uvLAfWmfdoq/oEcCuScW/L8mOLw==} + /@antv/x6-common@2.0.17: + resolution: {integrity: sha512-37g7vmRkNdYzZPdwjaMSZEGv/MMH0S4r70/Jwoab1mioycmuIBN73iyziX8m56BvJSDucZ3J/6DU07otWqzS6A==} dependencies: lodash-es: 4.17.21 utility-types: 3.10.0 @@ -634,121 +701,102 @@ packages: resolution: {integrity: sha512-MId6riEQkxphBpVeTcL4ZNXL4lScyvDEPLyIafvWMcWNTGK0jgkK7N20XSzqt8ltJb0mGUso5s56mrk8ysHu2A==} dev: false - /@antv/x6-plugin-dnd@2.0.6(@antv/x6@2.13.1): - resolution: {integrity: sha512-HD0PgL27ZV+X1Q0gwQ0ltm67J5okvAdGndFv5p8Pp9bV5PKe8B2BzLF1CZwhBroz58xkXJVcGH0TT4NmrHjbRw==} + /@antv/x6-plugin-dnd@2.1.1(@antv/x6@2.17.1): + resolution: {integrity: sha512-v0szzik1RkadPDn4Qi5mOSaB2AeI78D40/YuCYbPVzplG+HydGsHwO3MLTgJPQ+R5n0eM0W5F850p1VfTOHR7g==} peerDependencies: '@antv/x6': ^2.x dependencies: - '@antv/x6': 2.13.1 + '@antv/x6': 2.17.1 dev: false - /@antv/x6-plugin-keyboard@2.2.1(@antv/x6@2.13.1): + /@antv/x6-plugin-keyboard@2.2.1(@antv/x6@2.17.1): resolution: {integrity: sha512-sqfN0h4txVO211uIeKBd3zQ/IN2zPzDThWNTEhRx7Lecg1fO7uRXWBbOA48j3EgpRFXVexdSzIEVJEx+IWUdYw==} peerDependencies: '@antv/x6': ^2.x dependencies: - '@antv/x6': 2.13.1 + '@antv/x6': 2.17.1 mousetrap: 1.6.5 dev: false - /@antv/x6-plugin-selection@2.1.7(@antv/x6@2.13.1): - resolution: {integrity: sha512-ODfYLNwKSaLgIYMYfMW4dYQ9KKFOVBEdH0BzvyG8mfRol+JtZuyrm4BRbAvMryQKHrSxs4JCYXTFd2F7ZTuxLQ==} + /@antv/x6-plugin-selection@2.2.1(@antv/x6@2.17.1): + resolution: {integrity: sha512-9rV4jKcvqNqcGNBAm14nwOBtC+XC8/6qJTce8f8YBsE3XGSxrr8gNn2bmgzcV+3R+McXbAUaQT5P+vQV1Q6raA==} peerDependencies: '@antv/x6': ^2.x dependencies: - '@antv/x6': 2.13.1 + '@antv/x6': 2.17.1 dev: false - /@antv/x6-react-components@2.0.8(antd@5.8.4)(react-dom@18.1.0)(react@18.1.0): + /@antv/x6-react-components@2.0.8(antd@5.12.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-oXtkUrD397v55joEWFj6DMvMJK/fc1UDCIyLniw2L8d00kAWY4Swt4RFjMgTOvv1biii6QaugvsVj4ebIp+rOg==} peerDependencies: antd: '>=4.4.2 || >=5.0.0' react: ^18.0.0 react-dom: ^18.0.0 dependencies: - antd: 5.8.4(react-dom@18.1.0)(react@18.1.0) + antd: 5.12.8(react-dom@18.2.0)(react@18.2.0) clamp: 1.0.1 - classnames: 2.3.2 - rc-dropdown: 3.6.2(react-dom@18.1.0)(react@18.1.0) + classnames: 2.5.1 + rc-dropdown: 3.6.2(react-dom@18.2.0)(react@18.2.0) rc-util: 4.21.1 - react: 18.1.0 - react-color: 2.19.3(react@18.1.0) - react-dom: 18.1.0(react@18.1.0) - react-resize-detector: 7.1.2(react-dom@18.1.0)(react@18.1.0) - ua-parser-js: 0.7.35 + react: 18.2.0 + react-color: 2.19.3(react@18.2.0) + react-dom: 18.2.0(react@18.2.0) + react-resize-detector: 7.1.2(react-dom@18.2.0)(react@18.2.0) + ua-parser-js: 0.7.37 dev: false - /@antv/x6-react-shape@2.2.2(@antv/x6@2.13.1)(react-dom@18.1.0)(react@18.1.0): + /@antv/x6-react-shape@2.2.2(@antv/x6@2.17.1)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-uwehrdNCPkgBpVfsxEQk1M77Q+q9D7+HkqIm4Fm3Oz4kzkKCoc3KoxCIoLimbANAhqAPEJ40sRR0ZY+lzmP7WQ==} peerDependencies: '@antv/x6': ^2.x react: '>=18.0.0' react-dom: '>= 18.0.0' dependencies: - '@antv/x6': 2.13.1 - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@antv/x6': 2.17.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: false - /@antv/x6@2.13.1: - resolution: {integrity: sha512-aAj3SlOi4KhBhpoiX4WCsJ61glztSmZy6Vb0aWZTFZXErfp1sUjTmrThJeTG6IQZbXW+7GcGjFGI04roOa05Bg==} + /@antv/x6@2.17.1: + resolution: {integrity: sha512-OndqBbstObovIA9dg4Gu2FmplB6jP5kV1df5MSRiAxBaIBN0ydiPQ6qo60d8n1yWoYsY5bwdRJ4cRH1QuZxdlQ==} dependencies: - '@antv/x6-common': 2.0.14 + '@antv/x6-common': 2.0.17 '@antv/x6-geometry': 2.0.5 utility-types: 3.10.0 dev: false - /@babel/cli@7.22.15(@babel/core@7.22.10): - resolution: {integrity: sha512-prtg5f6zCERIaECeTZzd2fMtVjlfjhUcO+fBLQ6DXXdq5FljN+excVitJ2nogsusdf31LeqkjAfXZ7Xq+HmN8g==} - engines: {node: '>=6.9.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@jridgewell/trace-mapping': 0.3.19 - commander: 4.1.1 - convert-source-map: 1.9.0 - fs-readdir-recursive: 1.1.0 - glob: 7.2.3 - make-dir: 2.1.0 - slash: 2.0.0 - optionalDependencies: - '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 - chokidar: 3.5.3 - /@babel/code-frame@7.12.11: resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} dependencies: - '@babel/highlight': 7.22.10 + '@babel/highlight': 7.23.4 dev: true - /@babel/code-frame@7.22.10: - resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==} + /@babel/code-frame@7.23.5: + resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.22.10 + '@babel/highlight': 7.23.4 chalk: 2.4.2 - /@babel/compat-data@7.22.9: - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} + /@babel/compat-data@7.23.5: + resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} engines: {node: '>=6.9.0'} - /@babel/core@7.21.0: - resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==} + /@babel/core@7.23.6: + resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0) - '@babel/helpers': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10 - '@babel/types': 7.22.10 - convert-source-map: 1.9.0 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6) + '@babel/helpers': 7.23.8 + '@babel/parser': 7.23.6 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 @@ -756,21 +804,21 @@ packages: transitivePeerDependencies: - supports-color - /@babel/core@7.22.10: - resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==} + /@babel/core@7.23.7: + resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) - '@babel/helpers': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10 - '@babel/types': 7.22.10 - convert-source-map: 1.9.0 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helpers': 7.23.8 + '@babel/parser': 7.23.6 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 @@ -778,1257 +826,1312 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser@7.19.1(@babel/core@7.21.0)(eslint@8.47.0): - resolution: {integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==} + /@babel/eslint-parser@7.23.3(@babel/core@7.23.6)(eslint@8.56.0): + resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: - '@babel/core': '>=7.11.0' + '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.21.0 + '@babel/core': 7.23.6 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 8.47.0 + eslint: 8.56.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 - /@babel/eslint-parser@7.19.1(@babel/core@7.22.10)(eslint@7.32.0): - resolution: {integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==} + /@babel/eslint-parser@7.23.3(@babel/core@7.23.7)(eslint@7.32.0): + resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: - '@babel/core': '>=7.11.0' + '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 7.32.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 dev: true - /@babel/generator@7.22.10: - resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==} + /@babel/generator@7.23.6: + resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/trace-mapping': 0.3.21 jsesc: 2.5.2 /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 + dev: true - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.10: - resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==} + /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: + resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 + dev: true - /@babel/helper-compilation-targets@7.22.10: - resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==} + /@babel/helper-compilation-targets@7.23.6: + resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.22.9 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.10 + '@babel/compat-data': 7.23.5 + '@babel/helper-validator-option': 7.23.5 + browserslist: 4.22.2 lru-cache: 5.1.1 semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==} + /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7): + resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.10): - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 + dev: true - /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.10): - resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} + /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7): + resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.4 + resolve: 1.22.8 transitivePeerDependencies: - supports-color + dev: true - /@babel/helper-environment-visitor@7.22.5: - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} + /@babel/helper-environment-visitor@7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} - /@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 - /@babel/helper-member-expression-to-functions@7.22.5: - resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} + /@babel/helper-member-expression-to-functions@7.23.0: + resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 + dev: true - /@babel/helper-module-imports@7.22.5: - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.21.0): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6): + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.0 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.10): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 + dev: true /@babel/helper-plugin-utils@7.22.5: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.10): - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.10 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 + dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.10): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 + dev: true /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 /@babel/helper-skip-transparent-expression-wrappers@7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 + dev: true /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 - /@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} + /@babel/helper-string-parser@7.23.4: + resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.22.5: - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.22.5: - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} + /@babel/helper-validator-option@7.23.5: + resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function@7.22.10: - resolution: {integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==} + /@babel/helper-wrap-function@7.22.20: + resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.22.5 - '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + dev: true - /@babel/helpers@7.22.10: - resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==} + /@babel/helpers@7.23.8: + resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10 - '@babel/types': 7.22.10 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 transitivePeerDependencies: - supports-color - /@babel/highlight@7.22.10: - resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==} + /@babel/highlight@7.23.4: + resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser@7.22.10: - resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==} + /@babel/parser@7.23.6: + resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.10) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) + dev: true - /@babel/plugin-external-helpers@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-ngnNEWxmykPk82mH4ajZT0qTztr3Je6hrMuKAslZVM8G1YZTENJSYwrIGtt6KOtznug3exmAtF4so/nPqJuA4A==} + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7): + resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.10): + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-proposal-decorators@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-KxN6TqZzcFi4uD3UifqXElBTBNLAEH1l3vzMQj6JwJZbL2sZlThxSViOKCYY+4Ah4V4JhQ95IVB7s/Y6SJSlMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10) - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.22.10) dev: true - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + /@babel/plugin-proposal-decorators@7.23.7(@babel/core@7.23.7): + resolution: {integrity: sha512-b1s5JyeMvqj7d9m9KhJNHKc18gEJiSyVzVX3bwbiPalQBQpuvfPh6lA9F7Kk/dWH0TIiXRpB9yicwijY6buPng==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.10): + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 + dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.10): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.10): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.10): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} + /@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} + /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} + /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.10): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.10): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.10): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.10): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.10): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} + /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.10): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} + /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-async-generator-functions@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==} + /@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7): + resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.10) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} + /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.7 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.10) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} + /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==} + /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} + /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==} + /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.10): - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.7): + resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 + dev: true - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 - - /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==} + /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 + dev: true - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} + /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} + /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==} + /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) + dev: true - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} + /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==} + /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10) + dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} + /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7): + resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-function-name': 7.22.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + dev: true - /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==} + /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) + dev: true - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} + /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==} + /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) + dev: true - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} + /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.10): - resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} + /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 + dev: true - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} + /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 + dev: true - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} + /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.10): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} + /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==} + /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==} + /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==} + /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/compat-data': 7.23.5 + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} + /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==} + /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-optional-chaining@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==} + /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} + /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==} + /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} + /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.10): + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.7): resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} + /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} + /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} + /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.7): + resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) - '@babel/types': 7.22.10 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) + '@babel/types': 7.23.6 + dev: true - /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} + /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} + /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 + dev: true - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} + /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} + /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} + /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + dev: true - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} + /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} + /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} + /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-typescript@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-7++c8I/ymsDo4QQBAgbraXLzIM6jmfao11KgIBEYZRReWzNWH9NtNgJcyrZiXsOPh523FQm6LfpLyy/U5fn46A==} + /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7): + resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7) + dev: true - /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} + /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} + /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} + /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} + /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/preset-env@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==} + /@babel/preset-env@7.23.8(@babel/core@7.23.7): + resolution: {integrity: sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/compat-data': 7.23.5 + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.10) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-async-generator-functions': 7.22.10(@babel/core@7.22.10) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.22.10) - '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.10) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.22.10) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.22.10) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.10) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.10) - '@babel/types': 7.22.10 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.10) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.10) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.10) - core-js-compat: 3.32.1 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7) + '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7) + '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7) + '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7) + babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7) + babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7) + babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7) + core-js-compat: 3.35.0 semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.10): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 esutils: 2.0.3 + dev: true - /@babel/preset-react@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==} + /@babel/preset-react@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.10) - - /@babel/preset-typescript@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==} + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7) + '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.7) + dev: true + + /@babel/preset-typescript@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-typescript': 7.22.10(@babel/core@7.22.10) + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7) + dev: true /@babel/regjsgen@0.8.0: resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + dev: true - /@babel/runtime@7.21.0: - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} + /@babel/runtime@7.23.6: + resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.14.1 - /@babel/runtime@7.22.10: - resolution: {integrity: sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==} + /@babel/runtime@7.23.8: + resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.14.0 + regenerator-runtime: 0.14.1 - /@babel/template@7.22.5: - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} + /@babel/template@7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/types': 7.22.10 + '@babel/code-frame': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 - /@babel/traverse@7.22.10: - resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==} + /@babel/traverse@7.23.7: + resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.10 - '@babel/types': 7.22.10 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types@7.22.10: - resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==} + /@babel/types@7.23.6: + resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@bcoe/v8-coverage@0.2.3: @@ -2037,16 +2140,16 @@ packages: /@bloomberg/record-tuple-polyfill@0.0.4: resolution: {integrity: sha512-h0OYmPR3A5Dfbetra/GzxBAzQk8sH7LhRkRUTdagX6nrtlUgJGYCTv4bBK33jsTQw9HDd8PE2x1Ma+iRKEDUsw==} - /@commitlint/cli@17.7.1: - resolution: {integrity: sha512-BCm/AT06SNCQtvFv921iNhudOHuY16LswT0R3OeolVGLk8oP+Rk9TfQfgjH7QPMjhvp76bNqGFEcpKojxUNW1g==} + /@commitlint/cli@17.8.1: + resolution: {integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==} engines: {node: '>=v14'} hasBin: true dependencies: - '@commitlint/format': 17.4.4 - '@commitlint/lint': 17.7.0 - '@commitlint/load': 17.7.1 - '@commitlint/read': 17.5.1 - '@commitlint/types': 17.4.4 + '@commitlint/format': 17.8.1 + '@commitlint/lint': 17.8.1 + '@commitlint/load': 17.8.1 + '@commitlint/read': 17.8.1 + '@commitlint/types': 17.8.1 execa: 5.1.1 lodash.isfunction: 3.0.9 resolve-from: 5.0.0 @@ -2057,26 +2160,26 @@ packages: - '@swc/wasm' dev: true - /@commitlint/config-conventional@17.7.0: - resolution: {integrity: sha512-iicqh2o6et+9kWaqsQiEYZzfLbtoWv9uZl8kbI8EGfnc0HeGafQBF7AJ0ylN9D/2kj6txltsdyQs8+2fTMwWEw==} + /@commitlint/config-conventional@17.8.1: + resolution: {integrity: sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==} engines: {node: '>=v14'} dependencies: conventional-changelog-conventionalcommits: 6.1.0 dev: true - /@commitlint/config-validator@17.6.7: - resolution: {integrity: sha512-vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ==} + /@commitlint/config-validator@17.8.1: + resolution: {integrity: sha512-UUgUC+sNiiMwkyiuIFR7JG2cfd9t/7MV8VB4TZ+q02ZFkHoduUS4tJGsCBWvBOGD9Btev6IecPMvlWUfJorkEA==} engines: {node: '>=v14'} dependencies: - '@commitlint/types': 17.4.4 + '@commitlint/types': 17.8.1 ajv: 8.12.0 dev: true - /@commitlint/ensure@17.6.7: - resolution: {integrity: sha512-mfDJOd1/O/eIb/h4qwXzUxkmskXDL9vNPnZ4AKYKiZALz4vHzwMxBSYtyL2mUIDeU9DRSpEUins8SeKtFkYHSw==} + /@commitlint/ensure@17.8.1: + resolution: {integrity: sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==} engines: {node: '>=v14'} dependencies: - '@commitlint/types': 17.4.4 + '@commitlint/types': 17.8.1 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -2084,122 +2187,122 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule@17.4.0: - resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==} + /@commitlint/execute-rule@17.8.1: + resolution: {integrity: sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==} engines: {node: '>=v14'} dev: true - /@commitlint/format@17.4.4: - resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==} + /@commitlint/format@17.8.1: + resolution: {integrity: sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==} engines: {node: '>=v14'} dependencies: - '@commitlint/types': 17.4.4 + '@commitlint/types': 17.8.1 chalk: 4.1.2 dev: true - /@commitlint/is-ignored@17.7.0: - resolution: {integrity: sha512-043rA7m45tyEfW7Zv2vZHF++176MLHH9h70fnPoYlB1slKBeKl8BwNIlnPg4xBdRBVNPaCqvXxWswx2GR4c9Hw==} + /@commitlint/is-ignored@17.8.1: + resolution: {integrity: sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==} engines: {node: '>=v14'} dependencies: - '@commitlint/types': 17.4.4 + '@commitlint/types': 17.8.1 semver: 7.5.4 dev: true - /@commitlint/lint@17.7.0: - resolution: {integrity: sha512-TCQihm7/uszA5z1Ux1vw+Nf3yHTgicus/+9HiUQk+kRSQawByxZNESeQoX9ujfVd3r4Sa+3fn0JQAguG4xvvbA==} + /@commitlint/lint@17.8.1: + resolution: {integrity: sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==} engines: {node: '>=v14'} dependencies: - '@commitlint/is-ignored': 17.7.0 - '@commitlint/parse': 17.7.0 - '@commitlint/rules': 17.7.0 - '@commitlint/types': 17.4.4 + '@commitlint/is-ignored': 17.8.1 + '@commitlint/parse': 17.8.1 + '@commitlint/rules': 17.8.1 + '@commitlint/types': 17.8.1 dev: true - /@commitlint/load@17.7.1: - resolution: {integrity: sha512-S/QSOjE1ztdogYj61p6n3UbkUvweR17FQ0zDbNtoTLc+Hz7vvfS7ehoTMQ27hPSjVBpp7SzEcOQu081RLjKHJQ==} + /@commitlint/load@17.8.1: + resolution: {integrity: sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==} engines: {node: '>=v14'} dependencies: - '@commitlint/config-validator': 17.6.7 - '@commitlint/execute-rule': 17.4.0 - '@commitlint/resolve-extends': 17.6.7 - '@commitlint/types': 17.4.4 - '@types/node': 20.4.7 + '@commitlint/config-validator': 17.8.1 + '@commitlint/execute-rule': 17.8.1 + '@commitlint/resolve-extends': 17.8.1 + '@commitlint/types': 17.8.1 + '@types/node': 20.5.1 chalk: 4.1.2 - cosmiconfig: 8.2.0 - cosmiconfig-typescript-loader: 4.4.0(@types/node@20.4.7)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5) + cosmiconfig: 8.3.6(typescript@4.9.5) + cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.2)(typescript@4.9.5) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 - ts-node: 10.9.1(@types/node@20.4.7)(typescript@4.9.5) + ts-node: 10.9.2(@types/node@20.5.1)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' dev: true - /@commitlint/message@17.4.2: - resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==} + /@commitlint/message@17.8.1: + resolution: {integrity: sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==} engines: {node: '>=v14'} dev: true - /@commitlint/parse@17.7.0: - resolution: {integrity: sha512-dIvFNUMCUHqq5Abv80mIEjLVfw8QNuA4DS7OWip4pcK/3h5wggmjVnlwGCDvDChkw2TjK1K6O+tAEV78oxjxag==} + /@commitlint/parse@17.8.1: + resolution: {integrity: sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==} engines: {node: '>=v14'} dependencies: - '@commitlint/types': 17.4.4 + '@commitlint/types': 17.8.1 conventional-changelog-angular: 6.0.0 conventional-commits-parser: 4.0.0 dev: true - /@commitlint/read@17.5.1: - resolution: {integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==} + /@commitlint/read@17.8.1: + resolution: {integrity: sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==} engines: {node: '>=v14'} dependencies: - '@commitlint/top-level': 17.4.0 - '@commitlint/types': 17.4.4 - fs-extra: 11.1.1 + '@commitlint/top-level': 17.8.1 + '@commitlint/types': 17.8.1 + fs-extra: 11.2.0 git-raw-commits: 2.0.11 minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@17.6.7: - resolution: {integrity: sha512-PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg==} + /@commitlint/resolve-extends@17.8.1: + resolution: {integrity: sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==} engines: {node: '>=v14'} dependencies: - '@commitlint/config-validator': 17.6.7 - '@commitlint/types': 17.4.4 + '@commitlint/config-validator': 17.8.1 + '@commitlint/types': 17.8.1 import-fresh: 3.3.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 dev: true - /@commitlint/rules@17.7.0: - resolution: {integrity: sha512-J3qTh0+ilUE5folSaoK91ByOb8XeQjiGcdIdiB/8UT1/Rd1itKo0ju/eQVGyFzgTMYt8HrDJnGTmNWwcMR1rmA==} + /@commitlint/rules@17.8.1: + resolution: {integrity: sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==} engines: {node: '>=v14'} dependencies: - '@commitlint/ensure': 17.6.7 - '@commitlint/message': 17.4.2 - '@commitlint/to-lines': 17.4.0 - '@commitlint/types': 17.4.4 + '@commitlint/ensure': 17.8.1 + '@commitlint/message': 17.8.1 + '@commitlint/to-lines': 17.8.1 + '@commitlint/types': 17.8.1 execa: 5.1.1 dev: true - /@commitlint/to-lines@17.4.0: - resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==} + /@commitlint/to-lines@17.8.1: + resolution: {integrity: sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==} engines: {node: '>=v14'} dev: true - /@commitlint/top-level@17.4.0: - resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==} + /@commitlint/top-level@17.8.1: + resolution: {integrity: sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==} engines: {node: '>=v14'} dependencies: find-up: 5.0.0 dev: true - /@commitlint/types@17.4.4: - resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==} + /@commitlint/types@17.8.1: + resolution: {integrity: sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==} engines: {node: '>=v14'} dependencies: chalk: 4.1.2 @@ -2211,176 +2314,147 @@ packages: dependencies: '@jridgewell/trace-mapping': 0.3.9 - /@csstools/css-parser-algorithms@2.3.1(@csstools/css-tokenizer@2.2.0): - resolution: {integrity: sha512-xrvsmVUtefWMWQsGgFffqWSK03pZ1vfDki4IVIIUxxDKnGBzqNgv0A7SB1oXtVNEkcVO8xi1ZrTL29HhSu5kGA==} + /@csstools/css-parser-algorithms@2.5.0(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-tokenizer': ^2.2.0 + '@csstools/css-tokenizer': ^2.2.3 dependencies: - '@csstools/css-tokenizer': 2.2.0 + '@csstools/css-tokenizer': 2.2.3 - /@csstools/css-tokenizer@2.2.0: - resolution: {integrity: sha512-wErmsWCbsmig8sQKkM6pFhr/oPha1bHfvxsUY5CYSQxwyhA9Ulrs8EqCgClhg4Tgg2XapVstGqSVcz0xOYizZA==} + /@csstools/css-tokenizer@2.2.3: + resolution: {integrity: sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg==} engines: {node: ^14 || ^16 || >=18} - /@csstools/media-query-list-parser@2.1.4(@csstools/css-parser-algorithms@2.3.1)(@csstools/css-tokenizer@2.2.0): - resolution: {integrity: sha512-V/OUXYX91tAC1CDsiY+HotIcJR+vPtzrX8pCplCpT++i8ThZZsq5F5dzZh/bDM3WUOjrvC1ljed1oSJxMfjqhw==} + /@csstools/media-query-list-parser@2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-lHPKJDkPUECsyAvD60joYfDmp8UERYxHGkFfyLJFTVK/ERJe0sVlIFLXU5XFxdjNDTerp5L4KeaKG+Z5S94qxQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-parser-algorithms': ^2.3.1 - '@csstools/css-tokenizer': ^2.2.0 + '@csstools/css-parser-algorithms': ^2.5.0 + '@csstools/css-tokenizer': ^2.2.3 dependencies: - '@csstools/css-parser-algorithms': 2.3.1(@csstools/css-tokenizer@2.2.0) - '@csstools/css-tokenizer': 2.2.0 + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 - /@csstools/postcss-color-function@1.1.1(postcss@8.4.28): + /@csstools/postcss-color-function@1.1.1(postcss@8.4.33): resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.28) - postcss: 8.4.28 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.33) + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.28): + /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.33): resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.28): + /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.33): resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.28): + /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.33): resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.28) - postcss: 8.4.28 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.33) + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.28): + /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.33): resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.15) + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.28): + /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.33): resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.28): + /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.33): resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.28) - postcss: 8.4.28 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.33) + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.28): + /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.33): resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.28): + /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.33): resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /@csstools/postcss-unset-value@1.0.2(postcss@8.4.28): + /@csstools/postcss-unset-value@1.0.2(postcss@8.4.33): resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13): + /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.15): resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss-selector-parser: ^6.0.10 dependencies: - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.15 - /@csstools/selector-specificity@3.0.0(postcss-selector-parser@6.0.13): - resolution: {integrity: sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==} + /@csstools/selector-specificity@3.0.1(postcss-selector-parser@6.0.15): + resolution: {integrity: sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss-selector-parser: ^6.0.13 dependencies: - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.15 - /@ctrl/tinycolor@3.6.0: - resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==} + /@ctrl/tinycolor@3.6.1: + resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} engines: {node: '>=10'} /@emotion/hash@0.8.0: resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} - /@emotion/is-prop-valid@1.2.1: - resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==} - dependencies: - '@emotion/memoize': 0.8.1 - - /@emotion/memoize@0.8.1: - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} - /@emotion/unitless@0.7.5: resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} - /@emotion/unitless@0.8.1: - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} - - /@esbuild-kit/cjs-loader@2.4.2: - resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} - dependencies: - '@esbuild-kit/core-utils': 3.1.0 - get-tsconfig: 4.7.0 - - /@esbuild-kit/core-utils@3.1.0: - resolution: {integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==} - dependencies: - esbuild: 0.17.19 - source-map-support: 0.5.21 - - /@esbuild-kit/esm-loader@2.5.5: - resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==} - dependencies: - '@esbuild-kit/core-utils': 3.1.0 - get-tsconfig: 4.7.0 - /@esbuild/android-arm64@0.17.19: resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} engines: {node: '>=12'} @@ -2389,6 +2463,14 @@ packages: requiresBuild: true optional: true + /@esbuild/android-arm64@0.18.20: + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + optional: true + /@esbuild/android-arm@0.17.19: resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} engines: {node: '>=12'} @@ -2397,6 +2479,14 @@ packages: requiresBuild: true optional: true + /@esbuild/android-arm@0.18.20: + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + optional: true + /@esbuild/android-x64@0.17.19: resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} engines: {node: '>=12'} @@ -2405,6 +2495,14 @@ packages: requiresBuild: true optional: true + /@esbuild/android-x64@0.18.20: + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + optional: true + /@esbuild/darwin-arm64@0.17.19: resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} engines: {node: '>=12'} @@ -2413,6 +2511,14 @@ packages: requiresBuild: true optional: true + /@esbuild/darwin-arm64@0.18.20: + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + /@esbuild/darwin-x64@0.17.19: resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} engines: {node: '>=12'} @@ -2421,6 +2527,14 @@ packages: requiresBuild: true optional: true + /@esbuild/darwin-x64@0.18.20: + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + optional: true + /@esbuild/freebsd-arm64@0.17.19: resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} engines: {node: '>=12'} @@ -2429,6 +2543,14 @@ packages: requiresBuild: true optional: true + /@esbuild/freebsd-arm64@0.18.20: + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + optional: true + /@esbuild/freebsd-x64@0.17.19: resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} engines: {node: '>=12'} @@ -2437,6 +2559,14 @@ packages: requiresBuild: true optional: true + /@esbuild/freebsd-x64@0.18.20: + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + optional: true + /@esbuild/linux-arm64@0.17.19: resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} engines: {node: '>=12'} @@ -2445,6 +2575,14 @@ packages: requiresBuild: true optional: true + /@esbuild/linux-arm64@0.18.20: + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-arm@0.17.19: resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} engines: {node: '>=12'} @@ -2453,6 +2591,14 @@ packages: requiresBuild: true optional: true + /@esbuild/linux-arm@0.18.20: + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-ia32@0.17.19: resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} engines: {node: '>=12'} @@ -2461,6 +2607,14 @@ packages: requiresBuild: true optional: true + /@esbuild/linux-ia32@0.18.20: + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-loong64@0.17.19: resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} engines: {node: '>=12'} @@ -2469,6 +2623,14 @@ packages: requiresBuild: true optional: true + /@esbuild/linux-loong64@0.18.20: + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-mips64el@0.17.19: resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} engines: {node: '>=12'} @@ -2477,6 +2639,14 @@ packages: requiresBuild: true optional: true + /@esbuild/linux-mips64el@0.18.20: + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-ppc64@0.17.19: resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} engines: {node: '>=12'} @@ -2485,6 +2655,14 @@ packages: requiresBuild: true optional: true + /@esbuild/linux-ppc64@0.18.20: + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-riscv64@0.17.19: resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} engines: {node: '>=12'} @@ -2493,8 +2671,24 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-s390x@0.17.19: - resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} + /@esbuild/linux-riscv64@0.18.20: + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-s390x@0.17.19: + resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-s390x@0.18.20: + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -2509,6 +2703,14 @@ packages: requiresBuild: true optional: true + /@esbuild/linux-x64@0.18.20: + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/netbsd-x64@0.17.19: resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} engines: {node: '>=12'} @@ -2517,6 +2719,14 @@ packages: requiresBuild: true optional: true + /@esbuild/netbsd-x64@0.18.20: + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + optional: true + /@esbuild/openbsd-x64@0.17.19: resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} engines: {node: '>=12'} @@ -2525,6 +2735,14 @@ packages: requiresBuild: true optional: true + /@esbuild/openbsd-x64@0.18.20: + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + optional: true + /@esbuild/sunos-x64@0.17.19: resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} engines: {node: '>=12'} @@ -2533,6 +2751,14 @@ packages: requiresBuild: true optional: true + /@esbuild/sunos-x64@0.18.20: + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + optional: true + /@esbuild/win32-arm64@0.17.19: resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} engines: {node: '>=12'} @@ -2541,6 +2767,14 @@ packages: requiresBuild: true optional: true + /@esbuild/win32-arm64@0.18.20: + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + optional: true + /@esbuild/win32-ia32@0.17.19: resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} engines: {node: '>=12'} @@ -2549,6 +2783,14 @@ packages: requiresBuild: true optional: true + /@esbuild/win32-ia32@0.18.20: + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + optional: true + /@esbuild/win32-x64@0.17.19: resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} engines: {node: '>=12'} @@ -2557,6 +2799,14 @@ packages: requiresBuild: true optional: true + /@esbuild/win32-x64@0.18.20: + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + optional: true + /@eslint-community/eslint-utils@4.4.0(eslint@7.32.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -2567,17 +2817,17 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.47.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.47.0 + eslint: 8.56.0 eslint-visitor-keys: 3.4.3 - /@eslint-community/regexpp@4.7.0: - resolution: {integrity: sha512-+HencqxU7CFJnQb7IKtuNBqS6Yx3Tz4kOL8BJXo+JyeiBm5MEX6pO8onXDkjrkCRlfYXS1Axro15ZjVFe9YgsA==} + /@eslint-community/regexpp@4.10.0: + resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} /@eslint/eslintrc@0.4.3: @@ -2587,7 +2837,7 @@ packages: ajv: 6.12.6 debug: 4.3.4 espree: 7.3.1 - globals: 13.21.0 + globals: 13.24.0 ignore: 4.0.6 import-fresh: 3.3.0 js-yaml: 3.14.1 @@ -2597,15 +2847,15 @@ packages: - supports-color dev: true - /@eslint/eslintrc@2.1.2: - resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} + /@eslint/eslintrc@2.1.4: + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 espree: 9.6.1 - globals: 13.21.0 - ignore: 5.2.4 + globals: 13.24.0 + ignore: 5.3.0 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -2613,12 +2863,12 @@ packages: transitivePeerDependencies: - supports-color - /@eslint/js@8.47.0: - resolution: {integrity: sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==} + /@eslint/js@8.56.0: + resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@exodus/schemasafe@1.2.3: - resolution: {integrity: sha512-hmdFF4vVyvXosVdCCnZPCfrgwNPA79y3K5l0QzlKFcK5Qd3nkM9oGKcQYCTnTRWJXIV5SUMkkTFIEIdDFtxQPQ==} + /@exodus/schemasafe@1.3.0: + resolution: {integrity: sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==} dev: true /@floating-ui/core@0.6.2: @@ -2629,20 +2879,20 @@ packages: dependencies: '@floating-ui/core': 0.6.2 - /@floating-ui/react-dom-interactions@0.3.1(@types/react@18.2.21)(react-dom@18.1.0)(react@18.1.0): + /@floating-ui/react-dom-interactions@0.3.1(@types/react@18.2.47)(react-dom@18.1.0)(react@18.1.0): resolution: {integrity: sha512-tP2KEh7EHJr5hokSBHcPGojb+AorDNUf0NYfZGg/M+FsMvCOOsSEeEF0O1NDfETIzDnpbHnCs0DuvCFhSMSStg==} deprecated: Package renamed to @floating-ui/react dependencies: - '@floating-ui/react-dom': 0.6.3(@types/react@18.2.21)(react-dom@18.1.0)(react@18.1.0) + '@floating-ui/react-dom': 0.6.3(@types/react@18.2.47)(react-dom@18.1.0)(react@18.1.0) aria-hidden: 1.2.3 point-in-polygon: 1.1.0 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@18.1.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.47)(react@18.1.0) transitivePeerDependencies: - '@types/react' - react - react-dom - /@floating-ui/react-dom@0.6.3(@types/react@18.2.21)(react-dom@18.1.0)(react@18.1.0): + /@floating-ui/react-dom@0.6.3(@types/react@18.2.47)(react-dom@18.1.0)(react@18.1.0): resolution: {integrity: sha512-hC+pS5D6AgS2wWjbmSQ6UR6Kpy+drvWGJIri6e1EDGADTPsCaa4KzCgmCczHrQeInx9tqs81EyDmbKJYY2swKg==} peerDependencies: react: '>=16.8.0' @@ -2651,14 +2901,14 @@ packages: '@floating-ui/dom': 0.4.5 react: 18.1.0 react-dom: 18.1.0(react@18.1.0) - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@18.1.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.47)(react@18.1.0) transitivePeerDependencies: - '@types/react' - /@formatjs/ecma402-abstract@1.17.0: - resolution: {integrity: sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==} + /@formatjs/ecma402-abstract@1.18.0: + resolution: {integrity: sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==} dependencies: - '@formatjs/intl-localematcher': 0.4.0 + '@formatjs/intl-localematcher': 0.5.2 tslib: 2.6.2 dev: true @@ -2668,66 +2918,66 @@ packages: tslib: 2.6.2 dev: true - /@formatjs/icu-messageformat-parser@2.6.0: - resolution: {integrity: sha512-yT6at0qc0DANw9qM/TU8RZaCtfDXtj4pZM/IC2WnVU80yAcliS3KVDiuUt4jSQAeFL9JS5bc2hARnFmjPdA6qw==} + /@formatjs/icu-messageformat-parser@2.7.3: + resolution: {integrity: sha512-X/jy10V9S/vW+qlplqhMUxR8wErQ0mmIYSq4mrjpjDl9mbuGcCILcI1SUYkL5nlM4PJqpc0KOS0bFkkJNPxYRw==} dependencies: - '@formatjs/ecma402-abstract': 1.17.0 - '@formatjs/icu-skeleton-parser': 1.6.0 + '@formatjs/ecma402-abstract': 1.18.0 + '@formatjs/icu-skeleton-parser': 1.7.0 tslib: 2.6.2 dev: true - /@formatjs/icu-skeleton-parser@1.6.0: - resolution: {integrity: sha512-eMmxNpoX/J1IPUjPGSZwo0Wh+7CEvdEMddP2Jxg1gQJXfGfht/FdW2D5XDFj3VMbOTUQlDIdZJY7uC6O6gjPoA==} + /@formatjs/icu-skeleton-parser@1.7.0: + resolution: {integrity: sha512-Cfdo/fgbZzpN/jlN/ptQVe0lRHora+8ezrEeg2RfrNjyp+YStwBy7cqDY8k5/z2LzXg6O0AdzAV91XS0zIWv+A==} dependencies: - '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/ecma402-abstract': 1.18.0 tslib: 2.6.2 dev: true - /@formatjs/intl-displaynames@6.5.0: - resolution: {integrity: sha512-sg/nR8ILEdUl+2sWu6jc1nQ5s04yucGlH1RVfatW8TSJ5uG3Yy3vgigi8NNC/BuhcncUNPWqSpTCSI1hA+rhiw==} + /@formatjs/intl-displaynames@6.6.4: + resolution: {integrity: sha512-ET8KQ+L9Q0K8x1SnJQa4DNssUcbATlMopWqYvGGR8yAvw5qwAQc1fv+DshCoZNIE9pbcue0IGC4kWNAkWqlFag==} dependencies: - '@formatjs/ecma402-abstract': 1.17.0 - '@formatjs/intl-localematcher': 0.4.0 + '@formatjs/ecma402-abstract': 1.18.0 + '@formatjs/intl-localematcher': 0.5.2 tslib: 2.6.2 dev: true - /@formatjs/intl-listformat@7.4.0: - resolution: {integrity: sha512-ifupb+balZUAF/Oh3QyGRqPRWGSKwWoMPR0cYZEG7r61SimD+m38oFQqVx/3Fp7LfQFF11m7IS+MlxOo2sKINA==} + /@formatjs/intl-listformat@7.5.3: + resolution: {integrity: sha512-l7EOr0Yh1m8KagytukB90yw81uyzrM7amKFrgxXqphz4KeSIL0KPa68lPsdtZ+JmQB73GaDQRwLOwUKFZ1VZPQ==} dependencies: - '@formatjs/ecma402-abstract': 1.17.0 - '@formatjs/intl-localematcher': 0.4.0 + '@formatjs/ecma402-abstract': 1.18.0 + '@formatjs/intl-localematcher': 0.5.2 tslib: 2.6.2 dev: true - /@formatjs/intl-localematcher@0.4.0: - resolution: {integrity: sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==} + /@formatjs/intl-localematcher@0.5.2: + resolution: {integrity: sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==} dependencies: tslib: 2.6.2 dev: true - /@formatjs/intl@2.9.0(typescript@4.9.5): - resolution: {integrity: sha512-Ym0trUoC/VO6wQu4YHa0H1VR2tEixFRmwZgADkDLm7nD+vv1Ob+/88mUAoT0pwvirFqYKgUKEwp1tFepqyqvVA==} + /@formatjs/intl@2.9.9(typescript@4.9.5): + resolution: {integrity: sha512-JI3CNgL2Zdg5lv9ncT2sYKqbAj2RGrCbdzaCckIxMPxn4QuHuOVvYUGmBAXVusBmfG/0sxLmMrnwnBioz+QKdA==} peerDependencies: - typescript: ^4.7 || 5 + typescript: '5' peerDependenciesMeta: typescript: optional: true dependencies: - '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/ecma402-abstract': 1.18.0 '@formatjs/fast-memoize': 2.2.0 - '@formatjs/icu-messageformat-parser': 2.6.0 - '@formatjs/intl-displaynames': 6.5.0 - '@formatjs/intl-listformat': 7.4.0 - intl-messageformat: 10.5.0 + '@formatjs/icu-messageformat-parser': 2.7.3 + '@formatjs/intl-displaynames': 6.6.4 + '@formatjs/intl-listformat': 7.5.3 + intl-messageformat: 10.5.8 tslib: 2.6.2 typescript: 4.9.5 dev: true - /@humanwhocodes/config-array@0.11.10: - resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} + /@humanwhocodes/config-array@0.11.14: + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} engines: {node: '>=10.10.0'} dependencies: - '@humanwhocodes/object-schema': 1.2.1 + '@humanwhocodes/object-schema': 2.0.2 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: @@ -2750,6 +3000,10 @@ packages: /@humanwhocodes/object-schema@1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + + /@humanwhocodes/object-schema@2.0.2: + resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} /@iconify/types@2.0.0: resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} @@ -2758,7 +3012,7 @@ packages: resolution: {integrity: sha512-H8xz74JDzDw8f0qLxwIaxFMnFkbXTZNWEufOk3WxaLFHV4h0A2FjIDgNk5LzC0am4jssnjdeJJdRs3UFu3582Q==} dependencies: '@antfu/install-pkg': 0.1.1 - '@antfu/utils': 0.7.6 + '@antfu/utils': 0.7.7 '@iconify/types': 2.0.0 debug: 4.3.4 kolorist: 1.8.0 @@ -2766,14 +3020,25 @@ packages: transitivePeerDependencies: - supports-color - /@icons/material@0.2.4(react@18.1.0): + /@icons/material@0.2.4(react@18.2.0): resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} peerDependencies: react: '*' dependencies: - react: 18.1.0 + react: 18.2.0 dev: false + /@isaacs/cliui@8.0.2: + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + dependencies: + string-width: 5.1.2 + string-width-cjs: /string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: /strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 + /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} @@ -2788,19 +3053,19 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - /@jest/console@29.6.3: - resolution: {integrity: sha512-ukZbHAdDH4ktZIOKvWs1juAXhiVAdvCyM8zv4S/7Ii3vJSDvMW5k+wOVGMQmHLHUFw3Ko63ZQNy7NI6PSlsD5w==} + /@jest/console@29.7.0: + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.5.3 + '@types/node': 20.11.0 chalk: 4.1.2 - jest-message-util: 29.6.3 - jest-util: 29.6.3 + jest-message-util: 29.7.0 + jest-util: 29.7.0 slash: 3.0.0 - /@jest/core@29.6.3(ts-node@10.9.1): - resolution: {integrity: sha512-skV1XrfNxfagmjRUrk2FyN5/2YwIzdWVVBa/orUfbLvQUANXxERq2pTvY0I+FinWHjDKB2HRmpveUiph4X0TJw==} + /@jest/core@29.7.0(ts-node@10.9.2): + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -2808,32 +3073,32 @@ packages: node-notifier: optional: true dependencies: - '@jest/console': 29.6.3 - '@jest/reporters': 29.6.3 - '@jest/test-result': 29.6.3 - '@jest/transform': 29.6.3 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.5.3 + '@types/node': 20.11.0 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 - jest-changed-files: 29.6.3 - jest-config: 29.6.3(@types/node@20.5.3)(ts-node@10.9.1) - jest-haste-map: 29.6.3 - jest-message-util: 29.6.3 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.11.0)(ts-node@10.9.2) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 jest-regex-util: 29.6.3 - jest-resolve: 29.6.3 - jest-resolve-dependencies: 29.6.3 - jest-runner: 29.6.3 - jest-runtime: 29.6.3 - jest-snapshot: 29.6.3 - jest-util: 29.6.3 - jest-validate: 29.6.3 - jest-watcher: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 micromatch: 4.0.5 - pretty-format: 29.6.3 + pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: @@ -2841,54 +3106,54 @@ packages: - supports-color - ts-node - /@jest/environment@29.6.3: - resolution: {integrity: sha512-u/u3cCztYCfgBiGHsamqP5x+XvucftOGPbf5RJQxfpeC1y4AL8pCjKvPDA3oCmdhZYPgk5AE0VOD/flweR69WA==} + /@jest/environment@29.7.0: + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/fake-timers': 29.6.3 + '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.5.3 - jest-mock: 29.6.3 + '@types/node': 20.11.0 + jest-mock: 29.7.0 - /@jest/expect-utils@29.6.3: - resolution: {integrity: sha512-nvOEW4YoqRKD9HBJ9OJ6przvIvP9qilp5nAn1462P5ZlL/MM9SgPEZFyjTGPfs7QkocdUsJa6KjHhyRn4ueItA==} + /@jest/expect-utils@29.7.0: + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.6.3 - /@jest/expect@29.6.3: - resolution: {integrity: sha512-Ic08XbI2jlg6rECy+CGwk/8NDa6VE7UmIG6++9OTPAMnQmNGY28hu69Nf629CWv6T7YMODLbONxDFKdmQeI9FA==} + /@jest/expect@29.7.0: + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - expect: 29.6.3 - jest-snapshot: 29.6.3 + expect: 29.7.0 + jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - /@jest/fake-timers@29.6.3: - resolution: {integrity: sha512-pa1wmqvbj6eX0nMvOM2VDAWvJOI5A/Mk3l8O7n7EsAh71sMZblaKO9iT4GjIj0LwwK3CP/Jp1ypEV0x3m89RvA==} + /@jest/fake-timers@29.7.0: + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.5.3 - jest-message-util: 29.6.3 - jest-mock: 29.6.3 - jest-util: 29.6.3 + '@types/node': 20.11.0 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 - /@jest/globals@29.6.3: - resolution: {integrity: sha512-RB+uI+CZMHntzlnOPlll5x/jgRff3LEPl/td/jzMXiIgR0iIhKq9qm1HLU+EC52NuoVy/1swit/sDGjVn4bc6A==} + /@jest/globals@29.7.0: + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.3 - '@jest/expect': 29.6.3 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 '@jest/types': 29.6.3 - jest-mock: 29.6.3 + jest-mock: 29.7.0 transitivePeerDependencies: - supports-color - /@jest/reporters@29.6.3: - resolution: {integrity: sha512-kGz59zMi0GkVjD2CJeYWG9k6cvj7eBqt9aDAqo2rcCLRTYlvQ62Gu/n+tOmJMBHGjzeijjuCENjzTyYBgrtLUw==} + /@jest/reporters@29.7.0: + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -2897,29 +3162,29 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.6.3 - '@jest/test-result': 29.6.3 - '@jest/transform': 29.6.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.19 - '@types/node': 20.5.3 + '@jridgewell/trace-mapping': 0.3.21 + '@types/node': 20.11.0 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 6.0.0 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.1 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.6 - jest-message-util: 29.6.3 - jest-util: 29.6.3 - jest-worker: 29.6.3 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 - v8-to-istanbul: 9.1.0 + v8-to-istanbul: 9.2.0 transitivePeerDependencies: - supports-color @@ -2933,43 +3198,43 @@ packages: resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/trace-mapping': 0.3.21 callsites: 3.1.0 graceful-fs: 4.2.11 - /@jest/test-result@29.6.3: - resolution: {integrity: sha512-k7ZZaNvOSMBHPZYiy0kuiaFoyansR5QnTwDux1EjK3kD5iWpRVyJIJ0RAIV39SThafchuW59vra7F8mdy5Hfgw==} + /@jest/test-result@29.7.0: + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 29.6.3 + '@jest/console': 29.7.0 '@jest/types': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - /@jest/test-sequencer@29.6.3: - resolution: {integrity: sha512-/SmijaAU2TY9ComFGIYa6Z+fmKqQMnqs2Nmwb0P/Z/tROdZ7M0iruES1EaaU9PBf8o9uED5xzaJ3YPFEIcDgAg==} + /@jest/test-sequencer@29.7.0: + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.6.3 + '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 - jest-haste-map: 29.6.3 + jest-haste-map: 29.7.0 slash: 3.0.0 - /@jest/transform@29.6.3: - resolution: {integrity: sha512-dPIc3DsvMZ/S8ut4L2ViCj265mKO0owB0wfzBv2oGzL9pQ+iRvJewHqLBmsGb7XFb5UotWIEtvY5A/lnylaIoQ==} + /@jest/transform@29.7.0: + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/trace-mapping': 0.3.21 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 - jest-haste-map: 29.6.3 + jest-haste-map: 29.7.0 jest-regex-util: 29.6.3 - jest-util: 29.6.3 + jest-util: 29.7.0 micromatch: 4.0.5 pirates: 4.0.6 slash: 3.0.0 @@ -2981,10 +3246,10 @@ packages: 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': 20.5.3 - '@types/yargs': 16.0.5 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.11.0 + '@types/yargs': 16.0.9 chalk: 4.1.2 /@jest/types@29.6.3: @@ -2992,10 +3257,10 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 20.5.3 - '@types/yargs': 17.0.24 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.11.0 + '@types/yargs': 17.0.32 chalk: 4.1.2 /@jridgewell/gen-mapping@0.3.3: @@ -3004,7 +3269,7 @@ packages: dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/trace-mapping': 0.3.21 /@jridgewell/resolve-uri@3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} @@ -3018,13 +3283,13 @@ packages: resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} dependencies: '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/trace-mapping': 0.3.21 /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - /@jridgewell/trace-mapping@0.3.19: - resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} + /@jridgewell/trace-mapping@0.3.21: + resolution: {integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==} dependencies: '@jridgewell/resolve-uri': 3.1.1 '@jridgewell/sourcemap-codec': 1.4.15 @@ -3041,25 +3306,31 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.6 hoist-non-react-statics: 3.3.2 react: 18.1.0 react-is: 16.13.1 - /@makotot/ghostui@2.0.0(react@18.1.0): + /@loadable/component@5.15.2(react@18.2.0): + resolution: {integrity: sha512-ryFAZOX5P2vFkUdzaAtTG88IGnr9qxSdvLRvJySXcUA4B4xVWurUNADu3AnKPksxOZajljqTrDEDcYjeL4lvLw==} + engines: {node: '>=8'} + peerDependencies: + react: '>=16.3.0' + dependencies: + '@babel/runtime': 7.23.6 + hoist-non-react-statics: 3.3.2 + react: 18.2.0 + react-is: 16.13.1 + + /@makotot/ghostui@2.0.0(react@18.2.0): resolution: {integrity: sha512-LD6OeMv+yGjpYZNjh34yDTCIE1NegqOtJq5gm4wX6op3QL7K5psTVzMjkWzseBoYj0XOD4g+UJVIZTprfoOPGg==} engines: {node: '>=10'} peerDependencies: react: '>=16' dependencies: - react: 18.1.0 + react: 18.2.0 dev: true - /@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3: - resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} - requiresBuild: true - optional: true - /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1: resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} dependencies: @@ -3081,20 +3352,20 @@ packages: engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 + fastq: 1.16.0 - /@nrwl/cli@15.9.5: - resolution: {integrity: sha512-bkVHJMeDJ3ssTKpD7T+U+Y6gHUv5gcwjE0lPD6wV3jYyh2kTt1GbcK5VZOoTH8wooHL6/1aMQqnFelr018AtyA==} + /@nrwl/cli@15.9.7: + resolution: {integrity: sha512-1jtHBDuJzA57My5nLzYiM372mJW0NY6rFKxlWt5a0RLsAZdPTHsd8lE3Gs9XinGC1jhXbruWmhhnKyYtZvX/zA==} dependencies: - nx: 15.9.5 + nx: 15.9.7 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug dev: true - /@nrwl/nx-darwin-arm64@15.9.5: - resolution: {integrity: sha512-6bRF83Fimh77SpLXQ8s7TlTzbv/iscshKtZEr8JznBgeP8X6cdM438yz9RXYVNccx3z90lOl/mkF27bcIREaBQ==} + /@nrwl/nx-darwin-arm64@15.9.7: + resolution: {integrity: sha512-aBUgnhlkrgC0vu0fK6eb9Vob7eFnkuknrK+YzTjmLrrZwj7FGNAeyGXSlyo1dVokIzjVKjJg2saZZ0WQbfuCJw==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -3102,8 +3373,8 @@ packages: dev: true optional: true - /@nrwl/nx-darwin-x64@15.9.5: - resolution: {integrity: sha512-Tsc3aHllZlL6CP7+j7KGD3i/i+rcdgzdru+eIyh/CAPBZU3d2zLn0WI+e77xiPMNIYqgpARoQ9teiHzbMV6eaQ==} + /@nrwl/nx-darwin-x64@15.9.7: + resolution: {integrity: sha512-L+elVa34jhGf1cmn38Z0sotQatmLovxoASCIw5r1CBZZeJ5Tg7Y9nOwjRiDixZxNN56hPKXm6xl9EKlVHVeKlg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -3111,8 +3382,8 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm-gnueabihf@15.9.5: - resolution: {integrity: sha512-rYfTlmAoqJYYqBj951+rLVh92DvoBpktLltRCL8AMVdbAocBRpDTOio7SLg8unNYKYn4QGT638iSZdeD7PkPOQ==} + /@nrwl/nx-linux-arm-gnueabihf@15.9.7: + resolution: {integrity: sha512-pqmfqqEUGFu6PmmHKyXyUw1Al0Ki8PSaR0+ndgCAb1qrekVDGDfznJfaqxN0JSLeolPD6+PFtLyXNr9ZyPFlFg==} engines: {node: '>= 10'} cpu: [arm] os: [linux] @@ -3120,8 +3391,8 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm64-gnu@15.9.5: - resolution: {integrity: sha512-s5DVsa52e2ia4N3tkwqG4I/8D5o/TfEjkzqwRsw6RRKMZjV51nPTRcw3IUh0JZ87Nc4N8bRsYmP2pchqj5uc8Q==} + /@nrwl/nx-linux-arm64-gnu@15.9.7: + resolution: {integrity: sha512-NYOa/eRrqmM+In5g3M0rrPVIS9Z+q6fvwXJYf/KrjOHqqan/KL+2TOfroA30UhcBrwghZvib7O++7gZ2hzwOnA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -3130,8 +3401,8 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm64-musl@15.9.5: - resolution: {integrity: sha512-NL3k+SgCrJV2/BkCauePIAr2E8r4wXOsck7w8vw3MEXfuUgTYl1W9MlRAgQ3FfYTOw2mXUH1vZ041AzZS0YJFQ==} + /@nrwl/nx-linux-arm64-musl@15.9.7: + resolution: {integrity: sha512-zyStqjEcmbvLbejdTOrLUSEdhnxNtdQXlmOuymznCzYUEGRv+4f7OAepD3yRoR0a/57SSORZmmGQB7XHZoYZJA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -3140,8 +3411,8 @@ packages: dev: true optional: true - /@nrwl/nx-linux-x64-gnu@15.9.5: - resolution: {integrity: sha512-Y+Zvh8KtSJ9h1EjzxYMPTx9C+OcHK3UReIwv2xOFjnKW8ksj/RFtk26TAxfiSL4DRu6bKqTza1+i5kwM69ReKQ==} + /@nrwl/nx-linux-x64-gnu@15.9.7: + resolution: {integrity: sha512-saNK5i2A8pKO3Il+Ejk/KStTApUpWgCxjeUz9G+T8A+QHeDloZYH2c7pU/P3jA9QoNeKwjVO9wYQllPL9loeVg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -3150,8 +3421,8 @@ packages: dev: true optional: true - /@nrwl/nx-linux-x64-musl@15.9.5: - resolution: {integrity: sha512-3w6TrJU1Oa6aT6DTDJfFQLO29C9PM0RTPtRVmj5vRQgzBSWd9zn22x73GvLCalmBopQ+kpkFxloUfkNAbd33qQ==} + /@nrwl/nx-linux-x64-musl@15.9.7: + resolution: {integrity: sha512-extIUThYN94m4Vj4iZggt6hhMZWQSukBCo8pp91JHnDcryBg7SnYmnikwtY1ZAFyyRiNFBLCKNIDFGkKkSrZ9Q==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -3160,8 +3431,8 @@ packages: dev: true optional: true - /@nrwl/nx-win32-arm64-msvc@15.9.5: - resolution: {integrity: sha512-m6PofAhmg7ri62W/azMDJnjCrH8e1u7mlHSbJKD6QmpUbBzmzK/LDrahE959AwX5/hGlgdu1F+IFzDpGPElJhQ==} + /@nrwl/nx-win32-arm64-msvc@15.9.7: + resolution: {integrity: sha512-GSQ54hJ5AAnKZb4KP4cmBnJ1oC4ILxnrG1mekxeM65c1RtWg9NpBwZ8E0gU3xNrTv8ZNsBeKi/9UhXBxhsIh8A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -3169,8 +3440,8 @@ packages: dev: true optional: true - /@nrwl/nx-win32-x64-msvc@15.9.5: - resolution: {integrity: sha512-D3YFiOpRDJeto6SCe51iSIWyY1LxFwr15ws/SJ0ntZm55m7Ki7NaVskEzYb5jEslj+LDVQIA0Z5/CrpjCosTog==} + /@nrwl/nx-win32-x64-msvc@15.9.7: + resolution: {integrity: sha512-x6URof79RPd8AlapVbPefUD3ynJZpmah3tYaYZ9xZRMXojVtEHV8Qh5vysKXQ1rNYJiiB8Ah6evSKWLbAH60tw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -3178,11 +3449,11 @@ packages: dev: true optional: true - /@nrwl/tao@15.9.5: - resolution: {integrity: sha512-ura32IaILcBpNBTIN0sf/9HjurABle2+SfhItCr1mRmCaIHEAWBklzMrHwfTKUzP/7nE0be9WrcgA16Fzqjw7Q==} + /@nrwl/tao@15.9.7: + resolution: {integrity: sha512-OBnHNvQf3vBH0qh9YnvBQQWyyFZ+PWguF6dJ8+1vyQYlrLVk/XZ8nJ4ukWFb+QfPv/O8VBmqaofaOI9aFC4yTw==} hasBin: true dependencies: - nx: 15.9.5 + nx: 15.9.7 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -3195,164 +3466,131 @@ packages: requiresBuild: true dependencies: node-addon-api: 3.2.1 - node-gyp-build: 4.6.0 + node-gyp-build: 4.8.0 dev: true + /@pkgjs/parseargs@0.11.0: + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + requiresBuild: true + optional: true + /@pkgr/utils@2.4.2: resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} dependencies: cross-spawn: 7.0.3 - fast-glob: 3.3.1 + fast-glob: 3.3.2 is-glob: 4.0.3 open: 9.1.0 picocolors: 1.0.0 tslib: 2.6.2 - /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(webpack@5.88.2): - resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <4.0.0' - webpack: '>=4.43.0 <6.0.0' - webpack-dev-server: 3.x || 4.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.32.1 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.4.0 - loader-utils: 2.0.4 - react-refresh: 0.14.0 - schema-utils: 3.3.0 - source-map: 0.7.4 - webpack: 5.88.2(esbuild@0.17.19) - /@probe.gl/env@3.6.0: resolution: {integrity: sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 dev: false /@probe.gl/log@3.6.0: resolution: {integrity: sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 '@probe.gl/env': 3.6.0 dev: false /@probe.gl/stats@3.6.0: resolution: {integrity: sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 dev: false - /@rc-component/color-picker@1.4.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-vh5EWqnsayZa/JwUznqDaPJz39jznx/YDbyBuVJntv735tKXKwEUZZb2jYEldOg+NKWZwtALjGMrNeGBmqFoEw==} + /@rc-component/color-picker@1.5.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-onyAFhWKXuG4P162xE+7IgaJkPkwM94XlOYnQuu69XdXWMfxpeFi6tpJBsieIMV7EnyLV5J3lDzdLiFeK0iEBA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@ctrl/tinycolor': 3.6.0 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@ctrl/tinycolor': 3.6.1 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /@rc-component/context@1.4.0(react-dom@18.1.0)(react@18.1.0): + /@rc-component/context@1.4.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-kFcNxg9oLRMoL3qki0OMxK+7g5mypjgaaJp/pkOis/6rVxma9nJBF/8kCIuTYHUQNr0ii7MxqE33wirPZLJQ2w==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) /@rc-component/mini-decimal@1.1.0: resolution: {integrity: sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ==} engines: {node: '>=8.x'} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 - /@rc-component/mutate-observer@1.1.0(react-dom@18.1.0)(react@18.1.0): + /@rc-component/mutate-observer@1.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-QjrOsDXQusNwGZPf4/qRQasg7UFEj06XiCJ8iuiq/Io7CrHrgVi6Uuetw60WAMG1799v+aM8kyc+1L/GBbHSlw==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /@rc-component/portal@1.1.2(react-dom@18.1.0)(react@18.1.0): + /@rc-component/portal@1.1.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /@rc-component/tour@1.8.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-CsrQnfKgNArxx2j1RNHVLZgVA+rLrEj06lIsl4KSynMqADsqz8eKvVkr0F3p9PA10948M6WEEZt5a/FGAbGR2A==} + /@rc-component/tour@1.11.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-c9Lw3/oVinj5D64Rsp8aDLOXcgdViE+hq7bj0Qoo8fTuQEh9sSpUw5OZcum943JkjeIE4hLcc5FD4a5ANtMJ4w==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/portal': 1.1.2(react-dom@18.1.0)(react@18.1.0) - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0) + '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /@rc-component/trigger@1.15.6(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-Tl19KaGsShf4yzqxumsXVT4c7j0l20Dxe5hgP5S0HmxyhCg3oKen28ntGavRCIPW7cl7wgsGotntqcIokgDHzg==} + /@rc-component/trigger@1.18.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-jRLYgFgjLEPq3MvS87fIhcfuywFSRDaDrYw1FLku7Cm4esszvzTbA0JBsyacAyLrK9rF3TiHFcvoEDMzoD3CTA==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/portal': 1.1.2(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-align: 4.0.15(react-dom@18.1.0)(react@18.1.0) - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-resize-observer: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) /@selderee/plugin-htmlparser2@0.11.0: resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==} @@ -3389,23 +3627,23 @@ packages: postcss: '>=7.0.0' postcss-syntax: '>=0.36.2' dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 postcss: 7.0.39 postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39) transitivePeerDependencies: - supports-color dev: true - /@stylelint/postcss-css-in-js@0.38.0(postcss-syntax@0.36.2)(postcss@8.4.28): + /@stylelint/postcss-css-in-js@0.38.0(postcss-syntax@0.36.2)(postcss@8.4.33): resolution: {integrity: sha512-XOz5CAe49kS95p5yRd+DAIWDojTjfmyAQ4bbDlXMdbZTQ5t0ThjSLvWI6JI2uiS7MFurVBkZ6zUqcimzcLTBoQ==} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. peerDependencies: postcss: '>=7.0.0' postcss-syntax: '>=0.36.2' dependencies: - '@babel/core': 7.21.0 - postcss: 8.4.28 - postcss-syntax: 0.36.2(postcss@8.4.28) + '@babel/core': 7.23.6 + postcss: 8.4.33 + postcss-syntax: 0.36.2(postcss@8.4.33) transitivePeerDependencies: - supports-color @@ -3424,92 +3662,92 @@ packages: - supports-color dev: true - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.7): resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 - /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.22.10): + /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.7): resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 - /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.22.10): + /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.7): resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.7): resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.7): resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.7): resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.7): resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.7): resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 - /@svgr/babel-preset@6.5.1(@babel/core@7.22.10): + /@svgr/babel-preset@6.5.1(@babel/core@7.23.7): resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.22.10) - '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.22.10) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.7) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.7) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.7) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.7) + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.7) + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.7) + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.7) + '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.7) /@svgr/core@6.5.1: resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.10 - '@svgr/babel-preset': 6.5.1(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@svgr/babel-preset': 6.5.1(@babel/core@7.23.7) '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -3520,7 +3758,7 @@ packages: resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 entities: 4.5.0 /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): @@ -3529,8 +3767,8 @@ packages: peerDependencies: '@svgr/core': ^6.0.0 dependencies: - '@babel/core': 7.22.10 - '@svgr/babel-preset': 6.5.1(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@svgr/babel-preset': 6.5.1(@babel/core@7.23.7) '@svgr/core': 6.5.1 '@svgr/hast-util-to-babel-ast': 6.5.1 svg-parser: 2.0.4 @@ -3548,6 +3786,14 @@ packages: deepmerge: 4.3.1 svgo: 2.8.0 + /@swc/core-darwin-arm64@1.3.102: + resolution: {integrity: sha512-CJDxA5Wd2cUMULj3bjx4GEoiYyyiyL8oIOu4Nhrs9X+tlg8DnkCm4nI57RJGP8Mf6BaXPIJkHX8yjcefK2RlDA==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + /@swc/core-darwin-arm64@1.3.72: resolution: {integrity: sha512-oNSI5hVfZ+1xpj+dH1g4kQqA0VsGtqd8S9S+cDqkHZiOOVOevw9KN6dzVtmLOcPtlULVypVc0TVvsB55KdVZhQ==} engines: {node: '>=10'} @@ -3557,10 +3803,10 @@ packages: dev: true optional: true - /@swc/core-darwin-arm64@1.3.78: - resolution: {integrity: sha512-596KRua/d5Gx1buHKKchSyHuwoIL4S1BRD/wCvYNLNZ3xOzcuBBmXOjrDVigKi1ztNDeS07p30RO5UyYur0XAA==} + /@swc/core-darwin-x64@1.3.102: + resolution: {integrity: sha512-X5akDkHwk6oAer49oER0qZMjNMkLH3IOZaV1m98uXIasAGyjo5WH1MKPeMLY1sY6V6TrufzwiSwD4ds571ytcg==} engines: {node: '>=10'} - cpu: [arm64] + cpu: [x64] os: [darwin] requiresBuild: true optional: true @@ -3574,11 +3820,11 @@ packages: dev: true optional: true - /@swc/core-darwin-x64@1.3.78: - resolution: {integrity: sha512-w0RsD1onQAj0vuLAoOVi48HgnW6D6oBEIZP17l0HYejCDBZ+FRZLjml7wgNAWMqHcd2qNRqgtZ+v7aLza2JtBQ==} + /@swc/core-linux-arm-gnueabihf@1.3.102: + resolution: {integrity: sha512-kJH3XtZP9YQdjq/wYVBeFuiVQl4HaC4WwRrIxAHwe2OyvrwUI43dpW3LpxSggBnxXcVCXYWf36sTnv8S75o2Gw==} engines: {node: '>=10'} - cpu: [x64] - os: [darwin] + cpu: [arm] + os: [linux] requiresBuild: true optional: true @@ -3591,11 +3837,12 @@ packages: dev: true optional: true - /@swc/core-linux-arm-gnueabihf@1.3.78: - resolution: {integrity: sha512-v1CpRn+H6fha1WIqmdRvJM40pFdjUHrGfhf4Ygci72nlAU41l5XimN8Iwkm8FgIwf2wnv0lLzedSM4IHvpq/yA==} + /@swc/core-linux-arm64-gnu@1.3.102: + resolution: {integrity: sha512-flQP2WDyCgO24WmKA1wjjTx+xfCmavUete2Kp6yrM+631IHLGnr17eu7rYJ/d4EnDBId/ytMyrnWbTVkaVrpbQ==} engines: {node: '>=10'} - cpu: [arm] + cpu: [arm64] os: [linux] + libc: [glibc] requiresBuild: true optional: true @@ -3609,12 +3856,12 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-gnu@1.3.78: - resolution: {integrity: sha512-Sis17dz9joJRFVvR/gteOZSUNrrrioo81RQzani0Zr5ZZOfWLMTB9DA+0MVlfnVa2taYcsJHJZFoAv9JkLwbzg==} + /@swc/core-linux-arm64-musl@1.3.102: + resolution: {integrity: sha512-bQEQSnC44DyoIGLw1+fNXKVGoCHi7eJOHr8BdH0y1ooy9ArskMjwobBFae3GX4T1AfnrTaejyr0FvLYIb0Zkog==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - libc: [glibc] + libc: [musl] requiresBuild: true optional: true @@ -3628,12 +3875,12 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-musl@1.3.78: - resolution: {integrity: sha512-E5F8/qp+QupnfBnsP4vN1PKyCmAHYHDG1GMyPE/zLFOUYLgw+jK4C9rfyLBR0o2bWo1ay2WCIjusBZD9XHGOSA==} + /@swc/core-linux-x64-gnu@1.3.102: + resolution: {integrity: sha512-dFvnhpI478svQSxqISMt00MKTDS0e4YtIr+ioZDG/uJ/q+RpcNy3QI2KMm05Fsc8Y0d4krVtvCKWgfUMsJZXAg==} engines: {node: '>=10'} - cpu: [arm64] + cpu: [x64] os: [linux] - libc: [musl] + libc: [glibc] requiresBuild: true optional: true @@ -3647,12 +3894,12 @@ packages: dev: true optional: true - /@swc/core-linux-x64-gnu@1.3.78: - resolution: {integrity: sha512-iDxa+RknnTQlyy+WfPor1FM6y44ERNI2E0xiUV6gV6uPwegCngi8LFC+E7IvP6+p+yXtAkesunAaiZ8nn0s+rw==} + /@swc/core-linux-x64-musl@1.3.102: + resolution: {integrity: sha512-+a0M3CvjeIRNA/jTCzWEDh2V+mhKGvLreHOL7J97oULZy5yg4gf7h8lQX9J8t9QLbf6fsk+0F8bVH1Ie/PbXjA==} engines: {node: '>=10'} cpu: [x64] os: [linux] - libc: [glibc] + libc: [musl] requiresBuild: true optional: true @@ -3666,12 +3913,11 @@ packages: dev: true optional: true - /@swc/core-linux-x64-musl@1.3.78: - resolution: {integrity: sha512-dWtIYUFL5sMTE2UKshkXTusHcK8+zAhhGzvqWq1wJS45pqTlrAbzpyqB780fle880x3A6DMitWmsAFARdNzpuQ==} + /@swc/core-win32-arm64-msvc@1.3.102: + resolution: {integrity: sha512-w76JWLjkZNOfkB25nqdWUNCbt0zJ41CnWrJPZ+LxEai3zAnb2YtgB/cCIrwxDebRuMgE9EJXRj7gDDaTEAMOOQ==} engines: {node: '>=10'} - cpu: [x64] - os: [linux] - libc: [musl] + cpu: [arm64] + os: [win32] requiresBuild: true optional: true @@ -3684,10 +3930,10 @@ packages: dev: true optional: true - /@swc/core-win32-arm64-msvc@1.3.78: - resolution: {integrity: sha512-CXFaGEc2M9Su3UoUMC8AnzKb9g+GwPxXfakLWZsjwS448h6jcreExq3nwtBNdVGzQ26xqeVLMFfb1l/oK99Hwg==} + /@swc/core-win32-ia32-msvc@1.3.102: + resolution: {integrity: sha512-vlDb09HiGqKwz+2cxDS9T5/461ipUQBplvuhW+cCbzzGuPq8lll2xeyZU0N1E4Sz3MVdSPx1tJREuRvlQjrwNg==} engines: {node: '>=10'} - cpu: [arm64] + cpu: [ia32] os: [win32] requiresBuild: true optional: true @@ -3701,10 +3947,10 @@ packages: dev: true optional: true - /@swc/core-win32-ia32-msvc@1.3.78: - resolution: {integrity: sha512-FaH1jwWnJpWkdImpMoiZpMg9oy9UUyZwltzN7hFwjR48e3Li82cRFb+9PifIBHCUSBM+CrrsJXbHP213IMVAyw==} + /@swc/core-win32-x64-msvc@1.3.102: + resolution: {integrity: sha512-E/jfSD7sShllxBwwgDPeXp1UxvIqehj/ShSUqq1pjR/IDRXngcRSXKJK92mJkNFY7suH6BcCWwzrxZgkO7sWmw==} engines: {node: '>=10'} - cpu: [ia32] + cpu: [x64] os: [win32] requiresBuild: true optional: true @@ -3718,13 +3964,29 @@ packages: dev: true optional: true - /@swc/core-win32-x64-msvc@1.3.78: - resolution: {integrity: sha512-oYxa+tPdhlx1aH14AIoF6kvVjo49tEOW0drNqoEaVHufvgH0y43QU2Jum3b2+xXztmMRtzK2CSN3GPOAXDKKKg==} + /@swc/core@1.3.102: + resolution: {integrity: sha512-OAjNLY/f6QWKSDzaM3bk31A+OYHu6cPa9P/rFIx8X5d24tHXUpRiiq6/PYI6SQRjUPlB72GjsjoEU8F+ALadHg==} engines: {node: '>=10'} - cpu: [x64] - os: [win32] requiresBuild: true - optional: true + peerDependencies: + '@swc/helpers': ^0.5.0 + peerDependenciesMeta: + '@swc/helpers': + optional: true + dependencies: + '@swc/counter': 0.1.2 + '@swc/types': 0.1.5 + optionalDependencies: + '@swc/core-darwin-arm64': 1.3.102 + '@swc/core-darwin-x64': 1.3.102 + '@swc/core-linux-arm-gnueabihf': 1.3.102 + '@swc/core-linux-arm64-gnu': 1.3.102 + '@swc/core-linux-arm64-musl': 1.3.102 + '@swc/core-linux-x64-gnu': 1.3.102 + '@swc/core-linux-x64-musl': 1.3.102 + '@swc/core-win32-arm64-msvc': 1.3.102 + '@swc/core-win32-ia32-msvc': 1.3.102 + '@swc/core-win32-x64-msvc': 1.3.102 /@swc/core@1.3.72: resolution: {integrity: sha512-+AKjwLH3/STfPrd7CHzB9+NG1FVT0UKJMUChuWq9sQ8b9xlV8vUeRgZXgh/EHYvNQgl/OUTQKtL6xU2yOLuEuA==} @@ -3748,34 +4010,19 @@ packages: '@swc/core-win32-x64-msvc': 1.3.72 dev: true - /@swc/core@1.3.78: - resolution: {integrity: sha512-y6DQP571v7fbUUY7nz5G4lNIRGofuO48K5pGhD9VnuOCTuptfooCdi8wnigIrIhM/M4zQ53m/YCMDCbOtDgEww==} - engines: {node: '>=10'} - requiresBuild: true - peerDependencies: - '@swc/helpers': ^0.5.0 - peerDependenciesMeta: - '@swc/helpers': - optional: true - optionalDependencies: - '@swc/core-darwin-arm64': 1.3.78 - '@swc/core-darwin-x64': 1.3.78 - '@swc/core-linux-arm-gnueabihf': 1.3.78 - '@swc/core-linux-arm64-gnu': 1.3.78 - '@swc/core-linux-arm64-musl': 1.3.78 - '@swc/core-linux-x64-gnu': 1.3.78 - '@swc/core-linux-x64-musl': 1.3.78 - '@swc/core-win32-arm64-msvc': 1.3.78 - '@swc/core-win32-ia32-msvc': 1.3.78 - '@swc/core-win32-x64-msvc': 1.3.78 - - /@testing-library/dom@9.3.1: - resolution: {integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==} + /@swc/counter@0.1.2: + resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==} + + /@swc/types@0.1.5: + resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} + + /@testing-library/dom@9.3.4: + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} engines: {node: '>=14'} dependencies: - '@babel/code-frame': 7.22.10 - '@babel/runtime': 7.22.10 - '@types/aria-query': 5.0.1 + '@babel/code-frame': 7.23.5 + '@babel/runtime': 7.23.8 + '@types/aria-query': 5.0.4 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.16 @@ -3787,8 +4034,8 @@ packages: resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: - '@adobe/css-tools': 4.3.1 - '@babel/runtime': 7.22.10 + '@adobe/css-tools': 4.3.2 + '@babel/runtime': 7.23.8 '@types/testing-library__jest-dom': 5.14.9 aria-query: 5.3.0 chalk: 3.0.0 @@ -3798,18 +4045,18 @@ packages: redent: 3.0.0 dev: false - /@testing-library/react@14.0.0(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==} + /@testing-library/react@14.1.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-z4p7DVBTPjKM5qDZ0t5ZjzkpSNb+fZy1u6bzO7kk8oeGagpPCAtgh4cx1syrfp7a+QWkM021jGqjJaxJJnXAZg==} engines: {node: '>=14'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.22.10 - '@testing-library/dom': 9.3.1 - '@types/react-dom': 18.2.7 - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@testing-library/dom': 9.3.4 + '@types/react-dom': 18.2.18 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: false /@tootallnate/once@2.0.0: @@ -3833,121 +4080,131 @@ packages: /@tsconfig/node16@1.0.4: resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - /@types/aria-query@5.0.1: - resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} + /@types/aria-query@5.0.4: + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} dev: false - /@types/babel__core@7.20.1: - resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==} + /@types/babel__core@7.20.5: + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} dependencies: - '@babel/parser': 7.22.10 - '@babel/types': 7.22.10 - '@types/babel__generator': 7.6.4 - '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.20.1 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.5 - /@types/babel__generator@7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} + /@types/babel__generator@7.6.8: + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 - /@types/babel__template@7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} + /@types/babel__template@7.4.4: + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} dependencies: - '@babel/parser': 7.22.10 - '@babel/types': 7.22.10 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 - /@types/babel__traverse@7.20.1: - resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==} + /@types/babel__traverse@7.20.5: + resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.6 + + /@types/d3-timer@1.0.12: + resolution: {integrity: sha512-Tv9tkA4y3UvGQnrHyYAQhf5x/297FuYwotS4UW2TpwLblvRahbyL8r9HFYTJLPfPRqS63hwlqRItjKGmKtJxNg==} + dev: false - /@types/d3-timer@2.0.1: - resolution: {integrity: sha512-TF8aoF5cHcLO7W7403blM7L1T+6NF3XMyN3fxyUolq2uOcFeicG/khQg/dGxiCJWoAcmYulYN7LYSRKO54IXaA==} + /@types/d3-timer@2.0.3: + resolution: {integrity: sha512-jhAJzaanK5LqyLQ50jJNIrB8fjL9gwWZTgYjevPvkDLMU+kTAZkYsobI59nYoeSrH1PucuyJEi247Pb90t6XUg==} dev: false - /@types/debug@4.1.8: - resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==} + /@types/debug@4.1.12: + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} dependencies: - '@types/ms': 0.7.31 + '@types/ms': 0.7.34 dev: true - /@types/eslint-scope@3.7.4: - resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} + /@types/eslint-scope@3.7.7: + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} dependencies: - '@types/eslint': 7.29.0 - '@types/estree': 1.0.1 + '@types/eslint': 8.56.2 + '@types/estree': 1.0.5 /@types/eslint@7.29.0: resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} dependencies: - '@types/estree': 1.0.1 - '@types/json-schema': 7.0.12 + '@types/estree': 1.0.5 + '@types/json-schema': 7.0.15 + dev: true + + /@types/eslint@8.56.2: + resolution: {integrity: sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==} + dependencies: + '@types/estree': 1.0.5 + '@types/json-schema': 7.0.15 - /@types/estree-jsx@1.0.0: - resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==} + /@types/estree-jsx@1.0.3: + resolution: {integrity: sha512-pvQ+TKeRHeiUGRhvYwRrQ/ISnohKkSJR14fT2yqyZ4e9K5vqc7hrtY2Y1Dw0ZwAzQ6DQsxsaCUuSIIi8v0Cq6w==} dependencies: - '@types/estree': 1.0.1 + '@types/estree': 1.0.5 dev: true - /@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} /@types/fs-extra@11.0.1: resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==} dependencies: - '@types/jsonfile': 6.1.1 - '@types/node': 20.5.3 + '@types/jsonfile': 6.1.4 + '@types/node': 20.11.0 dev: true /@types/glob@7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.5.3 + '@types/node': 20.11.0 dev: true - /@types/graceful-fs@4.1.6: - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} + /@types/graceful-fs@4.1.9: + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} dependencies: - '@types/node': 20.5.3 + '@types/node': 20.11.0 /@types/hapi__joi@17.1.9: resolution: {integrity: sha512-oOMFT8vmCTFncsF1engrs04jatz8/Anwx3De9uxnOK4chgSEgWBvFtpSoJo8u3784JNO+ql5tzRR6phHoRnscQ==} - /@types/hast@2.3.5: - resolution: {integrity: sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==} + /@types/hast@2.3.9: + resolution: {integrity: sha512-pTHyNlaMD/oKJmS+ZZUyFUcsZeBZpC0lmGquw98CqRVNgAdJZJeD7GoeLiT6Xbx5rU9VCjSt0RwEvDgzh4obFw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 - /@types/hoist-non-react-statics@3.3.1: - resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} + /@types/hoist-non-react-statics@3.3.5: + resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.47 hoist-non-react-statics: 3.3.2 - dev: true /@types/html-minifier-terser@6.1.0: resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - /@types/istanbul-lib-coverage@2.0.4: - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + /@types/istanbul-lib-coverage@2.0.6: + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - /@types/istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + /@types/istanbul-lib-report@3.0.3: + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} dependencies: - '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-lib-coverage': 2.0.6 - /@types/istanbul-reports@3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + /@types/istanbul-reports@3.0.4: + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} dependencies: - '@types/istanbul-lib-report': 3.0.0 + '@types/istanbul-lib-report': 3.0.3 - /@types/jest@29.5.4: - resolution: {integrity: sha512-PhglGmhWeD46FYOVLt3X7TiWjzwuVGW9wG/4qocPevXMjCmrIc5b6db9WjeGE4QYVpUAWMDv3v0IiBwObY289A==} + /@types/jest@29.5.11: + resolution: {integrity: sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==} dependencies: - expect: 29.6.3 - pretty-format: 29.6.3 + expect: 29.7.0 + pretty-format: 29.7.0 dev: false /@types/js-cookie@2.2.7: @@ -3957,177 +4214,159 @@ packages: /@types/jsdom@20.0.1: resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: - '@types/node': 20.5.3 - '@types/tough-cookie': 4.0.2 + '@types/node': 20.11.0 + '@types/tough-cookie': 4.0.5 parse5: 7.1.2 dev: false - /@types/json-schema@7.0.12: - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} + /@types/json-schema@7.0.15: + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: false - /@types/jsonfile@6.1.1: - resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==} + /@types/jsonfile@6.1.4: + resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} dependencies: - '@types/node': 20.5.3 + '@types/node': 20.11.0 dev: true /@types/keyv@3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 20.5.3 + '@types/node': 20.11.0 dev: true - /@types/lodash@4.14.197: - resolution: {integrity: sha512-BMVOiWs0uNxHVlHBgzTIqJYmj+PgCo4euloGF+5m4okL3rEYzM2EEv78mw8zWSMM57dM7kVIgJ2QDvwHSoCI5g==} + /@types/lodash@4.14.202: + resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==} dev: true - /@types/mdast@3.0.12: - resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==} + /@types/mdast@3.0.15: + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 dev: true /@types/minimatch@5.1.2: resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} dev: true - /@types/minimist@1.2.2: - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + /@types/minimist@1.2.5: + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - /@types/ms@0.7.31: - resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} + /@types/ms@0.7.34: + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} dev: true /@types/node@17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} dev: true - /@types/node@20.4.7: - resolution: {integrity: sha512-bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g==} + /@types/node@20.11.0: + resolution: {integrity: sha512-o9bjXmDNcF7GbM4CNQpmi+TutCgap/K3w1JyKgxAjqx41zp9qlIAVFi0IhCNsJcXolEqLWhbFbEeL0PvYm4pcQ==} + dependencies: + undici-types: 5.26.5 - /@types/node@20.5.3: - resolution: {integrity: sha512-ITI7rbWczR8a/S6qjAW7DMqxqFMjjTo61qZVWJ1ubPvbIQsL5D/TvwjYEalM8Kthpe3hTzOGrF2TGbAu2uyqeA==} + /@types/node@20.5.1: + resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==} - /@types/normalize-package-data@2.4.1: - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + /@types/normalize-package-data@2.4.4: + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - /@types/papaparse@5.3.7: - resolution: {integrity: sha512-f2HKmlnPdCvS0WI33WtCs5GD7X1cxzzS/aduaxSu3I7TbhWlENjSPs6z5TaB9K0J+BH1jbmqTaM+ja5puis4wg==} + /@types/papaparse@5.3.14: + resolution: {integrity: sha512-LxJ4iEFcpqc6METwp9f6BV6VVc43m6MfH0VqFosHvrUgfXiFe6ww7R3itkOQ+TCK6Y+Iv/+RnnvtRZnkc5Kc9g==} dependencies: - '@types/node': 20.5.3 + '@types/node': 20.11.0 dev: true - /@types/parse-json@4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + /@types/parse-json@4.0.2: + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} /@types/parse5@6.0.3: resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} dev: true - /@types/prop-types@15.7.5: - resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + /@types/prop-types@15.7.11: + resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} - /@types/q@1.5.5: - resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==} + /@types/q@1.5.8: + resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} dev: true /@types/ramda@0.29.3: resolution: {integrity: sha512-Yh/RHkjN0ru6LVhSQtTkCRo6HXkfL9trot/2elzM/yXLJmbLm2v6kJc8yftTnwv1zvUob6TEtqI2cYjdqG3U0Q==} dependencies: - types-ramda: 0.29.4 + types-ramda: 0.29.6 dev: true - /@types/react-dom@18.2.7: - resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==} + /@types/react-dom@18.2.18: + resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.47 - /@types/react@18.2.21: - resolution: {integrity: sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==} + /@types/react-redux@7.1.33: + resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 - csstype: 3.1.2 + '@types/hoist-non-react-statics': 3.3.5 + '@types/react': 18.2.47 + hoist-non-react-statics: 3.3.2 + redux: 4.2.1 + dev: false - /@types/responselike@1.0.0: - resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} + /@types/react@18.2.47: + resolution: {integrity: sha512-xquNkkOirwyCgoClNk85BjP+aqnIS+ckAJ8i37gAbDs14jfW/J23f2GItAf33oiUPQnqNMALiFeoM9Y5mbjpVQ==} dependencies: - '@types/node': 20.5.3 + '@types/prop-types': 15.7.11 + '@types/scheduler': 0.16.8 + csstype: 3.1.3 + + /@types/responselike@1.0.3: + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + dependencies: + '@types/node': 20.11.0 dev: true - /@types/sax@1.2.4: - resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==} + /@types/sax@1.2.7: + resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} dependencies: '@types/node': 17.0.45 dev: true - /@types/scheduler@0.16.3: - resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} - - /@types/semver@7.5.0: - resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} + /@types/scheduler@0.16.8: + resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} - /@types/stack-utils@2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + /@types/semver@7.5.6: + resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} - /@types/stylis@4.2.0: - resolution: {integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==} + /@types/stack-utils@2.0.3: + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} /@types/testing-library__jest-dom@5.14.9: resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} dependencies: - '@types/jest': 29.5.4 + '@types/jest': 29.5.11 dev: false - /@types/tough-cookie@4.0.2: - resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} + /@types/tough-cookie@4.0.5: + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} dev: false - /@types/unist@2.0.7: - resolution: {integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==} + /@types/unist@2.0.10: + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - /@types/yargs-parser@21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + /@types/yargs-parser@21.0.3: + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - /@types/yargs@16.0.5: - resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==} + /@types/yargs@16.0.9: + resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==} dependencies: - '@types/yargs-parser': 21.0.0 + '@types/yargs-parser': 21.0.3 - /@types/yargs@17.0.24: - resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==} + /@types/yargs@17.0.32: + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} dependencies: - '@types/yargs-parser': 21.0.0 - - /@typescript-eslint/eslint-plugin@5.48.1(@typescript-eslint/parser@5.48.1)(eslint@8.47.0)(typescript@4.9.5): - resolution: {integrity: sha512-9nY5K1Rp2ppmpb9s9S2aBiF3xo5uExCehMDmYmmFqqyxgenbHJ3qbarcLt4ITgaD6r/2ypdlcFRdcuVPnks+fQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/parser': 5.48.1(eslint@8.47.0)(typescript@4.9.5) - '@typescript-eslint/scope-manager': 5.48.1 - '@typescript-eslint/type-utils': 5.48.1(eslint@8.47.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.48.1(eslint@8.47.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.47.0 - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color + '@types/yargs-parser': 21.0.3 /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@4.9.5): resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} @@ -4140,7 +4379,7 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.7.0 + '@eslint-community/regexpp': 4.10.0 '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5) @@ -4148,7 +4387,7 @@ packages: debug: 4.3.4 eslint: 7.32.0 graphemer: 1.4.0 - ignore: 5.2.4 + ignore: 5.3.0 natural-compare-lite: 1.4.0 semver: 7.5.4 tsutils: 3.21.0(typescript@4.9.5) @@ -4157,7 +4396,7 @@ packages: - supports-color dev: true - /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.47.0)(typescript@4.9.5): + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@4.9.5): resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4168,22 +4407,21 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.7.0 - '@typescript-eslint/parser': 5.62.0(eslint@8.47.0)(typescript@4.9.5) + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.47.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.47.0)(typescript@4.9.5) + '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@4.9.5) debug: 4.3.4 - eslint: 8.47.0 + eslint: 8.56.0 graphemer: 1.4.0 - ignore: 5.2.4 + ignore: 5.3.0 natural-compare-lite: 1.4.0 semver: 7.5.4 tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: false /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.5): resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} @@ -4191,7 +4429,7 @@ packages: peerDependencies: eslint: '*' dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.15 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) @@ -4203,25 +4441,6 @@ packages: - typescript dev: true - /@typescript-eslint/parser@5.48.1(eslint@8.47.0)(typescript@4.9.5): - resolution: {integrity: sha512-4yg+FJR/V1M9Xoq56SF9Iygqm+r5LMXvheo6DQ7/yUWynQ4YfCRnsKuRgqH4EQ5Ya76rVwlEpw4Xu+TgWQUcdA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.48.1 - '@typescript-eslint/types': 5.48.1 - '@typescript-eslint/typescript-estree': 5.48.1(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.47.0 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5): resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -4242,7 +4461,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@5.62.0(eslint@8.47.0)(typescript@4.9.5): + /@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@4.9.5): resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4256,11 +4475,10 @@ packages: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) debug: 4.3.4 - eslint: 8.47.0 + eslint: 8.56.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: false /@typescript-eslint/scope-manager@4.33.0: resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} @@ -4270,13 +4488,6 @@ packages: '@typescript-eslint/visitor-keys': 4.33.0 dev: true - /@typescript-eslint/scope-manager@5.48.1: - resolution: {integrity: sha512-S035ueRrbxRMKvSTv9vJKIWgr86BD8s3RqoRZmsSh/s8HhIs90g6UlK8ZabUSjUZQkhVxt7nmZ63VJ9dcZhtDQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.48.1 - '@typescript-eslint/visitor-keys': 5.48.1 - /@typescript-eslint/scope-manager@5.62.0: resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -4284,25 +4495,6 @@ packages: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - /@typescript-eslint/type-utils@5.48.1(eslint@8.47.0)(typescript@4.9.5): - resolution: {integrity: sha512-Hyr8HU8Alcuva1ppmqSYtM/Gp0q4JOp1F+/JH5D1IZm/bUBrV0edoewQZiEc1r6I8L4JL21broddxK8HAcZiqQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 5.48.1(typescript@4.9.5) - '@typescript-eslint/utils': 5.48.1(eslint@8.47.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.47.0 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/type-utils@5.62.0(eslint@7.32.0)(typescript@4.9.5): resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -4323,7 +4515,7 @@ packages: - supports-color dev: true - /@typescript-eslint/type-utils@5.62.0(eslint@8.47.0)(typescript@4.9.5): + /@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@4.9.5): resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4333,61 +4525,35 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.47.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.47.0 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: false - - /@typescript-eslint/types@4.33.0: - resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dev: true - - /@typescript-eslint/types@5.48.1: - resolution: {integrity: sha512-xHyDLU6MSuEEdIlzrrAerCGS3T7AA/L8Hggd0RCYBi0w3JMvGYxlLlXHeg50JI9Tfg5MrtsfuNxbS/3zF1/ATg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - /@typescript-eslint/types@5.62.0: - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.5): - resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@4.9.5) + debug: 4.3.4 + eslint: 8.56.0 tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color + + /@typescript-eslint/types@4.33.0: + resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: true - /@typescript-eslint/typescript-estree@5.48.1(typescript@4.9.5): - resolution: {integrity: sha512-Hut+Osk5FYr+sgFh8J/FHjqX6HFcDzTlWLrFqGoK5kVUN3VBHF/QzZmAsIXCQ8T/W9nQNBTqalxi1P3LSqWnRA==} + /@typescript-eslint/types@5.62.0: + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.5): + resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.48.1 - '@typescript-eslint/visitor-keys': 5.48.1 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -4396,6 +4562,7 @@ packages: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true /@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5): resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} @@ -4417,25 +4584,6 @@ packages: transitivePeerDependencies: - supports-color - /@typescript-eslint/utils@5.48.1(eslint@8.47.0)(typescript@4.9.5): - resolution: {integrity: sha512-SmQuSrCGUOdmGMwivW14Z0Lj8dxG1mOFZ7soeJ0TQZEJcs3n5Ndgkg0A4bcMFzBELqLJ6GTHnEU+iIoaD6hFGA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 5.48.1 - '@typescript-eslint/types': 5.48.1 - '@typescript-eslint/typescript-estree': 5.48.1(typescript@4.9.5) - eslint: 8.47.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@8.47.0) - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - typescript - /@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -4443,8 +4591,8 @@ packages: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.0 + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.6 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) @@ -4456,19 +4604,19 @@ packages: - typescript dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.47.0)(typescript@4.9.5): + /@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@4.9.5): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.6 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - eslint: 8.47.0 + eslint: 8.56.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: @@ -4483,13 +4631,6 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /@typescript-eslint/visitor-keys@5.48.1: - resolution: {integrity: sha512-Ns0XBwmfuX7ZknznfXozgnydyR8F6ev/KEGePP4i74uL3ArsKbEhJ7raeKr1JSa997DBDwol/4a0Y+At82c9dA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.48.1 - eslint-visitor-keys: 3.4.3 - /@typescript-eslint/visitor-keys@5.62.0: resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -4497,62 +4638,62 @@ packages: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - /@umijs/ast@4.0.76: - resolution: {integrity: sha512-AhUlnTas70Y3TAti1tXb9LJm0bLnmHQP2pgBvYK+pr/AQr3DRtFuozCNpCJrF8HgNlP8Ko+pRqezxTG3kk9uTw==} + /@umijs/ast@4.1.0: + resolution: {integrity: sha512-+FPCVaXpt8Z2Y2o5JIL91cw7EYbGmMG6jfE5IkfIqPoYoXxtVZwUBBdEyViigW3wWcRORfjoLQpqldAmjUg1sw==} dependencies: - '@umijs/bundler-utils': 4.0.76 + '@umijs/bundler-utils': 4.1.0 transitivePeerDependencies: - supports-color - /@umijs/babel-preset-umi@4.0.76(styled-components@6.0.8): - resolution: {integrity: sha512-ozrhGeOEtkLTpyIJc0kVxSotPR8sovYsGBfT7qHE8+9O4JfOP90JiJkn8MsiQ3ZUk+1FL90A6THKDUuE3a4tcw==} + /@umijs/babel-preset-umi@4.1.0: + resolution: {integrity: sha512-NPMJY2eU7Jnr2RazaeHMC+JT3GHaX0nTEvULOp/ZkNKBaJSfpt3yuP5UXJseZJfXQaWk9LkZo2nk6UzvXnzquA==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.6 '@bloomberg/record-tuple-polyfill': 0.0.4 - '@umijs/bundler-utils': 4.0.76 - '@umijs/utils': 4.0.76 - babel-plugin-styled-components: 2.1.1(styled-components@6.0.8) - core-js: 3.28.0 + '@umijs/bundler-utils': 4.1.0 + '@umijs/utils': 4.1.0 + core-js: 3.34.0 transitivePeerDependencies: - - styled-components - supports-color - /@umijs/bundler-esbuild@4.0.76: - resolution: {integrity: sha512-EwmQYjASM2nnrF6+pYVIDY/8202SKwsw4/+U90SZp+W/Bg5cTdbgJDa78Lf32Y1tCc/yVUBJSOBL+0t7V/lGWg==} + /@umijs/bundler-esbuild@4.1.0: + resolution: {integrity: sha512-VTBhpN2HGZRmhFU6JBBklQapmq2nmCdsfwQApA+7Ei9muxFfwI+1caEpH7XYV/awimwzKngAPaS6IXpI6cnYng==} hasBin: true dependencies: - '@umijs/bundler-utils': 4.0.76 - '@umijs/utils': 4.0.76 + '@umijs/bundler-utils': 4.1.0 + '@umijs/utils': 4.1.0 enhanced-resolve: 5.9.3 - postcss: 8.4.28 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.28) - postcss-preset-env: 7.5.0(postcss@8.4.28) + postcss: 8.4.33 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.33) + postcss-preset-env: 7.5.0(postcss@8.4.33) transitivePeerDependencies: - supports-color - /@umijs/bundler-utils@4.0.76: - resolution: {integrity: sha512-7aGjzbTsNSaI6kv+Kkjqwl/KN7cBNX3sktbCMSbFyZQChJGwYtUrOrGRooyJYLTWp/3YybEMZ3g3Q4QLeToLWQ==} + /@umijs/bundler-utils@4.1.0: + resolution: {integrity: sha512-FmZuoTDNdiBbMsxbKYv8PWix1lgn6huv6Y6jpTx/nyUpKYHg92JFluiIKb5vR2OTOJpStcvQRp3DbOMP+4L9fg==} dependencies: - '@umijs/utils': 4.0.76 + '@umijs/utils': 4.1.0 esbuild: 0.17.19 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 spdy: 4.0.2 transitivePeerDependencies: - supports-color - /@umijs/bundler-vite@4.0.76(@types/node@20.4.7)(postcss@8.4.28)(sass@1.66.1): - resolution: {integrity: sha512-Vh8SVYIMfyE8I57E9w+gqXpm8St5RFh4/goaJfa26WEbPkwcHvJBwh69wQyYfhyak+FMm8VSPPWyWST0Ln/uDQ==} + /@umijs/bundler-vite@4.1.0(@types/node@20.5.1)(postcss@8.4.33)(sass@1.69.7): + resolution: {integrity: sha512-5UMPESE3VjRhBD2Cvtg57vmgNLgD1LDPMl+/2kETfQldtzSFD0SBif9SMbtNJRJ2XBQ44WgAqiUGC3l4fZJ2Tg==} hasBin: true dependencies: '@svgr/core': 6.5.1 - '@umijs/bundler-utils': 4.0.76 - '@umijs/utils': 4.0.76 + '@umijs/bundler-utils': 4.1.0 + '@umijs/utils': 4.1.0 '@vitejs/plugin-react': 4.0.0(vite@4.3.1) + core-js: 3.34.0 less: 4.1.3 - postcss-preset-env: 7.5.0(postcss@8.4.28) + postcss-preset-env: 7.5.0(postcss@8.4.33) rollup-plugin-visualizer: 5.9.0 - vite: 4.3.1(@types/node@20.4.7)(less@4.1.3)(sass@1.66.1) + systemjs: 6.14.3 + vite: 4.3.1(@types/node@20.5.1)(less@4.1.3)(sass@1.69.7) transitivePeerDependencies: - '@types/node' - postcss @@ -4563,35 +4704,34 @@ packages: - supports-color - terser - /@umijs/bundler-webpack@4.0.76(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2): - resolution: {integrity: sha512-wiEpNdk0bQJt5JyMUPR0g0g9HSw13qweXGGFwdBriGIoRWiGw1JQKxB4gijLTvu3F2dQOfetB8/hw+N3ZhH9gw==} + /@umijs/bundler-webpack@4.1.0(typescript@4.9.5)(webpack@5.89.0): + resolution: {integrity: sha512-fahJtvzsBKuv7NNPSJ9z9wgeLng29/elVa4oINJi+7cmniXvBpuMzcNoNkAeMf6HGqqWyk8A+tcxrphEOsjxIA==} hasBin: true dependencies: - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack@5.88.2) '@svgr/core': 6.5.1 '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) '@types/hapi__joi': 17.1.9 - '@umijs/babel-preset-umi': 4.0.76(styled-components@6.0.8) - '@umijs/bundler-utils': 4.0.76 + '@umijs/babel-preset-umi': 4.1.0 + '@umijs/bundler-utils': 4.1.0 '@umijs/case-sensitive-paths-webpack-plugin': 1.0.1 - '@umijs/mfsu': 4.0.76 - '@umijs/utils': 4.0.76 + '@umijs/mfsu': 4.1.0 + '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.89.0) + '@umijs/utils': 4.1.0 cors: 2.8.5 - css-loader: 6.7.1(webpack@5.88.2) - es5-imcompatible-versions: 0.1.86 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.88.2) + css-loader: 6.7.1(webpack@5.89.0) + es5-imcompatible-versions: 0.1.88 + fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.89.0) jest-worker: 29.4.3 - lightningcss: 1.19.0 + lightningcss: 1.22.1 node-libs-browser: 2.2.1 - postcss: 8.4.28 - postcss-preset-env: 7.5.0(postcss@8.4.28) + postcss: 8.4.33 + postcss-preset-env: 7.5.0(postcss@8.4.33) react-error-overlay: 6.0.9 react-refresh: 0.14.0 transitivePeerDependencies: - '@types/webpack' - sockjs-client - - styled-components - supports-color - type-fest - typescript @@ -4603,11 +4743,11 @@ packages: /@umijs/case-sensitive-paths-webpack-plugin@1.0.1: resolution: {integrity: sha512-kDKJ8yTarxwxGJDInG33hOpaQRZ//XpNuuznQ/1Mscypw6kappzFmrBr2dOYave++K7JHouoANF354UpbEQw0Q==} - /@umijs/core@4.0.76: - resolution: {integrity: sha512-LO1w5wR1EueCgglVcmOgCdztO9fYE7ujKhNJf/UBRFN27i6bcmg/GAMWz/7Uy7AB3Dy/qqMtEtvF/uZuLRE7gg==} + /@umijs/core@4.1.0: + resolution: {integrity: sha512-/6o95AXepiM+2nFaIWlSOknV7n9y//3vpTJBtFg8fVK8QqEZ/+hgAsv5mkpf6y2mvEKVt/ezqh1fjjFXqUO5Sg==} dependencies: - '@umijs/bundler-utils': 4.0.76 - '@umijs/utils': 4.0.76 + '@umijs/bundler-utils': 4.1.0 + '@umijs/utils': 4.1.0 transitivePeerDependencies: - supports-color @@ -4708,13 +4848,13 @@ packages: resolution: {integrity: sha512-fOyXcbViOB+/jW+g2rCiK9XjSZVn4OzFuMZpSCriCdR/KxhxLTokvJWFm3CzBEmg9vXfrBFQ4c/ykmqoVacHtw==} hasBin: true dependencies: - '@babel/core': 7.22.10 - '@babel/eslint-parser': 7.19.1(@babel/core@7.22.10)(eslint@7.32.0) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-decorators': 7.22.10(@babel/core@7.22.10) - '@babel/preset-env': 7.22.10(@babel/core@7.22.10) - '@babel/preset-react': 7.22.5(@babel/core@7.22.10) - '@babel/preset-typescript': 7.22.5(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/eslint-parser': 7.23.3(@babel/core@7.23.7)(eslint@7.32.0) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-decorators': 7.23.7(@babel/core@7.23.7) + '@babel/preset-env': 7.23.8(@babel/core@7.23.7) + '@babel/preset-react': 7.23.3(@babel/core@7.23.7) + '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7) '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5) chalk: 4.1.2 @@ -4727,7 +4867,7 @@ packages: eslint-plugin-react: 7.33.2(eslint@7.32.0) eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0) eslint-plugin-unicorn: 20.1.0(eslint@7.32.0) - fast-glob: 3.3.1 + fast-glob: 3.3.2 os-locale: 5.0.0 prettier: 2.8.8 prettier-plugin-packagejson: 2.3.0(prettier@2.8.8) @@ -4736,7 +4876,7 @@ packages: stylelint-config-css-modules: 2.3.0(stylelint@13.13.1) stylelint-config-prettier: 8.0.2(stylelint@13.13.1) stylelint-config-standard: 20.0.0(stylelint@13.13.1) - stylelint-declaration-block-no-ignored-properties: 2.7.0(stylelint@13.13.1) + stylelint-declaration-block-no-ignored-properties: 2.8.0(stylelint@13.13.1) typescript: 4.9.5 transitivePeerDependencies: - postcss-jsx @@ -4747,23 +4887,23 @@ packages: /@umijs/history@5.3.1: resolution: {integrity: sha512-/e0cEGrR2bIWQD7pRl3dl9dcyRGeC9hoW0OCvUTT/hjY0EfUrkd6G8ZanVghPMpDuY5usxq9GVcvrT8KNXLWvA==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.6 query-string: 6.14.1 - /@umijs/lint@4.0.76(eslint@8.47.0)(jest@29.6.3)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5): - resolution: {integrity: sha512-ft0Yhjqab4O++ZHI46+k+HeqTZJaHIW53tzS6/tPqxSxo4Tl9JSIup/ngGZ2Cdv0lixOKamo/ggr7pNs4iCYPA==} - dependencies: - '@babel/core': 7.21.0 - '@babel/eslint-parser': 7.19.1(@babel/core@7.21.0)(eslint@8.47.0) - '@stylelint/postcss-css-in-js': 0.38.0(postcss-syntax@0.36.2)(postcss@8.4.28) - '@typescript-eslint/eslint-plugin': 5.48.1(@typescript-eslint/parser@5.48.1)(eslint@8.47.0)(typescript@4.9.5) - '@typescript-eslint/parser': 5.48.1(eslint@8.47.0)(typescript@4.9.5) - '@umijs/babel-preset-umi': 4.0.76(styled-components@6.0.8) - eslint-plugin-jest: 27.2.1(@typescript-eslint/eslint-plugin@5.48.1)(eslint@8.47.0)(jest@29.6.3)(typescript@4.9.5) - eslint-plugin-react: 7.32.2(eslint@8.47.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.47.0) - postcss: 8.4.28 - postcss-syntax: 0.36.2(postcss@8.4.28) + /@umijs/lint@4.1.0(eslint@8.56.0)(jest@29.7.0)(stylelint@14.16.1)(typescript@4.9.5): + resolution: {integrity: sha512-drXkAeBJGMLrPr/dDiOZ2Z+3VKkAf53MzoOIhwHy5atq+PFNG9Y7e6YuWrK3qVF75zg9culQzlHTvinCjDK97Q==} + dependencies: + '@babel/core': 7.23.6 + '@babel/eslint-parser': 7.23.3(@babel/core@7.23.6)(eslint@8.56.0) + '@stylelint/postcss-css-in-js': 0.38.0(postcss-syntax@0.36.2)(postcss@8.4.33) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@4.9.5) + '@umijs/babel-preset-umi': 4.1.0 + eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0)(jest@29.7.0)(typescript@4.9.5) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) + postcss: 8.4.33 + postcss-syntax: 0.36.2(postcss@8.4.33) stylelint-config-standard: 25.0.0(stylelint@14.16.1) transitivePeerDependencies: - eslint @@ -4773,34 +4913,33 @@ packages: - postcss-less - postcss-markdown - postcss-scss - - styled-components - stylelint - supports-color - typescript - /@umijs/mfsu@4.0.76: - resolution: {integrity: sha512-bdkXeXhluq1GebADxNOx7O9drA2HtkydXYxGGTkeIpYHbJdikODRaSB4i1BVtfV6VlyGCPjrMG+Csv8VjOvoTw==} + /@umijs/mfsu@4.1.0: + resolution: {integrity: sha512-Vd4D3mWtOzsNJulzH5JFPuBMdsi2/3OwIh38mvWHhZlLtW5m+RQ0Nf2InS5Zvlw1DJvUO31TmtJniN2yCDm8ZQ==} dependencies: - '@umijs/bundler-esbuild': 4.0.76 - '@umijs/bundler-utils': 4.0.76 - '@umijs/utils': 4.0.76 + '@umijs/bundler-esbuild': 4.1.0 + '@umijs/bundler-utils': 4.1.0 + '@umijs/utils': 4.1.0 enhanced-resolve: 5.9.3 - is-equal: 1.6.4 + is-equal: 1.7.0 transitivePeerDependencies: - supports-color - /@umijs/openapi@1.8.5: - resolution: {integrity: sha512-/+y53TU4dy4NyIqtVTze6AjmF90c9xGKOjDxy6Ve1pReYryV2yOlgcrYaYPLyfbdyB/CFRzQpJZGNcIDmYgFIg==} + /@umijs/openapi@1.9.4: + resolution: {integrity: sha512-g/tUvIkXpAXsLW9l9kIMFmmkYrdXSK1Z5Cf+obo2Goc5YWBiJ0IuhUMQMK6Y9DN+dcCbzDZWJcThDHIyAnJXIQ==} dependencies: '@umijs/fabric': 2.14.1 chalk: 4.1.2 - dayjs: 1.11.9 + dayjs: 1.11.10 glob: 7.2.3 lodash: 4.17.21 memoizee: 0.4.15 mock.js: 0.2.0 mockjs: 1.1.0 - node-fetch: 2.6.13 + node-fetch: 2.7.0 nunjucks: 3.2.4 openapi3-ts: 2.0.2 prettier: 2.8.8 @@ -4816,42 +4955,44 @@ packages: - supports-color dev: true - /@umijs/plugin-run@4.0.76: - resolution: {integrity: sha512-xfg6C8GIXVD2nr31IJWT0iFXLRzWxmU8SzQJV0tftyiDGCWgHiXPc62eWOoGFzRKfGguWB+hrCgFifuK8qiX6w==} + /@umijs/plugin-run@4.1.0: + resolution: {integrity: sha512-G+kd2YB6yG7Gj8MKV9n09jHn2QKcv5ChTFg8IuoG8hHsKbkSFE91Ne3OzEHeOXKHyNGX0IOQE8WJ6iXVqi9XTw==} dependencies: - tsx: 3.12.7 + tsx: 3.14.0 - /@umijs/preset-umi@4.0.76(@types/node@20.4.7)(@types/react@18.2.21)(postcss@8.4.28)(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2): - resolution: {integrity: sha512-kYtB2fUjd2NGExc1P5WeovIP+bq2NgddaPPS17/gwuKLeyv49d49ZVOaqHZfTwjCdVZBhYi/ipCVEeNtIA4Pkg==} + /@umijs/preset-umi@4.1.0(@types/node@20.5.1)(@types/react@18.2.47)(typescript@4.9.5)(webpack@5.89.0): + resolution: {integrity: sha512-zi/VIGftPPK8kmpKg4UkU2x1LyRU2Lh/crGt3DS8eOtA4YhDsmF8iRfgJ4wO4LIlb2gEFy66DAUPic8Hz58ZMQ==} dependencies: '@iconify/utils': 2.1.1 '@svgr/core': 6.5.1 - '@umijs/ast': 4.0.76 - '@umijs/babel-preset-umi': 4.0.76(styled-components@6.0.8) - '@umijs/bundler-esbuild': 4.0.76 - '@umijs/bundler-utils': 4.0.76 - '@umijs/bundler-vite': 4.0.76(@types/node@20.4.7)(postcss@8.4.28)(sass@1.66.1) - '@umijs/bundler-webpack': 4.0.76(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2) - '@umijs/core': 4.0.76 + '@umijs/ast': 4.1.0 + '@umijs/babel-preset-umi': 4.1.0 + '@umijs/bundler-esbuild': 4.1.0 + '@umijs/bundler-utils': 4.1.0 + '@umijs/bundler-vite': 4.1.0(@types/node@20.5.1)(postcss@8.4.33)(sass@1.69.7) + '@umijs/bundler-webpack': 4.1.0(typescript@4.9.5)(webpack@5.89.0) + '@umijs/core': 4.1.0 '@umijs/did-you-know': 1.0.3 '@umijs/es-module-parser': 0.0.7 '@umijs/history': 5.3.1 - '@umijs/mfsu': 4.0.76 - '@umijs/plugin-run': 4.0.76 - '@umijs/renderer-react': 4.0.76(react-dom@18.1.0)(react@18.1.0) - '@umijs/server': 4.0.76 + '@umijs/mfsu': 4.1.0 + '@umijs/plugin-run': 4.1.0 + '@umijs/renderer-react': 4.1.0(react-dom@18.1.0)(react@18.1.0) + '@umijs/server': 4.1.0 '@umijs/ui': 3.0.1 - '@umijs/utils': 4.0.76 - '@umijs/zod2ts': 4.0.76 + '@umijs/utils': 4.1.0 + '@umijs/zod2ts': 4.1.0 babel-plugin-dynamic-import-node: 2.3.3 - click-to-react-component: 1.0.8(@types/react@18.2.21)(react-dom@18.1.0)(react@18.1.0) - core-js: 3.28.0 + click-to-react-component: 1.1.0(@types/react@18.2.47)(react-dom@18.1.0)(react@18.1.0) + core-js: 3.34.0 current-script-polyfill: 1.0.0 enhanced-resolve: 5.9.3 fast-glob: 3.2.12 - html-webpack-plugin: 5.5.0(webpack@5.88.2) + html-webpack-plugin: 5.5.0(webpack@5.89.0) + less-plugin-resolve: 1.0.2 path-to-regexp: 1.7.0 - postcss-prefix-selector: 1.16.0(postcss@8.4.28) + postcss: 8.4.33 + postcss-prefix-selector: 1.16.0(postcss@8.4.33) react: 18.1.0 react-dom: 18.1.0(react@18.1.0) react-router: 6.3.0(react@18.1.0) @@ -4861,11 +5002,9 @@ packages: - '@types/node' - '@types/react' - '@types/webpack' - - postcss - rollup - sass - sockjs-client - - styled-components - stylus - sugarss - supports-color @@ -4878,37 +5017,39 @@ packages: - webpack-plugin-serve dev: false - /@umijs/preset-umi@4.0.76(@types/node@20.4.7)(postcss@8.4.28)(sass@1.66.1)(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2): - resolution: {integrity: sha512-kYtB2fUjd2NGExc1P5WeovIP+bq2NgddaPPS17/gwuKLeyv49d49ZVOaqHZfTwjCdVZBhYi/ipCVEeNtIA4Pkg==} + /@umijs/preset-umi@4.1.0(@types/node@20.5.1)(sass@1.69.7)(typescript@4.9.5)(webpack@5.89.0): + resolution: {integrity: sha512-zi/VIGftPPK8kmpKg4UkU2x1LyRU2Lh/crGt3DS8eOtA4YhDsmF8iRfgJ4wO4LIlb2gEFy66DAUPic8Hz58ZMQ==} dependencies: '@iconify/utils': 2.1.1 '@svgr/core': 6.5.1 - '@umijs/ast': 4.0.76 - '@umijs/babel-preset-umi': 4.0.76(styled-components@6.0.8) - '@umijs/bundler-esbuild': 4.0.76 - '@umijs/bundler-utils': 4.0.76 - '@umijs/bundler-vite': 4.0.76(@types/node@20.4.7)(postcss@8.4.28)(sass@1.66.1) - '@umijs/bundler-webpack': 4.0.76(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2) - '@umijs/core': 4.0.76 + '@umijs/ast': 4.1.0 + '@umijs/babel-preset-umi': 4.1.0 + '@umijs/bundler-esbuild': 4.1.0 + '@umijs/bundler-utils': 4.1.0 + '@umijs/bundler-vite': 4.1.0(@types/node@20.5.1)(postcss@8.4.33)(sass@1.69.7) + '@umijs/bundler-webpack': 4.1.0(typescript@4.9.5)(webpack@5.89.0) + '@umijs/core': 4.1.0 '@umijs/did-you-know': 1.0.3 '@umijs/es-module-parser': 0.0.7 '@umijs/history': 5.3.1 - '@umijs/mfsu': 4.0.76 - '@umijs/plugin-run': 4.0.76 - '@umijs/renderer-react': 4.0.76(react-dom@18.1.0)(react@18.1.0) - '@umijs/server': 4.0.76 + '@umijs/mfsu': 4.1.0 + '@umijs/plugin-run': 4.1.0 + '@umijs/renderer-react': 4.1.0(react-dom@18.1.0)(react@18.1.0) + '@umijs/server': 4.1.0 '@umijs/ui': 3.0.1 - '@umijs/utils': 4.0.76 - '@umijs/zod2ts': 4.0.76 + '@umijs/utils': 4.1.0 + '@umijs/zod2ts': 4.1.0 babel-plugin-dynamic-import-node: 2.3.3 - click-to-react-component: 1.0.8(@types/react@18.2.21)(react-dom@18.1.0)(react@18.1.0) - core-js: 3.28.0 + click-to-react-component: 1.1.0(@types/react@18.2.47)(react-dom@18.1.0)(react@18.1.0) + core-js: 3.34.0 current-script-polyfill: 1.0.0 enhanced-resolve: 5.9.3 fast-glob: 3.2.12 - html-webpack-plugin: 5.5.0(webpack@5.88.2) + html-webpack-plugin: 5.5.0(webpack@5.89.0) + less-plugin-resolve: 1.0.2 path-to-regexp: 1.7.0 - postcss-prefix-selector: 1.16.0(postcss@8.4.28) + postcss: 8.4.33 + postcss-prefix-selector: 1.16.0(postcss@8.4.33) react: 18.1.0 react-dom: 18.1.0(react@18.1.0) react-router: 6.3.0(react@18.1.0) @@ -4918,11 +5059,9 @@ packages: - '@types/node' - '@types/react' - '@types/webpack' - - postcss - rollup - sass - sockjs-client - - styled-components - stylus - sugarss - supports-color @@ -4935,13 +5074,51 @@ packages: - webpack-plugin-serve dev: true - /@umijs/renderer-react@4.0.76(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-oDI2AhBNjr13ADmV0XakVSJzgLi+9wG3S0jLOMFJiZ5Bk+vma7fhJkbErVtw2b/LHPwDFZZNWbVXGpUF2sjdtg==} + /@umijs/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.89.0): + resolution: {integrity: sha512-RtFvB+/GmjRhpHcqNgnw8iWZpTlxOnmNxi8eDcecxMmxmSgeDj25LV0jr4Q6rOhv3GTIfVGBhkwz+khGT5tfmg==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: '>=4.43.0 <6.0.0' + webpack-dev-server: 3.x || 4.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + dependencies: + ansi-html-community: 0.0.8 + common-path-prefix: 3.0.0 + core-js-pure: 3.35.0 + error-stack-parser: 2.1.4 + find-up: 5.0.0 + html-entities: 2.4.0 + loader-utils: 2.0.4 + react-refresh: 0.14.0 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 5.89.0(esbuild@0.17.19) + + /@umijs/renderer-react@4.1.0(react-dom@18.1.0)(react@18.1.0): + resolution: {integrity: sha512-8hBdlLyE9u3cHrx4Y5XYW4KPb4JpVs7xzve0yY+IEBrrdC5jPdVwaPy8EfM+Y93Fjwtj+cb4O1tKlAmBEAur+w==} peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.6 '@loadable/component': 5.15.2(react@18.1.0) history: 5.3.0 react: 18.1.0 @@ -4949,10 +5126,24 @@ packages: react-helmet-async: 1.3.0(react-dom@18.1.0)(react@18.1.0) react-router-dom: 6.3.0(react-dom@18.1.0)(react@18.1.0) - /@umijs/server@4.0.76: - resolution: {integrity: sha512-Vqb/rVr32K2UAXkMXLK7KjQaVf/Jbqh4iZ5ivAIsaqNLBYZuaV2vPhIaW+igMsw1bbw/9G96dmXCghaRTCyCtQ==} + /@umijs/renderer-react@4.1.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-8hBdlLyE9u3cHrx4Y5XYW4KPb4JpVs7xzve0yY+IEBrrdC5jPdVwaPy8EfM+Y93Fjwtj+cb4O1tKlAmBEAur+w==} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + dependencies: + '@babel/runtime': 7.23.6 + '@loadable/component': 5.15.2(react@18.2.0) + history: 5.3.0 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0) + react-router-dom: 6.3.0(react-dom@18.2.0)(react@18.2.0) + + /@umijs/server@4.1.0: + resolution: {integrity: sha512-wwXntDQT/5lOCgr3gerePPeDp8KF/0xj4caPr8PW6MEbDt5XmPCj2jZ6TPJmDMTb0iD8JGwqpVr478LxXMbA6w==} dependencies: - '@umijs/bundler-utils': 4.0.76 + '@umijs/bundler-utils': 4.1.0 history: 5.3.0 react: 18.1.0 react-dom: 18.1.0(react@18.1.0) @@ -4960,14 +5151,14 @@ packages: transitivePeerDependencies: - supports-color - /@umijs/test@4.0.76(@babel/core@7.22.10): - resolution: {integrity: sha512-CAmpVpuh21jypqXY/ajhIyyJJRSbRrQeysoMAoY3PAm+lcakccUK+pOoi4U45FWmIOlltKAXdPQf0L+B2PwKCg==} + /@umijs/test@4.1.0(@babel/core@7.23.7): + resolution: {integrity: sha512-GMcK+dQZ8WmRIFgC39+GkY6YssTtqFElpwcBpqgcYumIwJBsKAVKIy8sCAR8FdttZKj8RRY4/nAd8L+l0xZE6A==} dependencies: - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.10) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) '@jest/types': 27.5.1 - '@umijs/bundler-utils': 4.0.76 - '@umijs/utils': 4.0.76 - babel-jest: 29.6.3(@babel/core@7.22.10) + '@umijs/bundler-utils': 4.1.0 + '@umijs/utils': 4.1.0 + babel-jest: 29.7.0(@babel/core@7.23.7) esbuild: 0.17.19 identity-obj-proxy: 3.0.0 isomorphic-unfetch: 4.0.2 @@ -4978,14 +5169,17 @@ packages: /@umijs/ui@3.0.1: resolution: {integrity: sha512-zcz37AJH0xt/6XVVbyO/hmsK9Hq4vH23HZ4KYVi5A8rbM9KeJkJigTS7ELOdArawZhVNGe+h3a5Oixs4a2QsWw==} - /@umijs/utils@4.0.76: - resolution: {integrity: sha512-DY57pV1FbqRF6Pz452sULmS9Mk4mi9GsX3/RRrQmS0JSdLqY6erR5iG9PyoKoCEujIYTDEgudnE1ih+EG9ro7w==} + /@umijs/utils@4.1.0: + resolution: {integrity: sha512-rBGosE12ceUXIvBmmkJ6bDoCP8106VzMLnjlR31ZfFgos9L/GT6xW4clBURW7ddXFbZvOkvjsb4rmCbhOwUHYQ==} dependencies: chokidar: 3.5.3 pino: 7.11.0 - /@umijs/zod2ts@4.0.76: - resolution: {integrity: sha512-Kx1jlJ865uV5sOewKJxaUbXDXIsnpox/vify+sohDQfu/q94/TdYzHdTRxYbTs/zYyxNDxx00A5ABPUVTqilNA==} + /@umijs/zod2ts@4.1.0: + resolution: {integrity: sha512-iQCAupVF2HsalA7gfLDvXDt8pnKqBe2CZu9kHnqWrItnl/UkwiUvB8CHLprKKBNRtJNuukfnXkqsPXTb1mYiSA==} + + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} /@vitejs/plugin-react@4.0.0(vite@4.3.1): resolution: {integrity: sha512-HX0XzMjL3hhOYm+0s95pb0Z7F8O81G7joUHgfDd/9J/ZZf5k4xX6QAMFkKsHFxaHlf6X7GD7+XuaZ66ULiJuhQ==} @@ -4993,11 +5187,11 @@ packages: peerDependencies: vite: ^4.2.0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7) react-refresh: 0.14.0 - vite: 4.3.1(@types/node@20.4.7)(less@4.1.3)(sass@1.66.1) + vite: 4.3.1(@types/node@20.5.1)(less@4.1.3)(sass@1.69.7) transitivePeerDependencies: - supports-color @@ -5131,21 +5325,22 @@ packages: /abab@2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead dev: false /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: - acorn: 8.10.0 - acorn-walk: 8.2.0 + acorn: 8.11.3 + acorn-walk: 8.3.2 dev: false - /acorn-import-assertions@1.9.0(acorn@8.10.0): + /acorn-import-assertions@1.9.0(acorn@8.11.3): resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} peerDependencies: acorn: ^8 dependencies: - acorn: 8.10.0 + acorn: 8.11.3 /acorn-jsx@5.3.2(acorn@7.4.1): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -5155,15 +5350,15 @@ packages: acorn: 7.4.1 dev: true - /acorn-jsx@5.3.2(acorn@8.10.0): + /acorn-jsx@5.3.2(acorn@8.11.3): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.10.0 + acorn: 8.11.3 - /acorn-walk@8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + /acorn-walk@8.3.2: + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} engines: {node: '>=0.4.0'} /acorn@7.4.1: @@ -5172,8 +5367,8 @@ packages: hasBin: true dev: true - /acorn@8.10.0: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} engines: {node: '>=0.4.0'} hasBin: true @@ -5210,20 +5405,20 @@ packages: resolution: {integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==} dev: false - /ahooks@3.7.8(react@18.1.0): + /ahooks@3.7.8(react@18.2.0): resolution: {integrity: sha512-e/NMlQWoCjaUtncNFIZk3FG1ImSkV/JhScQSkTqnftakRwdfZWSw6zzoWSG9OMYqPNs2MguDYBUFFC6THelWXA==} engines: {node: '>=8.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 '@types/js-cookie': 2.2.7 ahooks-v3-count: 1.0.0 - dayjs: 1.11.9 + dayjs: 1.11.10 intersection-observer: 0.12.2 js-cookie: 2.2.1 lodash: 4.17.21 - react: 18.1.0 + react: 18.2.0 resize-observer-polyfill: 1.5.1 screenfull: 5.2.0 tslib: 2.6.2 @@ -5307,7 +5502,6 @@ packages: /ansi-regex@6.0.1: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} - dev: true /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} @@ -5328,63 +5522,61 @@ packages: /ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - dev: true - /antd@5.8.4(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-DbQUmRWf9GAllZsc9NxL9gnrup75F7iZ0OlFY+mXh31JdSYQLLP07CAOK7z/sdQLQdYnAHWyuWvkb2mrRKxnYA==} + /antd@5.12.8(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-R2CRcB+aaVZurb3J0IKpBRWq5kW4CLcSqDF58/QBsqYdzK7XjSvM8+eF3rWVRUDbSJfGmyW7I80ywNRYpW1+vA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@ant-design/colors': 7.0.0 - '@ant-design/cssinjs': 1.16.2(react-dom@18.1.0)(react@18.1.0) - '@ant-design/icons': 5.2.5(react-dom@18.1.0)(react@18.1.0) - '@ant-design/react-slick': 1.0.2(react@18.1.0) - '@babel/runtime': 7.22.10 - '@ctrl/tinycolor': 3.6.0 - '@rc-component/color-picker': 1.4.1(react-dom@18.1.0)(react@18.1.0) - '@rc-component/mutate-observer': 1.1.0(react-dom@18.1.0)(react@18.1.0) - '@rc-component/tour': 1.8.1(react-dom@18.1.0)(react@18.1.0) - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 + '@ant-design/colors': 7.0.2 + '@ant-design/cssinjs': 1.18.2(react-dom@18.2.0)(react@18.2.0) + '@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0) + '@ant-design/react-slick': 1.0.2(react@18.2.0) + '@ctrl/tinycolor': 3.6.1 + '@rc-component/color-picker': 1.5.1(react-dom@18.2.0)(react@18.2.0) + '@rc-component/mutate-observer': 1.1.0(react-dom@18.2.0)(react@18.2.0) + '@rc-component/tour': 1.11.1(react-dom@18.2.0)(react@18.2.0) + '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 copy-to-clipboard: 3.3.3 - dayjs: 1.11.9 - qrcode.react: 3.1.0(react@18.1.0) - rc-cascader: 3.14.1(react-dom@18.1.0)(react@18.1.0) - rc-checkbox: 3.1.0(react-dom@18.1.0)(react@18.1.0) - rc-collapse: 3.7.1(react-dom@18.1.0)(react@18.1.0) - rc-dialog: 9.1.0(react-dom@18.1.0)(react@18.1.0) - rc-drawer: 6.2.0(react-dom@18.1.0)(react@18.1.0) - rc-dropdown: 4.1.0(react-dom@18.1.0)(react@18.1.0) - rc-field-form: 1.36.2(react-dom@18.1.0)(react@18.1.0) - rc-image: 7.1.3(react-dom@18.1.0)(react@18.1.0) - rc-input: 1.1.1(react-dom@18.1.0)(react@18.1.0) - rc-input-number: 8.0.4(react-dom@18.1.0)(react@18.1.0) - rc-mentions: 2.5.0(react-dom@18.1.0)(react@18.1.0) - rc-menu: 9.10.0(react-dom@18.1.0)(react@18.1.0) - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-notification: 5.0.5(react-dom@18.1.0)(react@18.1.0) - rc-pagination: 3.6.1(react-dom@18.1.0)(react@18.1.0) - rc-picker: 3.13.1(dayjs@1.11.9)(react-dom@18.1.0)(react@18.1.0) - rc-progress: 3.4.2(react-dom@18.1.0)(react@18.1.0) - rc-rate: 2.12.0(react-dom@18.1.0)(react@18.1.0) - rc-resize-observer: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-segmented: 2.2.2(react-dom@18.1.0)(react@18.1.0) - rc-select: 14.7.4(react-dom@18.1.0)(react@18.1.0) - rc-slider: 10.1.1(react-dom@18.1.0)(react@18.1.0) - rc-steps: 6.0.1(react-dom@18.1.0)(react@18.1.0) - rc-switch: 4.1.0(react-dom@18.1.0)(react@18.1.0) - rc-table: 7.32.3(react-dom@18.1.0)(react@18.1.0) - rc-tabs: 12.9.0(react-dom@18.1.0)(react@18.1.0) - rc-textarea: 1.3.4(react-dom@18.1.0)(react@18.1.0) - rc-tooltip: 6.0.1(react-dom@18.1.0)(react@18.1.0) - rc-tree: 5.7.9(react-dom@18.1.0)(react@18.1.0) - rc-tree-select: 5.11.2(react-dom@18.1.0)(react@18.1.0) - rc-upload: 4.3.4(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - scroll-into-view-if-needed: 3.0.10 + dayjs: 1.11.10 + qrcode.react: 3.1.0(react@18.2.0) + rc-cascader: 3.20.0(react-dom@18.2.0)(react@18.2.0) + rc-checkbox: 3.1.0(react-dom@18.2.0)(react@18.2.0) + rc-collapse: 3.7.2(react-dom@18.2.0)(react@18.2.0) + rc-dialog: 9.3.4(react-dom@18.2.0)(react@18.2.0) + rc-drawer: 6.5.2(react-dom@18.2.0)(react@18.2.0) + rc-dropdown: 4.1.0(react-dom@18.2.0)(react@18.2.0) + rc-field-form: 1.41.0(react-dom@18.2.0)(react@18.2.0) + rc-image: 7.5.1(react-dom@18.2.0)(react@18.2.0) + rc-input: 1.3.11(react-dom@18.2.0)(react@18.2.0) + rc-input-number: 8.4.0(react-dom@18.2.0)(react@18.2.0) + rc-mentions: 2.9.1(react-dom@18.2.0)(react@18.2.0) + rc-menu: 9.12.4(react-dom@18.2.0)(react@18.2.0) + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-notification: 5.3.0(react-dom@18.2.0)(react@18.2.0) + rc-pagination: 4.0.4(react-dom@18.2.0)(react@18.2.0) + rc-picker: 3.14.6(dayjs@1.11.10)(react-dom@18.2.0)(react@18.2.0) + rc-progress: 3.5.1(react-dom@18.2.0)(react@18.2.0) + rc-rate: 2.12.0(react-dom@18.2.0)(react@18.2.0) + rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0) + rc-segmented: 2.2.2(react-dom@18.2.0)(react@18.2.0) + rc-select: 14.10.0(react-dom@18.2.0)(react@18.2.0) + rc-slider: 10.5.0(react-dom@18.2.0)(react@18.2.0) + rc-steps: 6.0.1(react-dom@18.2.0)(react@18.2.0) + rc-switch: 4.1.0(react-dom@18.2.0)(react@18.2.0) + rc-table: 7.36.1(react-dom@18.2.0)(react@18.2.0) + rc-tabs: 12.14.1(react-dom@18.2.0)(react@18.2.0) + rc-textarea: 1.5.3(react-dom@18.2.0)(react@18.2.0) + rc-tooltip: 6.1.3(react-dom@18.2.0)(react@18.2.0) + rc-tree: 5.8.2(react-dom@18.2.0)(react@18.2.0) + rc-tree-select: 5.15.0(react-dom@18.2.0)(react@18.2.0) + rc-upload: 4.5.2(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + scroll-into-view-if-needed: 3.1.0 throttle-debounce: 5.0.0 transitivePeerDependencies: - date-fns @@ -5429,7 +5621,7 @@ packages: /aria-query@5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: - deep-equal: 2.2.2 + deep-equal: 2.2.3 dev: false /aria-query@5.3.0: @@ -5441,21 +5633,21 @@ packages: /array-buffer-byte-length@1.0.0: resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 is-array-buffer: 3.0.2 /array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true - /array-includes@3.1.6: - resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} + /array-includes@3.1.7: + resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 is-string: 1.0.7 /array-tree-filter@2.1.0: @@ -5465,63 +5657,64 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - /array.prototype.findlastindex@1.2.2: - resolution: {integrity: sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==} + /array.prototype.findlastindex@1.2.3: + resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 dev: false - /array.prototype.flat@1.3.1: - resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-shim-unscopables: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 - /array.prototype.flatmap@1.3.1: - resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-shim-unscopables: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 - /array.prototype.reduce@1.0.5: - resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==} + /array.prototype.reduce@1.0.6: + resolution: {integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 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==} + /array.prototype.tosorted@1.1.2: + resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 - /arraybuffer.prototype.slice@1.0.1: - resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - call-bind: 1.0.2 - define-properties: 1.2.0 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 @@ -5541,11 +5734,11 @@ packages: minimalistic-assert: 1.0.1 safer-buffer: 2.1.2 - /assert@1.5.0: - resolution: {integrity: sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==} + /assert@1.5.1: + resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==} dependencies: - object-assign: 4.1.1 - util: 0.10.3 + object.assign: 4.1.5 + util: 0.10.4 /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} @@ -5577,27 +5770,27 @@ packages: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} engines: {node: '>=8.0.0'} - /autoprefixer@10.4.15(postcss@8.4.28): - resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==} + /autoprefixer@10.4.16(postcss@8.4.33): + resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.10 - caniuse-lite: 1.0.30001522 - fraction.js: 4.2.1 + browserslist: 4.22.2 + caniuse-lite: 1.0.30001576 + fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 /autoprefixer@9.8.8: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: - browserslist: 4.21.10 - caniuse-lite: 1.0.30001522 + browserslist: 4.22.2 + caniuse-lite: 1.0.30001576 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -5619,27 +5812,27 @@ packages: - supports-color dev: true - /axios@1.4.0: - resolution: {integrity: sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==} + /axios@1.6.5: + resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==} dependencies: - follow-redirects: 1.15.2 + follow-redirects: 1.15.4 form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug dev: true - /babel-jest@29.6.3(@babel/core@7.22.10): - resolution: {integrity: sha512-1Ne93zZZEy5XmTa4Q+W5+zxBrDpExX8E3iy+xJJ+24ewlfo/T3qHfQJCzi/MMVFmBQDNxtRR/Gfd2dwb/0yrQw==} + /babel-jest@29.7.0(@babel/core@7.23.7): + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.22.10 - '@jest/transform': 29.6.3 - '@types/babel__core': 7.20.1 + '@babel/core': 7.23.7 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.22.10) + babel-preset-jest: 29.6.3(@babel/core@7.23.7) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -5649,7 +5842,7 @@ packages: /babel-plugin-dynamic-import-node@2.3.3: resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} dependencies: - object.assign: 4.1.4 + object.assign: 4.1.5 /babel-plugin-istanbul@6.1.1: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} @@ -5667,64 +5860,52 @@ packages: resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.10 - '@types/babel__core': 7.20.1 - '@types/babel__traverse': 7.20.1 + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 /babel-plugin-parameter-decorator@1.0.16: resolution: {integrity: sha512-yUT2WPTUg1JaPmRGRSF557m1HJ9vdFQInRWOkiOyO5a9HhqlXffJu+fQ2xd5+qU/35ICMrrk9eWKsHCairKA9w==} dev: true - /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.10): - resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} + /babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.7): + resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10) + '@babel/compat-data': 7.23.5 + '@babel/core': 7.23.7 + '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7) semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: true - /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} + /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7): + resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10) - core-js-compat: 3.32.1 + '@babel/core': 7.23.7 + '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7) + core-js-compat: 3.35.0 transitivePeerDependencies: - supports-color + dev: true - /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.10): - resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} + /babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.7): + resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10) + '@babel/core': 7.23.7 + '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7) transitivePeerDependencies: - supports-color + dev: true - /babel-plugin-styled-components@2.1.1(styled-components@6.0.8): - resolution: {integrity: sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA==} - peerDependencies: - styled-components: '>= 2' - dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - babel-plugin-syntax-jsx: 6.18.0 - lodash: 4.17.21 - picomatch: 2.3.1 - styled-components: 6.0.8(react-dom@18.1.0)(react@18.1.0) - - /babel-plugin-syntax-jsx@6.18.0: - resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} - - /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.22.10): + /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.23.7): resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} peerDependencies: '@babel/core': ^7 @@ -5733,38 +5914,38 @@ packages: '@babel/traverse': optional: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.10): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.7): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.10) - - /babel-preset-jest@29.6.3(@babel/core@7.22.10): + '@babel/core': 7.23.7 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) + + /babel-preset-jest@29.6.3(@babel/core@7.23.7): resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.10) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7) /bail@1.0.5: resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} @@ -5783,8 +5964,8 @@ packages: /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - /big-integer@1.6.51: - resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} + /big-integer@1.6.52: + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} engines: {node: '>=0.6'} /big.js@5.2.2: @@ -5844,7 +6025,7 @@ packages: resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} engines: {node: '>= 5.10.0'} dependencies: - big-integer: 1.6.51 + big-integer: 1.6.52 /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} @@ -5852,6 +6033,11 @@ packages: balanced-match: 1.0.2 concat-map: 0.0.1 + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + /braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} @@ -5892,8 +6078,9 @@ packages: bn.js: 5.2.1 randombytes: 2.1.0 - /browserify-sign@4.2.1: - resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==} + /browserify-sign@4.2.2: + resolution: {integrity: sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==} + engines: {node: '>= 4'} dependencies: bn.js: 5.2.1 browserify-rsa: 4.1.0 @@ -5910,15 +6097,15 @@ packages: dependencies: pako: 1.0.11 - /browserslist@4.21.10: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} + /browserslist@4.22.2: + resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001522 - electron-to-chromium: 1.4.499 - node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.10) + caniuse-lite: 1.0.30001576 + electron-to-chromium: 1.4.629 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) /bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} @@ -5980,8 +6167,8 @@ packages: dependencies: run-applescript: 5.0.0 - /bundle-require@4.0.1(esbuild@0.17.19): - resolution: {integrity: sha512-9NQkRHlNdNpDBGmLpngF3EFDcwodhMUuLz9PaWYciVcQF9SE4LFjM2DB/xV1Li5JiuDMv7ZUWuC3rGbqR0MAXQ==} + /bundle-require@4.0.2(esbuild@0.17.19): + resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: esbuild: '>=0.17' @@ -6029,11 +6216,12 @@ packages: y18n: 3.2.2 dev: true - /call-bind@1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 /call-me-maybe@1.0.2: resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} @@ -6079,11 +6267,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - /camelize@1.0.1: - resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - - /caniuse-lite@1.0.30001522: - resolution: {integrity: sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==} + /caniuse-lite@1.0.30001576: + resolution: {integrity: sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==} /capture-stack-trace@1.0.2: resolution: {integrity: sha512-X/WM2UQs6VMHUtjUDnZTRI+i1crWteJySFzr9UpGoQa4WQffXVTTXuekjl7TjZRlcF2XfjgITT0HxZ9RnxeT0w==} @@ -6185,8 +6370,8 @@ packages: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} dev: true - /ci-info@3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} /cipher-base@1.0.4: @@ -6205,8 +6390,11 @@ packages: /classnames@2.3.2: resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==} - /clean-css@5.3.2: - resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==} + /classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + + /clean-css@5.3.3: + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} engines: {node: '>= 10.0'} dependencies: source-map: 0.6.1 @@ -6266,12 +6454,12 @@ packages: resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==} dev: true - /click-to-react-component@1.0.8(@types/react@18.2.21)(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-YBNYOp00udy+NBEnUmM/3Df0Yco1iHNQ8k0ltlJVcDYK9AuYt14xPoJicBh/BokLqbzkci1p+pbdY5r4JXZC4g==} + /click-to-react-component@1.1.0(@types/react@18.2.47)(react-dom@18.1.0)(react@18.1.0): + resolution: {integrity: sha512-/DjZemufS1BkxyRgZL3r7HXVVOFRWVQi5Xd4EBnjxZMwrHEh0OlUVA2N9CjXkZ0x8zMf8dL1cKnnx+xUWUg4VA==} peerDependencies: react: '>=16.8.0' dependencies: - '@floating-ui/react-dom-interactions': 0.3.1(@types/react@18.2.21)(react-dom@18.1.0)(react@18.1.0) + '@floating-ui/react-dom-interactions': 0.3.1(@types/react@18.2.47)(react-dom@18.1.0)(react@18.1.0) htm: 3.1.1 react: 18.1.0 react-merge-refs: 1.1.0 @@ -6310,7 +6498,7 @@ packages: resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} engines: {node: '>= 4.0'} dependencies: - '@types/q': 1.5.5 + '@types/q': 1.5.8 chalk: 2.4.2 q: 1.5.1 dev: true @@ -6415,6 +6603,11 @@ packages: engines: {node: '>=16'} dev: true + /commander@11.1.0: + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} + engines: {node: '>=16'} + dev: true + /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} @@ -6445,8 +6638,8 @@ packages: dot-prop: 5.3.0 dev: true - /compute-scroll-into-view@3.0.3: - resolution: {integrity: sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==} + /compute-scroll-into-view@3.1.0: + resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==} /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -6504,9 +6697,6 @@ packages: split2: 3.2.2 dev: true - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} @@ -6531,17 +6721,18 @@ packages: dependencies: toggle-selection: 1.0.6 - /core-js-compat@3.32.1: - resolution: {integrity: sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==} + /core-js-compat@3.35.0: + resolution: {integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==} dependencies: - browserslist: 4.21.10 + browserslist: 4.22.2 + dev: true - /core-js-pure@3.32.1: - resolution: {integrity: sha512-f52QZwkFVDPf7UEQZGHKx6NYxsxmVGJe5DIvbzOdRMJlmT6yv0KDjR8rmy3ngr/t5wU54c7Sp/qIJH0ppbhVpQ==} + /core-js-pure@3.35.0: + resolution: {integrity: sha512-f+eRYmkou59uh7BPcyJ8MC76DiGhspj1KMxVIcF24tzP8NA9HVa1uC7BTW2tgx7E1QVCzDzsgp7kArrzhlz8Ew==} requiresBuild: true - /core-js@3.28.0: - resolution: {integrity: sha512-GiZn9D4Z/rSYvTeg1ljAIsEqFm0LaN9gVtwDCrKL80zHtS31p9BAjmTxVqTQDMpwlMolJZOFntUG2uwyj7DAqw==} + /core-js@3.34.0: + resolution: {integrity: sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag==} requiresBuild: true /core-util-is@1.0.3: @@ -6554,7 +6745,7 @@ packages: object-assign: 4.1.1 vary: 1.1.2 - /cosmiconfig-typescript-loader@4.4.0(@types/node@20.4.7)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5): + /cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.2)(typescript@4.9.5): resolution: {integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==} engines: {node: '>=v14.21.3'} peerDependencies: @@ -6563,9 +6754,9 @@ packages: ts-node: '>=10' typescript: '>=4' dependencies: - '@types/node': 20.4.7 - cosmiconfig: 8.2.0 - ts-node: 10.9.1(@types/node@20.4.7)(typescript@4.9.5) + '@types/node': 20.5.1 + cosmiconfig: 8.3.6(typescript@4.9.5) + ts-node: 10.9.2(@types/node@20.5.1)(typescript@4.9.5) typescript: 4.9.5 dev: true @@ -6573,20 +6764,26 @@ packages: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} dependencies: - '@types/parse-json': 4.0.0 + '@types/parse-json': 4.0.2 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig@8.2.0: - resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==} + /cosmiconfig@8.3.6(typescript@4.9.5): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 + typescript: 4.9.5 /create-ecdh@4.0.4: resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} @@ -6620,6 +6817,24 @@ packages: safe-buffer: 5.2.1 sha.js: 2.4.11 + /create-jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2): + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + /create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} @@ -6643,7 +6858,7 @@ packages: resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} dependencies: browserify-cipher: 1.0.1 - browserify-sign: 4.2.1 + browserify-sign: 4.2.2 create-ecdh: 4.0.4 create-hash: 1.2.0 create-hmac: 1.1.7 @@ -6654,8 +6869,8 @@ packages: randombytes: 2.1.0 randomfill: 1.0.4 - /crypto-js@4.1.1: - resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==} + /crypto-js@4.2.0: + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} dev: false /crypto-random-string@1.0.0: @@ -6663,58 +6878,60 @@ packages: engines: {node: '>=4'} dev: true - /css-blank-pseudo@3.0.3(postcss@8.4.28): + /css-blank-pseudo@3.0.3(postcss@8.4.33): resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /css-color-keywords@1.0.0: - resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} - engines: {node: '>=4'} + /css-box-model@1.2.1: + resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==} + dependencies: + tiny-invariant: 1.3.1 + dev: false - /css-functions-list@3.2.0: - resolution: {integrity: sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==} - engines: {node: '>=12.22'} + /css-functions-list@3.2.1: + resolution: {integrity: sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==} + engines: {node: '>=12 || >=16'} - /css-has-pseudo@3.0.4(postcss@8.4.28): + /css-has-pseudo@3.0.4(postcss@8.4.33): resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /css-loader@6.7.1(webpack@5.88.2): + /css-loader@6.7.1(webpack@5.89.0): resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.28) - postcss: 8.4.28 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.28) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.28) - postcss-modules-scope: 3.0.0(postcss@8.4.28) - postcss-modules-values: 4.0.0(postcss@8.4.28) + icss-utils: 5.1.0(postcss@8.4.33) + postcss: 8.4.33 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.33) + postcss-modules-local-by-default: 4.0.3(postcss@8.4.33) + postcss-modules-scope: 3.1.0(postcss@8.4.33) + postcss-modules-values: 4.0.0(postcss@8.4.33) postcss-value-parser: 4.2.0 semver: 7.5.4 - webpack: 5.88.2(esbuild@0.17.19) + webpack: 5.89.0(esbuild@0.17.19) - /css-prefers-color-scheme@6.0.3(postcss@8.4.28): + /css-prefers-color-scheme@6.0.3(postcss@8.4.33): resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 /css-select-base-adapter@0.1.1: resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} @@ -6738,13 +6955,6 @@ packages: domutils: 2.8.0 nth-check: 2.1.1 - /css-to-react-native@3.2.0: - resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==} - dependencies: - camelize: 1.0.1 - css-color-keywords: 1.0.0 - postcss-value-parser: 4.2.0 - /css-tree@1.0.0-alpha.37: resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} engines: {node: '>=8.0.0'} @@ -6817,8 +7027,8 @@ packages: cssom: 0.3.8 dev: false - /csstype@3.1.2: - resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + /csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} /current-script-polyfill@1.0.0: resolution: {integrity: sha512-qv8s+G47V6Hq+g2kRE5th+ASzzrL7b6l+tap1DHKK25ZQJv3yIFhH96XaQ7NGL+zRW3t/RDbweJf/dJDe5Z5KA==} @@ -6834,6 +7044,10 @@ packages: resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==} dev: true + /d3-color@1.4.1: + resolution: {integrity: sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==} + dev: false + /d3-color@3.1.0: resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} engines: {node: '>=12'} @@ -6855,6 +7069,12 @@ packages: d3-timer: 2.0.0 dev: false + /d3-interpolate@1.4.0: + resolution: {integrity: sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==} + dependencies: + d3-color: 1.4.1 + dev: false + /d3-interpolate@3.0.1: resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} engines: {node: '>=12'} @@ -6923,8 +7143,8 @@ packages: mimer: 1.1.0 dev: true - /dayjs@1.11.9: - resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} + /dayjs@1.11.10: + resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} /debug@3.1.0: resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} @@ -6995,13 +7215,14 @@ packages: babel-plugin-macros: optional: true - /deep-equal@2.2.2: - resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==} + /deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - call-bind: 1.0.2 + call-bind: 1.0.5 es-get-iterator: 1.1.3 - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 is-arguments: 1.1.1 is-array-buffer: 3.0.2 is-date-object: 1.0.5 @@ -7010,12 +7231,12 @@ packages: isarray: 2.0.5 object-is: 1.1.5 object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 side-channel: 1.0.4 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 dev: false /deep-extend@0.6.0: @@ -7054,6 +7275,14 @@ packages: execa: 7.2.0 titleize: 3.0.0 + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} @@ -7062,11 +7291,12 @@ packages: resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} engines: {node: '>=12'} - /define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} dependencies: - has-property-descriptors: 1.0.0 + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 object-keys: 1.1.1 /delayed-stream@1.0.0: @@ -7077,6 +7307,14 @@ packages: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} + /derive-valtio@0.1.0(valtio@1.13.0): + resolution: {integrity: sha512-OCg2UsLbXK7GmmpzMXhYkdO64vhJ1ROUUGaTFyHjVwEdMEcTTRj7W1TxLbSBxdY8QLBPCcp66MTyaSy0RpO17A==} + peerDependencies: + valtio: '*' + dependencies: + valtio: 1.13.0(@types/react@18.2.47)(react@18.2.0) + dev: false + /des.js@1.1.0: resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} dependencies: @@ -7105,8 +7343,8 @@ packages: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} - /detect-newline@4.0.0: - resolution: {integrity: sha512-1aXUEPdfGdzVPFpzGJJNgq9o81bGg1s09uxTWsqBlo9PI332uyJRQq13+LK/UN4JfxJbFdCXonUFQ9R/p7yCtw==} + /detect-newline@4.0.1: + resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} /detect-node@2.1.0: @@ -7156,6 +7394,7 @@ packages: /dom-align@1.12.4: resolution: {integrity: sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==} + dev: false /dom-converter@0.2.0: resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} @@ -7198,6 +7437,7 @@ packages: /domexception@4.0.0: resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead dependencies: webidl-conversions: 7.0.0 dev: false @@ -7288,35 +7528,36 @@ packages: engines: {node: '>=12'} dev: true - /dumi-afx-deps@1.0.0-alpha.19: - resolution: {integrity: sha512-kc+8c5r5uEmYH1xQJj30qTYtzYPHbtT7baXZdL2DU1basdNHT3eCMGKu8cpKRzLlRXyAADWqKgt6If48cf88uw==} + /dumi-afx-deps@1.0.0-alpha.20: + resolution: {integrity: sha512-PRSJlHuJkyHDET7Hukykx/hLULkgUBX5q2CutMG5EDI3eJLzJlX634wNll10m3at1uomcDAVudL7Dgh5UOJ7IQ==} dev: true /dumi-assets-types@2.0.0-alpha.0: resolution: {integrity: sha512-a/Y5lf0G6gwsEQ9hop/n03CcjmHsGBk384Cz/AEX6mRYrfSpUx/lQvP9HLoXkCzScl9PL1sSmLPnMkgaXDCZLA==} dev: true - /dumi@2.2.6(@babel/core@7.22.10)(@types/node@20.4.7)(eslint@8.47.0)(jest@29.6.3)(postcss@8.4.28)(prettier@2.8.8)(react-dom@18.1.0)(react@18.1.0)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.88.2): - resolution: {integrity: sha512-1hzmn2KI4fwBT+WL8vNfUdH86qXzPZc4S87N41UUv+pngVkWeWFLzDaoAj69gjF7XsAw2V/dFV3qMipacXOMHw==} + /dumi@2.2.16(@babel/core@7.23.7)(@types/node@20.5.1)(eslint@8.56.0)(jest@29.7.0)(prettier@2.8.8)(react-dom@18.2.0)(react@18.2.0)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.89.0): + resolution: {integrity: sha512-r2x/CY0fR8/YZOwEnG4JsLEpn8jOg94Qyd1u+7pRD9SCx7dF9It+GwkGbdNEsyenGsO/ZU9wD+Kz7KO+HU7/EA==} hasBin: true peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: - '@ant-design/icons-svg': 4.3.0 - '@makotot/ghostui': 2.0.0(react@18.1.0) + '@ant-design/icons-svg': 4.3.1 + '@makotot/ghostui': 2.0.0(react@18.2.0) '@stackblitz/sdk': 1.9.0 '@swc/core': 1.3.72 - '@types/hast': 2.3.5 - '@types/mdast': 3.0.12 - '@umijs/bundler-utils': 4.0.76 - '@umijs/core': 4.0.76 + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 + '@umijs/bundler-utils': 4.1.0 + '@umijs/core': 4.1.0 + '@umijs/utils': 4.1.0 animated-scroll-to: 2.3.0 classnames: 2.3.2 codesandbox: 2.2.3 copy-to-clipboard: 3.3.3 deepmerge: 4.3.1 - dumi-afx-deps: 1.0.0-alpha.19 + dumi-afx-deps: 1.0.0-alpha.20 dumi-assets-types: 2.0.0-alpha.0 enhanced-resolve: 5.15.0 estree-util-to-js: 1.2.0 @@ -7337,18 +7578,18 @@ packages: mdast-util-to-string: 3.2.0 nprogress: 0.2.0 pluralize: 8.0.0 - prism-react-renderer: 1.3.5(react@18.1.0) + prism-react-renderer: 1.3.5(react@18.2.0) prism-themes: 1.9.0 prismjs: 1.29.0 - raw-loader: 4.0.2(webpack@5.88.2) - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-tabs: 12.10.0(react-dom@18.1.0)(react@18.1.0) - rc-tree: 5.7.9(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-copy-to-clipboard: 5.1.0(react@18.1.0) - react-dom: 18.1.0(react@18.1.0) - react-error-boundary: 4.0.11(react@18.1.0) - react-intl: 6.4.4(react@18.1.0)(typescript@4.9.5) + raw-loader: 4.0.2(webpack@5.89.0) + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-tabs: 12.15.0(react-dom@18.2.0)(react@18.2.0) + rc-tree: 5.8.2(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-copy-to-clipboard: 5.1.0(react@18.2.0) + react-dom: 18.2.0(react@18.2.0) + react-error-boundary: 4.0.12(react@18.2.0) + react-intl: 6.5.5(react@18.2.0)(typescript@4.9.5) rehype-autolink-headings: 6.1.1 rehype-remove-comments: 5.0.0 rehype-stringify: 9.0.4 @@ -7357,13 +7598,13 @@ packages: remark-gfm: 3.0.1 remark-parse: 10.0.2 remark-rehype: 10.1.0 - sass: 1.66.1 + sass: 1.69.7 sitemap: 7.1.1 - umi: 4.0.76(@babel/core@7.22.10)(@types/node@20.4.7)(eslint@8.47.0)(jest@29.6.3)(postcss@8.4.28)(prettier@2.8.8)(react-dom@18.1.0)(react@18.1.0)(sass@1.66.1)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.88.2) + umi: 4.1.0(@babel/core@7.23.7)(@types/node@20.5.1)(eslint@8.56.0)(jest@29.7.0)(prettier@2.8.8)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.7)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.89.0) unified: 10.1.2 unist-util-visit: 4.1.2 unist-util-visit-parents: 5.1.3 - url: 0.11.1 + url: 0.11.3 v8-compile-cache: 2.3.0 vfile: 5.3.7 transitivePeerDependencies: @@ -7376,7 +7617,6 @@ packages: - '@volar/vue-typescript' - eslint - jest - - postcss - postcss-html - postcss-jsx - postcss-less @@ -7385,7 +7625,6 @@ packages: - prettier - rollup - sockjs-client - - styled-components - stylelint - stylus - sugarss @@ -7413,7 +7652,7 @@ packages: end-of-stream: 1.4.4 inherits: 2.0.4 readable-stream: 2.3.8 - stream-shift: 1.0.1 + stream-shift: 1.0.2 dev: true /duplexify@4.1.2: @@ -7422,11 +7661,10 @@ packages: end-of-stream: 1.4.4 inherits: 2.0.4 readable-stream: 3.6.2 - stream-shift: 1.0.1 + stream-shift: 1.0.2 /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - dev: true /editions@2.3.1: resolution: {integrity: sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==} @@ -7436,8 +7674,8 @@ packages: semver: 6.3.1 dev: true - /electron-to-chromium@1.4.499: - resolution: {integrity: sha512-0NmjlYBLKVHva4GABWAaHuPJolnDuL0AhV3h1hES6rcLCWEIbRL6/8TghfsVwkx6TEroQVdliX7+aLysUpKvjw==} + /electron-to-chromium@1.4.629: + resolution: {integrity: sha512-5UUkr3k3CZ/k+9Sw7vaaIMyOzMC0XbPyprKI3n0tbKDqkzTDOjK4izm7DxlkueRMim6ZZQ1ja9F7hoFVplHihA==} /elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} @@ -7459,7 +7697,6 @@ packages: /emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - dev: true /emojis-list@3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} @@ -7496,6 +7733,14 @@ packages: ansi-colors: 4.1.3 dev: true + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + dev: true + /entities@1.1.2: resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} dev: true @@ -7534,26 +7779,26 @@ packages: dependencies: stackframe: 1.3.4 - /es-abstract@1.22.1: - resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.1 + arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 + hasown: 2.0.0 + internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 is-negative-zero: 2.0.2 @@ -7562,21 +7807,21 @@ packages: is-string: 1.0.7 is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.12.3 + object-inspect: 1.13.1 object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 - safe-array-concat: 1.0.0 - safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 + safe-regex-test: 1.0.2 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 typed-array-buffer: 1.0.0 typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 /es-array-method-boxes-properly@1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} @@ -7585,8 +7830,8 @@ packages: /es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 @@ -7595,39 +7840,39 @@ packages: isarray: 2.0.5 stop-iteration-iterator: 1.0.0 - /es-iterator-helpers@1.0.13: - resolution: {integrity: sha512-LK3VGwzvaPWobO8xzXXGRUOGw8Dcjyfk62CsY/wfHN75CwsJPbuypOYJxK6g5RyEL8YDjIWcl6jgd8foO6mmrA==} + /es-iterator-helpers@1.0.15: + resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} dependencies: asynciterator.prototype: 1.0.0 - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-set-tostringtag: 2.0.1 - function-bind: 1.1.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 globalthis: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 - iterator.prototype: 1.1.0 - safe-array-concat: 1.0.0 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.0.1 - /es-module-lexer@1.3.1: - resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} + /es-module-lexer@1.4.1: + resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} - /es-set-tostringtag@2.0.1: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 + hasown: 2.0.0 - /es-shim-unscopables@1.0.0: - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} dependencies: - has: 1.0.3 + hasown: 2.0.0 /es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} @@ -7647,8 +7892,8 @@ packages: next-tick: 1.1.0 dev: true - /es5-imcompatible-versions@0.1.86: - resolution: {integrity: sha512-Lbrsn5bCL4iVMBdundiFVNIKlnnoBiIMrjtLRe1Snt92s60WHotw83S2ijp5ioqe6pDil3iBPY634VDwBcb1rg==} + /es5-imcompatible-versions@0.1.88: + resolution: {integrity: sha512-GDJTmDGd65qyDk9fGClO+MOUgHuBuGMCL6EawvLH8Ob+HN8ui1OJwa4fEK0qh3fg2ieT2/pdZj41yrxnmOrK8w==} /es6-iterator@2.0.3: resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} @@ -7725,6 +7970,35 @@ packages: '@esbuild/win32-ia32': 0.17.19 '@esbuild/win32-x64': 0.17.19 + /esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 + /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -7775,13 +8049,13 @@ packages: eslint: 7.32.0 dev: true - /eslint-config-prettier@8.10.0(eslint@8.47.0): + /eslint-config-prettier@8.10.0(eslint@8.56.0): resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.47.0 + eslint: 8.56.0 dev: false /eslint-formatter-pretty@4.1.0: @@ -7802,13 +8076,13 @@ packages: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} dependencies: debug: 3.2.7 - is-core-module: 2.13.0 - resolve: 1.22.4 + is-core-module: 2.13.1 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: false - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.47.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -7829,9 +8103,9 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.47.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@4.9.5) debug: 3.2.7 - eslint: 8.47.0 + eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color @@ -7847,8 +8121,8 @@ packages: eslint-rule-composer: 0.3.0 dev: true - /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.47.0): - resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.56.0): + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -7857,25 +8131,25 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.47.0)(typescript@4.9.5) - array-includes: 3.1.6 - array.prototype.findlastindex: 1.2.2 - array.prototype.flat: 1.3.1 - array.prototype.flatmap: 1.3.1 + '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@4.9.5) + array-includes: 3.1.7 + array.prototype.findlastindex: 1.2.3 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.47.0 + eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.47.0) - has: 1.0.3 - is-core-module: 2.13.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) + hasown: 2.0.0 + is-core-module: 2.13.1 is-glob: 4.0.3 minimatch: 3.1.2 - object.fromentries: 2.0.6 - object.groupby: 1.0.0 - object.values: 1.1.6 + object.fromentries: 2.0.7 + object.groupby: 1.0.1 + object.values: 1.1.7 semver: 6.3.1 - tsconfig-paths: 3.14.2 + tsconfig-paths: 3.15.0 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -7900,11 +8174,11 @@ packages: - typescript dev: true - /eslint-plugin-jest@27.2.1(@typescript-eslint/eslint-plugin@5.48.1)(eslint@8.47.0)(jest@29.6.3)(typescript@4.9.5): - resolution: {integrity: sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==} + /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0)(jest@29.7.0)(typescript@4.9.5): + resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - '@typescript-eslint/eslint-plugin': ^5.0.0 + '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 eslint: ^7.0.0 || ^8.0.0 jest: '*' peerDependenciesMeta: @@ -7913,10 +8187,10 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.48.1(@typescript-eslint/parser@5.48.1)(eslint@8.47.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.47.0)(typescript@4.9.5) - eslint: 8.47.0 - jest: 29.6.3(@types/node@20.4.7)(ts-node@10.9.1) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@4.9.5) + eslint: 8.56.0 + jest: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2) transitivePeerDependencies: - supports-color - typescript @@ -7939,36 +8213,13 @@ packages: eslint: 7.32.0 dev: true - /eslint-plugin-react-hooks@4.6.0(eslint@8.47.0): + /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.47.0 - - /eslint-plugin-react@7.32.2(eslint@8.47.0): - resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 - doctrine: 2.1.0 - eslint: 8.47.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.3.5 - minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 - prop-types: 15.8.1 - resolve: 2.0.0-next.4 - semver: 6.3.1 - string.prototype.matchall: 4.0.8 + eslint: 8.56.0 /eslint-plugin-react@7.33.2(eslint@7.32.0): resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} @@ -7976,49 +8227,48 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 - es-iterator-helpers: 1.0.13 + es-iterator-helpers: 1.0.15 eslint: 7.32.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 prop-types: 15.8.1 - resolve: 2.0.0-next.4 + resolve: 2.0.0-next.5 semver: 6.3.1 - string.prototype.matchall: 4.0.8 + string.prototype.matchall: 4.0.10 dev: true - /eslint-plugin-react@7.33.2(eslint@8.47.0): + /eslint-plugin-react@7.33.2(eslint@8.56.0): resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 - es-iterator-helpers: 1.0.13 - eslint: 8.47.0 + es-iterator-helpers: 1.0.15 + eslint: 8.56.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 prop-types: 15.8.1 - resolve: 2.0.0-next.4 + resolve: 2.0.0-next.5 semver: 6.3.1 - string.prototype.matchall: 4.0.8 - dev: false + string.prototype.matchall: 4.0.10 /eslint-plugin-unicorn@20.1.0(eslint@7.32.0): resolution: {integrity: sha512-XQxLBJT/gnwyRR6cfYsIK1AdekQchAt5tmcsnldevGjgR2xoZsRUa5/i6e0seNHy2RoT57CkTnbVHwHF8No8LA==} @@ -8072,8 +8322,8 @@ packages: peerDependencies: eslint: '>=7.0.0' dependencies: - '@babel/core': 7.22.10 - '@babel/eslint-parser': 7.19.1(@babel/core@7.22.10)(eslint@7.32.0) + '@babel/core': 7.23.7 + '@babel/eslint-parser': 7.23.3(@babel/core@7.23.7)(eslint@7.32.0) eslint: 7.32.0 eslint-visitor-keys: 2.1.0 esquery: 1.5.0 @@ -8099,15 +8349,6 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /eslint-utils@3.0.0(eslint@8.47.0): - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - dependencies: - eslint: 8.47.0 - eslint-visitor-keys: 2.1.0 - /eslint-visitor-keys@1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} @@ -8134,7 +8375,7 @@ packages: cross-spawn: 7.0.3 debug: 4.3.4 doctrine: 3.0.0 - enquirer: 2.3.6 + enquirer: 2.4.1 escape-string-regexp: 4.0.0 eslint-scope: 5.1.1 eslint-utils: 2.1.0 @@ -8146,7 +8387,7 @@ packages: file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 glob-parent: 5.1.2 - globals: 13.21.0 + globals: 13.24.0 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -8165,23 +8406,24 @@ packages: strip-json-comments: 3.1.1 table: 6.8.1 text-table: 0.2.0 - v8-compile-cache: 2.3.0 + v8-compile-cache: 2.4.0 transitivePeerDependencies: - supports-color dev: true - /eslint@8.47.0: - resolution: {integrity: sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==} + /eslint@8.56.0: + resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) - '@eslint-community/regexpp': 4.7.0 - '@eslint/eslintrc': 2.1.2 - '@eslint/js': 8.47.0 - '@humanwhocodes/config-array': 0.11.10 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.56.0 + '@humanwhocodes/config-array': 0.11.14 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -8197,9 +8439,9 @@ packages: file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.21.0 + globals: 13.24.0 graphemer: 1.4.0 - ignore: 5.2.4 + ignore: 5.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 @@ -8228,8 +8470,8 @@ packages: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.10.0 - acorn-jsx: 5.3.2(acorn@8.10.0) + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) eslint-visitor-keys: 3.4.3 /esprima@4.0.1: @@ -8260,7 +8502,7 @@ packages: /estree-util-attach-comments@2.1.1: resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} dependencies: - '@types/estree': 1.0.1 + '@types/estree': 1.0.5 dev: true /estree-util-is-identifier-name@2.1.0: @@ -8270,7 +8512,7 @@ packages: /estree-util-to-js@1.2.0: resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} dependencies: - '@types/estree-jsx': 1.0.0 + '@types/estree-jsx': 1.0.3 astring: 1.8.6 source-map: 0.7.4 dev: true @@ -8278,8 +8520,8 @@ packages: /estree-util-visit@1.2.1: resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} dependencies: - '@types/estree-jsx': 1.0.0 - '@types/unist': 2.0.7 + '@types/estree-jsx': 1.0.3 + '@types/unist': 2.0.10 dev: true /esutils@2.0.3: @@ -8366,7 +8608,7 @@ packages: human-signals: 4.3.1 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.1.0 + npm-run-path: 5.2.0 onetime: 6.0.0 signal-exit: 3.0.7 strip-final-newline: 3.0.0 @@ -8389,15 +8631,15 @@ packages: os-homedir: 1.0.2 dev: true - /expect@29.6.3: - resolution: {integrity: sha512-x1vY4LlEMWUYVZQrFi4ZANXFwqYbJ/JNQspLVvzhW2BNY28aNcXMQH6imBbt+RBf5sVRTodYHXtSP/TLEU0Dxw==} + /expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/expect-utils': 29.6.3 + '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 - jest-matcher-utils: 29.6.3 - jest-message-util: 29.6.3 - jest-util: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 /ext@1.7.0: resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} @@ -8449,8 +8691,8 @@ packages: micromatch: 4.0.5 dev: true - /fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 @@ -8477,8 +8719,8 @@ packages: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} - /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + /fastq@1.16.0: + resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} dependencies: reusify: 1.0.4 @@ -8508,7 +8750,7 @@ packages: engines: {node: ^12.20 || >= 14.13} dependencies: node-domexception: 1.0.0 - web-streams-polyfill: 3.2.1 + web-streams-polyfill: 3.3.2 /figures@2.0.0: resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} @@ -8528,7 +8770,13 @@ packages: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flat-cache: 3.0.4 + flat-cache: 3.2.0 + + /file-entry-cache@7.0.2: + resolution: {integrity: sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==} + engines: {node: '>=12.0.0'} + dependencies: + flat-cache: 3.2.0 /file-name@0.1.0: resolution: {integrity: sha512-Q8SskhjF4eUk/xoQkmubwLkoHwOTv6Jj/WGtOVLKkZ0vvM+LipkSXugkn1F/+mjWXU32AXLZB3qaz0arUzgtRw==} @@ -8588,11 +8836,12 @@ packages: locate-path: 6.0.0 path-exists: 4.0.0 - /flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flatted: 3.2.7 + flatted: 3.2.9 + keyv: 4.5.4 rimraf: 3.0.2 /flat@5.0.2: @@ -8600,8 +8849,13 @@ packages: hasBin: true dev: true - /flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + + /flru@1.0.2: + resolution: {integrity: sha512-kWyh8ADvHBFz6ua5xYOPnUroZTT/bwWfrCeL0Wj1dzG4/YOmOcfJ99W8dOVyyynJN35rZ9aCOtHChqQovV7yog==} + engines: {node: '>=6'} + dev: false /flush-write-stream@1.1.1: resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} @@ -8610,8 +8864,8 @@ packages: readable-stream: 2.3.8 dev: true - /follow-redirects@1.15.2: - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} + /follow-redirects@1.15.4: + resolution: {integrity: sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -8634,14 +8888,21 @@ packages: dependencies: is-callable: 1.2.7 - /fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.88.2): + /foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + + /fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.89.0): resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: typescript: '>3.6.0' webpack: ^5.11.0 dependencies: - '@babel/code-frame': 7.22.10 + '@babel/code-frame': 7.23.5 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.1.0 @@ -8654,7 +8915,7 @@ packages: semver: 7.5.4 tapable: 2.2.1 typescript: 4.9.5 - webpack: 5.88.2(esbuild@0.17.19) + webpack: 5.89.0(esbuild@0.17.19) /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} @@ -8674,8 +8935,8 @@ packages: dependencies: fetch-blob: 3.2.0 - /fraction.js@4.2.1: - resolution: {integrity: sha512-/KxoyCnPM0GwYI4NN0Iag38Tqt+od3/mLuguepLgCAKPn0ZhC544nssAW0tG2/00zXEYl9W+7hwAIpLHo6Oc7Q==} + /fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} /from2@2.3.0: resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==} @@ -8699,7 +8960,7 @@ packages: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 - universalify: 2.0.0 + universalify: 2.0.1 /fs-extra@11.1.1: resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} @@ -8707,7 +8968,16 @@ packages: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 - universalify: 2.0.0 + universalify: 2.0.1 + dev: true + + /fs-extra@11.2.0: + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 dev: true /fs-extra@3.0.1: @@ -8718,11 +8988,8 @@ packages: universalify: 0.1.2 dev: true - /fs-monkey@1.0.4: - resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==} - - /fs-readdir-recursive@1.1.0: - resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} + /fs-monkey@1.0.5: + resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} /fs-write-stream-atomic@1.0.10: resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==} @@ -8743,16 +9010,16 @@ packages: requiresBuild: true optional: true - /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - /function.prototype.name@1.1.5: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 functions-have-names: 1.2.3 /functional-red-black-tree@1.0.1: @@ -8774,13 +9041,13 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - /get-intrinsic@1.2.1: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} dependencies: - function-bind: 1.1.1 - has: 1.0.3 + function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 + hasown: 2.0.0 /get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} @@ -8811,11 +9078,11 @@ packages: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 - /get-tsconfig@4.7.0: - resolution: {integrity: sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==} + /get-tsconfig@4.7.2: + resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} dependencies: resolve-pkg-maps: 1.0.0 @@ -8901,27 +9168,28 @@ packages: /glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + /glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.3.6 + minimatch: 9.0.3 + minipass: 7.0.4 + path-scurry: 1.10.1 + /glob@7.1.4: resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.0.5 once: 1.4.0 path-is-absolute: 1.0.1 dev: true - /glob@7.1.6: - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -8975,8 +9243,8 @@ packages: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /globals@13.21.0: - resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==} + /globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -8985,7 +9253,7 @@ packages: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} dependencies: - define-properties: 1.2.0 + define-properties: 1.2.1 /globby@10.0.0: resolution: {integrity: sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==} @@ -8994,9 +9262,9 @@ packages: '@types/glob': 7.2.0 array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.1 + fast-glob: 3.3.2 glob: 7.2.3 - ignore: 5.2.4 + ignore: 5.3.0 merge2: 1.4.1 slash: 3.0.0 dev: true @@ -9007,8 +9275,8 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.1 - ignore: 5.2.4 + fast-glob: 3.3.2 + ignore: 5.3.0 merge2: 1.4.1 slash: 3.0.0 @@ -9017,8 +9285,8 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: dir-glob: 3.0.1 - fast-glob: 3.3.1 - ignore: 5.2.4 + fast-glob: 3.3.2 + ignore: 5.3.0 merge2: 1.4.1 slash: 4.0.0 @@ -9036,14 +9304,14 @@ packages: /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 /got@6.7.1: resolution: {integrity: sha512-Y/K3EDuiQN9rTZhBvPRWMLXIKdeD1Rj0nzunfoi0Yyn5WBEbzxXKU9Ub2X41oZBagVWOBU3MuDonFMgPWQFnwg==} engines: {node: '>=4'} dependencies: '@types/keyv': 3.1.4 - '@types/responselike': 1.0.0 + '@types/responselike': 1.0.3 create-error-class: 3.0.2 duplexer3: 0.1.5 get-stream: 3.0.0 @@ -9090,10 +9358,10 @@ packages: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} - /has-property-descriptors@1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} @@ -9123,12 +9391,6 @@ packages: engines: {node: '>=0.10.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'} @@ -9143,13 +9405,19 @@ packages: inherits: 2.0.4 minimalistic-assert: 1.0.1 + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 + /hast-util-from-parse5@7.1.2: resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} dependencies: - '@types/hast': 2.3.5 - '@types/unist': 2.0.7 + '@types/hast': 2.3.9 + '@types/unist': 2.0.10 hastscript: 7.2.0 - property-information: 6.2.0 + property-information: 6.4.0 vfile: 5.3.7 vfile-location: 4.1.0 web-namespaces: 2.0.1 @@ -9162,20 +9430,20 @@ packages: /hast-util-heading-rank@2.1.1: resolution: {integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 dev: true /hast-util-is-conditional-comment@2.0.0: resolution: {integrity: sha512-U66gW8ZWQdxP4ZjTEZ3xZT72y6rIKJqV4At5QmC1ItBbQyZyVkuTp8QkQwhxsbkHdzpifiZdQWrDipc9ByqhRg==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 dev: true /hast-util-is-element@2.1.3: resolution: {integrity: sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==} dependencies: - '@types/hast': 2.3.5 - '@types/unist': 2.0.7 + '@types/hast': 2.3.9 + '@types/unist': 2.0.10 dev: true /hast-util-parse-selector@2.2.5: @@ -9185,13 +9453,13 @@ packages: /hast-util-parse-selector@3.1.1: resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 dev: true /hast-util-raw@7.2.3: resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 '@types/parse5': 6.0.3 hast-util-from-parse5: 7.1.2 hast-util-to-parse5: 7.1.0 @@ -9207,7 +9475,7 @@ packages: /hast-util-raw@8.0.0: resolution: {integrity: sha512-bKbaUxMNLjZMMowgcrc4l3aQSPiMLiceZD+mp+AKF8Si0mtyR2DYVdxzS2XBxXYDeW/VvfZy40lNxHRiY6MMTg==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 extend: 3.0.2 hast-util-from-parse5: 7.1.2 hast-util-to-parse5: 7.1.0 @@ -9224,19 +9492,19 @@ packages: /hast-util-to-estree@2.3.3: resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} dependencies: - '@types/estree': 1.0.1 - '@types/estree-jsx': 1.0.0 - '@types/hast': 2.3.5 - '@types/unist': 2.0.7 + '@types/estree': 1.0.5 + '@types/estree-jsx': 1.0.3 + '@types/hast': 2.3.9 + '@types/unist': 2.0.10 comma-separated-tokens: 2.0.3 estree-util-attach-comments: 2.1.1 estree-util-is-identifier-name: 2.1.0 hast-util-whitespace: 2.0.1 mdast-util-mdx-expression: 1.3.2 mdast-util-mdxjs-esm: 1.3.1 - property-information: 6.2.0 + property-information: 6.4.0 space-separated-tokens: 2.0.2 - style-to-object: 0.4.2 + style-to-object: 0.4.4 unist-util-position: 4.0.4 zwitch: 2.0.4 transitivePeerDependencies: @@ -9246,14 +9514,14 @@ packages: /hast-util-to-html@8.0.4: resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} dependencies: - '@types/hast': 2.3.5 - '@types/unist': 2.0.7 + '@types/hast': 2.3.9 + '@types/unist': 2.0.10 ccount: 2.0.1 comma-separated-tokens: 2.0.3 hast-util-raw: 7.2.3 hast-util-whitespace: 2.0.1 html-void-elements: 2.0.1 - property-information: 6.2.0 + property-information: 6.4.0 space-separated-tokens: 2.0.2 stringify-entities: 4.0.3 zwitch: 2.0.4 @@ -9262,9 +9530,9 @@ packages: /hast-util-to-parse5@7.1.0: resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 comma-separated-tokens: 2.0.3 - property-information: 6.2.0 + property-information: 6.4.0 space-separated-tokens: 2.0.2 web-namespaces: 2.0.1 zwitch: 2.0.4 @@ -9273,7 +9541,7 @@ packages: /hast-util-to-string@2.0.0: resolution: {integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 dev: true /hast-util-whitespace@2.0.1: @@ -9283,7 +9551,7 @@ packages: /hastscript@6.0.0: resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 comma-separated-tokens: 1.0.8 hast-util-parse-selector: 2.2.5 property-information: 5.6.0 @@ -9293,10 +9561,10 @@ packages: /hastscript@7.2.0: resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 3.1.1 - property-information: 6.2.0 + property-information: 6.4.0 space-separated-tokens: 2.0.2 dev: true @@ -9321,7 +9589,7 @@ packages: /history@5.3.0: resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.6 /hmac-drbg@1.0.1: resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} @@ -9388,12 +9656,12 @@ packages: hasBin: true dependencies: camel-case: 4.1.2 - clean-css: 5.3.2 + clean-css: 5.3.3 commander: 8.3.0 he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.19.2 + terser: 5.26.0 /html-tags@3.3.1: resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} @@ -9414,7 +9682,7 @@ packages: resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} dev: true - /html-webpack-plugin@5.5.0(webpack@5.88.2): + /html-webpack-plugin@5.5.0(webpack@5.89.0): resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: @@ -9425,7 +9693,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.88.2(esbuild@0.17.19) + webpack: 5.89.0(esbuild@0.17.19) /html2sketch@1.0.2: resolution: {integrity: sha512-/P9NcVH9yBhrOkcnaFkAbWJifDO8Ii+CTIxy9gE6trSQvo2OH++TKQIP5MICEoWvgXpVhZ6botj7P63Krl1/gg==} @@ -9566,13 +9834,13 @@ packages: dependencies: safer-buffer: 2.1.2 - /icss-utils@5.1.0(postcss@8.4.28): + /icss-utils@5.1.0(postcss@8.4.33): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 /identity-obj-proxy@3.0.0: resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} @@ -9592,8 +9860,8 @@ packages: engines: {node: '>= 4'} dev: true - /ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + /ignore@5.3.0: + resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} engines: {node: '>= 4'} /image-size@0.5.5: @@ -9611,8 +9879,8 @@ packages: queue: 6.0.1 dev: true - /immutable@4.3.2: - resolution: {integrity: sha512-oGXzbEDem9OOpDWZu88jGiYCvIsLHMvGw+8OXlpsvTFvIQplQbjg1B1cvKg8f7Hoch6+NGjpPsH1Fr+Mc2D1aA==} + /immutable@4.3.4: + resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==} /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} @@ -9661,9 +9929,6 @@ packages: once: 1.4.0 wrappy: 1.0.2 - /inherits@2.0.1: - resolution: {integrity: sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==} - /inherits@2.0.3: resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} @@ -9696,24 +9961,24 @@ packages: through: 2.3.8 dev: true - /internal-slot@1.0.5: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} + /internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 + hasown: 2.0.0 side-channel: 1.0.4 /intersection-observer@0.12.2: resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==} dev: false - /intl-messageformat@10.5.0: - resolution: {integrity: sha512-AvojYuOaRb6r2veOKfTVpxH9TrmjSdc5iR9R5RgBwrDZYSmAAFVT+QLbW3C4V7Qsg0OguMp67Q/EoUkxZzXRGw==} + /intl-messageformat@10.5.8: + resolution: {integrity: sha512-NRf0jpBWV0vd671G5b06wNofAN8tp7WWDogMZyaU8GUAsmbouyvgwmFJI7zLjfAMpm3zK+vSwRP3jzaoIcMbaA==} dependencies: - '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/ecma402-abstract': 1.18.0 '@formatjs/fast-memoize': 2.2.0 - '@formatjs/icu-messageformat-parser': 2.6.0 + '@formatjs/icu-messageformat-parser': 2.7.3 tslib: 2.6.2 dev: true @@ -9764,14 +10029,14 @@ packages: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-array-buffer@3.0.2: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-typed-array: 1.1.12 /is-arrayish@0.2.1: @@ -9808,7 +10073,7 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-buffer@1.1.6: @@ -9835,13 +10100,13 @@ packages: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true dependencies: - ci-info: 3.8.0 + ci-info: 3.9.0 dev: true - /is-core-module@2.13.0: - resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: - has: 1.0.3 + hasown: 2.0.0 /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} @@ -9866,15 +10131,16 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true - /is-equal@1.6.4: - resolution: {integrity: sha512-NiPOTBb5ahmIOYkJ7mVTvvB1bydnTzixvfO+59AjJKBpyjPBIULL3EHGxySyZijlVpewveJyhiLQThcivkkAtw==} + /is-equal@1.7.0: + resolution: {integrity: sha512-hErktGR9jmoYXNWlbrwGjc8eHh09mbY6TWSTTFtnMcKaCuSMN8z+Ni5ma/8mkbVpe4CbB7V6kN1MkCg9bCx5bA==} engines: {node: '>= 0.4'} dependencies: es-get-iterator: 1.1.3 + es-to-primitive: 1.2.1 functions-have-names: 1.2.3 - has: 1.0.3 has-bigints: 1.0.2 has-symbols: 1.0.3 + hasown: 2.0.0 is-arrow-function: 2.0.3 is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -9886,9 +10152,9 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 isarray: 2.0.5 - object-inspect: 1.12.3 - object.entries: 1.1.6 - object.getprototypeof: 1.0.4 + object-inspect: 1.13.1 + object.entries: 1.1.7 + object.getprototypeof: 1.0.5 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 @@ -9904,7 +10170,7 @@ packages: /is-finalizationregistry@1.0.2: resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 /is-fullwidth-code-point@2.0.0: resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} @@ -10042,7 +10308,7 @@ packages: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-regexp@2.1.0: @@ -10061,7 +10327,7 @@ packages: /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 /is-stream@1.1.0: resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} @@ -10098,7 +10364,7 @@ packages: resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} engines: {node: '>= 0.4'} dependencies: - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} @@ -10115,13 +10381,13 @@ packages: /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 /is-weakset@2.0.2: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 /is-what@3.14.1: resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} @@ -10170,7 +10436,7 @@ packages: resolution: {integrity: sha512-9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA==} dependencies: node-fetch: 1.7.3 - whatwg-fetch: 3.6.17 + whatwg-fetch: 3.6.20 dev: false /isomorphic-unfetch@4.0.2: @@ -10179,30 +10445,30 @@ packages: node-fetch: 3.3.2 unfetch: 5.0.0 - /istanbul-lib-coverage@3.2.0: - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} + /istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} engines: {node: '>=8'} /istanbul-lib-instrument@5.2.1: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.22.10 - '@babel/parser': 7.22.10 + '@babel/core': 7.23.7 + '@babel/parser': 7.23.6 '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.0 + istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: - supports-color - /istanbul-lib-instrument@6.0.0: - resolution: {integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==} + /istanbul-lib-instrument@6.0.1: + resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.10 - '@babel/parser': 7.22.10 + '@babel/core': 7.23.7 + '@babel/parser': 7.23.6 '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.0 + istanbul-lib-coverage: 3.2.2 semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -10211,7 +10477,7 @@ packages: resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} engines: {node: '>=10'} dependencies: - istanbul-lib-coverage: 3.2.0 + istanbul-lib-coverage: 3.2.2 make-dir: 4.0.0 supports-color: 7.2.0 @@ -10220,7 +10486,7 @@ packages: engines: {node: '>=10'} dependencies: debug: 4.3.4 - istanbul-lib-coverage: 3.2.0 + istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: - supports-color @@ -10241,53 +10507,61 @@ packages: textextensions: 2.6.0 dev: true - /iterator.prototype@1.1.0: - resolution: {integrity: sha512-rjuhAk1AJ1fssphHD0IFV6TWL40CwRZ53FrztKx43yk2v6rguBYsY4Bj1VU4HmoMmKwZUlx7mfnhDf9cOp4YTw==} + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} dependencies: - define-properties: 1.2.0 - get-intrinsic: 1.2.1 + define-properties: 1.2.1 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 - has-tostringtag: 1.0.0 - reflect.getprototypeof: 1.0.3 + reflect.getprototypeof: 1.0.4 + set-function-name: 2.0.1 - /jest-changed-files@29.6.3: - resolution: {integrity: sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==} + /jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + /jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: execa: 5.1.1 - jest-util: 29.6.3 + jest-util: 29.7.0 p-limit: 3.1.0 - /jest-circus@29.6.3: - resolution: {integrity: sha512-p0R5YqZEMnOpHqHLWRSjm2z/0p6RNsrNE/GRRT3eli8QGOAozj6Ys/3Tv+Ej+IfltJoSPwcQ6/hOCRkNlxLLCw==} + /jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.3 - '@jest/expect': 29.6.3 - '@jest/test-result': 29.6.3 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.5.3 + '@types/node': 20.11.0 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 is-generator-fn: 2.1.0 - jest-each: 29.6.3 - jest-matcher-utils: 29.6.3 - jest-message-util: 29.6.3 - jest-runtime: 29.6.3 - jest-snapshot: 29.6.3 - jest-util: 29.6.3 + jest-each: 29.7.0 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 p-limit: 3.1.0 - pretty-format: 29.6.3 - pure-rand: 6.0.2 + pretty-format: 29.7.0 + pure-rand: 6.0.4 slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: - babel-plugin-macros - supports-color - /jest-cli@29.6.3(@types/node@20.4.7)(ts-node@10.9.1): - resolution: {integrity: sha512-KuPdXUPXQIf0t6DvmG8MV4QyhcjR1a6ruKl3YL7aGn/AQ8JkROwFkWzEpDIpt11Qy188dHbRm8WjwMsV/4nmnQ==} + /jest-cli@29.7.0(@types/node@20.5.1)(ts-node@10.9.2): + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: @@ -10296,17 +10570,16 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.6.3(ts-node@10.9.1) - '@jest/test-result': 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2) + '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2) exit: 0.1.2 - graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 29.6.3(@types/node@20.4.7)(ts-node@10.9.1) - jest-util: 29.6.3 - jest-validate: 29.6.3 - prompts: 2.4.2 + jest-config: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2) + jest-util: 29.7.0 + jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' @@ -10314,8 +10587,8 @@ packages: - supports-color - ts-node - /jest-config@29.6.3(@types/node@20.4.7)(ts-node@10.9.1): - resolution: {integrity: sha512-nb9bOq2aEqogbyL4F9mLkAeQGAgNt7Uz6U59YtQDIxFPiL7Ejgq0YIrp78oyEHD6H4CIV/k7mFrK7eFDzUJ69w==} + /jest-config@29.7.0(@types/node@20.11.0)(ts-node@10.9.2): + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@types/node': '*' @@ -10326,36 +10599,36 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.10 - '@jest/test-sequencer': 29.6.3 + '@babel/core': 7.23.7 + '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.4.7 - babel-jest: 29.6.3(@babel/core@7.22.10) + '@types/node': 20.11.0 + babel-jest: 29.7.0(@babel/core@7.23.7) chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.6.3 - jest-environment-node: 29.6.3 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 - jest-resolve: 29.6.3 - jest-runner: 29.6.3 - jest-util: 29.6.3 - jest-validate: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.6.3 + pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@types/node@20.4.7)(typescript@4.9.5) + ts-node: 10.9.2(@types/node@20.5.1)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - /jest-config@29.6.3(@types/node@20.5.3)(ts-node@10.9.1): - resolution: {integrity: sha512-nb9bOq2aEqogbyL4F9mLkAeQGAgNt7Uz6U59YtQDIxFPiL7Ejgq0YIrp78oyEHD6H4CIV/k7mFrK7eFDzUJ69w==} + /jest-config@29.7.0(@types/node@20.5.1)(ts-node@10.9.2): + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@types/node': '*' @@ -10366,61 +10639,61 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.10 - '@jest/test-sequencer': 29.6.3 + '@babel/core': 7.23.7 + '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.5.3 - babel-jest: 29.6.3(@babel/core@7.22.10) + '@types/node': 20.5.1 + babel-jest: 29.7.0(@babel/core@7.23.7) chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.6.3 - jest-environment-node: 29.6.3 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 - jest-resolve: 29.6.3 - jest-runner: 29.6.3 - jest-util: 29.6.3 - jest-validate: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.6.3 + pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@types/node@20.4.7)(typescript@4.9.5) + ts-node: 10.9.2(@types/node@20.5.1)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - /jest-diff@29.6.3: - resolution: {integrity: sha512-3sw+AdWnwH9sSNohMRKA7JiYUJSRr/WS6+sEFfBuhxU5V5GlEVKfvUn8JuMHE0wqKowemR1C2aHy8VtXbaV8dQ==} + /jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 diff-sequences: 29.6.3 jest-get-type: 29.6.3 - pretty-format: 29.6.3 + pretty-format: 29.7.0 - /jest-docblock@29.6.3: - resolution: {integrity: sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==} + /jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 - /jest-each@29.6.3: - resolution: {integrity: sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==} + /jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 jest-get-type: 29.6.3 - jest-util: 29.6.3 - pretty-format: 29.6.3 + jest-util: 29.7.0 + pretty-format: 29.7.0 - /jest-environment-jsdom@29.6.3: - resolution: {integrity: sha512-nMJz/i27Moit9bv8Z323/13Melj4FEQH93yRu7GnilvBmPBMH4EGEkEfBTJXYuubyzhMO7w/VHzljIDV+Q/SeQ==} + /jest-environment-jsdom@29.7.0: + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: canvas: ^2.5.0 @@ -10428,13 +10701,13 @@ packages: canvas: optional: true dependencies: - '@jest/environment': 29.6.3 - '@jest/fake-timers': 29.6.3 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 20.5.3 - jest-mock: 29.6.3 - jest-util: 29.6.3 + '@types/node': 20.11.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 jsdom: 20.0.3 transitivePeerDependencies: - bufferutil @@ -10442,78 +10715,78 @@ packages: - utf-8-validate dev: false - /jest-environment-node@29.6.3: - resolution: {integrity: sha512-PKl7upfPJXMYbWpD+60o4HP86KvFO2c9dZ+Zr6wUzsG5xcPx/65o3ArNgHW5M0RFvLYdW4/aieR4JSooD0a2ew==} + /jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.3 - '@jest/fake-timers': 29.6.3 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.5.3 - jest-mock: 29.6.3 - jest-util: 29.6.3 + '@types/node': 20.11.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 /jest-get-type@29.6.3: resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /jest-haste-map@29.6.3: - resolution: {integrity: sha512-GecR5YavfjkhOytEFHAeI6aWWG3f/cOKNB1YJvj/B76xAmeVjy4zJUYobGF030cRmKaO1FBw3V8CZZ6KVh9ZSw==} + /jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/graceful-fs': 4.1.6 - '@types/node': 20.5.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.11.0 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 jest-regex-util: 29.6.3 - jest-util: 29.6.3 - jest-worker: 29.6.3 + jest-util: 29.7.0 + jest-worker: 29.7.0 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 - /jest-leak-detector@29.6.3: - resolution: {integrity: sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==} + /jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.6.3 - pretty-format: 29.6.3 + pretty-format: 29.7.0 - /jest-matcher-utils@29.6.3: - resolution: {integrity: sha512-6ZrMYINZdwduSt5Xu18/n49O1IgXdjsfG7NEZaQws9k69eTKWKcVbJBw/MZsjOZe2sSyJFmuzh8042XWwl54Zg==} + /jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - jest-diff: 29.6.3 + jest-diff: 29.7.0 jest-get-type: 29.6.3 - pretty-format: 29.6.3 + pretty-format: 29.7.0 - /jest-message-util@29.6.3: - resolution: {integrity: sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==} + /jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.22.10 + '@babel/code-frame': 7.23.5 '@jest/types': 29.6.3 - '@types/stack-utils': 2.0.1 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 - pretty-format: 29.6.3 + pretty-format: 29.7.0 slash: 3.0.0 stack-utils: 2.0.6 - /jest-mock@29.6.3: - resolution: {integrity: sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==} + /jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.5.3 - jest-util: 29.6.3 + '@types/node': 20.11.0 + jest-util: 29.7.0 - /jest-pnp-resolver@1.2.3(jest-resolve@29.6.3): + /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -10522,132 +10795,132 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 29.6.3 + jest-resolve: 29.7.0 /jest-regex-util@29.6.3: resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /jest-resolve-dependencies@29.6.3: - resolution: {integrity: sha512-iah5nhSPTwtUV7yzpTc9xGg8gP3Ch2VNsuFMsKoCkNCrQSbFtx5KRPemmPJ32AUhTSDqJXB6djPN6zAaUGV53g==} + /jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-regex-util: 29.6.3 - jest-snapshot: 29.6.3 + jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - /jest-resolve@29.6.3: - resolution: {integrity: sha512-WMXwxhvzDeA/J+9jz1i8ZKGmbw/n+s988EiUvRI4egM+eTn31Hb5v10Re3slG3/qxntkBt2/6GkQVDGu6Bwyhw==} + /jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 - jest-haste-map: 29.6.3 - jest-pnp-resolver: 1.2.3(jest-resolve@29.6.3) - jest-util: 29.6.3 - jest-validate: 29.6.3 - resolve: 1.22.4 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + resolve: 1.22.8 resolve.exports: 2.0.2 slash: 3.0.0 - /jest-runner@29.6.3: - resolution: {integrity: sha512-E4zsMhQnjhirFPhDTJgoLMWUrVCDij/KGzWlbslDHGuO8Hl2pVUfOiygMzVZtZq+BzmlqwEr7LYmW+WFLlmX8w==} + /jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 29.6.3 - '@jest/environment': 29.6.3 - '@jest/test-result': 29.6.3 - '@jest/transform': 29.6.3 + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.5.3 + '@types/node': 20.11.0 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 - jest-docblock: 29.6.3 - jest-environment-node: 29.6.3 - jest-haste-map: 29.6.3 - jest-leak-detector: 29.6.3 - jest-message-util: 29.6.3 - jest-resolve: 29.6.3 - jest-runtime: 29.6.3 - jest-util: 29.6.3 - jest-watcher: 29.6.3 - jest-worker: 29.6.3 + jest-docblock: 29.7.0 + jest-environment-node: 29.7.0 + jest-haste-map: 29.7.0 + jest-leak-detector: 29.7.0 + jest-message-util: 29.7.0 + jest-resolve: 29.7.0 + jest-runtime: 29.7.0 + jest-util: 29.7.0 + jest-watcher: 29.7.0 + jest-worker: 29.7.0 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - /jest-runtime@29.6.3: - resolution: {integrity: sha512-VM0Z3a9xaqizGpEKwCOIhImkrINYzxgwk8oQAvrmAiXX8LNrJrRjyva30RkuRY0ETAotHLlUcd2moviCA1hgsQ==} + /jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.3 - '@jest/fake-timers': 29.6.3 - '@jest/globals': 29.6.3 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 '@jest/source-map': 29.6.3 - '@jest/test-result': 29.6.3 - '@jest/transform': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.5.3 + '@types/node': 20.11.0 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-haste-map: 29.6.3 - jest-message-util: 29.6.3 - jest-mock: 29.6.3 + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 jest-regex-util: 29.6.3 - jest-resolve: 29.6.3 - jest-snapshot: 29.6.3 - jest-util: 29.6.3 + jest-resolve: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - /jest-snapshot@29.6.3: - resolution: {integrity: sha512-66Iu7H1ojiveQMGFnKecHIZPPPBjZwfQEnF6wxqpxGf57sV3YSUtAb5/sTKM5TPa3OndyxZp1wxHFbmgVhc53w==} + /jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.10) - '@babel/types': 7.22.10 - '@jest/expect-utils': 29.6.3 - '@jest/transform': 29.6.3 + '@babel/core': 7.23.7 + '@babel/generator': 7.23.6 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7) + '@babel/types': 7.23.6 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.10) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7) chalk: 4.1.2 - expect: 29.6.3 + expect: 29.7.0 graceful-fs: 4.2.11 - jest-diff: 29.6.3 + jest-diff: 29.7.0 jest-get-type: 29.6.3 - jest-matcher-utils: 29.6.3 - jest-message-util: 29.6.3 - jest-util: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 natural-compare: 1.4.0 - pretty-format: 29.6.3 + pretty-format: 29.7.0 semver: 7.5.4 transitivePeerDependencies: - supports-color - /jest-util@29.6.3: - resolution: {integrity: sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==} + /jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.5.3 + '@types/node': 20.11.0 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-validate@29.6.3: - resolution: {integrity: sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==} + /jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 @@ -10655,26 +10928,26 @@ packages: chalk: 4.1.2 jest-get-type: 29.6.3 leven: 3.1.0 - pretty-format: 29.6.3 + pretty-format: 29.7.0 - /jest-watcher@29.6.3: - resolution: {integrity: sha512-NgpFjZ2U2MKusjidbi4Oiu7tfs+nrgdIxIEVROvH1cFmOei9Uj25lwkMsakqLnH/s0nEcvxO1ck77FiRlcnpZg==} + /jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.6.3 + '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.5.3 + '@types/node': 20.11.0 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 - jest-util: 29.6.3 + jest-util: 29.7.0 string-length: 4.0.2 /jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 20.5.3 + '@types/node': 20.11.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -10682,22 +10955,22 @@ packages: resolution: {integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 20.5.3 - jest-util: 29.6.3 + '@types/node': 20.11.0 + jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker@29.6.3: - resolution: {integrity: sha512-wacANXecZ/GbQakpf2CClrqrlwsYYDSXFd4fIGdL+dXpM2GWoJ+6bhQ7vR3TKi3+gkSfBkjy1/khH/WrYS4Q6g==} + /jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 20.5.3 - jest-util: 29.6.3 + '@types/node': 20.11.0 + jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@29.6.3(@types/node@20.4.7)(ts-node@10.9.1): - resolution: {integrity: sha512-alueLuoPCDNHFcFGmgETR4KpQ+0ff3qVaiJwxQM4B5sC0CvXcgg4PEi7xrDkxuItDmdz/FVc7SSit4KEu8GRvw==} + /jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2): + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: @@ -10706,10 +10979,10 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.6.3(ts-node@10.9.1) + '@jest/core': 29.7.0(ts-node@10.9.2) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.6.3(@types/node@20.4.7)(ts-node@10.9.1) + jest-cli: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -10755,7 +11028,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.10.0 + acorn: 8.11.3 acorn-globals: 7.0.1 cssom: 0.5.0 cssstyle: 2.3.0 @@ -10778,7 +11051,7 @@ packages: whatwg-encoding: 2.0.0 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 - ws: 8.13.0 + ws: 8.16.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - bufferutil @@ -10789,12 +11062,16 @@ packages: /jsesc@0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true + dev: true /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true + /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 @@ -10841,7 +11118,7 @@ packages: /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: - universalify: 2.0.0 + universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 @@ -10854,10 +11131,15 @@ packages: resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} engines: {node: '>=4.0'} dependencies: - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - object.assign: 4.1.4 - object.values: 1.1.6 + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.1.7 + + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + dependencies: + json-buffer: 3.0.1 /kind-of@3.2.2: resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} @@ -10886,8 +11168,8 @@ packages: /known-css-properties@0.26.0: resolution: {integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==} - /known-css-properties@0.28.0: - resolution: {integrity: sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==} + /known-css-properties@0.29.0: + resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==} /kolorist@1.8.0: resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} @@ -10915,6 +11197,11 @@ packages: resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} dev: true + /less-plugin-resolve@1.0.2: + resolution: {integrity: sha512-e1AHq0XNTU8S3d9JCc8CFYajoUBr0EK3pcuLT5PogyBBeE0knzZJL105kKKSZWfq2lQLq3/uEDrMK3JPq+fHaA==} + dependencies: + enhanced-resolve: 5.15.0 + /less@4.1.3: resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} engines: {node: '>=6'} @@ -10929,10 +11216,8 @@ packages: image-size: 0.5.5 make-dir: 2.1.0 mime: 1.6.0 - needle: 3.2.0 + needle: 3.3.1 source-map: 0.6.1 - transitivePeerDependencies: - - supports-color /leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} @@ -10945,32 +11230,40 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 - /lightningcss-darwin-arm64@1.19.0: - resolution: {integrity: sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==} + /lightningcss-darwin-arm64@1.22.1: + resolution: {integrity: sha512-ldvElu+R0QimNTjsKpaZkUv3zf+uefzLy/R1R19jtgOfSRM+zjUCUgDhfEDRmVqJtMwYsdhMI2aJtJChPC6Osg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /lightningcss-darwin-x64@1.19.0: - resolution: {integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==} + /lightningcss-darwin-x64@1.22.1: + resolution: {integrity: sha512-5p2rnlVTv6Gpw4PlTLq925nTVh+HFh4MpegX8dPDYJae+NFVjQ67gY7O6iHIzQjLipDiYejFF0yHrhjU3XgLBQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /lightningcss-linux-arm-gnueabihf@1.19.0: - resolution: {integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==} + /lightningcss-freebsd-x64@1.22.1: + resolution: {integrity: sha512-1FaBtcFrZqB2hkFbAxY//Pnp8koThvyB6AhjbdVqKD4/pu13Rl91fKt2N9qyeQPUt3xy7ORUvSO+dPk3J6EjXg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + optional: true + + /lightningcss-linux-arm-gnueabihf@1.22.1: + resolution: {integrity: sha512-6rub98tYGfE5I5j0BP8t/2d4BZyu1S7Iz9vUkm0H26snAFHYxLfj3RbQn0xHHIePSetjLnhcg3QlfwUAkD/FYg==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /lightningcss-linux-arm64-gnu@1.19.0: - resolution: {integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==} + /lightningcss-linux-arm64-gnu@1.22.1: + resolution: {integrity: sha512-nYO5qGtb/1kkTZu3FeTiM+2B2TAb7m2DkLCTgQIs2bk2o9aEs7I96fwySKcoHWQAiQDGR9sMux9vkV4KQXqPaQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] @@ -10978,8 +11271,8 @@ packages: requiresBuild: true optional: true - /lightningcss-linux-arm64-musl@1.19.0: - resolution: {integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==} + /lightningcss-linux-arm64-musl@1.22.1: + resolution: {integrity: sha512-MCV6RuRpzXbunvzwY644iz8cw4oQxvW7oer9xPkdadYqlEyiJJ6wl7FyJOH7Q6ZYH4yjGAUCvxDBxPbnDu9ZVg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] @@ -10987,8 +11280,8 @@ packages: requiresBuild: true optional: true - /lightningcss-linux-x64-gnu@1.19.0: - resolution: {integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==} + /lightningcss-linux-x64-gnu@1.22.1: + resolution: {integrity: sha512-RjNgpdM20VUXgV7us/VmlO3Vn2ZRiDnc3/bUxCVvySZWPiVPprpqW/QDWuzkGa+NCUf6saAM5CLsZLSxncXJwg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] @@ -10996,8 +11289,8 @@ packages: requiresBuild: true optional: true - /lightningcss-linux-x64-musl@1.19.0: - resolution: {integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==} + /lightningcss-linux-x64-musl@1.22.1: + resolution: {integrity: sha512-ZgO4C7Rd6Hv/5MnyY2KxOYmIlzk4rplVolDt3NbkNR8DndnyX0Q5IR4acJWNTBICQ21j3zySzKbcJaiJpk/4YA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] @@ -11005,28 +11298,29 @@ packages: requiresBuild: true optional: true - /lightningcss-win32-x64-msvc@1.19.0: - resolution: {integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==} + /lightningcss-win32-x64-msvc@1.22.1: + resolution: {integrity: sha512-4pozV4eyD0MDET41ZLHAeBo+H04Nm2UEYIk5w/ts40231dRFV7E0cjwbnZvSoc1DXFgecAhiC0L16ruv/ZDCpg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] requiresBuild: true optional: true - /lightningcss@1.19.0: - resolution: {integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==} + /lightningcss@1.22.1: + resolution: {integrity: sha512-Fy45PhibiNXkm0cK5FJCbfO8Y6jUpD/YcHf/BtuI+jvYYqSXKF4muk61jjE8YxCR9y+hDYIWSzHTc+bwhDE6rQ==} engines: {node: '>= 12.0.0'} dependencies: detect-libc: 1.0.3 optionalDependencies: - lightningcss-darwin-arm64: 1.19.0 - lightningcss-darwin-x64: 1.19.0 - lightningcss-linux-arm-gnueabihf: 1.19.0 - lightningcss-linux-arm64-gnu: 1.19.0 - lightningcss-linux-arm64-musl: 1.19.0 - lightningcss-linux-x64-gnu: 1.19.0 - lightningcss-linux-x64-musl: 1.19.0 - lightningcss-win32-x64-msvc: 1.19.0 + lightningcss-darwin-arm64: 1.22.1 + lightningcss-darwin-x64: 1.22.1 + lightningcss-freebsd-x64: 1.22.1 + lightningcss-linux-arm-gnueabihf: 1.22.1 + lightningcss-linux-arm64-gnu: 1.22.1 + lightningcss-linux-arm64-musl: 1.22.1 + lightningcss-linux-x64-gnu: 1.22.1 + lightningcss-linux-x64-musl: 1.22.1 + lightningcss-win32-x64-msvc: 1.22.1 /lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} @@ -11035,8 +11329,8 @@ packages: /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /lines-and-columns@2.0.3: - resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} + /lines-and-columns@2.0.4: + resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true @@ -11115,9 +11409,11 @@ packages: /lodash.camelcase@4.3.0: resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + dev: true /lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + dev: true /lodash.get@4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} @@ -11236,6 +11532,10 @@ packages: highlight.js: 10.7.3 dev: false + /lru-cache@10.1.0: + resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} + engines: {node: 14 || >=16.14} + /lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: @@ -11283,6 +11583,7 @@ packages: dependencies: pify: 4.0.1 semver: 5.7.2 + optional: true /make-dir@4.0.0: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} @@ -11352,16 +11653,16 @@ packages: /mdast-util-definitions@5.1.2: resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 unist-util-visit: 4.1.2 dev: true /mdast-util-directive@2.2.4: resolution: {integrity: sha512-sK3ojFP+jpj1n7Zo5ZKvoxP1MvLyzVG63+gm40Z/qI00avzdPCYxt7RBMgofwAva9gBjbDBWVRB/i+UD+fUCzQ==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 parse-entities: 4.0.1 @@ -11374,7 +11675,7 @@ packages: /mdast-util-find-and-replace@2.2.2: resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 escape-string-regexp: 5.0.0 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 @@ -11383,7 +11684,7 @@ packages: /mdast-util-from-markdown@0.8.5: resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-to-string: 2.0.0 micromark: 2.11.4 parse-entities: 2.0.0 @@ -11395,8 +11696,8 @@ packages: /mdast-util-from-markdown@1.3.1: resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 decode-named-character-reference: 1.0.2 mdast-util-to-string: 3.2.0 micromark: 3.2.0 @@ -11414,7 +11715,7 @@ packages: /mdast-util-frontmatter@1.0.1: resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-extension-frontmatter: 1.1.1 dev: true @@ -11422,7 +11723,7 @@ packages: /mdast-util-gfm-autolink-literal@1.0.3: resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 ccount: 2.0.1 mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 @@ -11431,7 +11732,7 @@ packages: /mdast-util-gfm-footnote@1.0.2: resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 dev: true @@ -11439,14 +11740,14 @@ packages: /mdast-util-gfm-strikethrough@1.0.3: resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 dev: true /mdast-util-gfm-table@1.0.7: resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 markdown-table: 3.0.3 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -11457,7 +11758,7 @@ packages: /mdast-util-gfm-task-list-item@1.0.2: resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 dev: true @@ -11478,9 +11779,9 @@ packages: /mdast-util-mdx-expression@1.3.2: resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} dependencies: - '@types/estree-jsx': 1.0.0 - '@types/hast': 2.3.5 - '@types/mdast': 3.0.12 + '@types/estree-jsx': 1.0.3 + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -11490,9 +11791,9 @@ packages: /mdast-util-mdxjs-esm@1.3.1: resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} dependencies: - '@types/estree-jsx': 1.0.0 - '@types/hast': 2.3.5 - '@types/mdast': 3.0.12 + '@types/estree-jsx': 1.0.3 + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -11502,15 +11803,15 @@ packages: /mdast-util-phrasing@3.0.1: resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 unist-util-is: 5.2.1 dev: true /mdast-util-to-hast@12.3.0: resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} dependencies: - '@types/hast': 2.3.5 - '@types/mdast': 3.0.12 + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 mdast-util-definitions: 5.1.2 micromark-util-sanitize-uri: 1.2.0 trim-lines: 3.0.1 @@ -11522,7 +11823,7 @@ packages: /mdast-util-to-markdown@0.6.5: resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 longest-streak: 2.0.4 mdast-util-to-string: 2.0.0 parse-entities: 2.0.0 @@ -11533,8 +11834,8 @@ packages: /mdast-util-to-markdown@1.5.0: resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 longest-streak: 3.1.0 mdast-util-phrasing: 3.0.1 mdast-util-to-string: 3.2.0 @@ -11550,7 +11851,7 @@ packages: /mdast-util-to-string@3.2.0: resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 dev: true /mdn-data@2.0.14: @@ -11576,7 +11877,11 @@ packages: resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} engines: {node: '>= 4.0.0'} dependencies: - fs-monkey: 1.0.4 + fs-monkey: 1.0.5 + + /memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + dev: false /memoizee@0.4.15: resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} @@ -11595,7 +11900,7 @@ packages: resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: - '@types/minimist': 1.2.2 + '@types/minimist': 1.2.5 camelcase-keys: 7.0.2 decamelize: 5.0.1 decamelize-keys: 1.1.1 @@ -11612,7 +11917,7 @@ packages: resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} engines: {node: '>=10'} dependencies: - '@types/minimist': 1.2.2 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -11629,7 +11934,7 @@ packages: resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} engines: {node: '>=10'} dependencies: - '@types/minimist': 1.2.2 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize: 1.2.0 decamelize-keys: 1.1.1 @@ -11905,7 +12210,7 @@ packages: /micromark@3.2.0: resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} dependencies: - '@types/debug': 4.1.8 + '@types/debug': 4.1.12 debug: 4.3.4 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 @@ -11997,6 +12302,12 @@ packages: dependencies: brace-expansion: 1.1.11 + /minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -12008,6 +12319,10 @@ packages: /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + /minipass@7.0.4: + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} + /mississippi@1.3.1: resolution: {integrity: sha512-/6rB8YXFbAtsUVRphIRQqB0+9c7VaPHCjVtvto+JqwVxgz8Zz+I+f68/JgQ+Pb4VlZb2svA9OtdXnHHsZz7ltg==} dependencies: @@ -12066,10 +12381,9 @@ packages: ml-array-min: 1.2.3 dev: false - /ml-matrix@6.10.4: - resolution: {integrity: sha512-rUyEhfNPzqFsltYwvjNeYQXlYEaVea3KgzcJKJteQUj2WVAGFx9fLNRjtMR9mg2B6bd5buxlmkZmxM4hmO+SKg==} + /ml-matrix@6.5.0: + resolution: {integrity: sha512-sms732Dge+rs5dU4mnjE0oqLWm1WujvR2fr38LgUHRG2cjXjWlO3WJupLYaSz3++2iYr0UrGDK72OAivr3J8dg==} dependencies: - is-any-array: 2.0.1 ml-array-rescale: 1.3.7 dev: false @@ -12081,7 +12395,7 @@ packages: resolution: {integrity: sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==} hasBin: true dependencies: - commander: 11.0.0 + commander: 11.1.0 dev: true /monaco-editor@0.41.0: @@ -12137,8 +12451,8 @@ packages: resolution: {integrity: sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==} dev: true - /nanoid@3.3.6: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} + /nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true @@ -12148,17 +12462,14 @@ packages: /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - /needle@3.2.0: - resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==} + /needle@3.3.1: + resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} engines: {node: '>= 4.4.x'} hasBin: true requiresBuild: true dependencies: - debug: 3.2.7 iconv-lite: 0.6.3 - sax: 1.2.4 - transitivePeerDependencies: - - supports-color + sax: 1.3.0 optional: true /neo-async@2.6.2: @@ -12209,8 +12520,8 @@ packages: is-stream: 1.1.0 dev: false - /node-fetch@2.6.13: - resolution: {integrity: sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==} + /node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 @@ -12229,8 +12540,8 @@ packages: fetch-blob: 3.2.0 formdata-polyfill: 4.0.10 - /node-gyp-build@4.6.0: - resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} + /node-gyp-build@4.8.0: + resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} hasBin: true dev: true @@ -12240,7 +12551,7 @@ packages: /node-libs-browser@2.2.1: resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==} dependencies: - assert: 1.5.0 + assert: 1.5.1 browserify-zlib: 0.2.0 buffer: 4.9.2 console-browserify: 1.2.0 @@ -12260,7 +12571,7 @@ packages: string_decoder: 1.3.0 timers-browserify: 2.0.12 tty-browserify: 0.0.0 - url: 0.11.1 + url: 0.11.3 util: 0.11.1 vm-browserify: 1.1.2 @@ -12270,14 +12581,14 @@ packages: es6-promise: 3.3.1 dev: true - /node-releases@2.0.13: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.4 + resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 @@ -12286,7 +12597,7 @@ packages: engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.13.0 + is-core-module: 2.13.1 semver: 7.5.4 validate-npm-package-license: 3.0.4 @@ -12331,8 +12642,8 @@ packages: dependencies: path-key: 3.1.1 - /npm-run-path@5.1.0: - resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} + /npm-run-path@5.2.0: + resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: path-key: 4.0.0 @@ -12375,8 +12686,8 @@ packages: resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} dev: false - /nx@15.9.5: - resolution: {integrity: sha512-ZjbsTCU4Bdq3SZ0swy+eiU/QN1WW3K0vPoNWri1iNcEjTxMmQd3ZWJ+y9UKDhvpOUdwVAAfD2JUAtF7AkhmX9g==} + /nx@15.9.7: + resolution: {integrity: sha512-1qlEeDjX9OKZEryC8i4bA+twNg+lB5RKrozlNwWx/lLJHqWPUfvUTvxh+uxlPYL9KzVReQjUuxMLFMsHNqWUrA==} hasBin: true requiresBuild: true peerDependencies: @@ -12388,13 +12699,13 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 15.9.5 - '@nrwl/tao': 15.9.5 + '@nrwl/cli': 15.9.7 + '@nrwl/tao': 15.9.7 '@parcel/watcher': 2.0.4 '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 - axios: 1.4.0 + axios: 1.6.5 chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 @@ -12404,16 +12715,16 @@ packages: fast-glob: 3.2.7 figures: 3.2.0 flat: 5.0.2 - fs-extra: 11.1.1 + fs-extra: 11.2.0 glob: 7.1.4 - ignore: 5.2.4 + ignore: 5.3.0 js-yaml: 4.1.0 jsonc-parser: 3.2.0 - lines-and-columns: 2.0.3 + lines-and-columns: 2.0.4 minimatch: 3.0.5 npm-run-path: 4.0.1 open: 8.4.2 - semver: 7.3.4 + semver: 7.5.4 string-width: 4.2.3 strong-log-transformer: 2.1.0 tar-stream: 2.2.0 @@ -12424,15 +12735,15 @@ packages: yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@nrwl/nx-darwin-arm64': 15.9.5 - '@nrwl/nx-darwin-x64': 15.9.5 - '@nrwl/nx-linux-arm-gnueabihf': 15.9.5 - '@nrwl/nx-linux-arm64-gnu': 15.9.5 - '@nrwl/nx-linux-arm64-musl': 15.9.5 - '@nrwl/nx-linux-x64-gnu': 15.9.5 - '@nrwl/nx-linux-x64-musl': 15.9.5 - '@nrwl/nx-win32-arm64-msvc': 15.9.5 - '@nrwl/nx-win32-x64-msvc': 15.9.5 + '@nrwl/nx-darwin-arm64': 15.9.7 + '@nrwl/nx-darwin-x64': 15.9.7 + '@nrwl/nx-linux-arm-gnueabihf': 15.9.7 + '@nrwl/nx-linux-arm64-gnu': 15.9.7 + '@nrwl/nx-linux-arm64-musl': 15.9.7 + '@nrwl/nx-linux-x64-gnu': 15.9.7 + '@nrwl/nx-linux-x64-musl': 15.9.7 + '@nrwl/nx-win32-arm64-msvc': 15.9.7 + '@nrwl/nx-win32-x64-msvc': 15.9.7 transitivePeerDependencies: - debug dev: true @@ -12446,7 +12757,7 @@ packages: /oas-linter@3.2.2: resolution: {integrity: sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==} dependencies: - '@exodus/schemasafe': 1.2.3 + '@exodus/schemasafe': 1.3.0 should: 13.2.3 yaml: 1.10.2 dev: true @@ -12483,88 +12794,88 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - /object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} /object-is@1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 dev: false /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} - /object.assign@4.1.4: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + /object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - /object.entries@1.1.6: - resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} + /object.entries@1.1.7: + resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 - /object.fromentries@2.0.6: - resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} + /object.fromentries@2.0.7: + resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 - /object.getownpropertydescriptors@2.1.6: - resolution: {integrity: sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==} + /object.getownpropertydescriptors@2.1.7: + resolution: {integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==} engines: {node: '>= 0.8'} dependencies: - array.prototype.reduce: 1.0.5 - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - safe-array-concat: 1.0.0 + array.prototype.reduce: 1.0.6 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + safe-array-concat: 1.0.1 dev: true - /object.getprototypeof@1.0.4: - resolution: {integrity: sha512-xV/FkUNM9sHa56AB5deXrlIR+jBtDAHieyfm6XZUuehqlMX+YJPh8CAYtPrXGA/mFLFttasTc9ihhpkPrH7pLw==} + /object.getprototypeof@1.0.5: + resolution: {integrity: sha512-4G0QiXpoIppBUz5efmxTm/HTbVN2ioGjk/PbsaNvwISFX+saj8muGp6vNuzIdsosFxM4V/kpUVNvy/+9+DVBZQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - reflect.getprototypeof: 1.0.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + reflect.getprototypeof: 1.0.4 - /object.groupby@1.0.0: - resolution: {integrity: sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==} + /object.groupby@1.0.1: + resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 dev: false - /object.hasown@1.1.2: - resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} + /object.hasown@1.1.3: + resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} dependencies: - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.3 - /object.values@1.1.6: - resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} + /object.values@1.1.7: + resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 /obuf@1.1.2: resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} @@ -12814,7 +13125,7 @@ packages: /parse-entities@4.0.1: resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 character-entities: 2.0.2 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 @@ -12845,7 +13156,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.22.10 + '@babel/code-frame': 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -12912,6 +13223,13 @@ packages: /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + /path-scurry@1.10.1: + resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + lru-cache: 10.1.0 + minipass: 7.0.4 + /path-to-regexp@1.7.0: resolution: {integrity: sha512-nifX1uj4S9IrK/w3Xe7kKvNEepXivANs9ng60Iq7PU/BlouV3yL/VUhFqTuTq33ykwUqoNcTeGo5vdOBP4jS/Q==} dependencies: @@ -12961,6 +13279,7 @@ packages: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} requiresBuild: true + optional: true /pino-abstract-transport@0.5.0: resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} @@ -13012,145 +13331,145 @@ packages: /point-in-polygon@1.1.0: resolution: {integrity: sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==} - /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.28): + /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.33): resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /postcss-clamp@4.1.0(postcss@8.4.28): + /postcss-clamp@4.1.0(postcss@8.4.33): resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} engines: {node: '>=7.6.0'} peerDependencies: postcss: ^8.4.6 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-color-functional-notation@4.2.4(postcss@8.4.28): + /postcss-color-functional-notation@4.2.4(postcss@8.4.33): resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-color-hex-alpha@8.0.4(postcss@8.4.28): + /postcss-color-hex-alpha@8.0.4(postcss@8.4.33): resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-color-rebeccapurple@7.1.1(postcss@8.4.28): + /postcss-color-rebeccapurple@7.1.1(postcss@8.4.33): resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-custom-media@8.0.2(postcss@8.4.28): + /postcss-custom-media@8.0.2(postcss@8.4.33): resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-custom-properties@12.1.11(postcss@8.4.28): + /postcss-custom-properties@12.1.11(postcss@8.4.33): resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-custom-selectors@6.0.3(postcss@8.4.28): + /postcss-custom-selectors@6.0.3(postcss@8.4.33): resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /postcss-dir-pseudo-class@6.0.5(postcss@8.4.28): + /postcss-dir-pseudo-class@6.0.5(postcss@8.4.33): resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /postcss-double-position-gradients@3.1.2(postcss@8.4.28): + /postcss-double-position-gradients@3.1.2(postcss@8.4.33): resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.28) - postcss: 8.4.28 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.33) + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-env-function@4.0.6(postcss@8.4.28): + /postcss-env-function@4.0.6(postcss@8.4.33): resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-flexbugs-fixes@5.0.2(postcss@8.4.28): + /postcss-flexbugs-fixes@5.0.2(postcss@8.4.33): resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} peerDependencies: postcss: ^8.1.4 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-focus-visible@6.0.4(postcss@8.4.28): + /postcss-focus-visible@6.0.4(postcss@8.4.33): resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /postcss-focus-within@5.0.4(postcss@8.4.28): + /postcss-focus-within@5.0.4(postcss@8.4.33): resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /postcss-font-variant@5.0.0(postcss@8.4.28): + /postcss-font-variant@5.0.0(postcss@8.4.33): resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-gap-properties@3.0.5(postcss@8.4.28): + /postcss-gap-properties@3.0.5(postcss@8.4.33): resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 /postcss-html@0.36.0(postcss-syntax@0.36.2)(postcss@7.0.39): resolution: {integrity: sha512-HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw==} @@ -13163,30 +13482,30 @@ packages: postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39) dev: true - /postcss-image-set-function@4.0.7(postcss@8.4.28): + /postcss-image-set-function@4.0.7(postcss@8.4.33): resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-initial@4.0.1(postcss@8.4.28): + /postcss-initial@4.0.1(postcss@8.4.33): resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-lab-function@4.2.1(postcss@8.4.28): + /postcss-lab-function@4.2.1(postcss@8.4.33): resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.28) - postcss: 8.4.28 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.33) + postcss: 8.4.33 postcss-value-parser: 4.2.0 /postcss-less@3.1.4: @@ -13200,19 +13519,19 @@ packages: resolution: {integrity: sha512-C92S4sHlbDpefJ2QQJjrucCcypq3+KZPstjfuvgOCNnGx0tF9h8hXgAlOIATGAxMXZXaF+nVp+/Mi8pCAWdSmw==} engines: {node: '>=10'} dependencies: - postcss: 8.4.28 + postcss: 8.4.33 dev: true - /postcss-less@6.0.0(postcss@8.4.28): + /postcss-less@6.0.0(postcss@8.4.33): resolution: {integrity: sha512-FPX16mQLyEjLzEuuJtxA8X3ejDLNGGEG503d2YGZR5Ask1SpDN8KmZUMpzCvyalWRywAn1n1VOA5dcqfCLo5rg==} engines: {node: '>=12'} peerDependencies: postcss: ^8.3.5 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 dev: false - /postcss-load-config@3.1.4(postcss@8.4.28)(ts-node@10.9.1): + /postcss-load-config@3.1.4(postcss@8.4.33)(ts-node@10.9.2): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -13225,184 +13544,184 @@ packages: optional: true dependencies: lilconfig: 2.1.0 - postcss: 8.4.28 - ts-node: 10.9.1(@types/node@20.4.7)(typescript@4.9.5) + postcss: 8.4.33 + ts-node: 10.9.2(@types/node@20.5.1)(typescript@4.9.5) yaml: 1.10.2 - /postcss-logical@5.0.4(postcss@8.4.28): + /postcss-logical@5.0.4(postcss@8.4.33): resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-media-minmax@5.0.0(postcss@8.4.28): + /postcss-media-minmax@5.0.0(postcss@8.4.33): resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 /postcss-media-query-parser@0.2.3: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} - /postcss-modules-extract-imports@3.0.0(postcss@8.4.28): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.33): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-modules-local-by-default@4.0.3(postcss@8.4.28): + /postcss-modules-local-by-default@4.0.3(postcss@8.4.33): resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.28) - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + icss-utils: 5.1.0(postcss@8.4.33) + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 - /postcss-modules-scope@3.0.0(postcss@8.4.28): - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} + /postcss-modules-scope@3.1.0(postcss@8.4.33): + resolution: {integrity: sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /postcss-modules-values@4.0.0(postcss@8.4.28): + /postcss-modules-values@4.0.0(postcss@8.4.33): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.28) - postcss: 8.4.28 + icss-utils: 5.1.0(postcss@8.4.33) + postcss: 8.4.33 - /postcss-nesting@10.2.0(postcss@8.4.28): + /postcss-nesting@10.2.0(postcss@8.4.33): resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.15) + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /postcss-opacity-percentage@1.1.3(postcss@8.4.28): + /postcss-opacity-percentage@1.1.3(postcss@8.4.33): resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-overflow-shorthand@3.0.4(postcss@8.4.28): + /postcss-overflow-shorthand@3.0.4(postcss@8.4.33): resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-page-break@3.0.4(postcss@8.4.28): + /postcss-page-break@3.0.4(postcss@8.4.33): resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: postcss: ^8 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-place@7.0.5(postcss@8.4.28): + /postcss-place@7.0.5(postcss@8.4.33): resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-value-parser: 4.2.0 - /postcss-prefix-selector@1.16.0(postcss@8.4.28): + /postcss-prefix-selector@1.16.0(postcss@8.4.33): resolution: {integrity: sha512-rdVMIi7Q4B0XbXqNUEI+Z4E+pueiu/CS5E6vRCQommzdQ/sgsS4dK42U7GX8oJR+TJOtT+Qv3GkNo6iijUMp3Q==} peerDependencies: postcss: '>4 <9' dependencies: - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-preset-env@7.5.0(postcss@8.4.28): + /postcss-preset-env@7.5.0(postcss@8.4.33): resolution: {integrity: sha512-0BJzWEfCdTtK2R3EiKKSdkE51/DI/BwnhlnicSW482Ym6/DGHud8K0wGLcdjip1epVX0HKo4c8zzTeV/SkiejQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - '@csstools/postcss-color-function': 1.1.1(postcss@8.4.28) - '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.28) - '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.28) - '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.28) - '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.28) - '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.28) - '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.28) - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.28) - '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.28) - '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.28) - autoprefixer: 10.4.15(postcss@8.4.28) - browserslist: 4.21.10 - css-blank-pseudo: 3.0.3(postcss@8.4.28) - css-has-pseudo: 3.0.4(postcss@8.4.28) - css-prefers-color-scheme: 6.0.3(postcss@8.4.28) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.33) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.33) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.33) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.33) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.33) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.33) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.33) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.33) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.33) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.33) + autoprefixer: 10.4.16(postcss@8.4.33) + browserslist: 4.22.2 + css-blank-pseudo: 3.0.3(postcss@8.4.33) + css-has-pseudo: 3.0.4(postcss@8.4.33) + css-prefers-color-scheme: 6.0.3(postcss@8.4.33) cssdb: 6.6.3 - postcss: 8.4.28 - postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.28) - postcss-clamp: 4.1.0(postcss@8.4.28) - postcss-color-functional-notation: 4.2.4(postcss@8.4.28) - postcss-color-hex-alpha: 8.0.4(postcss@8.4.28) - postcss-color-rebeccapurple: 7.1.1(postcss@8.4.28) - postcss-custom-media: 8.0.2(postcss@8.4.28) - postcss-custom-properties: 12.1.11(postcss@8.4.28) - postcss-custom-selectors: 6.0.3(postcss@8.4.28) - postcss-dir-pseudo-class: 6.0.5(postcss@8.4.28) - postcss-double-position-gradients: 3.1.2(postcss@8.4.28) - postcss-env-function: 4.0.6(postcss@8.4.28) - postcss-focus-visible: 6.0.4(postcss@8.4.28) - postcss-focus-within: 5.0.4(postcss@8.4.28) - postcss-font-variant: 5.0.0(postcss@8.4.28) - postcss-gap-properties: 3.0.5(postcss@8.4.28) - postcss-image-set-function: 4.0.7(postcss@8.4.28) - postcss-initial: 4.0.1(postcss@8.4.28) - postcss-lab-function: 4.2.1(postcss@8.4.28) - postcss-logical: 5.0.4(postcss@8.4.28) - postcss-media-minmax: 5.0.0(postcss@8.4.28) - postcss-nesting: 10.2.0(postcss@8.4.28) - postcss-opacity-percentage: 1.1.3(postcss@8.4.28) - postcss-overflow-shorthand: 3.0.4(postcss@8.4.28) - postcss-page-break: 3.0.4(postcss@8.4.28) - postcss-place: 7.0.5(postcss@8.4.28) - postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.28) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.28) - postcss-selector-not: 5.0.0(postcss@8.4.28) + postcss: 8.4.33 + postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.33) + postcss-clamp: 4.1.0(postcss@8.4.33) + postcss-color-functional-notation: 4.2.4(postcss@8.4.33) + postcss-color-hex-alpha: 8.0.4(postcss@8.4.33) + postcss-color-rebeccapurple: 7.1.1(postcss@8.4.33) + postcss-custom-media: 8.0.2(postcss@8.4.33) + postcss-custom-properties: 12.1.11(postcss@8.4.33) + postcss-custom-selectors: 6.0.3(postcss@8.4.33) + postcss-dir-pseudo-class: 6.0.5(postcss@8.4.33) + postcss-double-position-gradients: 3.1.2(postcss@8.4.33) + postcss-env-function: 4.0.6(postcss@8.4.33) + postcss-focus-visible: 6.0.4(postcss@8.4.33) + postcss-focus-within: 5.0.4(postcss@8.4.33) + postcss-font-variant: 5.0.0(postcss@8.4.33) + postcss-gap-properties: 3.0.5(postcss@8.4.33) + postcss-image-set-function: 4.0.7(postcss@8.4.33) + postcss-initial: 4.0.1(postcss@8.4.33) + postcss-lab-function: 4.2.1(postcss@8.4.33) + postcss-logical: 5.0.4(postcss@8.4.33) + postcss-media-minmax: 5.0.0(postcss@8.4.33) + postcss-nesting: 10.2.0(postcss@8.4.33) + postcss-opacity-percentage: 1.1.3(postcss@8.4.33) + postcss-overflow-shorthand: 3.0.4(postcss@8.4.33) + postcss-page-break: 3.0.4(postcss@8.4.33) + postcss-place: 7.0.5(postcss@8.4.33) + postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.33) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.33) + postcss-selector-not: 5.0.0(postcss@8.4.33) postcss-value-parser: 4.2.0 - /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.28): + /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.33): resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.28 - postcss-selector-parser: 6.0.13 + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 - /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.28): + /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.33): resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: postcss: ^8.0.3 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 /postcss-resolve-nested-selector@0.1.1: resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} @@ -13414,13 +13733,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-safe-parser@6.0.0(postcss@8.4.28): + /postcss-safe-parser@6.0.0(postcss@8.4.33): resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 /postcss-sass@0.4.4: resolution: {integrity: sha512-BYxnVYx4mQooOhr+zer0qWbSPYnarAy8ZT7hAQtbxtgVf8gy+LSLT/hHGe35h14/pZDTw1DsxdbrwxBN++H+fg==} @@ -13436,44 +13755,44 @@ packages: postcss: 7.0.39 dev: true - /postcss-selector-not@5.0.0(postcss@8.4.28): + /postcss-selector-not@5.0.0(postcss@8.4.33): resolution: {integrity: sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==} peerDependencies: postcss: ^8.1.0 dependencies: balanced-match: 1.0.2 - postcss: 8.4.28 + postcss: 8.4.33 - /postcss-selector-parser@6.0.13: - resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} + /postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-sorting@6.0.0(postcss@8.4.28): + /postcss-sorting@6.0.0(postcss@8.4.33): resolution: {integrity: sha512-bYJ0vgAiGbjCBKi7B07CzsBc9eM84nLEbavUmwNp8rAa+PNyrgdH+6PpnqTtciLuUs99c4rFQQmCaYgeBQYmSQ==} peerDependencies: postcss: ^8.0.4 dependencies: lodash: 4.17.21 - postcss: 8.4.28 + postcss: 8.4.33 dev: true - /postcss-sorting@7.0.1(postcss@8.4.28): + /postcss-sorting@7.0.1(postcss@8.4.33): resolution: {integrity: sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==} peerDependencies: postcss: ^8.3.9 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 dev: false - /postcss-sorting@8.0.2(postcss@8.4.28): + /postcss-sorting@8.0.2(postcss@8.4.33): resolution: {integrity: sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==} peerDependencies: postcss: ^8.4.20 dependencies: - postcss: 8.4.28 + postcss: 8.4.33 dev: false /postcss-syntax@0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39): @@ -13503,7 +13822,7 @@ packages: postcss-scss: 2.1.1 dev: true - /postcss-syntax@0.36.2(postcss@8.4.28): + /postcss-syntax@0.36.2(postcss@8.4.33): resolution: {integrity: sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==} peerDependencies: postcss: '>=5.0.0' @@ -13524,7 +13843,7 @@ packages: postcss-scss: optional: true dependencies: - postcss: 8.4.28 + postcss: 8.4.33 /postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} @@ -13537,11 +13856,11 @@ packages: source-map: 0.6.1 dev: true - /postcss@8.4.28: - resolution: {integrity: sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==} + /postcss@8.4.33: + resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.3.6 + nanoid: 3.3.7 picocolors: 1.0.0 source-map-js: 1.0.2 @@ -13554,8 +13873,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /prettier-plugin-organize-imports@3.2.3(prettier@2.8.8)(typescript@4.9.5): - resolution: {integrity: sha512-KFvk8C/zGyvUaE3RvxN2MhCLwzV6OBbFSkwZ2OamCrs9ZY4i5L77jQ/w4UmUr+lqX8qbaqVq6bZZkApn+IgJSg==} + /prettier-plugin-organize-imports@3.2.4(prettier@2.8.8)(typescript@4.9.5): + resolution: {integrity: sha512-6m8WBhIp0dfwu0SkgfOxJqh+HpdyfqSSLfKKRZSFbDuEQXDDndb8fTpRWkUrX/uBenkex3MgnVk0J3b3Y5byog==} peerDependencies: '@volar/vue-language-plugin-pug': ^1.0.4 '@volar/vue-typescript': ^1.0.4 @@ -13599,9 +13918,9 @@ packages: peerDependencies: prettier: '>= 2.0.0' dependencies: - postcss: 8.4.28 + postcss: 8.4.33 postcss-less: 4.0.1 - postcss-sorting: 6.0.0(postcss@8.4.28) + postcss-sorting: 6.0.0(postcss@8.4.33) prettier: 2.8.8 dev: true @@ -13625,20 +13944,20 @@ packages: react-is: 17.0.2 dev: false - /pretty-format@29.6.3: - resolution: {integrity: sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==} + /pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 - /prism-react-renderer@1.3.5(react@18.1.0): + /prism-react-renderer@1.3.5(react@18.2.0): resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} peerDependencies: react: '>=0.14.9' dependencies: - react: 18.1.0 + react: 18.2.0 dev: true /prism-themes@1.9.0: @@ -13657,7 +13976,7 @@ packages: /probe.gl@3.6.0: resolution: {integrity: sha512-19JydJWI7+DtR4feV+pu4Mn1I5TAc0xojuxVgZdXIyfmTLfUaFnk4OloWK1bKbPtkgGKLr2lnbnCXmpZEcEp9g==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 '@probe.gl/env': 3.6.0 '@probe.gl/log': 3.6.0 '@probe.gl/stats': 3.6.0 @@ -13717,8 +14036,8 @@ packages: xtend: 4.0.2 dev: false - /property-information@6.2.0: - resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==} + /property-information@6.4.0: + resolution: {integrity: sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==} dev: true /protoduck@4.0.0: @@ -13790,24 +14109,24 @@ packages: /punycode@1.4.1: resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - /punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - /pure-rand@6.0.2: - resolution: {integrity: sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==} + /pure-rand@6.0.4: + resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} /q@1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} dev: true - /qrcode.react@3.1.0(react@18.1.0): + /qrcode.react@3.1.0(react@18.2.0): resolution: {integrity: sha512-oyF+Urr3oAMUG/OiOuONL3HXM+53wvuH3mtIWQrYmsXoAq0DkvZp2RYUWFSMFtbdOpuS++9v+WAkzNVkMlNW6Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - react: 18.1.0 + react: 18.2.0 /qs@6.11.2: resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} @@ -13852,6 +14171,10 @@ packages: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} engines: {node: '>=10'} + /raf-schd@4.0.3: + resolution: {integrity: sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==} + dev: false + /ramda@0.29.0: resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} dev: true @@ -13867,7 +14190,7 @@ packages: randombytes: 2.1.0 safe-buffer: 5.2.1 - /raw-loader@4.0.2(webpack@5.88.2): + /raw-loader@4.0.2(webpack@5.89.0): resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -13875,272 +14198,257 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.88.2(esbuild@0.17.19) + webpack: 5.89.0(esbuild@0.17.19) dev: true - /rc-align@4.0.15(react-dom@18.1.0)(react@18.1.0): + /rc-align@4.0.15(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-wqJtVH60pka/nOX7/IspElA8gjPNQKIx/ZqJ6heATCkXpe1Zg4cPVrMD2vC96wjsFFL8WsmhPbx9tdMo1qqlIA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 + '@babel/runtime': 7.23.8 + classnames: 2.5.1 dom-align: 1.12.4 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) resize-observer-polyfill: 1.5.1 + dev: false - /rc-cascader@3.14.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-fCsgjLIQqYZMhFj9UT+x2ZW4uobx7OP5yivcn6Xto5fuxHaldphsryzCeUVmreQOHEo0RP+032Ip9RDzrKVKJA==} + /rc-cascader@3.20.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-lkT9EEwOcYdjZ/jvhLoXGzprK1sijT3/Tp4BLxQQcHDZkkOzzwYQC9HgmKoJz0K7CukMfgvO9KqHeBdgE+pELw==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 array-tree-filter: 2.1.0 - classnames: 2.3.2 - rc-select: 14.7.4(react-dom@18.1.0)(react@18.1.0) - rc-tree: 5.7.9(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - - /rc-checkbox@3.1.0(react-dom@18.1.0)(react@18.1.0): + classnames: 2.5.1 + rc-select: 14.10.0(react-dom@18.2.0)(react@18.2.0) + rc-tree: 5.8.2(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + /rc-checkbox@3.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-PAwpJFnBa3Ei+5pyqMMXdcKYKNBMS+TvSDiLdDnARnMJHC8ESxwPfm4Ao1gJiKtWLdmGfigascnCpwrHFgoOBQ==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-collapse@3.7.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-N/7ejyiTf3XElNJBBpxqnZBUuMsQWEOPjB2QkfNvZ/Ca54eAvJXuOD1EGbCWCk2m7v/MSxku7mRpdeaLOCd4Gg==} + /rc-collapse@3.7.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-ZRw6ipDyOnfLFySxAiCMdbHtb5ePAsB9mT17PA6y1mRD/W6KHRaZeb5qK/X9xDV1CqgyxMpzw0VdS74PCcUk4A==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-dialog@9.1.0(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-5ry+JABAWEbaKyYsmITtrJbZbJys8CtMyzV8Xn4LYuXMeUx5XVHNyJRoqLFE4AzBuXXzOWeaC49cg+XkxK6kHA==} + /rc-dialog@9.3.4(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-975X3018GhR+EjZFbxA2Z57SX5rnu0G0/OxFgMMvZK4/hQWEm3MHaNvP4wXpxYDoJsp+xUvVW+GB9CMMCm81jA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/portal': 1.1.2(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-drawer@6.2.0(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-spPkZ3WvP0U0vy5dyzSwlUJ/+vLFtjP/cTwSwejhQRoDBaexSZHsBhELoCZcEggI7LQ7typmtG30lAue2HEhvA==} + /rc-drawer@6.5.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-QckxAnQNdhh4vtmKN0ZwDf3iakO83W9eZcSKWYYTDv4qcD2fHhRAZJJ/OE6v2ZlQ2kSqCJX5gYssF4HJFvsEPQ==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/portal': 1.1.2(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-dropdown@3.6.2(react-dom@18.1.0)(react@18.1.0): + /rc-dropdown@3.6.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Wsw7GkVbUXADEs8FPL0v8gd+3mWQiydPFXBlr2imMScQaf8hh79pG9KrBc1DwK+nqHmYOpQfK2gn6jG2AQw9Pw==} peerDependencies: react: '>=16.11.0' react-dom: '>=16.11.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-trigger: 5.3.4(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-trigger: 5.3.4(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: false - /rc-dropdown@4.1.0(react-dom@18.1.0)(react@18.1.0): + /rc-dropdown@4.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-VZjMunpBdlVzYpEdJSaV7WM7O0jf8uyDjirxXLZRNZ+tAC+NzD3PXPEtliFwGzVwBBdCmGuSqiS9DWcOLxQ9tw==} peerDependencies: react: '>=16.11.0' react-dom: '>=16.11.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-field-form@1.36.2(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-tCF/JjUsnxW80Gk4E4ZH74ONsaQMxVTRtui6XhQB8DJc4FHWLLa5pP8zwhxtPKC5NaO0QZ0Cv79JggDubn6n2g==} + /rc-field-form@1.41.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-k9AS0wmxfJfusWDP/YXWTpteDNaQ4isJx9UKxx4/e8Dub4spFeZ54/EuN2sYrMRID/+hUznPgVZeg+Gf7XSYCw==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 async-validator: 4.2.5 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-image@7.1.3(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-foMl1rcit1F0+vgxE5kf0c8TygQcHhILsOohQUL+JMUbzOo3OBFRcehJudYbqbCTArzCecS8nA1irUU9vvgQbg==} + /rc-image@7.5.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Z9loECh92SQp0nSipc0MBuf5+yVC05H/pzC+Nf8xw1BKDFUJzUeehYBjaWlxly8VGBZJcTHYri61Fz9ng1G3Ag==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/portal': 1.1.2(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-dialog: 9.1.0(react-dom@18.1.0)(react@18.1.0) - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-dialog: 9.3.4(react-dom@18.2.0)(react@18.2.0) + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-input-number@8.0.4(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-TP+G5b7mZtbwXJ/YEZXF/OgbEZ6iqD4+RSuxZJ8VGKGXDcdt0FKIvpFoNQr/knspdFC4OxA0OfsWfFWfN4XSyA==} + /rc-input-number@8.4.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-B6rziPOLRmeP7kcS5qbdC5hXvvDHYKV4vUxmahevYx2E6crS2bRi0xLDjhJ0E1HtOWo8rTmaE2EBJAkTCZOLdA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 '@rc-component/mini-decimal': 1.1.0 - classnames: 2.3.2 - rc-input: 1.1.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + classnames: 2.5.1 + rc-input: 1.3.11(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-input@1.1.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-NTR1Z4em681L8/ewb2KR80RykSmN8I2mzqzJDCoUmTrV1BB9Hk5d7ha4TnfgdEPPL148N+603sW2LExSXk1IbA==} + /rc-input@1.3.11(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-jhH7QP5rILanSHCGSUkdoFE5DEtpv8FIseYhuYkOZzUBeiVAiwM3q26YqZ6xBB0QFEZ/yUAgms4xW4iuub3xFQ==} peerDependencies: react: '>=16.0.0' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - - /rc-mentions@2.5.0(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-rERXsbUTNVrb5T/iDC0ki/SRGWJnOVraDy6O25Us3FSpuUZ3uq2TPZB4fRk0Hss5kyiEPzz2sprhkI4b+F4jUw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-input: 1.1.1(react-dom@18.1.0)(react@18.1.0) - rc-menu: 9.10.0(react-dom@18.1.0)(react@18.1.0) - rc-textarea: 1.3.4(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-menu@9.10.0(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-g27kpXaAoJh/fkPZF65/d4V+w4DhDeqomBdPcGnkFAcJnEM4o21TnVccrBUoDedLKzC7wJRw1Q7VTqEsfEufmw==} + /rc-mentions@2.9.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-cZuElWr/5Ws0PXx1uxobxfYh4mqUw2FitfabR62YnWgm+WAfDyXZXqZg5DxXW+M1cgVvntrQgDDd9LrihrXzew==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-overflow: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-input: 1.3.11(react-dom@18.2.0)(react@18.2.0) + rc-menu: 9.12.4(react-dom@18.2.0)(react@18.2.0) + rc-textarea: 1.5.3(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-menu@9.11.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-jq9I3XkPKgFpsn8MYko+OAjnrNxzQGQauy0MNysYZ5iw5JGeg5wwCP/toZX2ZWQwxNUfye14mY/uVLE6HCcQlQ==} + /rc-menu@9.12.4(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-t2NcvPLV1mFJzw4F21ojOoRVofK2rWhpKPx69q2raUsiHPDP6DDevsBILEYdsIegqBeSXoWs2bf6CueBKg3BFg==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0) classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-overflow: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - dev: true + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-overflow: 1.3.2(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-motion@2.7.3(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-2xUvo8yGHdOHeQbdI8BtBsCIrWKchEmFEIskf0nmHtJsou+meLd/JE+vnvSX2JxcBrJtXY2LuBpxAOxrbY/wMQ==} + /rc-motion@2.9.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-XIU2+xLkdIr1/h6ohPZXyPBMvOmuyFZQ/T0xnawz+Rh+gh4FINcnZmMT5UTIj6hgI0VLDjTaPeRd+smJeSPqiQ==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-notification@5.0.5(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-uEz2jggourwv/rR0obe7RHEa63UchqX4k+e+Qt2c3LaY7U9Tc+L6ANhzgCKYSA/afm0ebjmNZHoB5Cv47xEOcA==} + /rc-notification@5.3.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-WCf0uCOkZ3HGfF0p1H4Sgt7aWfipxORWTPp7o6prA3vxwtWhtug3GfpYls1pnBp4WA+j8vGIi5c2/hQRpGzPcQ==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-overflow@1.3.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-RY0nVBlfP9CkxrpgaLlGzkSoh9JhjJLu6Icqs9E7CW6Ewh9s0peF9OHIex4OhfoPsR92LR0fN6BlCY9Z4VoUtA==} + /rc-overflow@1.3.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-nsUm78jkYAoPygDAcGZeC2VwIg/IBGSodtOY3pMof4W3M9qRJgqaDYm03ZayHlde3I6ipliAxbN0RUcGf5KOzw==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 classnames: 2.3.2 - rc-resize-observer: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-pagination@3.6.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-R/sUnKKXx1Nm4kZfUKS3YKa7yEPF1ZkVB/AynQaHt+nMER7h9wPTfliDJFdYo+RM/nk2JD4Yc5QpUq8fIQHeug==} + /rc-pagination@4.0.4(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-GGrLT4NgG6wgJpT/hHIpL9nELv27A1XbSZzECIuQBQTVSf4xGKxWr6I/jhpRPauYEWEbWVw22ObG6tJQqwJqWQ==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-picker@3.13.1(dayjs@1.11.9)(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-211SrinX5IXZ9FMMDUMyPLuGOdfftUtd8zj4lqudpFxlMdtgV5+hXUJMBKb26xmDsleOm5iySK6KIHgiaI+U4w==} + /rc-picker@3.14.6(dayjs@1.11.10)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-AdKKW0AqMwZsKvIpwUWDUnpuGKZVrbxVTZTNjcO+pViGkjC1EBcjMgxVe8tomOEaIHJL5Gd13vS8Rr3zzxWmag==} engines: {node: '>=8.x'} peerDependencies: date-fns: '>= 2.x' @@ -14159,252 +14467,253 @@ packages: moment: optional: true dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - dayjs: 1.11.9 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + dayjs: 1.11.10 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-progress@3.4.2(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-iAGhwWU+tsayP+Jkl9T4+6rHeQTG9kDz8JAHZk4XtQOcYN5fj9H34NXNEdRdZx94VUDHMqCb1yOIvi8eJRh67w==} + /rc-progress@3.5.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-V6Amx6SbLRwPin/oD+k1vbPrO8+9Qf8zW1T8A7o83HdNafEVvAxPV5YsgtKFP+Ud5HghLj33zKOcEHrcrUGkfw==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-rate@2.12.0(react-dom@18.1.0)(react@18.1.0): + /rc-rate@2.12.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-g092v5iZCdVzbjdn28FzvWebK2IutoVoiTeqoLTj9WM7SjA/gOJIw5/JFZMRyJYYVe1jLAU2UhAfstIpCNRozg==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-resize-observer@1.3.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==} + /rc-resize-observer@1.4.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) resize-observer-polyfill: 1.5.1 - /rc-segmented@2.2.2(react-dom@18.1.0)(react@18.1.0): + /rc-segmented@2.2.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Mq52M96QdHMsNdE/042ibT5vkcGcD5jxKp7HgPC2SRofpia99P5fkfHy1pEaajLMF/kj0+2Lkq1UZRvqzo9mSA==} peerDependencies: react: '>=16.0.0' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-select@14.7.4(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-qRUpvMVXFy6rdHe+qzHXAqyQAfhErC/oY8dcRtoRjoz0lz2Nx3J+lLL5AnEbjnwlS+/kQTJUZ/65WyCwWwcLwQ==} + /rc-select@14.10.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-TsIJTYafTTapCA32LLNpx/AD6ntepR1TG8jEVx35NiAAWCPymhUfuca8kRcUNd3WIGVMDcMKn9kkphoxEz+6Ag==} engines: {node: '>=8.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-overflow: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - rc-virtual-list: 3.10.5(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - - /rc-slider@10.1.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-gn8oXazZISEhnmRinI89Z/JD/joAaM35jp+gDtIVSTD/JJMCCBqThqLk1SVJmvtfeiEF/kKaFY0+qt4SDHFUDw==} + '@babel/runtime': 7.23.8 + '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-overflow: 1.3.2(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + rc-virtual-list: 3.11.3(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + /rc-slider@10.5.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-xiYght50cvoODZYI43v3Ylsqiw14+D7ELsgzR40boDZaya1HFa1Etnv9MDkQE8X/UrXAffwv2AcNAhslgYuDTw==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-steps@6.0.1(react-dom@18.1.0)(react@18.1.0): + /rc-steps@6.0.1(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-lKHL+Sny0SeHkQKKDJlAjV5oZ8DwCdS2hFhAkIjuQt1/pB81M0cA0ErVFdHq9+jmPmFw1vJB2F5NBzFXLJxV+g==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-switch@4.1.0(react-dom@18.1.0)(react@18.1.0): + /rc-switch@4.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-TI8ufP2Az9oEbvyCeVE4+90PDSljGyuwix3fV58p7HV2o4wBnVToEyomJRVyTaZeqNPAp+vqeo4Wnj5u0ZZQBg==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-table@7.32.3(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-MqjrI/ibuGg7NEyFsux0dM5GK+3er1gTiZofAkifr2bHf/Sa1nUqXXFmSrYXSOjwpx0xyBnJ3GrHFCIqC/eOzw==} + /rc-table@7.36.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-9qMxEm/3Y8ukdW8I8ZvmhX0QImfNKzH0JEUlSbyaUlsYTB+/tQEbfaB8YkG4sHVZ1io4pxqK/BXoZYqebi/TIQ==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/context': 1.4.0(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - rc-resize-observer: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - - /rc-tabs@12.10.0(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-smeTKWZivfJGxCBHF2D5lgU8WPQ9VZFduJWMnsYS/f8EIf8oH8Y8sAACa62u21Q2jyzEZ2tQf70Fz8mdQBm4Zw==} + '@babel/runtime': 7.23.8 + '@rc-component/context': 1.4.0(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + rc-virtual-list: 3.11.3(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + /rc-tabs@12.14.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-1xlE7JQNYxD5RwBsM7jf2xSdUrkmTSDFLFEm2gqAgnsRlOGydEzXXNAVTOT6QcgM1G/gCm+AgG+FYPUGb4Hs4g==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-dropdown: 4.1.0(react-dom@18.1.0)(react@18.1.0) - rc-menu: 9.11.1(react-dom@18.1.0)(react@18.1.0) - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-resize-observer: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - dev: true - - /rc-tabs@12.9.0(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-2HnVowgMVrq0DfQtyu4mCd9E6pXlWNdM6VaDvOOHMsLYqPmpY+7zBqUC6YrrQ9xYXHciTS0e7TtjOHIvpVCHLQ==} + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-dropdown: 4.1.0(react-dom@18.2.0)(react@18.2.0) + rc-menu: 9.12.4(react-dom@18.2.0)(react@18.2.0) + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + /rc-tabs@12.15.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-aXFLRo7jo531Jed1LgRqrF0VmRnzM/Qki25PknM3S04gqyxpDaHNFpPba05pHhn+d1N+54qIi0IcY1odrCrF2A==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 classnames: 2.3.2 - rc-dropdown: 4.1.0(react-dom@18.1.0)(react@18.1.0) - rc-menu: 9.10.0(react-dom@18.1.0)(react@18.1.0) - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-resize-observer: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + rc-dropdown: 4.1.0(react-dom@18.2.0)(react@18.2.0) + rc-menu: 9.12.4(react-dom@18.2.0)(react@18.2.0) + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: true - /rc-textarea@1.3.4(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-wn0YjTpvcVolcfXa0HtzL+jgV2QcwtfB29RwNAKj8hMgZOju1V24M3TfEDjABeQEAQbUGbjMbISREOX/YSVKhg==} + /rc-textarea@1.5.3(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-oH682ghHx++stFNYrosPRBfwsypywrTXpaD0/5Z8MPkUOnyOQUaY9ueL9tMu6BP1LfsuYQ1VLpg5OtshViLNgA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-input: 1.1.1(react-dom@18.1.0)(react@18.1.0) - rc-resize-observer: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-input: 1.3.11(react-dom@18.2.0)(react@18.2.0) + rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-tooltip@6.0.1(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-MdvPlsD1fDSxKp9+HjXrc/CxLmA/s11QYIh1R7aExxfodKP7CZA++DG1AjrW80F8IUdHYcR43HAm0Y2BYPelHA==} + /rc-tooltip@6.1.3(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-HMSbSs5oieZ7XddtINUddBLSVgsnlaSb3bZrzzGWjXa7/B7nNedmsuz72s7EWFEro9mNa7RyF3gOXKYqvJiTcQ==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - '@rc-component/trigger': 1.15.6(react-dom@18.1.0)(react@18.1.0) - classnames: 2.3.2 - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0) + classnames: 2.5.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-tree-select@5.11.2(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-ujRFO3pcjSg8R4ndXX2oiNcCu+RgO9ZPcd23CZy18Khm+nRsfWWS3Su7qB0iuoJgzAJ5LK7b6Dio0t7IQDGs9g==} + /rc-tree-select@5.15.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-YJHfdO6azFnR0/JuNBZLDptGE4/RGfVeHAafUIYcm2T3RBkL1O8aVqiHvwIyLzdK59ry0NLrByd+3TkfpRM+9Q==} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-select: 14.7.4(react-dom@18.1.0)(react@18.1.0) - rc-tree: 5.7.9(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-select: 14.10.0(react-dom@18.2.0)(react@18.2.0) + rc-tree: 5.8.2(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-tree@5.7.9(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-1hKkToz/EVjJlMVwmZnpXeLXt/1iQMsaAq9m+GNkUbK746gkc7QpJXSN/TzjhTI5Hi+LOSlrMaXLMT0bHPqILQ==} + /rc-tree@5.8.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-xH/fcgLHWTLmrSuNphU8XAqV7CdaOQgm4KywlLGNoTMhDAcNR3GVNP6cZzb0GrKmIZ9yae+QLot/cAgUdPRMzg==} engines: {node: '>=10.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 classnames: 2.3.2 - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - rc-virtual-list: 3.10.5(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + rc-virtual-list: 3.11.3(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - /rc-trigger@5.3.4(react-dom@18.1.0)(react@18.1.0): + /rc-trigger@5.3.4(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-mQv+vas0TwKcjAO2izNPkqR4j86OemLRmvL2nOzdP9OWNWA1ivoTt5hzFqYNW9zACwmTezRiN8bttrC7cZzYSw==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-align: 4.0.15(react-dom@18.1.0)(react@18.1.0) - rc-motion: 2.7.3(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-align: 4.0.15(react-dom@18.2.0)(react@18.2.0) + rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: false - /rc-upload@4.3.4(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-uVbtHFGNjHG/RyAfm9fluXB6pvArAGyAx8z7XzXXyorEgVIWj6mOlriuDm0XowDHYz4ycNK0nE0oP3cbFnzxiQ==} + /rc-upload@4.5.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-QO3ne77DwnAPKFn0bA5qJM81QBjQi0e0NHdkvpFyY73Bea2NfITiotqJqVjHgeYPOJu5lLVR32TNGP084aSoXA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - classnames: 2.3.2 - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + '@babel/runtime': 7.23.8 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) /rc-util@4.21.1: resolution: {integrity: sha512-Z+vlkSQVc1l8O2UjR3WQ+XdWlhj5q9BMQNLk2iOBch75CqPfrJyGtcWMcnhRlNuDu0Ndtt4kLVO8JI8BrABobg==} @@ -14416,30 +14725,30 @@ packages: shallowequal: 1.1.0 dev: false - /rc-util@5.36.0(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-a4uUvT+UNHvYL+awzbN8H8zAjfduwY4KAp2wQy40wOz3NyBdo3Xhx/EAAPyDkHLoGm535jIACaMhIqExGiAjHw==} + /rc-util@5.38.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.10 - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - react-is: 16.13.1 + '@babel/runtime': 7.23.8 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-is: 18.2.0 - /rc-virtual-list@3.10.5(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-Vc89TL3JHfRlLVQXVj5Hmv0dIflgwmHDcbjt9lrZjOG3wNUDkTF5zci8kFDU/CzdmmqgKu+CUktEpT10VUKYSQ==} + /rc-virtual-list@3.11.3(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-tu5UtrMk/AXonHwHxUogdXAWynaXsrx1i6dsgg+lOo/KJSF8oBAcprh1z5J3xgnPJD5hXxTL58F8s8onokdt0Q==} engines: {node: '>=8.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 classnames: 2.3.2 - rc-resize-observer: 1.3.1(react-dom@18.1.0)(react@18.1.0) - rc-util: 5.36.0(react-dom@18.1.0)(react@18.1.0) - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0) + rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) /rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} @@ -14451,29 +14760,48 @@ packages: strip-json-comments: 2.0.1 dev: true - /react-color@2.19.3(react@18.1.0): + /react-beautiful-dnd@13.1.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==} + peerDependencies: + react: ^16.8.5 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.5 || ^17.0.0 || ^18.0.0 + dependencies: + '@babel/runtime': 7.23.8 + css-box-model: 1.2.1 + memoize-one: 5.2.1 + raf-schd: 4.0.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-redux: 7.2.9(react-dom@18.2.0)(react@18.2.0) + redux: 4.2.1 + use-memo-one: 1.1.3(react@18.2.0) + transitivePeerDependencies: + - react-native + dev: false + + /react-color@2.19.3(react@18.2.0): resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} peerDependencies: react: '*' dependencies: - '@icons/material': 0.2.4(react@18.1.0) + '@icons/material': 0.2.4(react@18.2.0) lodash: 4.17.21 lodash-es: 4.17.21 material-colors: 1.2.6 prop-types: 15.8.1 - react: 18.1.0 - reactcss: 1.2.3(react@18.1.0) + react: 18.2.0 + reactcss: 1.2.3(react@18.2.0) tinycolor2: 1.6.0 dev: false - /react-copy-to-clipboard@5.1.0(react@18.1.0): + /react-copy-to-clipboard@5.1.0(react@18.2.0): resolution: {integrity: sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==} peerDependencies: react: ^15.3.0 || 16 || 17 || 18 dependencies: copy-to-clipboard: 3.3.3 prop-types: 15.8.1 - react: 18.1.0 + react: 18.2.0 dev: true /react-csv@2.2.2: @@ -14489,13 +14817,22 @@ packages: react: 18.1.0 scheduler: 0.22.0 - /react-error-boundary@4.0.11(react@18.1.0): - resolution: {integrity: sha512-U13ul67aP5DOSPNSCWQ/eO0AQEYzEFkVljULQIjMV0KlffTAhxuDoBKdO0pb/JZ8mDhMKFZ9NZi0BmLGUiNphw==} + /react-dom@18.2.0(react@18.2.0): + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 + dependencies: + loose-envify: 1.4.0 + react: 18.2.0 + scheduler: 0.23.0 + + /react-error-boundary@4.0.12(react@18.2.0): + resolution: {integrity: sha512-kJdxdEYlb7CPC1A0SeUY38cHpjuu6UkvzKiAmqmOFL21VRfMhOcWxTCBgLVCO0VEMh9JhFNcVaXlV4/BTpiwOA==} peerDependencies: react: '>=16.13.1' dependencies: - '@babel/runtime': 7.22.10 - react: 18.1.0 + '@babel/runtime': 7.23.8 + react: 18.2.0 dev: true /react-error-overlay@6.0.9: @@ -14510,7 +14847,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.6 invariant: 2.2.4 prop-types: 15.8.1 react: 18.1.0 @@ -14518,25 +14855,39 @@ packages: react-fast-compare: 3.2.2 shallowequal: 1.1.0 - /react-intl@6.4.4(react@18.1.0)(typescript@4.9.5): - resolution: {integrity: sha512-/C9Sl/5//ohfkNG6AWlJuf4BhTXsbzyk93K62A4zRhSPANyOGpKZ+fWhN+TLfFd5YjDUHy+exU/09y0w1bO4Xw==} + /react-helmet-async@1.3.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} + peerDependencies: + react: ^16.6.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@babel/runtime': 7.23.6 + invariant: 2.2.4 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-fast-compare: 3.2.2 + shallowequal: 1.1.0 + + /react-intl@6.5.5(react@18.2.0)(typescript@4.9.5): + resolution: {integrity: sha512-cI5UKvBh4tc1zxLIziHBYGMX3dhYWDEFlvUDVN6NfT2i96zTXz/zH2AmM8+2waqgOhwkFUzd+7kK1G9q7fiC2g==} peerDependencies: react: ^16.6.0 || 17 || 18 - typescript: ^4.7 || 5 + typescript: '5' peerDependenciesMeta: typescript: optional: true dependencies: - '@formatjs/ecma402-abstract': 1.17.0 - '@formatjs/icu-messageformat-parser': 2.6.0 - '@formatjs/intl': 2.9.0(typescript@4.9.5) - '@formatjs/intl-displaynames': 6.5.0 - '@formatjs/intl-listformat': 7.4.0 - '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.2.21 + '@formatjs/ecma402-abstract': 1.18.0 + '@formatjs/icu-messageformat-parser': 2.7.3 + '@formatjs/intl': 2.9.9(typescript@4.9.5) + '@formatjs/intl-displaynames': 6.6.4 + '@formatjs/intl-listformat': 7.5.3 + '@types/hoist-non-react-statics': 3.3.5 + '@types/react': 18.2.47 hoist-non-react-statics: 3.3.2 - intl-messageformat: 10.5.0 - react: 18.1.0 + intl-messageformat: 10.5.8 + react: 18.2.0 tslib: 2.6.2 typescript: 4.9.5 dev: true @@ -14558,19 +14909,41 @@ packages: /react-merge-refs@1.1.0: resolution: {integrity: sha512-alTKsjEL0dKH/ru1Iyn7vliS2QRcBp9zZPGoWxUOvRGWPUYgjo+V01is7p04It6KhgrzhJGnIj9GgX8W4bZoCQ==} + /react-redux@7.2.9(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} + peerDependencies: + react: ^16.8.3 || ^17 || ^18 + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + dependencies: + '@babel/runtime': 7.23.8 + '@types/react-redux': 7.1.33 + hoist-non-react-statics: 3.3.2 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-is: 17.0.2 + dev: false + /react-refresh@0.14.0: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} engines: {node: '>=0.10.0'} - /react-resize-detector@7.1.2(react-dom@18.1.0)(react@18.1.0): + /react-resize-detector@7.1.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-zXnPJ2m8+6oq9Nn8zsep/orts9vQv3elrpA+R8XTcW7DVVUJ9vwDwMXaBtykAYjMnkCIaOoK9vObyR7ZgFNlOw==} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 dependencies: lodash: 4.17.21 - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: false /react-router-dom@6.3.0(react-dom@18.1.0)(react@18.1.0): @@ -14584,6 +14957,17 @@ packages: react-dom: 18.1.0(react@18.1.0) react-router: 6.3.0(react@18.1.0) + /react-router-dom@6.3.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + dependencies: + history: 5.3.0 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-router: 6.3.0(react@18.2.0) + /react-router@6.3.0(react@18.1.0): resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} peerDependencies: @@ -14592,16 +14976,24 @@ packages: history: 5.3.0 react: 18.1.0 - /react-syntax-highlighter@15.5.0(react@18.1.0): + /react-router@6.3.0(react@18.2.0): + resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} + peerDependencies: + react: '>=16.8' + dependencies: + history: 5.3.0 + react: 18.2.0 + + /react-syntax-highlighter@15.5.0(react@18.2.0): resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} peerDependencies: react: '>= 0.14.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.29.0 - react: 18.1.0 + react: 18.2.0 refractor: 3.6.0 dev: false @@ -14611,13 +15003,19 @@ packages: dependencies: loose-envify: 1.4.0 - /reactcss@1.2.3(react@18.1.0): + /react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + dependencies: + loose-envify: 1.4.0 + + /reactcss@1.2.3(react@18.2.0): resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} peerDependencies: react: '*' dependencies: lodash: 4.17.21 - react: 18.1.0 + react: 18.2.0 dev: false /read-pkg-up@7.0.1: @@ -14640,7 +15038,7 @@ packages: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: - '@types/normalize-package-data': 2.4.1 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 @@ -14649,7 +15047,7 @@ packages: resolution: {integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==} engines: {node: '>=12'} dependencies: - '@types/normalize-package-data': 2.4.1 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 3.0.3 parse-json: 5.2.0 type-fest: 1.4.0 @@ -14697,14 +15095,20 @@ packages: indent-string: 5.0.0 strip-indent: 4.0.0 - /reflect.getprototypeof@1.0.3: - resolution: {integrity: sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw==} + /redux@4.2.1: + resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} + dependencies: + '@babel/runtime': 7.23.8 + dev: false + + /reflect.getprototypeof@1.0.4: + resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 globalthis: 1.0.3 which-builtin-type: 1.1.3 @@ -14720,8 +15124,8 @@ packages: resolution: {integrity: sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==} dev: true - /regenerate-unicode-properties@10.1.0: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} + /regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -14732,30 +15136,32 @@ packages: /regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - /regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.23.8 + dev: true /regexp-tree@0.1.27: resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} hasBin: true dev: true - /regexp.prototype.flags@1.5.0: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} + dev: true /regexpu-core@5.3.2: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} @@ -14763,10 +15169,11 @@ packages: dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 + dev: true /registry-auth-token@3.4.0: resolution: {integrity: sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==} @@ -14787,6 +15194,7 @@ packages: hasBin: true dependencies: jsesc: 0.5.0 + dev: true /regl@1.7.0: resolution: {integrity: sha512-bEAtp/qrtKucxXSJkD4ebopFZYP0q1+3Vb2WECWv/T8yQEgKxDxJ7ztO285tAMaYZVR6mM1GgI6CCn8FROtL1w==} @@ -14795,7 +15203,7 @@ packages: /rehype-autolink-headings@6.1.1: resolution: {integrity: sha512-NMYzZIsHM3sA14nC5rAFuUPIOfg+DFmf9EY1YMhaNlB7+3kK/ZlE6kqPfuxr1tsJ1XWkTrMtMoyHosU70d35mA==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 extend: 3.0.2 hast-util-has-property: 2.0.1 hast-util-heading-rank: 2.1.1 @@ -14807,7 +15215,7 @@ packages: /rehype-remove-comments@5.0.0: resolution: {integrity: sha512-sfiVT+u1in19sxo9vv/SDQVbHE2mADScNrpeVsUxBFl14zOMZnfPb6l4hR+lXqe10G13UFVqv5pt8zDbCR4JYQ==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 hast-util-is-conditional-comment: 2.0.0 unified: 10.1.2 unist-util-filter: 4.0.1 @@ -14816,7 +15224,7 @@ packages: /rehype-stringify@9.0.4: resolution: {integrity: sha512-Uk5xu1YKdqobe5XpSskwPvo1XeHUUucWEQSl8hTrXt5selvca1e8K1EZ37E6YoZ4BT8BCqCdVfQW7OfHfthtVQ==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.9 hast-util-to-html: 8.0.4 unified: 10.1.2 dev: true @@ -14828,7 +15236,7 @@ packages: /remark-directive@2.0.1: resolution: {integrity: sha512-oosbsUAkU/qmUE78anLaJePnPis4ihsE7Agp0T/oqTzvTea8pOiaYEtfInU/+xMOVTS9PN5AhGOiaIVe4GD8gw==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-directive: 2.2.4 micromark-extension-directive: 2.2.1 unified: 10.1.2 @@ -14839,7 +15247,7 @@ packages: /remark-frontmatter@4.0.1: resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-frontmatter: 1.0.1 micromark-extension-frontmatter: 1.1.1 unified: 10.1.2 @@ -14848,7 +15256,7 @@ packages: /remark-gfm@3.0.1: resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-gfm: 2.0.2 micromark-extension-gfm: 2.0.3 unified: 10.1.2 @@ -14859,7 +15267,7 @@ packages: /remark-parse@10.0.2: resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 unified: 10.1.2 transitivePeerDependencies: @@ -14877,8 +15285,8 @@ packages: /remark-rehype@10.1.0: resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} dependencies: - '@types/hast': 2.3.5 - '@types/mdast': 3.0.12 + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 mdast-util-to-hast: 12.3.0 unified: 10.1.2 dev: true @@ -14987,19 +15395,19 @@ packages: resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} engines: {node: '>=10'} - /resolve@1.22.4: - resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==} + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true dependencies: - is-core-module: 2.13.0 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@2.0.0-next.4: - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + /resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} hasBin: true dependencies: - is-core-module: 2.13.0 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -15073,8 +15481,8 @@ packages: source-map: 0.7.4 yargs: 17.7.2 - /rollup@3.28.1: - resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==} + /rollup@3.29.4: + resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -15116,12 +15524,12 @@ packages: mri: 1.2.0 dev: true - /safe-array-concat@1.0.0: - resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} + /safe-array-concat@1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} engines: {node: '>=0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 isarray: 2.0.5 @@ -15131,11 +15539,12 @@ packages: /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - /safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + /safe-regex-test@1.0.2: + resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-regex: 1.1.4 /safe-regex@2.1.1: @@ -15151,17 +15560,21 @@ packages: /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - /sass@1.66.1: - resolution: {integrity: sha512-50c+zTsZOJVgFfTgwwEzkjA3/QACgdNsKueWPyAR0mRINIvLAStVQBbPg14iuqEQ74NPDbXzJARJ/O4SI1zftA==} + /sass@1.69.7: + resolution: {integrity: sha512-rzj2soDeZ8wtE2egyLXgOOHQvaC2iosZrkF6v3EUG+tBwEvhqUCzm0VP3k9gHF9LXbSrRhT5SksoI56Iw8NPnQ==} engines: {node: '>=14.0.0'} hasBin: true dependencies: chokidar: 3.5.3 - immutable: 4.3.2 + immutable: 4.3.4 source-map-js: 1.0.2 /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + dev: true + + /sax@1.3.0: + resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} /saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} @@ -15175,11 +15588,16 @@ packages: dependencies: loose-envify: 1.4.0 + /scheduler@0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + dependencies: + loose-envify: 1.4.0 + /schema-utils@3.3.0: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) @@ -15188,10 +15606,10 @@ packages: engines: {node: '>=0.10.0'} dev: false - /scroll-into-view-if-needed@3.0.10: - resolution: {integrity: sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==} + /scroll-into-view-if-needed@3.1.0: + resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==} dependencies: - compute-scroll-into-view: 3.0.3 + compute-scroll-into-view: 3.1.0 /selderee@0.11.0: resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==} @@ -15217,14 +15635,6 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - /semver@7.3.4: - resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} engines: {node: '>=10'} @@ -15232,11 +15642,28 @@ packages: dependencies: lru-cache: 6.0.0 - /serialize-javascript@6.0.1: - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} + /serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} dependencies: randombytes: 2.1.0 + /set-function-length@1.1.1: + resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + /setimmediate@1.0.5: resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} @@ -15320,9 +15747,9 @@ packages: /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - object-inspect: 1.12.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} @@ -15346,15 +15773,11 @@ packages: hasBin: true dependencies: '@types/node': 17.0.45 - '@types/sax': 1.2.4 + '@types/sax': 1.2.7 arg: 5.0.2 - sax: 1.2.4 + sax: 1.3.0 dev: true - /slash@2.0.0: - resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} - engines: {node: '>=6'} - /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -15425,7 +15848,7 @@ packages: hasBin: true dependencies: detect-indent: 7.0.1 - detect-newline: 4.0.0 + detect-newline: 4.0.1 git-hooks-list: 3.1.0 globby: 13.2.2 is-plain-obj: 4.1.0 @@ -15481,7 +15904,7 @@ packages: resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 /spdx-exceptions@2.3.0: resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} @@ -15490,10 +15913,10 @@ packages: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 - /spdx-license-ids@3.0.13: - resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} + /spdx-license-ids@3.0.16: + resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} /spdy-transport@3.0.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} @@ -15570,7 +15993,7 @@ packages: resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} engines: {node: '>= 0.4'} dependencies: - internal-slot: 1.0.5 + internal-slot: 1.0.6 /stream-browserify@2.0.2: resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==} @@ -15582,7 +16005,7 @@ packages: resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==} dependencies: end-of-stream: 1.4.4 - stream-shift: 1.0.1 + stream-shift: 1.0.2 dev: true /stream-http@2.8.3: @@ -15594,8 +16017,8 @@ packages: to-arraybuffer: 1.0.1 xtend: 4.0.2 - /stream-shift@1.0.1: - resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} + /stream-shift@1.0.2: + resolution: {integrity: sha512-rV4Bovi9xx0BFzOb/X0B2GqoIjvqPCttZdu0Wgtx2Dxkj7ETyWl9gmqJ4EutWRLvtZWm8dxE+InQZX1IryZn/w==} /strict-uri-encode@2.0.0: resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} @@ -15639,41 +16062,41 @@ packages: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - dev: true - /string.prototype.matchall@4.0.8: - resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} + /string.prototype.matchall@4.0.10: + resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 - internal-slot: 1.0.5 - regexp.prototype.flags: 1.5.0 + internal-slot: 1.0.6 + regexp.prototype.flags: 1.5.1 + set-function-name: 2.0.1 side-channel: 1.0.4 - /string.prototype.trim@1.2.7: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 - /string.prototype.trimend@1.0.6: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 - /string.prototype.trimstart@1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} @@ -15717,7 +16140,6 @@ packages: engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 - dev: true /strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} @@ -15774,47 +16196,12 @@ packages: /style-search@0.1.0: resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} - /style-to-object@0.4.2: - resolution: {integrity: sha512-1JGpfPB3lo42ZX8cuPrheZbfQ6kqPPnPHlKMyeRYtfKD+0jG+QsXgXN57O/dvJlzlB2elI6dGmrPnl5VPQFPaA==} + /style-to-object@0.4.4: + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} dependencies: inline-style-parser: 0.1.1 dev: true - /styled-components@6.0.8(react-dom@18.1.0)(react@18.1.0): - resolution: {integrity: sha512-AwI02MTWZwqjzfXgR5QcbmcSn5xVjY4N2TLjSuYnmuBGF3y7GicHz3ysbpUq2EMJP5M8/Nc22vcmF3V3WNZDFA==} - engines: {node: '>= 16'} - peerDependencies: - babel-plugin-styled-components: '>= 2' - react: '>= 16.8.0' - react-dom: '>= 16.8.0' - peerDependenciesMeta: - babel-plugin-styled-components: - optional: true - dependencies: - '@babel/cli': 7.22.15(@babel/core@7.22.10) - '@babel/core': 7.22.10 - '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-external-helpers': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.10) - '@babel/preset-env': 7.22.10(@babel/core@7.22.10) - '@babel/preset-react': 7.22.5(@babel/core@7.22.10) - '@babel/preset-typescript': 7.22.5(@babel/core@7.22.10) - '@babel/traverse': 7.22.10 - '@emotion/is-prop-valid': 1.2.1 - '@emotion/unitless': 0.8.1 - '@types/stylis': 4.2.0 - css-to-react-native: 3.2.0 - csstype: 3.1.2 - postcss: 8.4.28 - react: 18.1.0 - react-dom: 18.1.0(react@18.1.0) - shallowequal: 1.1.0 - stylis: 4.3.0 - tslib: 2.6.2 - transitivePeerDependencies: - - supports-color - /stylelint-config-css-modules@2.3.0(stylelint@13.13.1): resolution: {integrity: sha512-nSxwaJMv9wBrTAi+O4qXubyi1AR9eB36tJpY0uaFhKgEc3fwWGUzUK1Edl8AQHAoU7wmUeKtsuYjblyRP/V7rw==} peerDependencies: @@ -15823,24 +16210,24 @@ packages: stylelint: 13.13.1 dev: true - /stylelint-config-css-modules@4.3.0(stylelint@15.10.3): - resolution: {integrity: sha512-KvIvhzzjpcjHKkGSPkQCueoZJHrb6sZ6GCtrQb/J45HQTBVwJAeNYXaSZZK6ZQOC7NxJ4v5kLxpQLDiCK6zzgw==} + /stylelint-config-css-modules@4.4.0(stylelint@15.11.0): + resolution: {integrity: sha512-J93MtxPjRzs/TjwbJ5y9SQy4iIqULXwL1CF1yx2tQCJfS/VZUcDAmoGOwqlLbhHXSQtZO5XQiA75NVWUR3KDCQ==} peerDependencies: - stylelint: ^14.5.1 || ^15.0.0 + stylelint: ^14.5.1 || ^15.0.0 || ^16.0.0 dependencies: - stylelint: 15.10.3 + stylelint: 15.11.0(typescript@4.9.5) optionalDependencies: - stylelint-scss: 5.1.0(stylelint@15.10.3) + stylelint-scss: 6.0.0(stylelint@15.11.0) dev: false - /stylelint-config-idiomatic-order@9.0.0(stylelint@15.10.3): + /stylelint-config-idiomatic-order@9.0.0(stylelint@15.11.0): resolution: {integrity: sha512-+LtfPycY1Paayf1MaERyh6BzVPnZxemX5NtzdUPqi4u8hyAR7859f/4EL02+Kr9va76iX7mbYC4HendocXKJZQ==} engines: {node: '>=12'} peerDependencies: stylelint: '>=11' dependencies: - stylelint: 15.10.3 - stylelint-order: 5.0.0(stylelint@15.10.3) + stylelint: 15.11.0(typescript@4.9.5) + stylelint-order: 5.0.0(stylelint@15.11.0) dev: false /stylelint-config-prettier@8.0.2(stylelint@13.13.1): @@ -15853,22 +16240,22 @@ packages: stylelint: 13.13.1 dev: true - /stylelint-config-prettier@9.0.5(stylelint@15.10.3): + /stylelint-config-prettier@9.0.5(stylelint@15.11.0): resolution: {integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==} engines: {node: '>= 12'} hasBin: true peerDependencies: stylelint: '>= 11.x < 15' dependencies: - stylelint: 15.10.3 + stylelint: 15.11.0(typescript@4.9.5) dev: false - /stylelint-config-recommended@10.0.1(stylelint@15.10.3): + /stylelint-config-recommended@10.0.1(stylelint@15.11.0): resolution: {integrity: sha512-TQ4xQ48tW4QSlODcti7pgSRqBZcUaBzuh0jPpfiMhwJKBPkqzTIAU+IrSWL/7BgXlOM90DjB7YaNgFpx8QWhuA==} peerDependencies: stylelint: ^15.0.0 dependencies: - stylelint: 15.10.3 + stylelint: 15.11.0(typescript@4.9.5) dev: false /stylelint-config-recommended@3.0.0(stylelint@13.13.1): @@ -15903,55 +16290,57 @@ packages: stylelint: 14.16.1 stylelint-config-recommended: 7.0.0(stylelint@14.16.1) - /stylelint-config-standard@30.0.1(stylelint@15.10.3): + /stylelint-config-standard@30.0.1(stylelint@15.11.0): resolution: {integrity: sha512-NbeHOmpRQhjZh5XB1B/S4MLRWvz4xxAxeDBjzl0tY2xEcayNhLbaRGF0ZQzq+DQZLCcPpOHeS2Ru1ydbkhkmLg==} peerDependencies: stylelint: ^15.0.0 dependencies: - stylelint: 15.10.3 - stylelint-config-recommended: 10.0.1(stylelint@15.10.3) + stylelint: 15.11.0(typescript@4.9.5) + stylelint-config-recommended: 10.0.1(stylelint@15.11.0) dev: false - /stylelint-declaration-block-no-ignored-properties@2.7.0(stylelint@13.13.1): - resolution: {integrity: sha512-44SpI9+9Oc1ICuwwRfwS/3npQ2jPobDSTnwWdNgZGryGqQCp17CgEIWjCv1BgUOSzND3RqywNCNLKvO1AOxbfg==} + /stylelint-declaration-block-no-ignored-properties@2.8.0(stylelint@13.13.1): + resolution: {integrity: sha512-Ws8Cav7Y+SPN0JsV407LrnNXWOrqGjxShf+37GBtnU/C58Syve9c0+I/xpLcFOosST3ternykn3Lp77f3ITnFw==} engines: {node: '>=6'} peerDependencies: - stylelint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 + stylelint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: stylelint: 13.13.1 dev: true - /stylelint-order@5.0.0(stylelint@15.10.3): + /stylelint-order@5.0.0(stylelint@15.11.0): resolution: {integrity: sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==} peerDependencies: stylelint: ^14.0.0 dependencies: - postcss: 8.4.28 - postcss-sorting: 7.0.1(postcss@8.4.28) - stylelint: 15.10.3 + postcss: 8.4.33 + postcss-sorting: 7.0.1(postcss@8.4.33) + stylelint: 15.11.0(typescript@4.9.5) dev: false - /stylelint-order@6.0.3(stylelint@15.10.3): - resolution: {integrity: sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w==} + /stylelint-order@6.0.4(stylelint@15.11.0): + resolution: {integrity: sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA==} peerDependencies: - stylelint: ^14.0.0 || ^15.0.0 + stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1 dependencies: - postcss: 8.4.28 - postcss-sorting: 8.0.2(postcss@8.4.28) - stylelint: 15.10.3 + postcss: 8.4.33 + postcss-sorting: 8.0.2(postcss@8.4.33) + stylelint: 15.11.0(typescript@4.9.5) dev: false - /stylelint-scss@5.1.0(stylelint@15.10.3): - resolution: {integrity: sha512-E+KlQFXv1Euha43qw3q+wKBSli557wxbbo6/39DWhRNXlUa9Cz+FYrcgz+PT6ag0l6UisCYjAGCNhoSl4FcwlA==} + /stylelint-scss@6.0.0(stylelint@15.11.0): + resolution: {integrity: sha512-N1xV/Ef5PNRQQt9E45unzGvBUN1KZxCI8B4FgN/pMfmyRYbZGVN4y9qWlvOMdScU17c8VVCnjIHTVn38Bb6qSA==} + engines: {node: '>=18.12.0'} requiresBuild: true peerDependencies: - stylelint: ^14.5.1 || ^15.0.0 + stylelint: ^16.0.2 dependencies: + known-css-properties: 0.29.0 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 - stylelint: 15.10.3 + stylelint: 15.11.0(typescript@4.9.5) dev: false optional: true @@ -15968,7 +16357,7 @@ packages: cosmiconfig: 7.1.0 debug: 4.3.4 execall: 2.0.0 - fast-glob: 3.3.1 + fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 file-entry-cache: 6.0.1 get-stdin: 8.0.0 @@ -15976,7 +16365,7 @@ packages: globby: 11.1.0 globjoin: 0.1.4 html-tags: 3.3.1 - ignore: 5.2.4 + ignore: 5.3.0 import-lazy: 4.0.0 imurmurhash: 0.1.4 known-css-properties: 0.21.0 @@ -15994,7 +16383,7 @@ packages: postcss-safe-parser: 4.0.2 postcss-sass: 0.4.4 postcss-scss: 2.1.1 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.15 postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39) postcss-value-parser: 4.2.0 resolve-from: 5.0.0 @@ -16006,7 +16395,7 @@ packages: sugarss: 2.0.0 svg-tags: 1.0.0 table: 6.8.1 - v8-compile-cache: 2.3.0 + v8-compile-cache: 2.4.0 write-file-atomic: 3.0.3 transitivePeerDependencies: - postcss-jsx @@ -16019,20 +16408,20 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.15) balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 7.1.0 - css-functions-list: 3.2.0 + css-functions-list: 3.2.1 debug: 4.3.4 - fast-glob: 3.3.1 + fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 file-entry-cache: 6.0.1 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 html-tags: 3.3.1 - ignore: 5.2.4 + ignore: 5.3.0 import-lazy: 4.0.0 imurmurhash: 0.1.4 is-plain-object: 5.0.0 @@ -16042,11 +16431,11 @@ packages: micromatch: 4.0.5 normalize-path: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.28 + postcss: 8.4.33 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0(postcss@8.4.28) - postcss-selector-parser: 6.0.13 + postcss-safe-parser: 6.0.0(postcss@8.4.33) + postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 @@ -16055,47 +16444,47 @@ packages: supports-hyperlinks: 2.3.0 svg-tags: 1.0.0 table: 6.8.1 - v8-compile-cache: 2.3.0 + v8-compile-cache: 2.4.0 write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color - /stylelint@15.10.3: - resolution: {integrity: sha512-aBQMMxYvFzJJwkmg+BUUg3YfPyeuCuKo2f+LOw7yYbU8AZMblibwzp9OV4srHVeQldxvSFdz0/Xu8blq2AesiA==} + /stylelint@15.11.0(typescript@4.9.5): + resolution: {integrity: sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==} engines: {node: ^14.13.1 || >=16.0.0} hasBin: true dependencies: - '@csstools/css-parser-algorithms': 2.3.1(@csstools/css-tokenizer@2.2.0) - '@csstools/css-tokenizer': 2.2.0 - '@csstools/media-query-list-parser': 2.1.4(@csstools/css-parser-algorithms@2.3.1)(@csstools/css-tokenizer@2.2.0) - '@csstools/selector-specificity': 3.0.0(postcss-selector-parser@6.0.13) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/media-query-list-parser': 2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.15) balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 8.2.0 - css-functions-list: 3.2.0 + cosmiconfig: 8.3.6(typescript@4.9.5) + css-functions-list: 3.2.1 css-tree: 2.3.1 debug: 4.3.4 - fast-glob: 3.3.1 + fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 - file-entry-cache: 6.0.1 + file-entry-cache: 7.0.2 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 html-tags: 3.3.1 - ignore: 5.2.4 + ignore: 5.3.0 import-lazy: 4.0.0 imurmurhash: 0.1.4 is-plain-object: 5.0.0 - known-css-properties: 0.28.0 + known-css-properties: 0.29.0 mathml-tag-names: 2.1.3 meow: 10.1.5 micromatch: 4.0.5 normalize-path: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.28 + postcss: 8.4.33 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0(postcss@8.4.28) - postcss-selector-parser: 6.0.13 + postcss-safe-parser: 6.0.0(postcss@8.4.33) + postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 @@ -16107,18 +16496,19 @@ packages: write-file-atomic: 5.0.1 transitivePeerDependencies: - supports-color + - typescript - /stylis@4.3.0: - resolution: {integrity: sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==} + /stylis@4.3.1: + resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==} - /sucrase@3.34.0: - resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} - engines: {node: '>=8'} + /sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: '@jridgewell/gen-mapping': 0.3.3 commander: 4.1.1 - glob: 7.1.6 + glob: 10.3.10 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -16222,7 +16612,7 @@ packages: hasBin: true dependencies: call-me-maybe: 1.0.2 - node-fetch: 2.6.13 + node-fetch: 2.7.0 node-fetch-h2: 2.3.0 node-readfiles: 0.2.0 oas-kit-common: 1.0.8 @@ -16247,6 +16637,9 @@ packages: '@pkgr/utils': 2.4.2 tslib: 2.6.2 + /systemjs@6.14.3: + resolution: {integrity: sha512-hQv45irdhXudAOr8r6SVSpJSGtogdGZUbJBRKCE5nsIS7tsxxvnIHqT4IOPWj+P+HcSzeWzHlGCGpmhPDIKe+w==} + /table@6.8.1: resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} engines: {node: '>=10.0.0'} @@ -16301,8 +16694,8 @@ packages: execa: 0.7.0 dev: true - /terser-webpack-plugin@5.3.9(esbuild@0.17.19)(webpack@5.88.2): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} + /terser-webpack-plugin@5.3.10(esbuild@0.17.19)(webpack@5.89.0): + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} engines: {node: '>= 10.13.0'} peerDependencies: '@swc/core': '*' @@ -16317,21 +16710,21 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/trace-mapping': 0.3.21 esbuild: 0.17.19 jest-worker: 27.5.1 schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.19.2 - webpack: 5.88.2(esbuild@0.17.19) + serialize-javascript: 6.0.2 + terser: 5.26.0 + webpack: 5.89.0(esbuild@0.17.19) - /terser@5.19.2: - resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==} + /terser@5.26.0: + resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==} engines: {node: '>=10'} hasBin: true dependencies: '@jridgewell/source-map': 0.3.5 - acorn: 8.10.0 + acorn: 8.11.3 commander: 2.20.3 source-map-support: 0.5.21 @@ -16411,6 +16804,10 @@ packages: next-tick: 1.1.0 dev: true + /tiny-invariant@1.3.1: + resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} + dev: false + /tiny-pinyin@1.3.2: resolution: {integrity: sha512-uHNGu4evFt/8eNLldazeAM1M8JrMc1jshhJJfVRARTN3yT8HEEibofeQ7QETWQ5ISBjd6fKtTVBCC/+mGS6FpA==} dev: true @@ -16465,7 +16862,7 @@ packages: engines: {node: '>=6'} dependencies: psl: 1.9.0 - punycode: 2.3.0 + punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 dev: false @@ -16477,13 +16874,13 @@ packages: /tr46@1.0.1: resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} dependencies: - punycode: 2.3.0 + punycode: 2.3.1 /tr46@3.0.0: resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} engines: {node: '>=12'} dependencies: - punycode: 2.3.0 + punycode: 2.3.1 dev: false /transformation-matrix@2.15.0: @@ -16517,7 +16914,7 @@ packages: /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-jest@29.1.1(@babel/core@7.22.10)(esbuild@0.17.19)(jest@29.6.3)(typescript@4.9.5): + /ts-jest@29.1.1(@babel/core@7.23.7)(esbuild@0.17.19)(jest@29.7.0)(typescript@4.9.5): resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -16538,12 +16935,12 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.7 bs-logger: 0.2.6 esbuild: 0.17.19 fast-json-stable-stringify: 2.1.0 - jest: 29.6.3(@types/node@20.4.7)(ts-node@10.9.1) - jest-util: 29.6.3 + jest: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2) + jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -16552,8 +16949,8 @@ packages: yargs-parser: 21.1.1 dev: false - /ts-node@10.9.1(@types/node@20.4.7)(typescript@4.9.5): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + /ts-node@10.9.2(@types/node@20.5.1)(typescript@4.9.5): + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -16571,9 +16968,9 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.4.7 - acorn: 8.10.0 - acorn-walk: 8.2.0 + '@types/node': 20.5.1 + acorn: 8.11.3 + acorn-walk: 8.3.2 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 @@ -16586,8 +16983,8 @@ packages: resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} dev: true - /tsconfig-paths@3.14.2: - resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} + /tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} dependencies: '@types/json5': 0.0.29 json5: 1.0.2 @@ -16610,7 +17007,7 @@ packages: /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - /tsup@6.7.0(@swc/core@1.3.78)(postcss@8.4.28)(ts-node@10.9.1)(typescript@4.9.5): + /tsup@6.7.0(@swc/core@1.3.102)(postcss@8.4.33)(ts-node@10.9.2)(typescript@4.9.5): resolution: {integrity: sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ==} engines: {node: '>=14.18'} hasBin: true @@ -16626,8 +17023,8 @@ packages: typescript: optional: true dependencies: - '@swc/core': 1.3.78 - bundle-require: 4.0.1(esbuild@0.17.19) + '@swc/core': 1.3.102 + bundle-require: 4.0.2(esbuild@0.17.19) cac: 6.7.14 chokidar: 3.5.3 debug: 4.3.4 @@ -16635,12 +17032,12 @@ packages: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss: 8.4.28 - postcss-load-config: 3.1.4(postcss@8.4.28)(ts-node@10.9.1) + postcss: 8.4.33 + postcss-load-config: 3.1.4(postcss@8.4.33)(ts-node@10.9.2) resolve-from: 5.0.0 - rollup: 3.28.1 + rollup: 3.29.4 source-map: 0.8.0-beta.0 - sucrase: 3.34.0 + sucrase: 3.35.0 tree-kill: 1.2.2 typescript: 4.9.5 transitivePeerDependencies: @@ -16656,13 +17053,13 @@ packages: tslib: 1.14.1 typescript: 4.9.5 - /tsx@3.12.7: - resolution: {integrity: sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw==} + /tsx@3.14.0: + resolution: {integrity: sha512-xHtFaKtHxM9LOklMmJdI3BEnQq/D5F73Of2E1GDrITi9sgoVkvIsrQUTY1G8FlmGtA+awCI4EBlTRRYxkL2sRg==} hasBin: true dependencies: - '@esbuild-kit/cjs-loader': 2.4.2 - '@esbuild-kit/core-utils': 3.1.0 - '@esbuild-kit/esm-loader': 2.5.5 + esbuild: 0.18.20 + get-tsconfig: 4.7.2 + source-map-support: 0.5.21 optionalDependencies: fsevents: 2.3.3 @@ -16715,15 +17112,15 @@ packages: resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-typed-array: 1.1.12 /typed-array-byte-length@1.0.0: resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 @@ -16733,7 +17130,7 @@ packages: engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 @@ -16741,7 +17138,7 @@ packages: /typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 is-typed-array: 1.1.12 @@ -16755,8 +17152,8 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /types-ramda@0.29.4: - resolution: {integrity: sha512-XO/820iRsCDwqLjE8XE+b57cVGPyk1h+U9lBGpDWvbEky+NQChvHVwaKM05WnW1c5z3EVQh8NhXFmh2E/1YazQ==} + /types-ramda@0.29.6: + resolution: {integrity: sha512-VJoOk1uYNh9ZguGd3eZvqkdhD4hTGtnjRBUx5Zc0U9ftmnCgiWcSj/lsahzKunbiwRje1MxxNkEy1UdcXRCpYw==} dependencies: ts-toolbelt: 9.6.0 dev: true @@ -16766,8 +17163,8 @@ packages: engines: {node: '>=4.2.0'} hasBin: true - /ua-parser-js@0.7.35: - resolution: {integrity: sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==} + /ua-parser-js@0.7.37: + resolution: {integrity: sha512-xV8kqRKM+jhMvcHWUKthV9fNebIzrNy//2O9ZwWcfiBFR5f25XVZPLlEajk/sf3Ra15V92isyQqnIEXRDaZWEA==} dev: false /umi-request@1.4.0: @@ -16777,22 +17174,22 @@ packages: qs: 6.11.2 dev: false - /umi@4.0.76(@babel/core@7.22.10)(@types/node@20.4.7)(@types/react@18.2.21)(eslint@8.47.0)(jest@29.6.3)(postcss@8.4.28)(prettier@2.8.8)(react-dom@18.1.0)(react@18.1.0)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.88.2): - resolution: {integrity: sha512-lXuksCa7PT0fJeW6974Eni3FRrnzjy99xz+2VwcWNwzN8rSnSTulC/E8ilbFk2Zf5yPZ0xOrX26tKvCyo86xgA==} + /umi@4.1.0(@babel/core@7.23.7)(@types/node@20.5.1)(@types/react@18.2.47)(eslint@8.56.0)(jest@29.7.0)(prettier@2.8.8)(react-dom@18.2.0)(react@18.2.0)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.89.0): + resolution: {integrity: sha512-qNvYmZuXPP05OihSyR97IbHEpktHN1AGfMyxFeZtnTHZfSmaft36pLfH14PUXpFpUcAL5naiUuD0wcXzU3K+ag==} engines: {node: '>=14'} hasBin: true dependencies: - '@babel/runtime': 7.21.0 - '@umijs/bundler-utils': 4.0.76 - '@umijs/bundler-webpack': 4.0.76(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2) - '@umijs/core': 4.0.76 - '@umijs/lint': 4.0.76(eslint@8.47.0)(jest@29.6.3)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5) - '@umijs/preset-umi': 4.0.76(@types/node@20.4.7)(@types/react@18.2.21)(postcss@8.4.28)(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2) - '@umijs/renderer-react': 4.0.76(react-dom@18.1.0)(react@18.1.0) - '@umijs/server': 4.0.76 - '@umijs/test': 4.0.76(@babel/core@7.22.10) - '@umijs/utils': 4.0.76 - prettier-plugin-organize-imports: 3.2.3(prettier@2.8.8)(typescript@4.9.5) + '@babel/runtime': 7.23.6 + '@umijs/bundler-utils': 4.1.0 + '@umijs/bundler-webpack': 4.1.0(typescript@4.9.5)(webpack@5.89.0) + '@umijs/core': 4.1.0 + '@umijs/lint': 4.1.0(eslint@8.56.0)(jest@29.7.0)(stylelint@14.16.1)(typescript@4.9.5) + '@umijs/preset-umi': 4.1.0(@types/node@20.5.1)(@types/react@18.2.47)(typescript@4.9.5)(webpack@5.89.0) + '@umijs/renderer-react': 4.1.0(react-dom@18.2.0)(react@18.2.0) + '@umijs/server': 4.1.0 + '@umijs/test': 4.1.0(@babel/core@7.23.7) + '@umijs/utils': 4.1.0 + prettier-plugin-organize-imports: 3.2.4(prettier@2.8.8)(typescript@4.9.5) prettier-plugin-packagejson: 2.4.3(prettier@2.8.8) transitivePeerDependencies: - '@babel/core' @@ -16803,7 +17200,6 @@ packages: - '@volar/vue-typescript' - eslint - jest - - postcss - postcss-html - postcss-jsx - postcss-less @@ -16815,7 +17211,6 @@ packages: - rollup - sass - sockjs-client - - styled-components - stylelint - stylus - sugarss @@ -16829,22 +17224,22 @@ packages: - webpack-plugin-serve dev: false - /umi@4.0.76(@babel/core@7.22.10)(@types/node@20.4.7)(eslint@8.47.0)(jest@29.6.3)(postcss@8.4.28)(prettier@2.8.8)(react-dom@18.1.0)(react@18.1.0)(sass@1.66.1)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.88.2): - resolution: {integrity: sha512-lXuksCa7PT0fJeW6974Eni3FRrnzjy99xz+2VwcWNwzN8rSnSTulC/E8ilbFk2Zf5yPZ0xOrX26tKvCyo86xgA==} + /umi@4.1.0(@babel/core@7.23.7)(@types/node@20.5.1)(eslint@8.56.0)(jest@29.7.0)(prettier@2.8.8)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.7)(stylelint@14.16.1)(typescript@4.9.5)(webpack@5.89.0): + resolution: {integrity: sha512-qNvYmZuXPP05OihSyR97IbHEpktHN1AGfMyxFeZtnTHZfSmaft36pLfH14PUXpFpUcAL5naiUuD0wcXzU3K+ag==} engines: {node: '>=14'} hasBin: true dependencies: - '@babel/runtime': 7.21.0 - '@umijs/bundler-utils': 4.0.76 - '@umijs/bundler-webpack': 4.0.76(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2) - '@umijs/core': 4.0.76 - '@umijs/lint': 4.0.76(eslint@8.47.0)(jest@29.6.3)(styled-components@6.0.8)(stylelint@14.16.1)(typescript@4.9.5) - '@umijs/preset-umi': 4.0.76(@types/node@20.4.7)(postcss@8.4.28)(sass@1.66.1)(styled-components@6.0.8)(typescript@4.9.5)(webpack@5.88.2) - '@umijs/renderer-react': 4.0.76(react-dom@18.1.0)(react@18.1.0) - '@umijs/server': 4.0.76 - '@umijs/test': 4.0.76(@babel/core@7.22.10) - '@umijs/utils': 4.0.76 - prettier-plugin-organize-imports: 3.2.3(prettier@2.8.8)(typescript@4.9.5) + '@babel/runtime': 7.23.6 + '@umijs/bundler-utils': 4.1.0 + '@umijs/bundler-webpack': 4.1.0(typescript@4.9.5)(webpack@5.89.0) + '@umijs/core': 4.1.0 + '@umijs/lint': 4.1.0(eslint@8.56.0)(jest@29.7.0)(stylelint@14.16.1)(typescript@4.9.5) + '@umijs/preset-umi': 4.1.0(@types/node@20.5.1)(sass@1.69.7)(typescript@4.9.5)(webpack@5.89.0) + '@umijs/renderer-react': 4.1.0(react-dom@18.2.0)(react@18.2.0) + '@umijs/server': 4.1.0 + '@umijs/test': 4.1.0(@babel/core@7.23.7) + '@umijs/utils': 4.1.0 + prettier-plugin-organize-imports: 3.2.4(prettier@2.8.8)(typescript@4.9.5) prettier-plugin-packagejson: 2.4.3(prettier@2.8.8) transitivePeerDependencies: - '@babel/core' @@ -16855,7 +17250,6 @@ packages: - '@volar/vue-typescript' - eslint - jest - - postcss - postcss-html - postcss-jsx - postcss-less @@ -16867,7 +17261,6 @@ packages: - rollup - sass - sockjs-client - - styled-components - stylelint - stylus - sugarss @@ -16884,17 +17277,21 @@ packages: /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 + /undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + /unfetch@5.0.0: resolution: {integrity: sha512-3xM2c89siXg0nHvlmYsQ2zkLASvVMBisZm5lF3gFDqfF2xonNStDJyMpvaOBe0a1Edxmqrf2E0HBdmy9QyZaeg==} /unicode-canonical-property-names-ecmascript@2.0.0: resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} engines: {node: '>=4'} + dev: true /unicode-match-property-ecmascript@2.0.0: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} @@ -16902,19 +17299,22 @@ packages: dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 + dev: true /unicode-match-property-value-ecmascript@2.1.0: resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} engines: {node: '>=4'} + dev: true /unicode-property-aliases-ecmascript@2.1.0: resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} engines: {node: '>=4'} + dev: true /unified@10.1.2: resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 bail: 2.0.2 extend: 3.0.2 is-buffer: 2.0.5 @@ -16926,7 +17326,7 @@ packages: /unified@9.2.2: resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -16957,7 +17357,7 @@ packages: /unist-util-filter@4.0.1: resolution: {integrity: sha512-RynicUM/vbOSTSiUK+BnaK9XMfmQUh6gyi7L6taNgc7FIf84GukXVV3ucGzEN/PhUUkdP5hb1MmXc+3cvPUm5Q==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 dev: true @@ -16979,38 +17379,38 @@ packages: /unist-util-is@5.2.1: resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 dev: true /unist-util-position@4.0.4: resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 dev: true /unist-util-stringify-position@2.0.3: resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 dev: true /unist-util-stringify-position@3.0.3: resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 dev: true /unist-util-visit-parents@5.1.3: resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 dev: true /unist-util-visit@4.1.2: resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 dev: true @@ -17025,8 +17425,8 @@ packages: engines: {node: '>= 4.0.0'} dev: false - /universalify@2.0.0: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + /universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} /unquote@1.1.1: @@ -17050,13 +17450,13 @@ packages: engines: {node: '>=4'} dev: true - /update-browserslist-db@1.0.11(browserslist@4.21.10): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} + /update-browserslist-db@1.0.13(browserslist@4.22.2): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.10 + browserslist: 4.22.2 escalade: 3.1.1 picocolors: 1.0.0 @@ -17079,7 +17479,7 @@ packages: /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: - punycode: 2.3.0 + punycode: 2.3.1 /url-parse-lax@1.0.0: resolution: {integrity: sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==} @@ -17095,13 +17495,13 @@ packages: requires-port: 1.0.0 dev: false - /url@0.11.1: - resolution: {integrity: sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==} + /url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} dependencies: punycode: 1.4.1 qs: 6.11.2 - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.21)(react@18.1.0): + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.47)(react@18.1.0): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -17110,15 +17510,23 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.47 react: 18.1.0 - /use-sync-external-store@1.2.0(react@18.1.0): + /use-memo-one@1.1.3(react@18.2.0): + resolution: {integrity: sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + + /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 dependencies: - react: 18.1.0 + react: 18.2.0 dev: false /util-deprecate@1.0.2: @@ -17127,16 +17535,16 @@ packages: /util.promisify@1.0.1: resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.3 has-symbols: 1.0.3 - object.getownpropertydescriptors: 2.1.6 + object.getownpropertydescriptors: 2.1.7 dev: true - /util@0.10.3: - resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==} + /util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} dependencies: - inherits: 2.0.1 + inherits: 2.0.3 /util@0.11.1: resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==} @@ -17172,14 +17580,18 @@ packages: /v8-compile-cache@2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true - /v8-to-istanbul@9.1.0: - resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==} + /v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + + /v8-to-istanbul@9.2.0: + resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.19 - '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.9.0 + '@jridgewell/trace-mapping': 0.3.21 + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 2.0.0 /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} @@ -17193,8 +17605,8 @@ packages: builtins: 1.0.3 dev: true - /valtio@1.11.2(@types/react@18.2.21)(react@18.1.0): - resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==} + /valtio@1.13.0(@types/react@18.2.47)(react@18.2.0): + resolution: {integrity: sha512-s2VkxxFyaJwjpIheJonRa/34HWS1EpsEjw9OW9l3j8G4cbIw7lruspOjyv+z2o4BrGx351BH+VWb8sZHkrlyYA==} engines: {node: '>=12.20.0'} peerDependencies: '@types/react': '>=16.8' @@ -17205,10 +17617,11 @@ packages: react: optional: true dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.47 + derive-valtio: 0.1.0(valtio@1.13.0) proxy-compare: 2.5.1 - react: 18.1.0 - use-sync-external-store: 1.2.0(react@18.1.0) + react: 18.2.0 + use-sync-external-store: 1.2.0(react@18.2.0) dev: false /vary@1.1.2: @@ -17218,28 +17631,28 @@ packages: /vfile-location@4.1.0: resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 vfile: 5.3.7 dev: true /vfile-message@2.0.4: resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 unist-util-stringify-position: 2.0.3 dev: true /vfile-message@3.1.4: resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 unist-util-stringify-position: 3.0.3 dev: true /vfile@4.2.1: resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 @@ -17248,13 +17661,13 @@ packages: /vfile@5.3.7: resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 dev: true - /vite@4.3.1(@types/node@20.4.7)(less@4.1.3)(sass@1.66.1): + /vite@4.3.1(@types/node@20.5.1)(less@4.1.3)(sass@1.69.7): resolution: {integrity: sha512-EPmfPLAI79Z/RofuMvkIS0Yr091T2ReUoXQqc5ppBX/sjFRhHKiPPF/R46cTdoci/XgeQpB23diiJxq5w30vdg==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -17279,12 +17692,12 @@ packages: terser: optional: true dependencies: - '@types/node': 20.4.7 + '@types/node': 20.5.1 esbuild: 0.17.19 less: 4.1.3 - postcss: 8.4.28 - rollup: 3.28.1 - sass: 1.66.1 + postcss: 8.4.33 + rollup: 3.29.4 + sass: 1.69.7 optionalDependencies: fsevents: 2.3.3 @@ -17319,8 +17732,8 @@ packages: resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} dev: true - /web-streams-polyfill@3.2.1: - resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} + /web-streams-polyfill@3.3.2: + resolution: {integrity: sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==} engines: {node: '>= 8'} /webidl-conversions@3.0.1: @@ -17339,8 +17752,8 @@ packages: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} engines: {node: '>=10.13.0'} - /webpack@5.88.2(esbuild@0.17.19): - resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} + /webpack@5.89.0(esbuild@0.17.19): + resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -17349,17 +17762,17 @@ packages: webpack-cli: optional: true dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 1.0.1 + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.5 '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/wasm-edit': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.21.10 + acorn: 8.11.3 + acorn-import-assertions: 1.9.0(acorn@8.11.3) + browserslist: 4.22.2 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.1 + es-module-lexer: 1.4.1 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -17370,7 +17783,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(esbuild@0.17.19)(webpack@5.88.2) + terser-webpack-plugin: 5.3.10(esbuild@0.17.19)(webpack@5.89.0) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -17385,8 +17798,8 @@ packages: iconv-lite: 0.6.3 dev: false - /whatwg-fetch@3.6.17: - resolution: {integrity: sha512-c4ghIvG6th0eudYwKZY5keb81wtFz9/WeAHAoy8+r18kcWlitUIrmGFQ2rWEl4UCKUilD3zCLHOIPheHx5ypRQ==} + /whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} dev: false /whatwg-mimetype@3.0.0: @@ -17429,7 +17842,7 @@ packages: resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} engines: {node: '>= 0.4'} dependencies: - function.prototype.name: 1.1.5 + function.prototype.name: 1.1.6 has-tostringtag: 1.0.0 is-async-function: 2.0.0 is-date-object: 1.0.5 @@ -17440,7 +17853,7 @@ packages: isarray: 2.0.5 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 /which-collection@1.0.1: resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} @@ -17450,12 +17863,12 @@ packages: is-weakmap: 2.0.1 is-weakset: 2.0.2 - /which-typed-array@1.1.11: - resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} + /which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 @@ -17495,7 +17908,6 @@ packages: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - dev: true /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} @@ -17531,8 +17943,8 @@ packages: imurmurhash: 0.1.4 signal-exit: 4.1.0 - /ws@8.13.0: - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} + /ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1