+
@@ -340,6 +419,13 @@ export const Navigationv3: React.FunctionComponent = ({
'introduction',
)
}
+ tabIndex={0}
+ onKeyDown={(event) => {
+ if (event.key === 'Enter' || event.key === ' ') navigationSvc.scrollTo(
+ '/info',
+ 'introduction',
+ );
+ }}
>
Information
@@ -388,4 +474,4 @@ export const Navigationv3: React.FunctionComponent = ({
);
-};
\ No newline at end of file
+};
diff --git a/apps/studio/src/components/Popovers/SurveyPopover.tsx b/apps/studio/src/components/Popovers/SurveyPopover.tsx
index 0e5fe76cb..09ea423c2 100644
--- a/apps/studio/src/components/Popovers/SurveyPopover.tsx
+++ b/apps/studio/src/components/Popovers/SurveyPopover.tsx
@@ -1,4 +1,4 @@
-import type { FunctionComponent } from 'react';
+import { FunctionComponent } from 'react';
interface SurveyPopoverProps {}
diff --git a/apps/studio-next/src/components/Preloader.tsx b/apps/studio/src/components/Preloader.tsx
similarity index 100%
rename from apps/studio-next/src/components/Preloader.tsx
rename to apps/studio/src/components/Preloader.tsx
diff --git a/apps/studio/src/components/Sidebar.tsx b/apps/studio/src/components/Sidebar.tsx
index d3ec62acf..ef83bbfdb 100644
--- a/apps/studio/src/components/Sidebar.tsx
+++ b/apps/studio/src/components/Sidebar.tsx
@@ -1,14 +1,14 @@
-import { VscListSelection, VscCode, VscOpenPreview, VscGraph, VscNewFile, VscSettingsGear,VscPlayCircle } from 'react-icons/vsc';
+import { VscListSelection, VscCode, VscOpenPreview, VscGraph, VscNewFile, VscSettingsGear, VscPlayCircle } from 'react-icons/vsc';
import { show as showModal } from '@ebay/nice-modal-react';
import { Tooltip } from './common';
import { SettingsModal, ConfirmNewFileModal } from './Modals';
-import { usePanelsState, panelsState, useDocumentsState } from '../state';
+import { usePanelsState, panelsState, useDocumentsState } from '@/state';
import type { FunctionComponent, ReactNode } from 'react';
-import type { PanelsState } from '../state/panels.state';
-import { driverObj } from '../helpers/driver';
+import type { PanelsState } from '@/state/panels.state';
+import { driverObj } from '@/helpers/driver';
function updateState(panelName: keyof PanelsState['show'], type?: PanelsState['secondaryPanelType']) {
const settingsState = panelsState.getState();
@@ -47,6 +47,7 @@ interface NavItem {
icon: ReactNode;
tooltip: ReactNode;
enabled: boolean;
+ dataTest: string;
}
interface SidebarProps {}
@@ -54,8 +55,8 @@ interface SidebarProps {}
export const Sidebar: FunctionComponent
= () => {
const { show, secondaryPanelType } = usePanelsState();
const document = useDocumentsState(state => state.documents['asyncapi']?.document) || null;
- const isV3 = document?.version() === '3.0.0';
-
+ const isV3 = document?.version().startsWith('3.');
+
if (show.activityBar === false) {
return null;
}
@@ -69,7 +70,8 @@ export const Sidebar: FunctionComponent = () => {
onClick: () => updateState('primarySidebar'),
icon: ,
tooltip: 'Navigation',
- enabled: true
+ enabled: true,
+ dataTest: 'button-navigation',
},
// editor
{
@@ -79,27 +81,30 @@ export const Sidebar: FunctionComponent = () => {
onClick: () => updateState('primaryPanel'),
icon: ,
tooltip: 'Editor',
- enabled: true
+ enabled: true,
+ dataTest: 'button-editor',
},
// template
{
name: 'template',
- title: 'Template',
+ title: 'Template preview',
isActive: show.secondaryPanel && secondaryPanelType === 'template',
onClick: () => updateState('secondaryPanel', 'template'),
icon: ,
- tooltip: 'HTML preview',
- enabled: true
+ tooltip: 'Template preview',
+ enabled: true,
+ dataTest: 'button-template-preview',
},
// visuliser
{
name: 'visualiser',
- title: 'Visualiser',
+ title: 'Blocks visualiser',
isActive: show.secondaryPanel && secondaryPanelType === 'visualiser',
onClick: () => updateState('secondaryPanel', 'visualiser'),
icon: ,
tooltip: 'Blocks visualiser',
- enabled: !isV3
+ enabled: !isV3,
+ dataTest: 'button-blocks-visualiser',
},
// newFile
{
@@ -109,7 +114,8 @@ export const Sidebar: FunctionComponent = () => {
onClick: () => showModal(ConfirmNewFileModal),
icon: ,
tooltip: 'New file',
- enabled: true
+ enabled: true,
+ dataTest: 'button-new-file',
},
];
@@ -121,15 +127,15 @@ export const Sidebar: FunctionComponent = () => {
};
return (
-
+
{actualVersion !== latestVersion && document.valid === true && (
-
+
{
+ if (event.key === 'Enter' || event.key === ' ') onNonLatestClick(event);
+ }}>
diff --git a/apps/studio/src/components/Terminal/TerminalTabs.tsx b/apps/studio/src/components/Terminal/TerminalTabs.tsx
index 6130c91c1..47296a5a7 100644
--- a/apps/studio/src/components/Terminal/TerminalTabs.tsx
+++ b/apps/studio/src/components/Terminal/TerminalTabs.tsx
@@ -14,6 +14,33 @@ interface TerminalTabsProps {
active?: string;
}
+const onTerminalTabClickHandler = (e: {currentTarget: {parentElement: any}}) => {
+ const clientRects = e.currentTarget.parentElement?.parentElement?.getClientRects()[0];
+ if (!clientRects) return;
+
+ const height = clientRects.height;
+ const calc160px = 'calc(100% - 160px)';
+ const calc36px = 'calc(100% - 36px)';
+
+ const prevHeight = otherState.getState().editorHeight;
+ const newHeight =
+ height < 50 ? calc160px : calc36px;
+ if (
+ prevHeight === calc160px &&
+ newHeight === calc160px
+ ) {
+ return 'calc(100% - 161px)';
+ }
+ if (
+ prevHeight === calc36px &&
+ newHeight === calc36px
+ ) {
+ return 'calc(100% - 37px)';
+ }
+
+ otherState.setState({ editorHeight: newHeight });
+}
+
export const TerminalTabs: React.FunctionComponent = ({
tabs = [],
active = 0,
@@ -29,32 +56,9 @@ export const TerminalTabs: React.FunctionComponent = ({
{
- const clientRects = e.currentTarget.parentElement?.parentElement?.getClientRects()[0];
- if (!clientRects) return;
-
- const height = clientRects.height;
- const calc160px = 'calc(100% - 160px)';
- const calc36px = 'calc(100% - 36px)';
-
- const prevHeight = otherState.getState().editorHeight;
- const newHeight =
- height < 50 ? calc160px : calc36px;
- if (
- prevHeight === calc160px &&
- newHeight === calc160px
- ) {
- return 'calc(100% - 161px)';
- }
- if (
- prevHeight === calc36px &&
- newHeight === calc36px
- ) {
- return 'calc(100% - 37px)';
- }
-
- otherState.setState({ editorHeight: newHeight });
- }}
+ onClick={onTerminalTabClickHandler}
+ tabIndex={0}
+ onKeyDown={onTerminalTabClickHandler}
>
{!isV3 && tabs.map(tab => (
@@ -62,6 +66,8 @@ export const TerminalTabs: React.FunctionComponent = ({
key={tab.name}
className="px-2 cursor-pointer"
onClick={() => setActiveTab(tab.name)}
+ tabIndex={0}
+ onKeyDown={() => setActiveTab(tab.name)}
>
= () => {
+export function Toolbar() {
return (
-
+
@@ -20,27 +19,25 @@ export const Toolbar: React.FunctionComponent = () => {
-
+
);
-};
+}
diff --git a/apps/studio/src/components/Visualiser/Controls.tsx b/apps/studio/src/components/Visualiser/Controls.tsx
index 1e6d6f7c2..5d856679e 100644
--- a/apps/studio/src/components/Visualiser/Controls.tsx
+++ b/apps/studio/src/components/Visualiser/Controls.tsx
@@ -1,11 +1,9 @@
-import { useState, useEffect } from 'react';
+import { useState, useEffect, FunctionComponent } from 'react';
import { useStore, useReactFlow, useNodes, useEdges } from 'reactflow';
import { VscDebugStart, VscDebugPause, VscRefresh } from 'react-icons/vsc';
import { calculateNodesForDynamicLayout } from './utils/node-calculator';
-import type { FunctionComponent } from 'react';
-
interface ControlsProps {}
export const Controls: FunctionComponent
= () => {
diff --git a/apps/studio/src/components/Visualiser/FlowDiagram.tsx b/apps/studio/src/components/Visualiser/FlowDiagram.tsx
index 28b214cef..3422559ea 100644
--- a/apps/studio/src/components/Visualiser/FlowDiagram.tsx
+++ b/apps/studio/src/components/Visualiser/FlowDiagram.tsx
@@ -1,4 +1,4 @@
-import { useEffect } from 'react';
+import { useEffect, FunctionComponent } from 'react';
import ReactFlow, { Controls as FlowControls, Background, BackgroundVariant, useReactFlow, useStore, useNodesState, useEdgesState, useNodes } from 'reactflow';
import NodeTypes from './Nodes';
@@ -6,8 +6,7 @@ import { Controls } from './Controls';
import { getElementsFromAsyncAPISpec } from './utils/node-factory';
import { calculateNodesForDynamicLayout } from './utils/node-calculator';
-import type { OldAsyncAPIDocument as AsyncAPIDocument } from '@asyncapi/parser/cjs';
-import type { FunctionComponent } from 'react';
+import type { OldAsyncAPIDocument as AsyncAPIDocument } from '@asyncapi/parser';
interface FlowDiagramProps {
parsedSpec: AsyncAPIDocument;
diff --git a/apps/studio/src/components/Visualiser/Nodes/ApplicationNode.tsx b/apps/studio/src/components/Visualiser/Nodes/ApplicationNode.tsx
index d6a380564..aff6199b8 100644
--- a/apps/studio/src/components/Visualiser/Nodes/ApplicationNode.tsx
+++ b/apps/studio/src/components/Visualiser/Nodes/ApplicationNode.tsx
@@ -1,12 +1,10 @@
-import { useState, useEffect } from 'react';
+import { useState, useEffect, FunctionComponent } from 'react';
import { Handle, Position } from 'reactflow';
-import { OldAsyncAPIDocument as AsyncAPIDocument } from '@asyncapi/parser/cjs';
+import { OldAsyncAPIDocument as AsyncAPIDocument } from '@asyncapi/parser';
-import { useServices } from '../../../services';
+import { useServices } from '@/services';
import { Markdown } from '../../common';
-import type { FunctionComponent } from 'react';
-
interface IData {
spec: AsyncAPIDocument
}
@@ -163,4 +161,4 @@ export const ApplicationNode: FunctionComponent = ({
);
};
-export default ApplicationNode;
\ No newline at end of file
+export default ApplicationNode;
diff --git a/apps/studio/src/components/Visualiser/Nodes/PublishNode.tsx b/apps/studio/src/components/Visualiser/Nodes/PublishNode.tsx
index c9e729c3e..85eec2879 100644
--- a/apps/studio/src/components/Visualiser/Nodes/PublishNode.tsx
+++ b/apps/studio/src/components/Visualiser/Nodes/PublishNode.tsx
@@ -1,7 +1,7 @@
import { useState, useEffect } from 'react';
import { Handle, Position } from 'reactflow';
-import { useServices } from '../../../services';
+import { useServices } from '@/services';
import getBackgroundColor from '../utils/random-background-color';
// @ts-ignore
@@ -86,4 +86,4 @@ export const PublishNode: React.FunctionComponent = ({
);
};
-export default PublishNode;
\ No newline at end of file
+export default PublishNode;
diff --git a/apps/studio/src/components/Visualiser/Nodes/SubscribeNode.tsx b/apps/studio/src/components/Visualiser/Nodes/SubscribeNode.tsx
index 85a2602ce..4a3aa5200 100644
--- a/apps/studio/src/components/Visualiser/Nodes/SubscribeNode.tsx
+++ b/apps/studio/src/components/Visualiser/Nodes/SubscribeNode.tsx
@@ -1,14 +1,12 @@
-import { useState, useEffect } from 'react';
+import { useState, useEffect, FunctionComponent } from 'react';
import { Handle, Position } from 'reactflow';
-import { useServices } from '../../../services';
+import { useServices } from '@/services';
import getBackgroundColor from '../utils/random-background-color';
// @ts-ignore
import { Markdown } from '@asyncapi/react-component/lib/esm/components/Markdown';
-import type { FunctionComponent } from 'react';
-
interface IData {
messages: any []
channel: string
@@ -91,4 +89,4 @@ export const SubscribeNode: FunctionComponent = ({ data: { cha
);
};
-export default SubscribeNode;
\ No newline at end of file
+export default SubscribeNode;
diff --git a/apps/studio/src/components/Visualiser/Visualiser.tsx b/apps/studio/src/components/Visualiser/Visualiser.tsx
index 357d2c632..0efd0e100 100644
--- a/apps/studio/src/components/Visualiser/Visualiser.tsx
+++ b/apps/studio/src/components/Visualiser/Visualiser.tsx
@@ -1,11 +1,11 @@
-import { useState, useEffect } from 'react';
+import { useState, useEffect, FunctionComponent } from 'react';
import { FlowDiagram } from './FlowDiagram';
-import { useDocumentsState, useSettingsState, useOtherState, otherState } from '../../state';
+import { useDocumentsState, useSettingsState, useOtherState, otherState } from '@/state';
-import { OldAsyncAPIDocument as AsyncAPIDocument, convertToOldAPI } from '@asyncapi/parser/cjs';
-import type { FunctionComponent } from 'react';
+import type { OldAsyncAPIDocument as AsyncAPIDocument } from '@asyncapi/parser';
+import { convertToOldAPI } from '@asyncapi/parser';
interface VisualiserProps {}
diff --git a/apps/studio/src/components/Visualiser/VisualiserTemplate.tsx b/apps/studio/src/components/Visualiser/VisualiserTemplate.tsx
index c6440795b..cc8f5e325 100644
--- a/apps/studio/src/components/Visualiser/VisualiserTemplate.tsx
+++ b/apps/studio/src/components/Visualiser/VisualiserTemplate.tsx
@@ -1,7 +1,7 @@
import { Visualiser } from './Visualiser';
import { TemplateSidebar } from '../Template/TemplateSidebar';
-import type { FunctionComponent } from 'react';
+import { FunctionComponent } from 'react';
interface VisualiserTemplateProps {}
diff --git a/apps/studio/src/components/Visualiser/utils/node-factory.ts b/apps/studio/src/components/Visualiser/utils/node-factory.ts
index 68de1f322..4db581111 100644
--- a/apps/studio/src/components/Visualiser/utils/node-factory.ts
+++ b/apps/studio/src/components/Visualiser/utils/node-factory.ts
@@ -1,4 +1,4 @@
-import type { OldAsyncAPIDocument as AsyncAPIDocument, OldChannel, OldOperation, OldMessage } from '@asyncapi/parser/cjs';
+import type { OldAsyncAPIDocument as AsyncAPIDocument, OldChannel, OldOperation, OldMessage } from '@asyncapi/parser';
import type { Node, Edge } from 'reactflow';
interface FileredChannel {
diff --git a/apps/studio/src/components/common/Dropdown.tsx b/apps/studio/src/components/common/Dropdown.tsx
index 88d5a83e6..a77fc7232 100644
--- a/apps/studio/src/components/common/Dropdown.tsx
+++ b/apps/studio/src/components/common/Dropdown.tsx
@@ -1,6 +1,6 @@
import { useState, useRef } from 'react';
-import { useOutsideClickCallback } from '../../helpers';
+import { useOutsideClickCallback } from '@/helpers';
import type { FunctionComponent, PropsWithChildren, ReactNode } from 'react';
@@ -28,14 +28,19 @@ export const Dropdown: FunctionComponent = ({
setOpen(!open)}
+ tabIndex={0}
+ onKeyDown={() => setOpen(!open)}
type="button"
className={`flex p-2 text-sm rounded-md ${buttonHoverClassName} focus:outline-none focus:border-indigo-700 focus:shadow-outline-indigo transition ease-in-out duration-150`}
+ data-test="button-dropdown"
>
{opener}
setOpen(false)}
+ tabIndex={0}
+ onKeyDown={() => setOpen(false)}
className={`${
open ? 'visible' : 'invisible'
} origin-top-right absolute ${align === 'right' &&
diff --git a/apps/studio/src/components/common/Markdown.tsx b/apps/studio/src/components/common/Markdown.tsx
index 9afa46b7f..fe6b16127 100644
--- a/apps/studio/src/components/common/Markdown.tsx
+++ b/apps/studio/src/components/common/Markdown.tsx
@@ -1,5 +1,5 @@
// @ts-ignore
-import { Markdown as MarkdownComponent } from '@asyncapi/react-component/lib/cjs/components/Markdown';
+import { Markdown as MarkdownComponent } from '@asyncapi/react-component/lib/esm/components/Markdown';
import type { FunctionComponent, PropsWithChildren } from 'react';
diff --git a/apps/studio/src/components/common/Switch.tsx b/apps/studio/src/components/common/Switch.tsx
index eae99baee..7792fdf97 100644
--- a/apps/studio/src/components/common/Switch.tsx
+++ b/apps/studio/src/components/common/Switch.tsx
@@ -11,13 +11,17 @@ export const Switch: React.FunctionComponent
= ({
}) => {
const [toggle, setToggle] = useState(initToggle);
+ const onClickHandler = (e: any) => { // eslint-disable-line @typescript-eslint/no-unused-vars
+ const newValue = !toggle;
+ setToggle(newValue);
+ onChange(newValue);
+ }
+
return (
{
- const newValue = !toggle;
- setToggle(newValue);
- onChange(newValue);
- }}
+ onClick={onClickHandler}
+ tabIndex={0}
+ onKeyDown={onClickHandler}
>
= ({
);
-};
\ No newline at end of file
+};
diff --git a/apps/studio/src/components/common/index.ts b/apps/studio/src/components/common/index.ts
index aed0e9e6b..ba9b3419b 100644
--- a/apps/studio/src/components/common/index.ts
+++ b/apps/studio/src/components/common/index.ts
@@ -1,3 +1,5 @@
+'use client'
+
export * from './Dropdown';
export * from './Markdown';
export * from './Switch';
diff --git a/apps/studio/src/components/index.ts b/apps/studio/src/components/index.ts
index c9e5082a4..8d3dad345 100644
--- a/apps/studio/src/components/index.ts
+++ b/apps/studio/src/components/index.ts
@@ -3,4 +3,3 @@ export * from './Content';
export * from './Navigation';
export * from './Sidebar';
export * from './Template';
-export * from './Toolbar';
diff --git a/apps/studio/src/index.tsx b/apps/studio/src/index.tsx
deleted file mode 100644
index ecc596a34..000000000
--- a/apps/studio/src/index.tsx
+++ /dev/null
@@ -1,54 +0,0 @@
-import { StrictMode } from 'react';
-import { createRoot } from 'react-dom/client';
-import { Provider as ModalsProvider } from '@ebay/nice-modal-react';
-
-import { createServices, ServicesProvider } from './services';
-import { App } from './App';
-
-import 'tippy.js/dist/tippy.css';
-import 'tippy.js/animations/shift-away.css';
-import '@asyncapi/react-component/styles/default.min.css';
-import 'reactflow/dist/style.css';
-import './tailwind.css';
-import './main.css';
-
-function configureMonacoEnvironment() {
- window.MonacoEnvironment = {
- getWorker(_, label) {
- switch (label) {
- case 'editorWorkerService':
- return new Worker(new URL('monaco-editor/esm/vs/editor/editor.worker', import.meta.url));
- case 'json':
- return new Worker(
- new URL('monaco-editor/esm/vs/language/json/json.worker', import.meta.url),
- );
- case 'yaml':
- case 'yml':
- return new Worker(new URL('monaco-yaml/yaml.worker', import.meta.url));
- default:
- throw new Error(`Unknown worker ${label}`);
- }
- },
- };
-}
-
-async function bootstrap() {
- configureMonacoEnvironment();
- const services = await createServices();
-
- const root = createRoot(
- document.getElementById('root') as HTMLElement,
- );
-
- root.render(
-
-
-
-
-
-
-
- );
-}
-
-bootstrap().catch(console.error);
diff --git a/apps/studio/src/main.css b/apps/studio/src/main.css
deleted file mode 100644
index cdc4081f7..000000000
--- a/apps/studio/src/main.css
+++ /dev/null
@@ -1,183 +0,0 @@
-/** Preloader */
-#preloader {
- position: fixed;
- left: 0;
- top: 0;
- bottom: 0;
- right: 0;
- z-index: 10000;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 20px;
- background: #1f2937;
- color: #ffffff;
- transition: 0.3s all ease;
-}
-
-#preloader.loaded {
- opacity: 0;
- visibility: hidden;
-}
-
-.rotating-wheel {
- width: 32px;
- height: 32px;
- margin: 0 auto;
- border: 3px solid #ec4899;
- border-radius: 50%;
- border-left-color: transparent;
- border-bottom-color: transparent;
- animation: rotating-spin 0.88s infinite linear;
-}
-
-@keyframes rotating-spin {
- 100% {
- transform: rotate(360deg);
- }
-}
-
-/** Resizer */
-.Resizer {
- background: #374251;
- z-index: 1;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- -moz-background-clip: padding;
- -webkit-background-clip: padding;
- background-clip: padding-box;
-}
-
-.Resizer:hover {
- -webkit-transition: all 2s ease;
- transition: all 2s ease;
-}
-
-.Resizer.horizontal {
- height: 11px;
- margin: -5px 0;
- border-top: 5px solid rgba(255, 255, 255, 0);
- border-bottom: 5px solid rgba(255, 255, 255, 0);
- cursor: row-resize;
- width: 100%;
-}
-
-.Resizer.horizontal:hover {
- border-top: 5px solid rgba(0, 0, 0, 0.5);
- border-bottom: 5px solid rgba(0, 0, 0, 0.5);
-}
-
-.Resizer.vertical {
- width: 11px;
- margin: 0 -5px;
- border-left: 5px solid rgba(255, 255, 255, 0);
- border-right: 5px solid rgba(255, 255, 255, 0);
- cursor: col-resize;
-}
-
-.Resizer.vertical:hover {
- border-left: 5px solid rgba(0, 0, 0, 0.5);
- border-right: 5px solid rgba(0, 0, 0, 0.5);
-}
-
-.Resizer.disabled {
- cursor: not-allowed;
-}
-
-.Resizer.disabled:hover {
- border-color: transparent;
-}
-
-/** Monaco editor */
-.diagnostic-warning {
- background: rgba(245, 158, 11);
- width: 3px !important;
-}
-
-.diagnostic-information {
- background: rgba(59, 130, 246);
- width: 3px !important;
-}
-
-.diagnostic-hint {
- background: rgba(16, 185, 129);
- width: 3px !important;
-}
-
-/** Tippy.js **/
-.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
- border-bottom-color: rgba(17, 24, 39) !important;
-}
-
-.tippy-box[data-placement^="right"] > .tippy-arrow:before {
- border-right-color: rgba(17, 24, 39) !important;
-}
-
-.driver-popover.driverjs-theme {
- background-color: #1a1a1a;
- border: 1px solid #333333;
- border-radius: 8px;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
-}
-
-.driver-popover.driverjs-theme .driver-popover-title {
- font-size: 18px;
- font-weight: bold;
- color: #db2777;
-}
-
-.driver-popover.driverjs-theme .driver-popover-description {
- font-size: 14px;
- color: #cccccc;
- font-family: sans-serif;
-}
-
-.driver-popover.driverjs-theme button {
- background-color: #db2777;
- color: #ffffff !important;
- border: none !important;
- font-size: 14px;
- padding: 8px 20px;
- border-radius: 4px;
- margin-left: 10px;
- text-shadow: none;
- font-weight: bold;
- text-align: center;
- transition: background-color 0.3s ease;
-}
-
-.driver-popover.driverjs-theme button:not(.driver-popover-close-btn):hover {
- background-color: #c81c67;
- cursor: pointer;
-}
-
-.driver-popover.driverjs-theme .driver-popover-close-btn {
- color: #999999;
- font-size: 20px;
- background-color: transparent;
- top: 13px;
- right: 5px;
- padding: 0%;
- cursor: pointer;
-}
-
-.driver-popover.driverjs-theme
- .driver-popover-arrow-side-left.driver-popover-arrow {
- border-left-color: #1a1a1a;
-}
-
-.driver-popover.driverjs-theme
- .driver-popover-arrow-side-right.driver-popover-arrow {
- border-right-color: #1a1a1a;
-}
-
-.driver-popover.driverjs-theme
- .driver-popover-arrow-side-top.driver-popover-arrow {
- border-top-color: #1a1a1a;
-}
-
-.driver-popover.driverjs-theme
- .driver-popover-arrow-side-bottom.driver-popover-arrow {
- border-bottom-color: #1a1a1a;
-}
diff --git a/apps/studio-next/src/netlify/functions/share-retreive.ts b/apps/studio/src/netlify/functions/share-retreive.ts
similarity index 100%
rename from apps/studio-next/src/netlify/functions/share-retreive.ts
rename to apps/studio/src/netlify/functions/share-retreive.ts
diff --git a/apps/studio-next/src/netlify/functions/share-store.ts b/apps/studio/src/netlify/functions/share-store.ts
similarity index 100%
rename from apps/studio-next/src/netlify/functions/share-store.ts
rename to apps/studio/src/netlify/functions/share-store.ts
diff --git a/apps/studio/src/react-app-env.d.ts b/apps/studio/src/react-app-env.d.ts
deleted file mode 100644
index f4ce82809..000000000
--- a/apps/studio/src/react-app-env.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-///
-
-import type * as monacoAPI from 'monaco-editor/esm/vs/editor/editor.api';
-import type { AsyncAPIDocumentInterface, ParseOutput } from '@asyncapi/parser/cjs';
-
-declare global {
- interface Window {
- // needed by monaco YAML plugin and Studio
- monaco: typeof monacoAPI;
- Editor: monacoAPI.editor.IStandaloneCodeEditor;
- MonacoEnvironment: monacoAPI.Environment | undefined;
- ParsedSpec?: AsyncAPIDocumentInterface;
- ParsedExtras?: ParseOutput['extras'];
- }
-}
diff --git a/apps/studio/src/services/app.service.ts b/apps/studio/src/services/app.service.ts
index bc2dbd8b2..a9abb7640 100644
--- a/apps/studio/src/services/app.service.ts
+++ b/apps/studio/src/services/app.service.ts
@@ -4,21 +4,21 @@ import { show } from '@ebay/nice-modal-react';
import { RedirectedModal } from '../components/Modals';
-import { appState, filesState } from '../state';
+import { appState, filesState } from '@/state';
export class ApplicationService extends AbstractService {
override async onInit() {
// subscribe to state to hide preloader
this.hidePreloader();
- const { readOnly, url, base64 } =
+ const { readOnly, url, base64, share } =
this.svcs.navigationSvc.getUrlParameters();
- // readOnly state should be only set to true when someone pass also url or base64 parameter
- const isStrictReadonly = Boolean(readOnly && (url || base64));
+ // readOnly state should be only set to true when someone pass also url or base64 or share parameter
+ const isStrictReadonly = Boolean(readOnly && (url || base64 || share));
let error: any;
try {
- await this.fetchResource(url, base64);
+ await this.fetchResource(url, base64, share);
} catch (err) {
error = err;
console.error(err);
@@ -37,9 +37,9 @@ export class ApplicationService extends AbstractService {
}
public async afterAppInit() {
- const { readOnly, url, base64, redirectedFrom } =
+ const { readOnly, url, base64, share, redirectedFrom } =
this.svcs.navigationSvc.getUrlParameters();
- const isStrictReadonly = Boolean(readOnly && (url || base64));
+ const isStrictReadonly = Boolean(readOnly && (url || base64 || share));
// show RedirectedModal modal if the redirectedFrom is set (only when readOnly state is set to false)
if (!isStrictReadonly && redirectedFrom) {
@@ -47,8 +47,8 @@ export class ApplicationService extends AbstractService {
}
}
- private async fetchResource(url: string | null, base64: string | null) {
- if (!url && !base64) {
+ private async fetchResource(url: string | null, base64: string | null, share: string | null) {
+ if (!url && !base64 && !share) {
return;
}
@@ -58,15 +58,27 @@ export class ApplicationService extends AbstractService {
content = await fetch(url).then((res) => res.text());
} else if (base64) {
content = this.svcs.formatSvc.decodeBase64(base64);
+ } else if (share) {
+ const response = await fetch(`/share/${share}`);
+ const data = await response.json();
+ content = data.content;
}
const language = this.svcs.formatSvc.retrieveLangauge(content);
const source = url || undefined;
+ let from = 'url';
+
+ if (base64) {
+ from = 'base64';
+ } else if (share) {
+ from = 'share';
+ }
+
updateFile('asyncapi', {
content,
language,
source,
- from: url ? 'url' : 'base64',
+ from: from as 'url' | 'base64' | 'share',
});
await this.svcs.parserSvc.parse('asyncapi', content, { source });
}
diff --git a/apps/studio/src/services/editor.service.tsx b/apps/studio/src/services/editor.service.tsx
index 6b46d896e..21b0c9309 100644
--- a/apps/studio/src/services/editor.service.tsx
+++ b/apps/studio/src/services/editor.service.tsx
@@ -1,17 +1,17 @@
import { AbstractService } from './abstract.service';
import { KeyMod, KeyCode } from 'monaco-editor/esm/vs/editor/editor.api';
-import { DiagnosticSeverity } from '@asyncapi/parser/cjs';
+import { DiagnosticSeverity } from '@asyncapi/parser';
import { Range, MarkerSeverity } from 'monaco-editor/esm/vs/editor/editor.api';
import toast from 'react-hot-toast';
import fileDownload from 'js-file-download';
-import { appState, documentsState, filesState, settingsState } from '../state';
+import { appState, documentsState, filesState, settingsState } from '@/state';
import type * as monacoAPI from 'monaco-editor/esm/vs/editor/editor.api';
-import type { Diagnostic } from '@asyncapi/parser/cjs';
+import type { Diagnostic } from '@asyncapi/parser';
import type { AsyncAPIConvertVersion } from '@asyncapi/converter';
-import type { File } from '../state/files.state';
+import type { File } from '@/state/files.state';
export interface UpdateState {
content: string;
@@ -166,6 +166,45 @@ export class EditorService extends AbstractService {
}
}
+ async importFromShareID(shareID: string) {
+ try {
+ const response = await fetch(`/share/${shareID}`);
+ if (!response.ok) {
+ throw new Error('Failed to fetch shared document');
+ }
+
+ const data = await response.json();
+ this.updateState({
+ content: data.content,
+ updateModel: true,
+ file: {
+ from: 'share',
+ source: undefined,
+ },
+ });
+ } catch (err) {
+ console.error(err);
+ throw err;
+ }
+ }
+
+ async exportAsURL() {
+ try {
+ const file = filesState.getState().files['asyncapi'];
+ const shareID = await fetch('/share', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ body: JSON.stringify({ content: file.content }),
+ }).then(res => res.text());
+ return `${window.location.origin}/?share=${shareID}`;
+ } catch (err) {
+ console.error(err);
+ throw err;
+ }
+ }
+
async exportAsBase64() {
try {
const file = filesState.getState().files['asyncapi'];
diff --git a/apps/studio/src/services/index.ts b/apps/studio/src/services/index.ts
index 3b1cce9e4..6b8ef6b15 100644
--- a/apps/studio/src/services/index.ts
+++ b/apps/studio/src/services/index.ts
@@ -1,3 +1,5 @@
+'use client'
+
import { createContext, useContext } from 'react';
import { ApplicationService } from './app.service';
diff --git a/apps/studio/src/services/monaco.service.ts b/apps/studio/src/services/monaco.service.ts
index b83536fdf..aad59eaeb 100644
--- a/apps/studio/src/services/monaco.service.ts
+++ b/apps/studio/src/services/monaco.service.ts
@@ -4,7 +4,7 @@ import { loader } from '@monaco-editor/react';
import { setDiagnosticsOptions } from 'monaco-yaml';
import YAML from 'js-yaml';
-import { documentsState, filesState } from '../state';
+import { documentsState, filesState } from '@/state';
import type * as monacoAPI from 'monaco-editor/esm/vs/editor/editor.api';
import type { DiagnosticsOptions as YAMLDiagnosticsOptions } from 'monaco-yaml';
diff --git a/apps/studio/src/services/navigation.service.ts b/apps/studio/src/services/navigation.service.ts
index b0180e935..11e2e23cf 100644
--- a/apps/studio/src/services/navigation.service.ts
+++ b/apps/studio/src/services/navigation.service.ts
@@ -17,6 +17,7 @@ export class NavigationService extends AbstractService {
return {
url: urlParams.get('url') || urlParams.get('load'),
base64: urlParams.get('base64'),
+ share: urlParams.get('share'),
readOnly: urlParams.get('readOnly') === 'true' || urlParams.get('readOnly') === '',
liveServer: urlParams.get('liveServer'),
redirectedFrom: urlParams.get('redirectedFrom'),
diff --git a/apps/studio/src/services/parser.service.ts b/apps/studio/src/services/parser.service.ts
index 4ade21f36..3bd59c4da 100644
--- a/apps/studio/src/services/parser.service.ts
+++ b/apps/studio/src/services/parser.service.ts
@@ -1,17 +1,17 @@
import { AbstractService } from './abstract.service';
-import { Parser, DiagnosticSeverity } from '@asyncapi/parser/cjs';
+import { Parser, DiagnosticSeverity } from '@asyncapi/parser';
import { OpenAPISchemaParser } from '@asyncapi/openapi-schema-parser';
import { AvroSchemaParser } from '@asyncapi/avro-schema-parser';
import { ProtoBuffSchemaParser } from '@asyncapi/protobuf-schema-parser';
import { untilde } from '@asyncapi/parser/cjs/utils';
-import { isDeepEqual } from '../helpers';
-import { filesState, documentsState, settingsState } from '../state';
+import { isDeepEqual } from '@/helpers';
+import { filesState, documentsState, settingsState } from '@/state';
-import type { Diagnostic, ParseOptions } from '@asyncapi/parser/cjs';
-import type { DocumentDiagnostics } from '../state/documents.state';
-import { SchemaParser } from '@asyncapi/parser';
+import type { Diagnostic, ParseOptions } from '@asyncapi/parser';
+import type { DocumentDiagnostics } from '@/state/documents.state';
+import type { SchemaParser } from '@asyncapi/parser';
import { getLocationForJsonPath, parseWithPointers } from '@stoplight/yaml';
export class ParserService extends AbstractService {
@@ -193,4 +193,4 @@ export class ParserService extends AbstractService {
}),
);
}
-}
\ No newline at end of file
+}
diff --git a/apps/studio/src/services/server-api.service.ts b/apps/studio/src/services/server-api.service.ts
index ce7c68094..550e2c507 100644
--- a/apps/studio/src/services/server-api.service.ts
+++ b/apps/studio/src/services/server-api.service.ts
@@ -12,7 +12,7 @@ export interface ServerAPIProblem {
}
export class ServerAPIService extends AbstractService {
- private serverPath = 'https://api.asyncapi.com/v1';
+ private serverPath = 'http://localhost:3001/api/v1';
async generate(data: {
asyncapi: string | Record,
diff --git a/apps/studio/src/services/settings.service.ts b/apps/studio/src/services/settings.service.ts
index e47a2d764..449e36b6f 100644
--- a/apps/studio/src/services/settings.service.ts
+++ b/apps/studio/src/services/settings.service.ts
@@ -1,9 +1,9 @@
import { AbstractService } from './abstract.service';
-import { isDeepEqual } from '../helpers';
-import { settingsState } from '../state';
+import { isDeepEqual } from '@/helpers';
+import { settingsState } from '@/state';
-import type { SettingsState } from '../state/settings.state';
+import type { SettingsState } from '@/state/settings.state';
export class SettingsService extends AbstractService {
get(): SettingsState {
@@ -17,4 +17,4 @@ export class SettingsService extends AbstractService {
isEqual(newState: Partial): boolean {
return isDeepEqual(this.get(), newState);
}
-}
\ No newline at end of file
+}
diff --git a/apps/studio/src/services/socket-client.service.tsx b/apps/studio/src/services/socket-client.service.tsx
index 21118e89b..d164c1111 100644
--- a/apps/studio/src/services/socket-client.service.tsx
+++ b/apps/studio/src/services/socket-client.service.tsx
@@ -2,7 +2,7 @@ import { AbstractService } from './abstract.service';
import toast from 'react-hot-toast';
-import { appState } from '../state';
+import { appState } from '@/state';
interface IncomingMessage {
type: 'file:loaded' | 'file:changed' | 'file:deleted';
diff --git a/apps/studio/src/services/specification.service.ts b/apps/studio/src/services/specification.service.ts
index bc675cf17..84346f539 100644
--- a/apps/studio/src/services/specification.service.ts
+++ b/apps/studio/src/services/specification.service.ts
@@ -5,7 +5,7 @@ import { show } from '@ebay/nice-modal-react';
import { ConvertToLatestModal } from '../components/Modals';
-import { documentsState, settingsState } from '../state';
+import { documentsState, settingsState } from '@/state';
import type { SpecVersions } from '../types';
@@ -72,4 +72,4 @@ export class SpecificationService extends AbstractService {
return false;
}
-}
\ No newline at end of file
+}
diff --git a/apps/studio/src/services/tests/editor.service.test.ts b/apps/studio/src/services/tests/editor.service.test.ts
index 808b62e0f..58aa1d4aa 100644
--- a/apps/studio/src/services/tests/editor.service.test.ts
+++ b/apps/studio/src/services/tests/editor.service.test.ts
@@ -1,10 +1,10 @@
import * as monacoAPI from 'monaco-editor/esm/vs/editor/editor.api';
-import { DiagnosticSeverity } from '@asyncapi/parser/cjs';
+import { DiagnosticSeverity } from '@asyncapi/parser';
import { createServices } from '../';
import type { EditorService } from '../editor.service';
-import type { Diagnostic } from '@asyncapi/parser/cjs';
+import type { Diagnostic } from '@asyncapi/parser';
describe('EditorService', () => {
let editorSvc: EditorService;
diff --git a/apps/studio/src/setupTests.ts b/apps/studio/src/setupTests.ts
deleted file mode 100644
index 8f2609b7b..000000000
--- a/apps/studio/src/setupTests.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-// jest-dom adds custom jest matchers for asserting on DOM nodes.
-// allows you to do things like:
-// expect(element).toHaveTextContent(/react/i)
-// learn more: https://github.com/testing-library/jest-dom
-import '@testing-library/jest-dom';
diff --git a/apps/studio/src/state/documents.state.ts b/apps/studio/src/state/documents.state.ts
index 8e518317e..3dc90ca70 100644
--- a/apps/studio/src/state/documents.state.ts
+++ b/apps/studio/src/state/documents.state.ts
@@ -1,6 +1,6 @@
import { create } from 'zustand';
-import type { AsyncAPIDocumentInterface, Diagnostic, ParseOutput } from '@asyncapi/parser/cjs';
+import type { AsyncAPIDocumentInterface, Diagnostic, ParseOutput } from '@asyncapi/parser';
export type DocumentDiagnostics = {
original: Diagnostic[];
diff --git a/apps/studio/src/state/files.state.ts b/apps/studio/src/state/files.state.ts
index 569103ff1..2ccd359e3 100644
--- a/apps/studio/src/state/files.state.ts
+++ b/apps/studio/src/state/files.state.ts
@@ -1,7 +1,8 @@
import { create } from 'zustand';
+const document = typeof window !== 'undefined' ? localStorage.getItem('document') : undefined
const schema =
- localStorage.getItem('document') || `asyncapi: 3.0.0
+ document || `asyncapi: 3.0.0
info:
title: Streetlights Kafka API
version: 1.0.0
@@ -217,7 +218,7 @@ export type File = {
uri: string;
name: string;
content: string;
- from: 'storage' | 'url' | 'base64';
+ from: 'storage' | 'url' | 'base64' | 'share';
source?: string;
language: 'json' | 'yaml';
modified: boolean;
diff --git a/apps/studio/src/studio.tsx b/apps/studio/src/studio.tsx
deleted file mode 100644
index ba60207fc..000000000
--- a/apps/studio/src/studio.tsx
+++ /dev/null
@@ -1,47 +0,0 @@
-import React, { useEffect } from 'react';
-import toast, { Toaster } from 'react-hot-toast';
-
-import { Content, Sidebar, Template, Toolbar } from './components';
-
-import { afterAppInit, useServices } from './services';
-import { appState } from './state';
-
-export interface AsyncAPIStudioProps {}
-
-export const AsyncAPIStudio: React.FunctionComponent<
- AsyncAPIStudioProps
-> = () => {
- const services = useServices();
-
- useEffect(() => {
- setTimeout(() => {
- afterAppInit(services).catch(console.error);
- }, 250);
- }, []);
-
- if (appState.getState().readOnly) {
- return (
-
-
-
- );
- }
- const unsubscribe = appState.subscribe((state) => {
- state.initErrors.forEach((e) => {
- toast.error(e.message);
- });
- unsubscribe();
- appState.setState({ initErrors: [] });
- });
-
- return (
-
- );
-};
diff --git a/apps/studio/src/tailwind.css b/apps/studio/src/tailwind.css
deleted file mode 100644
index b5c61c956..000000000
--- a/apps/studio/src/tailwind.css
+++ /dev/null
@@ -1,3 +0,0 @@
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
diff --git a/apps/studio/tailwind.config.js b/apps/studio/tailwind.config.js
index c9634805b..d53b2eaa0 100644
--- a/apps/studio/tailwind.config.js
+++ b/apps/studio/tailwind.config.js
@@ -1,39 +1,18 @@
+/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
- './src/**/*.{js,jsx,ts,tsx}',
- './public/index.html',
+ './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
+ './src/components/**/*.{js,ts,jsx,tsx,mdx}',
+ './src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
- colors: {
- teal: {
- 100: '#e6fffa',
- 200: '#b2f5ea',
- 300: '#81e6d9',
- 400: '#4fd1c5',
- 500: '#38b2ac',
- 600: '#319795',
- 700: '#2c7a7b',
- 800: '#285e61',
- 900: '#234e52',
- },
+ backgroundImage: {
+ 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
+ 'gradient-conic':
+ 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
- typography: theme => ({
- DEFAULT: {
- css: {
- pre: {
- backgroundColor: theme('colors.gray.900'),
- },
- },
- },
- }),
},
},
- variants: {
- extend: {
- cursor: ['disabled'],
- backgroundColor: ['disabled'],
- },
- },
- plugins: [require('@tailwindcss/typography')],
-};
\ No newline at end of file
+ plugins: [],
+}
diff --git a/apps/studio/tsconfig.json b/apps/studio/tsconfig.json
index 8c5c6f5bb..119082b0b 100644
--- a/apps/studio/tsconfig.json
+++ b/apps/studio/tsconfig.json
@@ -1,11 +1,4 @@
{
- "ts-node": {
- // these options are overrides used only by ts-node
- // same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
- "compilerOptions": {
- "module": "commonjs"
- }
- },
"compilerOptions": {
"target": "es5",
"lib": [
@@ -15,19 +8,36 @@
],
"allowJs": true,
"skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
+ "noEmit": true,
+ "esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx",
+ "jsx": "preserve",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": [
+ "./src/*",
+ "./public/*"
+ ]
+ }
},
"include": [
- "src"
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts",
+ "build/types/**/*.ts"
+ ],
+ "exclude": [
+ "node_modules"
]
}
diff --git a/package.json b/package.json
index 9c1129ec1..582e241d0 100644
--- a/package.json
+++ b/package.json
@@ -8,8 +8,7 @@
"lint": "turbo run lint",
"dev": "turbo run dev",
"ds": "turbo run dev --no-cache --continue --filter=design-system...",
- "studio": "turbo run dev --filter=studio...",
- "studio-next": "turbo run dev --no-cache --filter=studio-next...",
+ "studio": "turbo run dev --no-cache --filter=studio...",
"clean": "turbo run clean && rm -rf node_modules",
"build": "turbo run build",
"test": "turbo run test",
@@ -18,11 +17,10 @@
"publish-packages": "turbo run build && changeset publish",
"build:studio": "turbo run build --no-cache --filter=studio...",
"build:ds": "turbo run build --filter=design-system...",
- "build:studio-next": "turbo run build --no-cache --filter=studio-next...",
"generate:assets": "turbo run generate:assets"
},
"devDependencies": {
- "@typescript-eslint/eslint-plugin": "^7.7.1",
+ "@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.27.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-security": "^3.0.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2b9419321..d54f0a717 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,26 +10,26 @@ importers:
dependencies:
'@changesets/cli':
specifier: ^2.26.2
- version: 2.27.1
+ version: 2.26.2
devDependencies:
'@typescript-eslint/eslint-plugin':
- specifier: ^7.7.1
- version: 7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(typescript@5.1.6)
+ specifier: ^5.62.0
+ version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.27.0)(typescript@5.1.6)
eslint:
specifier: ^8.27.0
- version: 8.57.0
+ version: 8.27.0
eslint-plugin-react:
specifier: 7.28.0
- version: 7.28.0(eslint@8.57.0)
+ version: 7.28.0(eslint@8.27.0)
eslint-plugin-security:
specifier: ^3.0.0
version: 3.0.0
eslint-plugin-sonarjs:
specifier: ^0.25.1
- version: 0.25.1(eslint@8.57.0)
+ version: 0.25.1(eslint@8.27.0)
turbo:
specifier: ^1.12.4
- version: 1.13.3
+ version: 1.12.4
apps/design-system:
dependencies:
@@ -38,22 +38,22 @@ importers:
version: link:../../packages/ui
'@headlessui/react':
specifier: ^1.7.13
- version: 1.7.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.7.15(react-dom@18.2.0)(react@18.2.0)
'@mdx-js/react':
specifier: ^1.6.22
version: 1.6.22(react@18.2.0)
'@testing-library/jest-dom':
specifier: ^5.16.2
- version: 5.17.0
+ version: 5.16.5
'@testing-library/react':
specifier: ^12.1.3
- version: 12.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 12.1.3(react-dom@18.2.0)(react@18.2.0)
'@testing-library/user-event':
specifier: ^13.5.0
- version: 13.5.0(@testing-library/dom@9.3.4)
+ version: 13.5.0(@testing-library/dom@10.4.0)
'@tippyjs/react':
specifier: ^4.2.6
- version: 4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.2.6(react-dom@18.2.0)(react@18.2.0)
concurrently:
specifier: ^8.2.2
version: 8.2.2
@@ -65,375 +65,143 @@ importers:
version: 18.2.0(react@18.2.0)
react-icons:
specifier: ^4.8.0
- version: 4.12.0(react@18.2.0)
+ version: 4.8.0(react@18.2.0)
web-vitals:
specifier: ^2.1.4
version: 2.1.4
devDependencies:
'@babel/core':
specifier: ^7.17.4
- version: 7.24.5
+ version: 7.17.4
'@babel/preset-env':
specifier: ^7.22.4
- version: 7.24.5(@babel/core@7.24.5)
+ version: 7.22.4(@babel/core@7.17.4)
'@babel/preset-react':
specifier: ^7.22.3
- version: 7.24.1(@babel/core@7.24.5)
+ version: 7.22.3(@babel/core@7.17.4)
'@babel/preset-typescript':
specifier: ^7.24.1
- version: 7.24.1(@babel/core@7.24.5)
+ version: 7.24.1(@babel/core@7.17.4)
'@storybook/addon-actions':
specifier: ^7.6.18
- version: 7.6.19
+ version: 7.6.18
'@storybook/addon-docs':
- specifier: ^7.6.18
- version: 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ specifier: ^7.6.20
+ version: 7.6.20(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-essentials':
specifier: ^7.6.18
- version: 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 7.6.18(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-interactions':
specifier: ^7.6.18
- version: 7.6.19
+ version: 7.6.18
'@storybook/addon-links':
specifier: ^7.6.18
- version: 7.6.19(react@18.2.0)
+ version: 7.6.18(react@18.2.0)
'@storybook/addons':
specifier: ^7.6.18
- version: 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 7.6.18(react-dom@18.2.0)(react@18.2.0)
'@storybook/blocks':
specifier: ^7.6.18
- version: 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 7.6.18(react-dom@18.2.0)(react@18.2.0)
'@storybook/preset-create-react-app':
specifier: ^7.6.18
- version: 7.6.19(@babel/core@7.24.5)(react-refresh@0.14.2)(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))(type-fest@2.19.0)(typescript@5.1.6)(webpack-hot-middleware@2.26.1))(type-fest@2.19.0)(typescript@5.1.6)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ version: 7.6.18(@babel/core@7.17.4)(react-refresh@0.14.2)(react-scripts@5.0.1)(typescript@5.1.6)(webpack@5.75.0)
'@storybook/react':
- specifier: ^7.6.18
- version: 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.6)
+ specifier: ^7.6.20
+ version: 7.6.20(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
'@storybook/react-webpack5':
specifier: ^7.6.18
- version: 7.6.19(@babel/core@7.24.5)(@swc/core@1.5.7(@swc/helpers@0.5.5))(@swc/helpers@0.5.5)(esbuild@0.18.20)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.1.6)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)
+ version: 7.6.18(@babel/core@7.17.4)(@swc/core@1.7.28)(esbuild@0.18.20)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
'@storybook/test':
specifier: ^7.6.18
- version: 7.6.19(@jest/globals@27.5.1)(@types/jest@29.5.12)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))
+ version: 7.6.18
'@storybook/theming':
specifier: ^7.6.18
- version: 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 7.6.18(react-dom@18.2.0)(react@18.2.0)
autoprefixer:
specifier: ^10.4.14
version: 10.4.14(postcss@8.4.31)
babel-loader:
specifier: ^8.2.3
- version: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ version: 8.2.3(@babel/core@7.17.4)(webpack@5.75.0)
eslint-config-custom:
specifier: workspace:*
version: link:../../packages/eslint-config-custom
eslint-plugin-import:
specifier: ^2.29.1
- version: 2.29.1(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)
+ version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.1)
eslint-plugin-storybook:
specifier: ^0.8.0
- version: 0.8.0(eslint@8.57.0)(typescript@5.1.6)
+ version: 0.8.0(eslint@8.57.1)(typescript@5.1.6)
fork-ts-checker-webpack-plugin:
specifier: ^8.0.0
- version: 8.0.0(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ version: 8.0.0(typescript@5.1.6)(webpack@5.75.0)
react-docgen-typescript:
specifier: ^2.2.2
version: 2.2.2(typescript@5.1.6)
react-docgen-typescript-plugin:
specifier: ^1.0.5
- version: 1.0.6(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ version: 1.0.5(typescript@5.1.6)(webpack@5.75.0)
remark-gfm:
specifier: ^3.0.1
version: 3.0.1
storybook:
- specifier: ^7.0.20
- version: 7.6.19
+ specifier: ^7.6.20
+ version: 7.6.20
tailwind-config:
specifier: workspace:*
version: link:../../packages/tailwind-config
tailwindcss:
specifier: ^3.4.3
- version: 3.4.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ version: 3.4.3
ts-loader:
specifier: ^9.4.3
- version: 9.5.1(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ version: 9.4.3(typescript@5.1.6)(webpack@5.75.0)
typescript:
specifier: ^5.0.2
version: 5.1.6
webpack:
specifier: ^5.69.0
- version: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ version: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
apps/studio:
- dependencies:
- '@asyncapi/avro-schema-parser':
- specifier: ^3.0.22
- version: 3.0.22
- '@asyncapi/converter':
- specifier: 1.5.0
- version: 1.5.0
- '@asyncapi/openapi-schema-parser':
- specifier: ^3.0.22
- version: 3.0.22
- '@asyncapi/parser':
- specifier: ^3.2.2
- version: 3.3.0
- '@asyncapi/protobuf-schema-parser':
- specifier: ^3.2.11
- version: 3.2.12
- '@asyncapi/react-component':
- specifier: ^1.4.10
- version: 1.4.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@asyncapi/specs':
- specifier: ^6.7.0
- version: 6.7.1
- '@babel/preset-react':
- specifier: ^7.22.3
- version: 7.24.1(@babel/core@7.24.5)
- '@ebay/nice-modal-react':
- specifier: ^1.2.10
- version: 1.2.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@headlessui/react':
- specifier: ^1.7.4
- version: 1.7.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@hookstate/core':
- specifier: ^4.0.0-rc21
- version: 4.0.1(react@18.2.0)
- '@monaco-editor/react':
- specifier: ^4.4.6
- version: 4.6.0(monaco-editor@0.34.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@stoplight/yaml':
- specifier: ^4.3.0
- version: 4.3.0
- '@tippyjs/react':
- specifier: ^4.2.6
- version: 4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- driver.js:
- specifier: ^1.3.1
- version: 1.3.1
- js-base64:
- specifier: ^3.7.3
- version: 3.7.7
- js-file-download:
- specifier: ^0.4.12
- version: 0.4.12
- js-yaml:
- specifier: ^4.1.0
- version: 4.1.0
- monaco-editor:
- specifier: 0.34.1
- version: 0.34.1
- monaco-yaml:
- specifier: 4.0.2
- version: 4.0.2(monaco-editor@0.34.1)
- react:
- specifier: ^18.2.0
- version: 18.2.0
- react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
- react-hot-toast:
- specifier: 2.4.0
- version: 2.4.0(csstype@3.1.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react-icons:
- specifier: ^4.6.0
- version: 4.12.0(react@18.2.0)
- reactflow:
- specifier: ^11.2.0
- version: 11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- tippy.js:
- specifier: ^6.3.7
- version: 6.3.7
- zustand:
- specifier: ^4.1.4
- version: 4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0)
- devDependencies:
- '@asyncapi/dotnet-nats-template':
- specifier: ^0.12.1
- version: 0.12.1(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)
- '@asyncapi/go-watermill-template':
- specifier: ^0.2.75
- version: 0.2.75(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)
- '@asyncapi/html-template':
- specifier: ^2.3.5
- version: 2.3.5(@types/babel__core@7.20.5)(react@18.2.0)
- '@asyncapi/java-spring-cloud-stream-template':
- specifier: ^0.13.4
- version: 0.13.4
- '@asyncapi/java-spring-template':
- specifier: ^1.5.1
- version: 1.5.1
- '@asyncapi/java-template':
- specifier: ^0.2.1
- version: 0.2.10(@types/babel__core@7.20.5)
- '@asyncapi/markdown-template':
- specifier: ^1.6.1
- version: 1.6.1(@types/babel__core@7.20.5)
- '@asyncapi/nodejs-template':
- specifier: ^3.0.0
- version: 3.0.0(@types/babel__core@7.20.5)(eslint@8.57.0)
- '@asyncapi/nodejs-ws-template':
- specifier: ^0.9.35
- version: 0.9.35
- '@asyncapi/python-paho-template':
- specifier: ^0.2.13
- version: 0.2.13
- '@asyncapi/ts-nats-template':
- specifier: ^0.10.3
- version: 0.10.3(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)
- '@babel/preset-env':
- specifier: ^7.24.4
- version: 7.24.5(@babel/core@7.24.5)
- '@babel/preset-typescript':
- specifier: ^7.24.1
- version: 7.24.1(@babel/core@7.24.5)
- '@craco/craco':
- specifier: ^7.1.0
- version: 7.1.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(postcss@8.4.31)(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.1))(typescript@4.9.5)
- '@craco/types':
- specifier: ^7.1.0
- version: 7.1.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(eslint@8.57.0)(postcss@8.4.31)
- '@tailwindcss/typography':
- specifier: ^0.5.8
- version: 0.5.13(tailwindcss@3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)))
- '@testing-library/jest-dom':
- specifier: ^5.16.5
- version: 5.17.0
- '@testing-library/react':
- specifier: ^13.4.0
- version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@testing-library/user-event':
- specifier: ^14.4.3
- version: 14.5.2(@testing-library/dom@10.1.0)
- '@types/jest':
- specifier: ^29.2.3
- version: 29.5.12
- '@types/js-yaml':
- specifier: ^4.0.5
- version: 4.0.9
- '@types/json-schema':
- specifier: ^7.0.11
- version: 7.0.15
- '@types/node':
- specifier: ^18.19.31
- version: 18.19.33
- '@types/react':
- specifier: ^18.0.25
- version: 18.2.18
- '@types/react-dom':
- specifier: ^18.0.9
- version: 18.2.7
- assert:
- specifier: ^2.0.0
- version: 2.1.0
- autoprefixer:
- specifier: ^10.4.13
- version: 10.4.14(postcss@8.4.31)
- browserify-zlib:
- specifier: ^0.2.0
- version: 0.2.0
- buffer:
- specifier: ^6.0.3
- version: 6.0.3
- conventional-changelog-conventionalcommits:
- specifier: ^5.0.0
- version: 5.0.0
- cross-env:
- specifier: ^7.0.3
- version: 7.0.3
- esbuild:
- specifier: 0.18.20
- version: 0.18.20
- eslint-config-custom:
- specifier: workspace:*
- version: link:../../packages/eslint-config-custom
- https-browserify:
- specifier: ^1.0.0
- version: 1.0.0
- markdown-toc:
- specifier: ^1.2.0
- version: 1.2.0
- path-browserify:
- specifier: ^1.0.1
- version: 1.0.1
- postcss:
- specifier: ^8.4.31
- version: 8.4.31
- process:
- specifier: ^0.11.10
- version: 0.11.10
- raw-loader:
- specifier: ^4.0.2
- version: 4.0.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- react-scripts:
- specifier: 5.0.1
- version: 5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.1)
- stream-browserify:
- specifier: ^3.0.0
- version: 3.0.0
- stream-http:
- specifier: ^3.2.0
- version: 3.2.0
- tailwindcss:
- specifier: ^3.2.4
- version: 3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- ts-node:
- specifier: ^10.9.1
- version: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)
- typescript:
- specifier: ^4.9.3
- version: 4.9.5
- url:
- specifier: ^0.11.0
- version: 0.11.3
- util:
- specifier: ^0.12.5
- version: 0.12.5
- web-vitals:
- specifier: ^3.1.0
- version: 3.5.2
- webpack:
- specifier: ^5.75.0
- version: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
-
- apps/studio-next:
dependencies:
'@asyncapi/avro-schema-parser':
specifier: ^3.0.19
- version: 3.0.22
+ version: 3.0.19
'@asyncapi/converter':
specifier: 1.5.0
version: 1.5.0
'@asyncapi/openapi-schema-parser':
specifier: ^3.0.18
- version: 3.0.22
+ version: 3.0.18
'@asyncapi/parser':
specifier: ^3.2.2
- version: 3.3.0
+ version: 3.2.2
'@asyncapi/protobuf-schema-parser':
specifier: ^3.2.8
- version: 3.2.12
+ version: 3.2.8
'@asyncapi/react-component':
specifier: ^1.2.2
- version: 1.4.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.2.2(react-dom@18.2.0)(react@18.2.0)
'@asyncapi/specs':
specifier: ^6.5.4
- version: 6.7.1
+ version: 6.5.4
'@codemirror/view':
specifier: ^6.26.3
version: 6.26.3
'@ebay/nice-modal-react':
specifier: ^1.2.10
- version: 1.2.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.2.10(react-dom@18.2.0)(react@18.2.0)
'@headlessui/react':
specifier: ^1.7.4
- version: 1.7.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.7.15(react-dom@18.2.0)(react@18.2.0)
'@hookstate/core':
specifier: ^4.0.0-rc21
- version: 4.0.1(react@18.2.0)
+ version: 4.0.0-rc21(react@18.2.0)
'@monaco-editor/react':
specifier: ^4.4.6
- version: 4.6.0(monaco-editor@0.34.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.4.6(monaco-editor@0.34.1)(react-dom@18.2.0)(react@18.2.0)
'@netlify/blobs':
specifier: ^8.0.1
version: 8.0.1
@@ -445,7 +213,7 @@ importers:
version: 4.3.0
'@tippyjs/react':
specifier: ^4.2.6
- version: 4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.2.6(react-dom@18.2.0)(react@18.2.0)
'@types/node':
specifier: 20.4.6
version: 20.4.6
@@ -464,12 +232,9 @@ importers:
driver.js:
specifier: ^1.3.1
version: 1.3.1
- eslint-config-next:
- specifier: 13.4.12
- version: 13.4.12(eslint@8.57.0)(typescript@5.1.6)
js-base64:
specifier: ^3.7.3
- version: 3.7.7
+ version: 3.7.3
js-file-download:
specifier: ^0.4.12
version: 0.4.12
@@ -484,7 +249,7 @@ importers:
version: 4.0.2(monaco-editor@0.34.1)
next:
specifier: 14.2.3
- version: 14.2.3(@babel/core@7.12.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 14.2.3(@babel/core@7.25.2)(react-dom@18.2.0)(react@18.2.0)
postcss:
specifier: 8.4.31
version: 8.4.31
@@ -496,16 +261,16 @@ importers:
version: 18.2.0(react@18.2.0)
react-hot-toast:
specifier: 2.4.0
- version: 2.4.0(csstype@3.1.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 2.4.0(csstype@3.1.3)(react-dom@18.2.0)(react@18.2.0)
react-icons:
specifier: ^4.6.0
- version: 4.12.0(react@18.2.0)
+ version: 4.8.0(react@18.2.0)
reactflow:
specifier: ^11.2.0
- version: 11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
tailwindcss:
specifier: 3.3.3
- version: 3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ version: 3.3.3(ts-node@10.9.1)
tippy.js:
specifier: ^6.3.7
version: 6.3.7
@@ -514,17 +279,17 @@ importers:
version: 5.1.6
zustand:
specifier: ^4.5.2
- version: 4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0)
+ version: 4.5.2(@types/react@18.2.18)(react@18.2.0)
devDependencies:
'@asyncapi/dotnet-nats-template':
specifier: ^0.12.1
- version: 0.12.1(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)
+ version: 0.12.1
'@asyncapi/go-watermill-template':
specifier: ^0.2.72
- version: 0.2.75(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)
+ version: 0.2.72
'@asyncapi/html-template':
specifier: ^2.3.0
- version: 2.3.5(@types/babel__core@7.20.5)(react@18.2.0)
+ version: 2.3.0(react@18.2.0)
'@asyncapi/java-spring-cloud-stream-template':
specifier: ^0.13.4
version: 0.13.4
@@ -533,46 +298,46 @@ importers:
version: 1.5.1
'@asyncapi/java-template':
specifier: ^0.2.1
- version: 0.2.10(@types/babel__core@7.20.5)
+ version: 0.2.1
'@asyncapi/markdown-template':
specifier: ^1.5.0
- version: 1.6.1(@types/babel__core@7.20.5)
+ version: 1.5.0
'@asyncapi/nodejs-template':
specifier: ^2.0.1
- version: 2.0.1(@types/babel__core@7.20.5)(eslint@8.57.0)
+ version: 2.0.1(eslint@8.57.1)
'@asyncapi/nodejs-ws-template':
specifier: ^0.9.33
- version: 0.9.35
+ version: 0.9.33
'@asyncapi/python-paho-template':
specifier: ^0.2.13
version: 0.2.13
'@asyncapi/ts-nats-template':
specifier: ^0.10.3
- version: 0.10.3(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)
+ version: 0.10.3
'@tailwindcss/typography':
specifier: ^0.5.8
- version: 0.5.13(tailwindcss@3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))
+ version: 0.5.8(tailwindcss@3.3.3)
'@testing-library/jest-dom':
specifier: ^5.16.5
- version: 5.17.0
+ version: 5.16.5
'@testing-library/react':
specifier: ^13.4.0
- version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 13.4.0(react-dom@18.2.0)(react@18.2.0)
'@testing-library/user-event':
specifier: ^14.4.3
- version: 14.5.2(@testing-library/dom@10.1.0)
+ version: 14.4.3(@testing-library/dom@10.4.0)
'@types/jest':
specifier: ^29.2.3
- version: 29.5.12
+ version: 29.2.3
'@types/js-yaml':
specifier: ^4.0.5
- version: 4.0.9
+ version: 4.0.5
'@types/json-schema':
- specifier: ^7.0.11
+ specifier: ^7.0.15
version: 7.0.15
assert:
specifier: ^2.0.0
- version: 2.1.0
+ version: 2.0.0
browserify-zlib:
specifier: ^0.2.0
version: 0.2.0
@@ -581,13 +346,16 @@ importers:
version: 6.0.3
cypress:
specifier: ^13.10.0
- version: 13.14.2
+ version: 13.10.0
+ eslint-config-custom:
+ specifier: workspace:*
+ version: link:../../packages/eslint-config-custom
eslint-plugin-security:
specifier: ^1.5.0
- version: 1.7.1
+ version: 1.5.0
eslint-plugin-sonarjs:
specifier: ^0.16.0
- version: 0.16.0(eslint@8.57.0)
+ version: 0.16.0(eslint@8.57.1)
https-browserify:
specifier: ^1.0.0
version: 1.0.0
@@ -608,47 +376,47 @@ importers:
version: 3.2.0
ts-node:
specifier: ^10.9.1
- version: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)
+ version: 10.9.1(@swc/core@1.7.28)(@types/node@20.4.6)(typescript@5.1.6)
url:
specifier: ^0.11.0
- version: 0.11.3
+ version: 0.11.0
util:
specifier: ^0.12.5
version: 0.12.5
web-vitals:
specifier: ^3.1.0
- version: 3.5.2
+ version: 3.1.0
webpack:
specifier: ^5.75.0
- version: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))
+ version: 5.75.0(@swc/core@1.7.28)
packages/eslint-config-custom:
dependencies:
'@typescript-eslint/parser':
specifier: ^7.7.1
- version: 7.9.0(eslint@8.57.0)(typescript@5.1.6)
+ version: 7.7.1(eslint@8.57.1)(typescript@5.1.6)
eslint-config-next:
specifier: ^13.4.1
- version: 13.4.12(eslint@8.57.0)(typescript@5.1.6)
+ version: 13.4.12(eslint@8.57.1)(typescript@5.1.6)
eslint-config-prettier:
specifier: ^8.3.0
- version: 8.10.0(eslint@8.57.0)
+ version: 8.3.0(eslint@8.57.1)
eslint-config-turbo:
specifier: ^1.9.3
- version: 1.13.3(eslint@8.57.0)
+ version: 1.9.3(eslint@8.57.1)
eslint-plugin-react:
specifier: 7.28.0
- version: 7.28.0(eslint@8.57.0)
+ version: 7.28.0(eslint@8.57.1)
devDependencies:
eslint-plugin-sonarjs:
specifier: ^0.25.1
- version: 0.25.1(eslint@8.57.0)
+ version: 0.25.1(eslint@8.57.1)
packages/tailwind-config:
devDependencies:
tailwindcss:
specifier: ^3.2.4
- version: 3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ version: 3.3.3(ts-node@10.9.1)
packages/tsconfig: {}
@@ -656,31 +424,31 @@ importers:
dependencies:
'@headlessui/react':
specifier: ^1.7.15
- version: 1.7.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.7.15(react-dom@18.2.0)(react@18.2.0)
'@heroicons/react':
specifier: ^2.0.18
- version: 2.1.3(react@18.2.0)
+ version: 2.0.18(react@18.2.0)
'@radix-ui/react-dropdown-menu':
specifier: ^2.0.5
- version: 2.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 2.0.5(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-form':
specifier: ^0.0.3
- version: 0.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 0.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-select':
specifier: ^1.2.2
- version: 1.2.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.2.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-switch':
specifier: ^1.0.3
- version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-toolbar':
specifier: ^1.0.4
- version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-tooltip':
specifier: ^1.0.6
- version: 1.0.7(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.0.6(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
classnames:
specifier: ^2.3.2
- version: 2.5.1
+ version: 2.3.2
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -699,7 +467,7 @@ importers:
version: link:../utils
'@types/lodash':
specifier: ^4.17.0
- version: 4.17.1
+ version: 4.17.0
'@types/react':
specifier: ^18.2.5
version: 18.2.18
@@ -717,10 +485,10 @@ importers:
version: link:../tsconfig
tsup:
specifier: ^8.0.2
- version: 8.0.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@4.9.5))(typescript@4.9.5)
+ version: 8.0.2(postcss@8.4.31)(typescript@4.9.4)
typescript:
specifier: ^4.9.4
- version: 4.9.5
+ version: 4.9.4
packages/utils:
dependencies:
@@ -733,12 +501,12 @@ importers:
devDependencies:
tsup:
specifier: ^8.0.2
- version: 8.0.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@4.9.5))(typescript@4.9.5)
+ version: 8.0.2(typescript@5.1.6)
packages:
- '@adobe/css-tools@4.3.3':
- resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
+ '@adobe/css-tools@4.4.0':
+ resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
@@ -754,8 +522,8 @@ packages:
peerDependencies:
ajv: '>=8'
- '@apidevtools/json-schema-ref-parser@11.6.1':
- resolution: {integrity: sha512-DxjgKBCoyReu4p5HMvpmgSOfRhhBcuf5V5soDDRgOTZMwsA4KSFzol1abFZgiCTE11L2kKGca5Md9GwDdXVBwQ==}
+ '@apidevtools/json-schema-ref-parser@11.7.0':
+ resolution: {integrity: sha512-pRrmXMCwnmrkS3MLgAIW5dXRzeTv6GLjkjb4HmxNnvAKXN1Nfzp4KmGADBQvlVUcqi+a5D+hfGDLLnd5NnYxog==}
engines: {node: '>= 16'}
'@apidevtools/json-schema-ref-parser@9.0.6':
@@ -776,8 +544,11 @@ packages:
peerDependencies:
openapi-types: '>=7'
- '@asyncapi/avro-schema-parser@3.0.22':
- resolution: {integrity: sha512-nrrIIPehHoS1+Zc0eCO3+ijo7VJhWaFqVTupFYJVxxiwNrx7HpldLiTt1awIUDU6rJTm9czGLQq8MIgtXb/Dqg==}
+ '@asyncapi/avro-schema-parser@3.0.19':
+ resolution: {integrity: sha512-1+qwxeAbSpp2OQw1TkjWemS7v646lSVM2RMJzDAh5qP5w33hM2xLXcuYC2O72l2AbCl4bkRfXTjTWLLq8qiPAA==}
+
+ '@asyncapi/avro-schema-parser@3.0.24':
+ resolution: {integrity: sha512-YMyr2S2heMrWHRyECknjHeejlZl5exUSv9nD1gTejAT13fSf0PqIRydZ9ZuoglCLBg55AeehypR2zLIBu/9kHQ==}
'@asyncapi/converter@1.5.0':
resolution: {integrity: sha512-DcwKSxudzEqsXdEzu25OUSU21O2OINUqOHw5TOBa+OH5cMMwI4WDxwjTWBDABAgFXtx8mCvPVxBMQY8+BRMTnw==}
@@ -787,6 +558,7 @@ packages:
'@asyncapi/generator-filters@2.1.0':
resolution: {integrity: sha512-OZcz8VjivvNvofEunGL+SO5M9Sq8CczNNyuBhdDzAhmdBxRPCswnliDFuHK+ZJ6XA/JgSfx2zN3H2uwzPajIgw==}
+ deprecated: 'Now part of @asyncapi/generator as of v2.1.0. Details: https://github.com/asyncapi/generator/releases/tag/@asyncapi/generator@2.1.0'
'@asyncapi/generator-hooks@0.1.0':
resolution: {integrity: sha512-cTfwiXNrNE4Z5ZkbLyX4jCAnJEQgTXpPRhSzTpt08R3Md+2tO8CMQWo4B4C8fSSy3M4aBWePJ4bbILOEqduvUg==}
@@ -794,14 +566,14 @@ packages:
'@asyncapi/generator-react-sdk@0.2.25':
resolution: {integrity: sha512-zmVdNaMPTDoUHnAIp33+dkGspEuLIi3BaaHFXY5lmL1XmaD9bU1rK/HLpNKhV32Os6Wp50CuskOwDsoRCeSGow==}
- '@asyncapi/generator-react-sdk@1.0.18':
- resolution: {integrity: sha512-6pGOi1ODODtfXqe+qe1F/VNZIxMB+CIMyAUOt3dC+UE12mBmQe4VTO2VZpbu2HZ2LMG5cfkf3J6S4jJWvY9cDg==}
+ '@asyncapi/generator-react-sdk@1.1.2':
+ resolution: {integrity: sha512-hU9ux8hEMhXwQWWzySZlZ+L5SsM0r4uXdPFvYRTX5uVGeLKGoj4Ok8hY2gPhahKcvMELOIU2mw3O6h9h9AcskQ==}
- '@asyncapi/go-watermill-template@0.2.75':
- resolution: {integrity: sha512-3L+2vY3aN5Mr8Rqm3YptcvYEgKuCjfkvxZHlXANjuHJId/2ybO8YQoyAzjIORoKbZGwo8rwa6VuLqlAdaPShdg==}
+ '@asyncapi/go-watermill-template@0.2.72':
+ resolution: {integrity: sha512-y7bCIgaTKgTsscc3x5A4nnJRgUP9+h4IXhGJpqHGLvcQe/QPlpVZo8kft2m10C4ka2wzNX1ws+edbcUeEQGFAg==}
- '@asyncapi/html-template@2.3.5':
- resolution: {integrity: sha512-NZPjg7Mc1Dxn3NnZ4uIfKdv8q+0bcF4CQeeuX5nbgsEIt/ZztePGTTLp51F6aPa/6Dowf+1ZuibpOXhhb9OKAg==}
+ '@asyncapi/html-template@2.3.0':
+ resolution: {integrity: sha512-2OSvxLHWCDkyDP6I40gijmYG190mG0DLMJvnlrsNGE83nHOFdoZg2EIR0brrwM7OjNL+EuCifcHdh6r6uli1bA==}
'@asyncapi/java-spring-cloud-stream-template@0.13.4':
resolution: {integrity: sha512-Xq0QRuRMFfsyFUPYNiiLEgmaO2Ft1eIqW6HPsHV704rLsPY4RTqhy2bMYMbcrCsOEAPa+c19ZhgDlhsZAG61pQ==}
@@ -809,32 +581,32 @@ packages:
'@asyncapi/java-spring-template@1.5.1':
resolution: {integrity: sha512-3C9w7zLWBFsqoaKUXD5RhnBgmloUULr3EPir06BSVM14bgew7cRdEhdqXAhmN2Sr7Gi540m4vBkwVKjey3yMNw==}
- '@asyncapi/java-template@0.2.10':
- resolution: {integrity: sha512-1adiq0hK1A0GoQ104YCEi/glymViex0jiu/Ru/HAV6wid6P+6yFk7ItUNX4CDvH0xXzoqSmkIs3tgjdM4R2YYw==}
+ '@asyncapi/java-template@0.2.1':
+ resolution: {integrity: sha512-nsgknYUF3Bg7fIaJsTepHqEVfxa+E3DLWhTFhL8yOnMQtapEuGbuR6P3E2jOSZGl30O9nugO3zi4hyNaXgVghw==}
engines: {node: '>=11.0.0'}
- '@asyncapi/markdown-template@1.6.1':
- resolution: {integrity: sha512-OtAtp5K2Mza6187fulCsCAvdb8GbHnzZ55+Yb54PSLnm0iabsHfBLh6bVtYS3cYXSDRxjlgb8Vdr/l4ipV/xHw==}
+ '@asyncapi/markdown-template@1.5.0':
+ resolution: {integrity: sha512-86ExMTh4PtnMCOJO1uomMViipNgWUKT+OTfiUZbvJ1WFUm8Mka1g+eva9L0OoEnS/NAFeariQF4g4/l+/6SS0w==}
'@asyncapi/modelina@1.9.1':
resolution: {integrity: sha512-Uik1951dm0MGduKsPzzJmeHZ/IINevR1Qx+QHIRfj9B4ayEAFMNV7sOBJ9eqtEvDohGvXgeFsnNMGAXshed1GQ==}
engines: {node: '>=14'}
- '@asyncapi/modelina@3.5.0':
- resolution: {integrity: sha512-mrRg0ZYKtJPr/clgWb9n+/rLtlQr3NnMtBpA7YiAh5p4/oVoz691J6nx5A7bZ6pV+04VTPfE2s3nt92FCdVJmw==}
+ '@asyncapi/modelina@3.7.0':
+ resolution: {integrity: sha512-eVaJjV7es+HW4W4hycocD2DoANHC7qq6rlvLZbSmWGiYqY+M0WLMZeHNp8oameax8/k+3o9WvX3crMBHxi/LJg==}
engines: {node: '>=18'}
'@asyncapi/nodejs-template@2.0.1':
resolution: {integrity: sha512-XKjHWo91aUrhAXN7yZGLFhTr46g0wTRa79i2MlTV57xVBsfYOxMjM4lvubaoJJQSDvmEaUlaKsK3HmeT1T4mBA==}
- '@asyncapi/nodejs-template@3.0.0':
- resolution: {integrity: sha512-0CxOJ0sYxE3FCXQqyQM0rIqWy9DMCjMJcHwSR4eU8EXR8/TA8MxGarw5DETp4Rbkc/llPEgZOqfbjK+8njODxA==}
+ '@asyncapi/nodejs-ws-template@0.9.33':
+ resolution: {integrity: sha512-OxEMmdcMMK4KxWoNpXnwhPL2Q3lqx6fxuFc2ONmUAuHr8o+c5rfgyDaqKWQ48knSUaYpbywuCH6SGi9pV52IMQ==}
- '@asyncapi/nodejs-ws-template@0.9.35':
- resolution: {integrity: sha512-fPut73chkFP0OORBERxUU3tqooohtyW/LhK3FHX7/M+jMxuvlq/Efq0WTllOs5MTIkuQzWl0PgSftQIrbVw/eQ==}
+ '@asyncapi/openapi-schema-parser@3.0.18':
+ resolution: {integrity: sha512-azKEwm9wel7QS/Fz0y1C9eCUIfUEZE/JrQlGybPmQKHS213RKyo5Rjpzo9nqGc4VT7o1URDIMaYTnYdgfMitew==}
- '@asyncapi/openapi-schema-parser@3.0.22':
- resolution: {integrity: sha512-rPI5onl1Sb/PslsyyPFCANUkok36j0ADH2A51U+THKcAHiZ3mu+QAqr/Cnvm1sXTEkNL1Mxl78uLTJQ1wOTQtA==}
+ '@asyncapi/openapi-schema-parser@3.0.24':
+ resolution: {integrity: sha512-7wz2yVDedJMS+TzOuqCvRWJMc6pNHICKZcOhnW6ZvyVLAh7hYIqQE1WA4OoXT4cKVbwSU3V2Q4bZagSsAIQd6Q==}
'@asyncapi/parser@1.18.1':
resolution: {integrity: sha512-7sU9DajLV+vA2vShTYmD5lbtbTY6TOcGxB4Z4IcpRp8x5pejOsN32iU05eIYCnuamsi5SMscFxoi6fIO2vPK3Q==}
@@ -845,17 +617,29 @@ packages:
'@asyncapi/parser@3.0.0-next-major-spec.8':
resolution: {integrity: sha512-d8ebYM08BCsx3Q4AeLke6naU/NrcAXFEVpS6b3EWcKRdUDce+v0X5k9aDH+YXWCaQApEF28UzcxhlSOJvhIFgQ==}
- '@asyncapi/parser@3.3.0':
- resolution: {integrity: sha512-IqBeDU/YxiHP/ySPYR5ayT/EE2ad9V75v8lhcA2ZowRDKh1YvNJaDwTpJjmRuggg8328uSDc9x/YEy6KgRgcgw==}
+ '@asyncapi/parser@3.2.2':
+ resolution: {integrity: sha512-ved4ja3ANs6BcRhWLbK/A7JIhJyMQBYdV1GZwo6Ptf+qBkGIdvV3dt8M4T6TZqtIbUI2NOvmO2YUqtaPWTudgA==}
+
+ '@asyncapi/protobuf-schema-parser@3.0.0':
+ resolution: {integrity: sha512-kjoLrll611K+xYC/iBUlSnZsCHbrhL999ItVHZhObUOjUB991XgonqbSAaihiiDXTYgceOLhJKAN5llkV/LOOA==}
- '@asyncapi/protobuf-schema-parser@3.2.12':
- resolution: {integrity: sha512-ROMx71sdfeAvpRoRWkjKXxP6Cu6xNE2P/b7Nl3jiXcPUNhlwUu2m5ScV00v4C2d/So6jNrxnUzXeg1Q3f20EZw==}
+ '@asyncapi/protobuf-schema-parser@3.2.14':
+ resolution: {integrity: sha512-7v64Jxhz2IBfaQECUhfwuLRMFQTysvmqtvT+Esgd9NooIPRnkEzgCbBnC25oGjzSB6Sju28G406lQpO15HHaEw==}
+
+ '@asyncapi/protobuf-schema-parser@3.2.8':
+ resolution: {integrity: sha512-qYKutNQTkMNrf8BB9d6o2JS/4LC+r6Fkugvg46gW66kN9dKMU2nguHWM+MdcG89nk5keM2Olz4IN8AvWqX9iew==}
'@asyncapi/python-paho-template@0.2.13':
resolution: {integrity: sha512-AioRO8KGMmVXR3JKRNQil2u+/fVi3M4hWFLrEdpdBNaGArjqNoYgQ95Ijl2IRqMTAr5mn5bq4V/8/skl6t2/2w==}
- '@asyncapi/raml-dt-schema-parser@4.0.22':
- resolution: {integrity: sha512-qs74JvQx6W99TwJJfzajCiPF/TYx3FlKpK3ISd8bD5AR2Dp2zmih7+vQmQ+49u7VxooQ03hS/q3w6u3cxABDYw==}
+ '@asyncapi/raml-dt-schema-parser@4.0.24':
+ resolution: {integrity: sha512-Fy9IwCXPpXoG4Mkm7sXgWucSwYg8POwdx16xuHAmV6AerpcM8nk5mT/tARLtR3wrMst3OBwReEVYzwT3esSb8g==}
+
+ '@asyncapi/react-component@1.2.2':
+ resolution: {integrity: sha512-+KXIIsMhMy7OqUpmh4Jql+bFRT9dO7n+zBay+wjXEjWi3IyFHlw5CiP5XQ103PGYunRwnmaTkUwerjYIB0w6jA==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
'@asyncapi/react-component@1.4.10':
resolution: {integrity: sha512-ejANS06yj1ZM4YDtsRi0g7h3EEJLGusewjzeugK+tGntNAKVZRvTPUXhbSDMhTARHuZXhUGLlITIno7N1aXapw==}
@@ -869,8 +653,8 @@ packages:
'@asyncapi/specs@5.1.0':
resolution: {integrity: sha512-yffhETqehkim43luMnPKOwzY0D0YtU4bKpORIXIaid6p5Y5kDLrMGJaEPkNieQp03HMjhjFrnUPtT8kvqe0+aQ==}
- '@asyncapi/specs@6.7.1':
- resolution: {integrity: sha512-jEaW2vgAwD9GboCdO/TI1zN2k+iowL8YFYwiZwTIr4U4KDmsgo3BLypScl6Jl4+IvY9RdsWE67nuzVX7jooiqQ==}
+ '@asyncapi/specs@6.5.4':
+ resolution: {integrity: sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==}
'@asyncapi/specs@6.8.0':
resolution: {integrity: sha512-1i6xs8+IOh6U5T7yH+bCMGQBF+m7kP/NpwyAlt++XaDQutoGCgACf24mQBgcDVqDWWoY81evQv+9ABvw0BviVg==}
@@ -882,169 +666,173 @@ packages:
resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==}
hasBin: true
- '@babel/code-frame@7.24.2':
- resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
+ '@babel/code-frame@7.24.7':
+ resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.4':
- resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
+ '@babel/compat-data@7.25.4':
+ resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.12.9':
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.5':
- resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
+ '@babel/core@7.17.4':
+ resolution: {integrity: sha512-R9x5r4t4+hBqZTmioSnkrW+I6NmbojwjGT8p4G2Gw1thWbXIHGDnmGdLdFw0/7ljucdIrNRp7Npgb4CyBYzzJg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.25.2':
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
- '@babel/eslint-parser@7.24.5':
- resolution: {integrity: sha512-gsUcqS/fPlgAw1kOtpss7uhY6E9SFFANQ6EFX5GTvzUwaV0+sGaZWk6xq22MOdeT9wfxyokW3ceCUvOiRtZciQ==}
+ '@babel/eslint-parser@7.25.1':
+ resolution: {integrity: sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- '@babel/generator@7.24.5':
- resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
+ '@babel/generator@7.25.6':
+ resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.22.5':
- resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ '@babel/helper-annotate-as-pure@7.24.7':
+ resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
- resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.23.6':
- resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
+ '@babel/helper-compilation-targets@7.25.2':
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.5':
- resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
+ '@babel/helper-create-class-features-plugin@7.25.4':
+ resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.22.15':
- resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
+ '@babel/helper-create-regexp-features-plugin@7.25.2':
+ resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.2':
- resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ '@babel/helper-define-polyfill-provider@0.4.4':
+ resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-environment-visitor@7.22.20':
- resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.23.0':
- resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
- engines: {node: '>=6.9.0'}
+ '@babel/helper-define-polyfill-provider@0.5.0':
+ resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-hoist-variables@7.22.5':
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
- engines: {node: '>=6.9.0'}
+ '@babel/helper-define-polyfill-provider@0.6.2':
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.24.5':
- resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==}
+ '@babel/helper-member-expression-to-functions@7.24.8':
+ resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.3':
- resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
+ '@babel/helper-module-imports@7.24.7':
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.5':
- resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
+ '@babel/helper-module-transforms@7.25.2':
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.22.5':
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
+ '@babel/helper-optimise-call-expression@7.24.7':
+ resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.5':
- resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==}
+ '@babel/helper-plugin-utils@7.24.8':
+ resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.22.20':
- resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
+ '@babel/helper-remap-async-to-generator@7.25.0':
+ resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.24.1':
- resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
+ '@babel/helper-replace-supers@7.25.0':
+ resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.24.5':
- resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
+ '@babel/helper-simple-access@7.24.7':
+ resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.24.5':
- resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.1':
- resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
+ '@babel/helper-string-parser@7.24.8':
+ resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.5':
- resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
+ '@babel/helper-validator-identifier@7.24.7':
+ resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.23.5':
- resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
+ '@babel/helper-validator-option@7.24.8':
+ resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.24.5':
- resolution: {integrity: sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==}
+ '@babel/helper-wrap-function@7.25.0':
+ resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.5':
- resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==}
+ '@babel/helpers@7.25.6':
+ resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.5':
- resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==}
+ '@babel/highlight@7.24.7':
+ resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.5':
- resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
+ '@babel/parser@7.25.6':
+ resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5':
- resolution: {integrity: sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
+ resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0':
+ resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1':
- resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0':
+ resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1':
- resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
+ resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1':
- resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0':
+ resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1056,8 +844,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-decorators@7.24.1':
- resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==}
+ '@babel/plugin-proposal-decorators@7.24.7':
+ resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1103,6 +891,13 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-proposal-unicode-property-regex@7.18.6':
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-async-generators@7.8.4':
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -1124,8 +919,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.24.1':
- resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==}
+ '@babel/plugin-syntax-decorators@7.24.7':
+ resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1140,20 +935,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-flow@7.24.1':
- resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==}
+ '@babel/plugin-syntax-flow@7.24.7':
+ resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.24.1':
- resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
+ '@babel/plugin-syntax-import-assertions@7.25.6':
+ resolution: {integrity: sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.1':
- resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
+ '@babel/plugin-syntax-import-attributes@7.25.6':
+ resolution: {integrity: sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1168,8 +963,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.1':
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
+ '@babel/plugin-syntax-jsx@7.24.7':
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1216,8 +1011,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.1':
- resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
+ '@babel/plugin-syntax-typescript@7.25.4':
+ resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1228,361 +1023,384 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.24.1':
- resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==}
+ '@babel/plugin-transform-arrow-functions@7.24.7':
+ resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.24.3':
- resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
+ '@babel/plugin-transform-async-generator-functions@7.25.4':
+ resolution: {integrity: sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.24.1':
- resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
+ '@babel/plugin-transform-async-to-generator@7.24.7':
+ resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.24.1':
- resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
+ '@babel/plugin-transform-block-scoped-functions@7.24.7':
+ resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.24.5':
- resolution: {integrity: sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==}
+ '@babel/plugin-transform-block-scoping@7.25.0':
+ resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.1':
- resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
+ '@babel/plugin-transform-class-properties@7.25.4':
+ resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.24.4':
- resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==}
+ '@babel/plugin-transform-class-static-block@7.24.7':
+ resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.24.5':
- resolution: {integrity: sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==}
+ '@babel/plugin-transform-classes@7.25.4':
+ resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.24.1':
- resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==}
+ '@babel/plugin-transform-computed-properties@7.24.7':
+ resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.5':
- resolution: {integrity: sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==}
+ '@babel/plugin-transform-destructuring@7.24.8':
+ resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.24.1':
- resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
+ '@babel/plugin-transform-dotall-regex@7.24.7':
+ resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.24.1':
- resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
+ '@babel/plugin-transform-duplicate-keys@7.24.7':
+ resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dynamic-import@7.24.1':
- resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0':
+ resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-dynamic-import@7.24.7':
+ resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.24.1':
- resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
+ '@babel/plugin-transform-exponentiation-operator@7.24.7':
+ resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.24.1':
- resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
+ '@babel/plugin-transform-export-namespace-from@7.24.7':
+ resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.24.1':
- resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==}
+ '@babel/plugin-transform-flow-strip-types@7.25.2':
+ resolution: {integrity: sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.24.1':
- resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==}
+ '@babel/plugin-transform-for-of@7.24.7':
+ resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.24.1':
- resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
+ '@babel/plugin-transform-function-name@7.25.1':
+ resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.24.1':
- resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
+ '@babel/plugin-transform-json-strings@7.24.7':
+ resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.24.1':
- resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
+ '@babel/plugin-transform-literals@7.25.2':
+ resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.24.1':
- resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7':
+ resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.24.1':
- resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
+ '@babel/plugin-transform-member-expression-literals@7.24.7':
+ resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.24.1':
- resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
+ '@babel/plugin-transform-modules-amd@7.24.7':
+ resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.1':
- resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
+ '@babel/plugin-transform-modules-commonjs@7.24.8':
+ resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.24.1':
- resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
+ '@babel/plugin-transform-modules-systemjs@7.25.0':
+ resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.24.1':
- resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
+ '@babel/plugin-transform-modules-umd@7.24.7':
+ resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5':
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
+ resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.24.1':
- resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
+ '@babel/plugin-transform-new-target@7.24.7':
+ resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1':
- resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
+ resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.24.1':
- resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
+ '@babel/plugin-transform-numeric-separator@7.24.7':
+ resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.24.5':
- resolution: {integrity: sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==}
+ '@babel/plugin-transform-object-rest-spread@7.24.7':
+ resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.24.1':
- resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
+ '@babel/plugin-transform-object-super@7.24.7':
+ resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.24.1':
- resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
+ '@babel/plugin-transform-optional-catch-binding@7.24.7':
+ resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.5':
- resolution: {integrity: sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==}
+ '@babel/plugin-transform-optional-chaining@7.24.8':
+ resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.5':
- resolution: {integrity: sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==}
+ '@babel/plugin-transform-parameters@7.24.7':
+ resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.1':
- resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
+ '@babel/plugin-transform-private-methods@7.25.4':
+ resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.24.5':
- resolution: {integrity: sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==}
+ '@babel/plugin-transform-private-property-in-object@7.24.7':
+ resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.24.1':
- resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
+ '@babel/plugin-transform-property-literals@7.24.7':
+ resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-constant-elements@7.24.1':
- resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==}
+ '@babel/plugin-transform-react-constant-elements@7.25.1':
+ resolution: {integrity: sha512-SLV/giH/V4SmloZ6Dt40HjTGTAIkxn33TVIHxNGNvo8ezMhrxBkzisj4op1KZYPIOHFLqhv60OHvX+YRu4xbmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.24.1':
- resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==}
+ '@babel/plugin-transform-react-display-name@7.24.7':
+ resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.22.5':
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
+ '@babel/plugin-transform-react-jsx-development@7.24.7':
+ resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.23.4':
- resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
+ '@babel/plugin-transform-react-jsx@7.25.2':
+ resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.24.1':
- resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==}
+ '@babel/plugin-transform-react-pure-annotations@7.24.7':
+ resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.24.1':
- resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
+ '@babel/plugin-transform-regenerator@7.24.7':
+ resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.24.1':
- resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
+ '@babel/plugin-transform-reserved-words@7.24.7':
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.3':
- resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
+ '@babel/plugin-transform-runtime@7.25.4':
+ resolution: {integrity: sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.24.1':
- resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
+ '@babel/plugin-transform-shorthand-properties@7.24.7':
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.24.1':
- resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
+ '@babel/plugin-transform-spread@7.24.7':
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.1':
- resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
+ '@babel/plugin-transform-sticky-regex@7.24.7':
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.24.1':
- resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
+ '@babel/plugin-transform-template-literals@7.24.7':
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.24.5':
- resolution: {integrity: sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==}
+ '@babel/plugin-transform-typeof-symbol@7.24.8':
+ resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.24.5':
- resolution: {integrity: sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==}
+ '@babel/plugin-transform-typescript@7.25.2':
+ resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.1':
- resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
+ '@babel/plugin-transform-unicode-escapes@7.24.7':
+ resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.24.1':
- resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
+ '@babel/plugin-transform-unicode-property-regex@7.24.7':
+ resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.1':
- resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
+ '@babel/plugin-transform-unicode-regex@7.24.7':
+ resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.24.1':
- resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
+ '@babel/plugin-transform-unicode-sets-regex@7.25.4':
+ resolution: {integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.24.5':
- resolution: {integrity: sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==}
+ '@babel/preset-env@7.22.4':
+ resolution: {integrity: sha512-c3lHOjbwBv0TkhYCr+XCR6wKcSZ1QbQTVdSkZUaVpLv8CVWotBMArWUi5UAJrcrQaEnleVkkvaV8F/pmc/STZQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/preset-env@7.25.4':
+ resolution: {integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-flow@7.24.1':
- resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==}
+ '@babel/preset-flow@7.24.7':
+ resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-modules@0.1.6':
+ resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
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
- '@babel/preset-react@7.24.1':
- resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==}
+ '@babel/preset-react@7.22.3':
+ resolution: {integrity: sha512-lxDz1mnZ9polqClBCVBjIVUypoB4qV3/tZUDb/IlYbW1kiiLaXaX+bInbRjl+lNQ/iUZraQ3+S8daEmoELMWug==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/preset-react@7.24.7':
+ resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1593,8 +1411,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/register@7.23.7':
- resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
+ '@babel/preset-typescript@7.24.7':
+ resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/register@7.24.6':
+ resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1602,20 +1426,20 @@ packages:
'@babel/regjsgen@0.8.0':
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- '@babel/runtime@7.24.5':
- resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==}
+ '@babel/runtime@7.25.6':
+ resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.24.0':
- resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
+ '@babel/template@7.25.0':
+ resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.5':
- resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
+ '@babel/traverse@7.25.6':
+ resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.5':
- resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
+ '@babel/types@7.25.6':
+ resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
engines: {node: '>=6.9.0'}
'@base2/pretty-print-object@1.0.1':
@@ -1624,74 +1448,74 @@ packages:
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- '@changesets/apply-release-plan@7.0.0':
- resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==}
+ '@changesets/apply-release-plan@6.1.4':
+ resolution: {integrity: sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==}
- '@changesets/assemble-release-plan@6.0.0':
- resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==}
+ '@changesets/assemble-release-plan@5.2.4':
+ resolution: {integrity: sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==}
- '@changesets/changelog-git@0.2.0':
- resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
+ '@changesets/changelog-git@0.1.14':
+ resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==}
- '@changesets/cli@2.27.1':
- resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==}
+ '@changesets/cli@2.26.2':
+ resolution: {integrity: sha512-dnWrJTmRR8bCHikJHl9b9HW3gXACCehz4OasrXpMp7sx97ECuBGGNjJhjPhdZNCvMy9mn4BWdplI323IbqsRig==}
hasBin: true
- '@changesets/config@3.0.0':
- resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==}
+ '@changesets/config@2.3.1':
+ resolution: {integrity: sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==}
- '@changesets/errors@0.2.0':
- resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
+ '@changesets/errors@0.1.4':
+ resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==}
- '@changesets/get-dependents-graph@2.0.0':
- resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==}
+ '@changesets/get-dependents-graph@1.3.6':
+ resolution: {integrity: sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==}
- '@changesets/get-release-plan@4.0.0':
- resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==}
+ '@changesets/get-release-plan@3.0.17':
+ resolution: {integrity: sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==}
- '@changesets/get-version-range-type@0.4.0':
- resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
+ '@changesets/get-version-range-type@0.3.2':
+ resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
- '@changesets/git@3.0.0':
- resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==}
+ '@changesets/git@2.0.0':
+ resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==}
- '@changesets/logger@0.1.0':
- resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==}
+ '@changesets/logger@0.0.5':
+ resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==}
- '@changesets/parse@0.4.0':
- resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
+ '@changesets/parse@0.3.16':
+ resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==}
- '@changesets/pre@2.0.0':
- resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==}
+ '@changesets/pre@1.0.14':
+ resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==}
- '@changesets/read@0.6.0':
- resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==}
+ '@changesets/read@0.5.9':
+ resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==}
'@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
- '@changesets/types@6.0.0':
- resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
+ '@changesets/types@5.2.1':
+ resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==}
- '@changesets/write@0.3.0':
- resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==}
+ '@changesets/write@0.2.3':
+ resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==}
- '@codemirror/autocomplete@6.16.0':
- resolution: {integrity: sha512-P/LeCTtZHRTCU4xQsa89vSKWecYv1ZqwzOd5topheGRf+qtacFgBeIMQi3eL8Kt/BUNvxUWkx+5qP2jlGoARrg==}
+ '@codemirror/autocomplete@6.18.1':
+ resolution: {integrity: sha512-iWHdj/B1ethnHRTwZj+C1obmmuCzquH29EbcKr0qIjA9NfDeBDJ7vs+WOHsFeLeflE4o+dHfYndJloMKHUkWUA==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/common': ^1.0.0
- '@codemirror/commands@6.5.0':
- resolution: {integrity: sha512-rK+sj4fCAN/QfcY9BEzYMgp4wwL/q5aj/VfNSoH1RWPF9XS/dUwBkvlL3hpWgEjOqlpdN1uLC9UkjJ4tmyjJYg==}
+ '@codemirror/commands@6.6.2':
+ resolution: {integrity: sha512-Fq7eWOl1Rcbrfn6jD8FPCj9Auaxdm5nIK5RYOeW7ughnd/rY5AmPg6b+CfsG39ZHdwiwe8lde3q8uR7CF5S0yQ==}
- '@codemirror/language@6.10.1':
- resolution: {integrity: sha512-5GrXzrhq6k+gL5fjkAwt90nYDmjlzTIJV8THnxNFtNKWotMIlzzN+CpqxqwXOECnUdOndmSeWntVrVcv5axWRQ==}
+ '@codemirror/language@6.10.3':
+ resolution: {integrity: sha512-kDqEU5sCP55Oabl6E7m5N+vZRoc0iWqgDVhEKifcHzPzjqCegcO4amfrYVL9PmPZpl4G0yjkpTpUO/Ui8CzO8A==}
- '@codemirror/lint@6.7.1':
- resolution: {integrity: sha512-rELba6QJD20/bNXWP/cKTGLrwVEcpa2ViwULCV03ONcY1Je85++7sczVRUlnE4TJMjatx3IJTz6HX4NXi+moXw==}
+ '@codemirror/lint@6.8.2':
+ resolution: {integrity: sha512-PDFG5DjHxSEjOXk9TQYYVjZDqlZTFaDBfhQixHnQOEVDDNHUbEh/hstAjcQJaA6FQdZTD1hquXTK0rVBLADR1g==}
'@codemirror/search@6.5.6':
resolution: {integrity: sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==}
@@ -1702,20 +1526,13 @@ packages:
'@codemirror/view@6.26.3':
resolution: {integrity: sha512-gmqxkPALZjkgSxIeeweY/wGQXBfwTUaLs8h7OKtSwfbj9Ct3L11lD+u1sS7XHppxFQoMDiMDp07P9f3I2jWOHw==}
+ '@codemirror/view@6.34.0':
+ resolution: {integrity: sha512-2vKJ79tOcVfgPYVJM2XjcL1BH5Bsl7/tgn9ilBj3XWeCS5kTRy/NE4FHEj4aMylOl/D3IPNsmZH0WPlB+DyIdA==}
+
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
- '@craco/craco@7.1.0':
- resolution: {integrity: sha512-oRAcPIKYrfPXp9rSzlsDNeOaVtDiKhoyqSXUoqiK24jCkHr4T8m/a2f74yXIzCbIheoUWDOIfWZyRgFgT+cpqA==}
- engines: {node: '>=6'}
- hasBin: true
- peerDependencies:
- react-scripts: ^5.0.0
-
- '@craco/types@7.1.0':
- resolution: {integrity: sha512-zdyk2G9UfEItrvnB+sd3xDHB5Mf3dsD6wE+Ex6V+Nch+GSXdFGQfXD/l+ZX9hO03R1rmnJPCxrIRPJUib8Q/MQ==}
-
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
@@ -1824,14 +1641,14 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
- '@ebay/nice-modal-react@1.2.13':
- resolution: {integrity: sha512-jx8xIWe/Up4tpNuM02M+rbnLoxdngTGk3Y8LjJsLGXXcSoKd/+eZStZcAlIO/jwxyz/bhPZnpqPJZWAmhOofuA==}
+ '@ebay/nice-modal-react@1.2.10':
+ resolution: {integrity: sha512-qNp8vQo5kPRwB9bHlkh8lcwH/0KFWpp58X/b9KaLB/gNlJ3W24nCT2l/qBBSnWgV7NEIq25uLowaPS2mbfpZiw==}
peerDependencies:
react: '>16.8.0'
react-dom: '>16.8.0'
- '@emotion/use-insertion-effect-with-fallbacks@1.0.1':
- resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0':
+ resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
peerDependencies:
react: '>=16.8.0'
@@ -2111,59 +1928,69 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.10.0':
- resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
+ '@eslint-community/regexpp@4.11.1':
+ resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ '@eslint/eslintrc@1.4.1':
+ resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
'@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/js@8.57.0':
- resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
+ '@eslint/js@8.57.1':
+ resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@fal-works/esbuild-plugin-global-externals@2.1.2':
resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==}
- '@floating-ui/core@1.6.1':
- resolution: {integrity: sha512-42UH54oPZHPdRHdw6BgoBD6cg/eVTmVrFcgeRDM3jbO7uxSoipVcmcIGFcA5jmOHO5apcyvBhkSKES3fQJnu7A==}
+ '@floating-ui/core@1.6.8':
+ resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
- '@floating-ui/dom@1.6.5':
- resolution: {integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==}
+ '@floating-ui/dom@1.6.11':
+ resolution: {integrity: sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==}
- '@floating-ui/react-dom@2.0.9':
- resolution: {integrity: sha512-q0umO0+LQK4+p6aGyvzASqKbKOJcAHJ7ycE9CuUvfx3s9zTHWmGJTPOIlM/hmSBfUfg/XfY5YhLBLR/LHwShQQ==}
+ '@floating-ui/react-dom@2.1.2':
+ resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/utils@0.2.2':
- resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==}
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
'@fmvilas/pseudo-yaml-ast@0.3.1':
resolution: {integrity: sha512-8OAB74W2a9M3k9bjYD8AjVXkX+qO8c0SqNT5HlgOqx7AxSw8xdksEcZp7gFtfi+4njSxT6+76ZR+1ubjAwQHOg==}
- '@headlessui/react@1.7.19':
- resolution: {integrity: sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==}
+ '@headlessui/react@1.7.15':
+ resolution: {integrity: sha512-OTO0XtoRQ6JPB1cKNFYBZv2Q0JMqMGNhYP1CjPvcJvjz8YGokz8oAj89HIYZGN0gZzn/4kk9iUpmMF4Q21Gsqw==}
engines: {node: '>=10'}
peerDependencies:
react: ^16 || ^17 || ^18
react-dom: ^16 || ^17 || ^18
- '@heroicons/react@2.1.3':
- resolution: {integrity: sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==}
+ '@heroicons/react@2.0.18':
+ resolution: {integrity: sha512-7TyMjRrZZMBPa+/5Y8lN0iyvUU/01PeMGX2+RE7cQWpEUIcb4QotzUObFkJDejj/HUH4qjP/eQ0gzzKs2f+6Yw==}
peerDependencies:
react: '>= 16'
- '@hookstate/core@4.0.1':
- resolution: {integrity: sha512-Uh2D8Z0z/pqOJ7t+SfC+2sj13JQcB4yFhtL+T1choCaBxTSlgOS/CKRBohgJ4cjTKoxOmTT8uSQysu3gUjX+Gw==}
+ '@hookstate/core@4.0.0-rc21':
+ resolution: {integrity: sha512-aAiF537i9a54OlWzA/EtOa1l4bJMmpmJ4Fb/ZV8R30xD6jGMCGbCxHcb6SWIqO92T/w8dFXyl5XQbQ8reFpQrA==}
peerDependencies:
react: ^16.8.6 || ^17.0.0 || ^18.0.0
'@humanwhocodes/config-array@0.11.14':
resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
engines: {node: '>=10.10.0'}
+ deprecated: Use @eslint/config-array instead
+
+ '@humanwhocodes/config-array@0.13.0':
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
+ engines: {node: '>=10.10.0'}
+ deprecated: Use @eslint/config-array instead
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
@@ -2171,6 +1998,7 @@ packages:
'@humanwhocodes/object-schema@2.0.3':
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
+ deprecated: Use @eslint/object-schema instead
'@hyperjump/json-pointer@0.9.8':
resolution: {integrity: sha512-6D6okhpH5VOS3oSYUtxu8nClsOcp59aC+sS06/tCxEta4T5Gk1yaycLiCkG8kE9eh+9AJUHsvQEJJrWBfLOjvA==}
@@ -2305,8 +2133,8 @@ packages:
'@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
- '@jridgewell/sourcemap-codec@1.4.15':
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
@@ -2338,11 +2166,11 @@ packages:
'@lezer/common@1.2.1':
resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==}
- '@lezer/highlight@1.2.0':
- resolution: {integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==}
+ '@lezer/highlight@1.2.1':
+ resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
- '@lezer/lr@1.4.0':
- resolution: {integrity: sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==}
+ '@lezer/lr@1.4.2':
+ resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
'@manypkg/find-root@1.1.0':
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
@@ -2365,8 +2193,8 @@ packages:
peerDependencies:
monaco-editor: '>= 0.21.0 < 1'
- '@monaco-editor/react@4.6.0':
- resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==}
+ '@monaco-editor/react@4.4.6':
+ resolution: {integrity: sha512-Gr3uz3LYf33wlFE3eRnta4RxP5FSNxiIV9ENn2D2/rN8KgGAD8ecvcITRtsbbyuOuNkwbuHYxfeaz2Vr+CtyFA==}
peerDependencies:
monaco-editor: '>= 0.25.0 < 1'
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -2466,6 +2294,10 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
+ '@nolyfill/is-core-module@1.0.39':
+ resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
+ engines: {node: '>=12.4.0'}
+
'@one-ini/wasm@0.1.1':
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
@@ -2476,8 +2308,8 @@ packages:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
- '@pmmmwh/react-refresh-webpack-plugin@0.5.13':
- resolution: {integrity: sha512-odZVYXly+JwzYri9rKqqUAk0cY6zLpv4dxoKinhoJNShV36Gpxf+CyDIILJ4tYsJ1ZxIWs233Y39iVnynvDA/g==}
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.15':
+ resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==}
engines: {node: '>= 10.13'}
peerDependencies:
'@types/webpack': 4.x || 5.x
@@ -2541,6 +2373,9 @@ packages:
'@radix-ui/primitive@1.0.1':
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
+ '@radix-ui/primitive@1.1.0':
+ resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==}
+
'@radix-ui/react-arrow@1.0.3':
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
@@ -2567,6 +2402,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-collection@1.1.0':
+ resolution: {integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-compose-refs@1.0.1':
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
@@ -2576,6 +2424,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-compose-refs@1.1.0':
+ resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-context@1.0.1':
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
@@ -2585,6 +2442,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-context@1.1.0':
+ resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-direction@1.0.1':
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
@@ -2594,21 +2460,17 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-dismissable-layer@1.0.4':
- resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
+ '@radix-ui/react-direction@1.1.0':
+ resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-dismissable-layer@1.0.5':
- resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
+ '@radix-ui/react-dismissable-layer@1.0.4':
+ resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2620,8 +2482,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dropdown-menu@2.0.6':
- resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==}
+ '@radix-ui/react-dropdown-menu@2.0.5':
+ resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2655,8 +2517,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-focus-scope@1.0.4':
- resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
+ '@radix-ui/react-form@0.0.3':
+ resolution: {integrity: sha512-kgE+Z/haV6fxE5WqIXj05KkaXa3OkZASoTDy25yX2EIp/x0c54rOH/vFr5nOZTg7n7T1z8bSyXmiVIFP9bbhPQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2668,24 +2530,20 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-form@0.0.3':
- resolution: {integrity: sha512-kgE+Z/haV6fxE5WqIXj05KkaXa3OkZASoTDy25yX2EIp/x0c54rOH/vFr5nOZTg7n7T1z8bSyXmiVIFP9bbhPQ==}
+ '@radix-ui/react-id@1.0.1':
+ resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-id@1.0.1':
- resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
+ '@radix-ui/react-id@1.1.0':
+ resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
peerDependencies:
'@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
@@ -2703,8 +2561,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-menu@2.0.6':
- resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==}
+ '@radix-ui/react-menu@2.0.5':
+ resolution: {integrity: sha512-Gw4f9pwdH+w5w+49k0gLjN0PfRDHvxmAgG16AbyJZ7zhwZ6PBHKtWohvnSwfusfnK3L68dpBREHpVkj8wEM7ZA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2729,8 +2587,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-popper@1.1.3':
- resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
+ '@radix-ui/react-portal@1.0.3':
+ resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2742,8 +2600,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-portal@1.0.3':
- resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
+ '@radix-ui/react-presence@1.0.1':
+ resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2755,8 +2613,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-portal@1.0.4':
- resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
+ '@radix-ui/react-primitive@1.0.3':
+ resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2768,21 +2626,21 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-presence@1.0.1':
- resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
+ '@radix-ui/react-primitive@2.0.0':
+ resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-primitive@1.0.3':
- resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
+ '@radix-ui/react-roving-focus@1.0.4':
+ resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2794,13 +2652,13 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-roving-focus@1.0.4':
- resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
+ '@radix-ui/react-roving-focus@1.1.0':
+ resolution: {integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
@@ -2833,6 +2691,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-separator@1.1.0':
+ resolution: {integrity: sha512-3uBAs+egzvJBDZAzvb/n4NxxOYpnspmWxO2u5NbZ8Y6FM/NdrGSF9bop3Cf6F6C71z1rTSn8KV0Fo2ZVd79lGA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-slot@1.0.2':
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
@@ -2842,6 +2713,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-slot@1.1.0':
+ resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-switch@1.0.3':
resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
peerDependencies:
@@ -2868,6 +2748,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-toggle-group@1.1.0':
+ resolution: {integrity: sha512-PpTJV68dZU2oqqgq75Uzto5o/XfOVgkrJ9rulVmfTKxWp3HfUjHE6CP/WLRR4AzPX9HWxw7vFow2me85Yu+Naw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-toggle@1.0.3':
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
peerDependencies:
@@ -2881,6 +2774,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-toggle@1.1.0':
+ resolution: {integrity: sha512-gwoxaKZ0oJ4vIgzsfESBuSgJNdc0rv12VhHgcqN0TEJmmZixXG/2XpsLK8kzNWYcnaoRIEEQc0bEi3dIvdUpjw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-toolbar@1.0.4':
resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
peerDependencies:
@@ -2894,8 +2800,21 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-tooltip@1.0.7':
- resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==}
+ '@radix-ui/react-toolbar@1.1.0':
+ resolution: {integrity: sha512-ZUKknxhMTL/4hPh+4DuaTot9aO7UD6Kupj4gqXCsBTayX1pD1L+0C2/2VZKXb4tIifQklZ3pf2hG9T+ns+FclQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-tooltip@1.0.6':
+ resolution: {integrity: sha512-DmNFOiwEc2UDigsYj6clJENma58OelxD24O4IODoZ+3sQc3Zb+L8w1EP+y9laTuKCLAysPw4fD6/v0j4KNV8rg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2916,6 +2835,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-callback-ref@1.1.0':
+ resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-controllable-state@1.0.1':
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
@@ -2925,6 +2853,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-controllable-state@1.1.0':
+ resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-escape-keydown@1.0.3':
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
@@ -2943,6 +2880,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-layout-effect@1.1.0':
+ resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-previous@1.0.1':
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
@@ -2986,38 +2932,26 @@ packages:
'@radix-ui/rect@1.0.1':
resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
- '@reactflow/background@11.3.13':
- resolution: {integrity: sha512-hkvpVEhgvfTDyCvdlitw4ioKCYLaaiRXnuEG+1QM3Np+7N1DiWF1XOv5I8AFyNoJL07yXEkbECUTsHvkBvcG5A==}
- peerDependencies:
- react: '>=17'
- react-dom: '>=17'
-
- '@reactflow/controls@11.2.13':
- resolution: {integrity: sha512-3xgEg6ALIVkAQCS4NiBjb7ad8Cb3D8CtA7Vvl4Hf5Ar2PIVs6FOaeft9s2iDZGtsWP35ECDYId1rIFVhQL8r+A==}
- peerDependencies:
- react: '>=17'
- react-dom: '>=17'
-
- '@reactflow/core@11.11.3':
- resolution: {integrity: sha512-+adHdUa7fJSEM93fWfjQwyWXeI92a1eLKwWbIstoCakHpL8UjzwhEh6sn+mN2h/59MlVI7Ehr1iGTt3MsfcIFA==}
+ '@reactflow/background@11.0.4':
+ resolution: {integrity: sha512-AACdU1B63BJCL0mO6I2ceehkv0ijKxzhh4UMc0JQs8sSgbAQjvnMSt/VcjIJ1e8V4o/wjPejj3xWm2Jxsv0Qhw==}
peerDependencies:
react: '>=17'
react-dom: '>=17'
- '@reactflow/minimap@11.7.13':
- resolution: {integrity: sha512-m2MvdiGSyOu44LEcERDEl1Aj6x//UQRWo3HEAejNU4HQTlJnYrSN8tgrYF8TxC1+c/9UdyzQY5VYgrTwW4QWdg==}
+ '@reactflow/controls@11.0.4':
+ resolution: {integrity: sha512-NLycgcW+hS2CcZiUqvTOXkug+UMmq7dzORxdzxosvBI0b1La+xNXi+UxVMlMAYrNZH3lm+SWyftksXQ/r010bQ==}
peerDependencies:
react: '>=17'
react-dom: '>=17'
- '@reactflow/node-resizer@2.2.13':
- resolution: {integrity: sha512-X7ceQ2s3jFLgbkg03n2RYr4hm3jTVrzkW2W/8ANv/SZfuVmF8XJxlERuD8Eka5voKqLda0ywIZGAbw9GoHLfUQ==}
+ '@reactflow/core@11.2.0':
+ resolution: {integrity: sha512-8rYp9bQON7MMtHZ3opU37Bfp4NaGGrJFeu+tcokz9bQZcGo43oCKl8xkURn8HlC8FnpVwpQ7e3DBdsOtnEbaEg==}
peerDependencies:
react: '>=17'
react-dom: '>=17'
- '@reactflow/node-toolbar@1.3.13':
- resolution: {integrity: sha512-aknvNICO10uWdthFSpgD6ctY/CTBeJUMV9co8T9Ilugr08Nb89IQ4uD0dPmr031ewMQxixtYIkw+sSDDzd2aaQ==}
+ '@reactflow/minimap@11.1.0':
+ resolution: {integrity: sha512-igquYRc9QdV5hu7KZiBjQgynvy/oMH5+i5eDvI0aLSkLC68NVnHFFpEZlk4bSVav+nGeWbHOZK/tryd3Sa39TQ==}
peerDependencies:
react: '>=17'
react-dom: '>=17'
@@ -3050,88 +2984,91 @@ packages:
peerDependencies:
rollup: ^1.20.0||^2.0.0
- '@rollup/rollup-android-arm-eabi@4.17.2':
- resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==}
+ '@rollup/rollup-android-arm-eabi@4.22.4':
+ resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.17.2':
- resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==}
+ '@rollup/rollup-android-arm64@4.22.4':
+ resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.17.2':
- resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==}
+ '@rollup/rollup-darwin-arm64@4.22.4':
+ resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.17.2':
- resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==}
+ '@rollup/rollup-darwin-x64@4.22.4':
+ resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.17.2':
- resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
+ resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.17.2':
- resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.22.4':
+ resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.17.2':
- resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==}
+ '@rollup/rollup-linux-arm64-gnu@4.22.4':
+ resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.17.2':
- resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==}
+ '@rollup/rollup-linux-arm64-musl@4.22.4':
+ resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
- resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
+ resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.17.2':
- resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.22.4':
+ resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.17.2':
- resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==}
+ '@rollup/rollup-linux-s390x-gnu@4.22.4':
+ resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.17.2':
- resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==}
+ '@rollup/rollup-linux-x64-gnu@4.22.4':
+ resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.17.2':
- resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==}
+ '@rollup/rollup-linux-x64-musl@4.22.4':
+ resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.17.2':
- resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==}
+ '@rollup/rollup-win32-arm64-msvc@4.22.4':
+ resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.17.2':
- resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==}
+ '@rollup/rollup-win32-ia32-msvc@4.22.4':
+ resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.17.2':
- resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==}
+ '@rollup/rollup-win32-x64-msvc@4.22.4':
+ resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==}
cpu: [x64]
os: [win32]
- '@rushstack/eslint-patch@1.10.2':
- resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
+ '@rtsao/scc@1.1.0':
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+
+ '@rushstack/eslint-patch@1.10.4':
+ resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
'@sinclair/typebox@0.24.51':
resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
@@ -3145,8 +3082,8 @@ packages:
'@sinonjs/fake-timers@8.1.0':
resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==}
- '@smoya/multi-parser@5.0.7':
- resolution: {integrity: sha512-FBkRhz8nWyTNJMowowxMUZoqR9AVbEno+EwXDhGlT63Vivd+NmzwSrb11PyAz3W11qeJE/lUK3OxBNyabx1/Og==}
+ '@smoya/multi-parser@5.0.9':
+ resolution: {integrity: sha512-GXH3HscWq3Cu2y5/IeZLNvsWQJdAXbdI7AD2OnPrOWJdGp3pXgOu9ojAHH/Fc2WkF8krzWSPIe/NfbmQLokFag==}
'@stoplight/better-ajv-errors@1.0.3':
resolution: {integrity: sha512-0p9uXkuB22qGdNfy3VeEhxkU5uwvp/KrBTAbrLBURv6ilxIVwanKwjMc41lQfIVgPGcOkmLbTolfFrSsueu7zA==}
@@ -3166,6 +3103,10 @@ packages:
resolution: {integrity: sha512-5O0apqJ/t4sIevXCO3SBN9AHCEKKR/Zb4gaj7wYe5863jme9g02Q0n/GhM7ZCALkL+vGPTe4ZzTETP8TFtsw3g==}
engines: {node: '>=8.3.0'}
+ '@stoplight/json@3.21.7':
+ resolution: {integrity: sha512-xcJXgKFqv/uCEgtGlPxy3tPA+4I+ZI4vAuMJ885+ThkTHFVkC+0Fm58lA9NlsyjnkpxFh4YiQWpH+KefHdbA0A==}
+ engines: {node: '>=8.3.0'}
+
'@stoplight/ordered-object-literal@1.0.5':
resolution: {integrity: sha512-COTiuCU5bgMUtbIFBuyyh2/yVVzlr5Om0v5utQDgBCuQUOPgU1DwoffkTfg4UBQOvByi5foF4w4T+H9CoRe5wg==}
engines: {node: '>=8'}
@@ -3174,16 +3115,16 @@ packages:
resolution: {integrity: sha512-lyIc6JUlUA8Ve5ELywPC8I2Sdnh1zc1zmbYgVarhXIp9YeAB0ReeqmGEOWNtlHkbP2DAA1AL65Wfn2ncjK/jtQ==}
engines: {node: '>=8'}
- '@stoplight/spectral-core@1.18.3':
- resolution: {integrity: sha512-YY8x7X2SWJIhGTLPol+eFiQpWPz0D0mJdkK2i4A0QJG68KkNhypP6+JBC7/Kz3XWjqr0L/RqAd+N5cQLPOKZGQ==}
+ '@stoplight/spectral-core@1.19.1':
+ resolution: {integrity: sha512-YiWhXdjyjn4vCl3102ywzwCEJzncxapFcj4dxcj1YP/bZ62DFeGJ8cEaMP164vSw2kI3rX7EMMzI/c8XOUnTfQ==}
engines: {node: ^12.20 || >= 14.13}
- '@stoplight/spectral-formats@1.6.0':
- resolution: {integrity: sha512-X27qhUfNluiduH0u/QwJqhOd8Wk5YKdxVmKM03Aijlx0AH1H5mYt3l9r7t2L4iyJrsBaFPnMGt7UYJDGxszbNA==}
+ '@stoplight/spectral-formats@1.7.0':
+ resolution: {integrity: sha512-vJ1vIkA2s96fdJp0d3AJBGuPAW3sj8yMamyzR+dquEFO6ZAoYBo/BVsKKQskYzZi/nwljlRqUmGVmcf2PncIaA==}
engines: {node: '>=12'}
- '@stoplight/spectral-functions@1.7.2':
- resolution: {integrity: sha512-f+61/FtIkQeIo+a269CeaeqjpyRsgDyIk6DGr7iS4hyuk1PPk7Uf6MNRDs9FEIBh7CpdEJ+HSHbMLwgpymWTIw==}
+ '@stoplight/spectral-functions@1.9.0':
+ resolution: {integrity: sha512-T+xl93ji8bpus4wUsTq8Qr2DSu2X9PO727rbxW61tTCG0s17CbsXOLYI+Ezjg5P6aaQlgXszGX8khtc57xk8Yw==}
engines: {node: '>=12'}
'@stoplight/spectral-parsers@1.0.4':
@@ -3221,154 +3162,205 @@ packages:
resolution: {integrity: sha512-JZlVFE6/dYpP9tQmV0/ADfn32L9uFarHWxfcRhReKUnljz1ZiUM5zpX+PH8h5CJs6lao3TuFqnPm9IJJCEkE2w==}
engines: {node: '>=10.8'}
- '@storybook/addon-actions@7.6.19':
- resolution: {integrity: sha512-ATLrA5QKFJt7tIAScRHz5T3eBQ+RG3jaZk08L7gChvyQZhei8knWwePElZ7GaWbCr9BgznQp1lQUUXq/UUblAQ==}
+ '@storybook/addon-actions@7.6.18':
+ resolution: {integrity: sha512-HWS2NqUNH7FGG5QyWMvV3aw2IcwXw6xQwCx2xLUD7fJFqCAf4cDXZIsGnTVHCtoddVRBIlcS+LRmiGU8+mQKdw==}
- '@storybook/addon-backgrounds@7.6.19':
- resolution: {integrity: sha512-Nu3LAZODRSV2e5bOroKm/Jp6BIFzwu/nJxD5OvLWkkwNCh+vDXUFbbaVrZf5xRL+fHd9iLFPtWbJQpF/w7UsCw==}
+ '@storybook/addon-backgrounds@7.6.18':
+ resolution: {integrity: sha512-Bai0n3RfO+PmsQ69KdRhPvuwCistNLvpKtAEzo9nlpHfYh921OgVfZrKFfWJgYskvyVlaNu0DeR3t6TT8CbT/A==}
- '@storybook/addon-controls@7.6.19':
- resolution: {integrity: sha512-cl6PCNEwihDjuWIUsKTyDNKk+/IE4J3oMbSY5AZV/9Z0jJbpMV2shVm5DMZm5LhCCVcu5obWcxCIa4FMIMJAMQ==}
+ '@storybook/addon-controls@7.6.18':
+ resolution: {integrity: sha512-iH/JbltgjDFihRppeniNlGE3Qc86Q5oW8+p77E9B0ILn3yGk3rNOSlOTUg7a1seMjddJfsptDn4xMFHuunYuyQ==}
+
+ '@storybook/addon-docs@7.6.18':
+ resolution: {integrity: sha512-+JzGL5ImwZ5VE+PiEUzRHWKbgvFsg/G2OTzyqZD8vQ+NlB6rmKGzGpXz0c4D6xEupzIJwjbpSN2ZOzgld0Du9Q==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/addon-docs@7.6.19':
- resolution: {integrity: sha512-nv+9SR/NOtM8Od2esOXHcg0NQT8Pk8BMUyGwZu5Q3MLI4JxNVEG65dY0IP2j6Knc4UtlvQTpM0f7m5xp4seHjQ==}
+ '@storybook/addon-docs@7.6.20':
+ resolution: {integrity: sha512-XNfYRhbxH5JP7B9Lh4W06PtMefNXkfpV39Gaoih5HuqngV3eoSL4RikZYOMkvxRGQ738xc6axySU3+JKcP1OZg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/addon-essentials@7.6.19':
- resolution: {integrity: sha512-SC33ZEQ5YaOt9wDkrdZmwQgqPWo9om/gqnyif06eug3SwrTe9JjO5iq1PIBfQodLD9MAxr9cwBvO0NG505oszQ==}
+ '@storybook/addon-essentials@7.6.18':
+ resolution: {integrity: sha512-qgVH442LhIdzCbx0E+eB1+xTj1TOKqSqrUy76viILCK1wfMSeIsU8TNkqnc8hzUQH2IatUJb/t76wXh2eV9s4w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/addon-highlight@7.6.19':
- resolution: {integrity: sha512-/pApl0oiVU1CQ8xETRNDLDthMBjeTmvFnTRq8RJ9m0JYTrSsoyHDmj9zS4K1k9gReqijE7brslhP8d2tblBpNw==}
+ '@storybook/addon-highlight@7.6.18':
+ resolution: {integrity: sha512-XUR9sTcxqYbes9ckj1b/GyAJ3yFfE/2YnvPFz8vWO9hIZjlL0Wvyiy/1L2DePF1S+zHrYA8+dg65vK8pMXUrnQ==}
- '@storybook/addon-interactions@7.6.19':
- resolution: {integrity: sha512-lMQDu6JT2LXDWcRnIGvrKRk/W+67zOtUNpDKwoVuvM5eHVJcza5SPV6v8yXDLCHLOt7RZ15h6LT2uXabfKpcww==}
+ '@storybook/addon-interactions@7.6.18':
+ resolution: {integrity: sha512-+wMkNpU6rlaLNx7N7VbfRBA4ud1Fx7hGoUs6Tgkbf8rvAKAPV6Bd66O/V2mmUCGLULshdu4HLv5SSKDXId8pag==}
- '@storybook/addon-links@7.6.19':
- resolution: {integrity: sha512-qMIFfcsMf4olxhYUHUV2ZJhxphh6Xpf1DMd0lxKqAibfxl/sX1m0rJkyiqWSBxbCmAy/pwdgqEOJ1lpDUsJ33w==}
+ '@storybook/addon-links@7.6.18':
+ resolution: {integrity: sha512-KOA9mcl+cSLjdHx4WNkTB/Y+flRnM3MY+Q9/f7suznIYEmx1KKQoOhcmudFKJZEEH5FaQUDaaJE/3sj0JTiBRQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
- '@storybook/addon-measure@7.6.19':
- resolution: {integrity: sha512-n+cfhVXXouBv9oQr3a77vvip5dTznaNoBDWMafP2ohauc8jBlAxeBwCjk5r3pyThMRIFCTG/ypZrhiJcSJT3bw==}
+ '@storybook/addon-measure@7.6.18':
+ resolution: {integrity: sha512-ixEW/RG3iJCiyJQ51vKqlTJHq6vJ7O/xHGGMFV9+RYP0S2klZctQQwLZxUWUjSLUUjCX/DrxVlmK03h+7f+wWA==}
- '@storybook/addon-outline@7.6.19':
- resolution: {integrity: sha512-Tt4MrfjK5j/Mdh8nJ8ccVyh78Dy7aiEPxO31YVvr5XUkge0pDi1PX328mHRDPur0i56NM8ssVbekWBZr+9MxlA==}
+ '@storybook/addon-outline@7.6.18':
+ resolution: {integrity: sha512-YKHjir/+KZH0P/F8spmm9l/EC28VXlE0beAxeErvpPiA6t1Ykrh7GEPvPEolY1DydKBaLLnd20adLhDskl+oGg==}
- '@storybook/addon-toolbars@7.6.19':
- resolution: {integrity: sha512-+qGbPP2Vo/HoPiS4EJopZ127HGculCV74Hkz6ot7ob6AkYdA1yLMPzWns/ZXNIWm6ab3jV+iq+mQCM/i1qJzvA==}
+ '@storybook/addon-toolbars@7.6.18':
+ resolution: {integrity: sha512-AlqW8rA5gNtxjbTyJtJlVfmqbcSJAWFHTvC7OfwbZRZLmF5agdBUQeAZYI75WBZpdlYrp23s88O+MRMa/CF2yA==}
- '@storybook/addon-viewport@7.6.19':
- resolution: {integrity: sha512-OQQtJ2kYwImbvE9QiC3I3yR0O0EBgNjq+XSaSS4ixJrvUyesfuB7Lm7RkubhEEiP4yANi9OlbzsqZelmPOnk6w==}
+ '@storybook/addon-viewport@7.6.18':
+ resolution: {integrity: sha512-fgn38aXappEeDNg5u52fswhjkNN5Sru6Rf/2WhuuQXteIC2tX27J03Ud8h2aKydzHai7zz8jJ0IoGt7cA6W0Nw==}
- '@storybook/addons@7.6.19':
- resolution: {integrity: sha512-5QKLKpZbMROsJ8bQEYBWm/PtkvlpyIuuPz/hQj9lGgQey/TBVELFqPmTsFMlScLBXsee9v0SXQoOlLLjxLIzWA==}
+ '@storybook/addons@7.6.18':
+ resolution: {integrity: sha512-HjYkShjcTLmVk/PWvrY2kTRBKPibXXIzmbxR5flKEJnboqcDH3SwQjKJZJGnimQNpKK0QormkgVxCxDVfk/qag==}
+
+ '@storybook/blocks@7.6.18':
+ resolution: {integrity: sha512-mCEyGew2nyiFwJ1iHfm4ItB/bDrVzYUODkKktmHDmJJgjKFIDQJPTgLsiQhXBtxqW0TImL4JpSU/aUAAbXpZeg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/blocks@7.6.19':
- resolution: {integrity: sha512-/c/bVQRmyRPoviJhPrFdLfubRcrnZWTwkjxsCvrOTJ/UDOyEl0t/H8yY1mGq7KWWTdbIznnZWhAIofHnH4/Esw==}
+ '@storybook/blocks@7.6.20':
+ resolution: {integrity: sha512-xADKGEOJWkG0UD5jbY4mBXRlmj2C+CIupDL0/hpzvLvwobxBMFPKZIkcZIMvGvVnI/Ui+tJxQxLSuJ5QsPthUw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/builder-manager@7.6.19':
- resolution: {integrity: sha512-Dt5OLh97xeWh4h2mk9uG0SbCxBKHPhIiHLHAKEIDzIZBdwUhuyncVNDPHW2NlXM+S7U0/iKs2tw05waqh2lHvg==}
+ '@storybook/builder-manager@7.6.20':
+ resolution: {integrity: sha512-e2GzpjLaw6CM/XSmc4qJRzBF8GOoOyotyu3JrSPTYOt4RD8kjUsK4QlismQM1DQRu8i39aIexxmRbiJyD74xzQ==}
- '@storybook/builder-webpack5@7.6.19':
- resolution: {integrity: sha512-PeP66orYG0tWoWeOGNcCDKtk/kpDBFfosViCkd0Pxb6c2MtvjOuHSGWGB/9AI3hjodsoe5p9xo/SqGf7lDzpoA==}
+ '@storybook/builder-webpack5@7.6.18':
+ resolution: {integrity: sha512-0NwYwdd9VocBEkb+tiSBfHUD8e/xVs7e+5ifKnI+wZvIGCHfHDBgOgbkcuwUm1WQcMjoTh/Wp13TW5dboNzoSg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@storybook/channels@7.6.19':
- resolution: {integrity: sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==}
+ '@storybook/channels@7.6.18':
+ resolution: {integrity: sha512-ayMJ6GJot81URJySXcwZG1mLacblUVdLgAMIhU7oSW1K1v4KvQPxv3FqjNN+48g/1s+2A9UraCDqN0qzO3wznQ==}
- '@storybook/cli@7.6.19':
- resolution: {integrity: sha512-7OVy7nPgkLfgivv6/dmvoyU6pKl9EzWFk+g9izyQHiM/jS8jOiEyn6akG8Ebj6k5pWslo5lgiXUSW+cEEZUnqQ==}
+ '@storybook/channels@7.6.20':
+ resolution: {integrity: sha512-4hkgPSH6bJclB2OvLnkZOGZW1WptJs09mhQ6j6qLjgBZzL/ZdD6priWSd7iXrmPiN5TzUobkG4P4Dp7FjkiO7A==}
+
+ '@storybook/cli@7.6.20':
+ resolution: {integrity: sha512-ZlP+BJyqg7HlnXf7ypjG2CKMI/KVOn03jFIiClItE/jQfgR6kRFgtjRU7uajh427HHfjv9DRiur8nBzuO7vapA==}
hasBin: true
- '@storybook/client-logger@7.6.19':
- resolution: {integrity: sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==}
+ '@storybook/client-logger@7.6.18':
+ resolution: {integrity: sha512-/mSKa968G++M7RTW1XLM0jgNMUATxKv/vggLyQ9Oo2UpQhRaXX8dKRl7GVu2yFDRm9sDKs7rg+KSsstrEjQcSg==}
+
+ '@storybook/client-logger@7.6.20':
+ resolution: {integrity: sha512-NwG0VIJQCmKrSaN5GBDFyQgTAHLNishUPLW1NrzqTDNAhfZUoef64rPQlinbopa0H4OXmlB+QxbQIb3ubeXmSQ==}
- '@storybook/codemod@7.6.19':
- resolution: {integrity: sha512-bmHE0iEEgWZ65dXCmasd+GreChjPiWkXu2FEa0cJmNz/PqY12GsXGls4ke1TkNTj4gdSZnbtJxbclPZZnib2tQ==}
+ '@storybook/codemod@7.6.20':
+ resolution: {integrity: sha512-8vmSsksO4XukNw0TmqylPmk7PxnfNfE21YsxFa7mnEBmEKQcZCQsNil4ZgWfG0IzdhTfhglAN4r++Ew0WE+PYA==}
- '@storybook/components@7.6.19':
- resolution: {integrity: sha512-8Zw/RQ4crzKkUR7ojxvRIj8vktKiBBO8Nq93qv4JfDqDWrcR7cro0hOlZgmZmrzbFunBBt6WlsNNO6nVP7R4Xw==}
+ '@storybook/components@7.6.18':
+ resolution: {integrity: sha512-t27jyQUTkLgpQc2b7AQ848MJkihOfTgXsDIIMW1sYixqYO1R2anWE2qF5+1ZXZ58xyQEbUWnWUNYrGj3jGwAOw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/core-client@7.6.19':
- resolution: {integrity: sha512-F0V9nzcEnj6DIpnw2ilrxsV4d9ibyyQS+Wi2uQtXy+wCQQm9PeBVqrOywjXAY2F9pcoftXOaepfhp8jrxX4MXw==}
+ '@storybook/components@7.6.20':
+ resolution: {integrity: sha512-0d8u4m558R+W5V+rseF/+e9JnMciADLXTpsILrG+TBhwECk0MctIWW18bkqkujdCm8kDZr5U2iM/5kS1Noy7Ug==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ '@storybook/core-client@7.6.18':
+ resolution: {integrity: sha512-gKelPHlE4Xr8mkC0q1CotxB1hoR54P94LeJ6NrmNp2W8vZLiV8d/3CShJwTyEEkhhOB8diEGyya2LawboMYPpg==}
+
+ '@storybook/core-client@7.6.20':
+ resolution: {integrity: sha512-upQuQQinLmlOPKcT8yqXNtwIucZ4E4qegYZXH5HXRWoLAL6GQtW7sUVSIuFogdki8OXRncr/dz8OA+5yQyYS4w==}
+
+ '@storybook/core-common@7.6.18':
+ resolution: {integrity: sha512-ZZbvjpDKs3KPyoUWLTaMn8/0N2S8tXZpMfdrZrHHOzy9O3mmbk2Silr1OytWS6CBICFgDb71p7EWZ026KOVNkA==}
+
+ '@storybook/core-common@7.6.20':
+ resolution: {integrity: sha512-8H1zPWPjcmeD4HbDm4FDD0WLsfAKGVr566IZ4hG+h3iWVW57II9JW9MLBtiR2LPSd8u7o0kw64lwRGmtCO1qAw==}
+
+ '@storybook/core-events@7.6.18':
+ resolution: {integrity: sha512-K4jrHedFRfokvkIfKfNtQTcguPzeWF3oiuyXQR4gv4bnMCndCoiSRKfCE5zesgGmfml/Krt2zb4nNz/UPLbDeA==}
- '@storybook/core-common@7.6.19':
- resolution: {integrity: sha512-njwpGzFJrfbJr/AFxGP8KMrfPfxN85KOfSlxYnQwRm5Z0H1D/lT33LhEBf5m37gaGawHeG7KryxO6RvaioMt2Q==}
+ '@storybook/core-events@7.6.20':
+ resolution: {integrity: sha512-tlVDuVbDiNkvPDFAu+0ou3xBBYbx9zUURQz4G9fAq0ScgBOs/bpzcRrFb4mLpemUViBAd47tfZKdH4MAX45KVQ==}
- '@storybook/core-events@7.6.19':
- resolution: {integrity: sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==}
+ '@storybook/core-server@7.6.20':
+ resolution: {integrity: sha512-qC5BdbqqwMLTdCwMKZ1Hbc3+3AaxHYWLiJaXL9e8s8nJw89xV8c8l30QpbJOGvcDmsgY6UTtXYaJ96OsTr7MrA==}
- '@storybook/core-server@7.6.19':
- resolution: {integrity: sha512-7mKL73Wv5R2bEl0kJ6QJ9bOu5YY53Idu24QgvTnUdNsQazp2yUONBNwHIrNDnNEXm8SfCi4Mc9o0mmNRMIoiRA==}
+ '@storybook/core-webpack@7.6.18':
+ resolution: {integrity: sha512-GoDzQRYuN7diahIeYkPYAVYZi1RjvJ7cEGn6fnERTdrVa7uQBe/VtfWyZ3lp6WYFXGwu/9jlWSPdsP8SpLgVJQ==}
- '@storybook/core-webpack@7.6.19':
- resolution: {integrity: sha512-Ezvn54hFN99qwP8kDOQa7/IEk2V3NyJys2eg0Afqz1cy9Uc3SkL7U7hQorKOHr5+66dsryNDfJdPzM1YMKFMBQ==}
+ '@storybook/csf-plugin@7.6.18':
+ resolution: {integrity: sha512-dV/f0oIuv/OsmAh3FVqBkZAvQ5YRQXglZlHynaqt8cUVXi+Nsc/b7kFTBGj2GyIi9TCdiqfV5Yns+Bq2bIVHrA==}
- '@storybook/csf-plugin@7.6.19':
- resolution: {integrity: sha512-yUP0xfJyR8e6fmCgKoEt4c1EvslF8dZ8wtwVLE5hnC3kfs7xt8RVDiKLB/9NhYjY3mD/oOesX60HqRXDgJQHwA==}
+ '@storybook/csf-plugin@7.6.20':
+ resolution: {integrity: sha512-dzBzq0dN+8WLDp6NxYS4G7BCe8+vDeDRBRjHmM0xb0uJ6xgQViL8SDplYVSGnk3bXE/1WmtvyRzQyTffBnaj9Q==}
- '@storybook/csf-tools@7.6.19':
- resolution: {integrity: sha512-8Vzia3cHhDdGHuS3XKXJReCRxmfRq3vmTm/Te9yKZnPSAsC58CCKcMh8FNEFJ44vxYF9itKTkRutjGs+DprKLQ==}
+ '@storybook/csf-tools@7.6.18':
+ resolution: {integrity: sha512-ngRNHEtLJv6vMlqCeJaG8dh1CwtCaGCHi7xuS+b71Y97xXLJlA6RR9rhsMG6bDwMJR+xiIqKUc6HH3ZBSVVhiA==}
+
+ '@storybook/csf-tools@7.6.20':
+ resolution: {integrity: sha512-rwcwzCsAYh/m/WYcxBiEtLpIW5OH1ingxNdF/rK9mtGWhJxXRDV8acPkFrF8rtFWIVKoOCXu5USJYmc3f2gdYQ==}
'@storybook/csf@0.0.1':
resolution: {integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==}
- '@storybook/csf@0.1.7':
- resolution: {integrity: sha512-53JeLZBibjQxi0Ep+/AJTfxlofJlxy1jXcSKENlnKxHjWEYyHQCumMP5yTFjf7vhNnMjEpV3zx6t23ssFiGRyw==}
+ '@storybook/csf@0.1.11':
+ resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==}
'@storybook/docs-mdx@0.1.0':
resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==}
- '@storybook/docs-tools@7.6.19':
- resolution: {integrity: sha512-JuwV6wtm7Hb7Kb5ValChfxy4J7XngfrSQNpvwsDCSBNVcQUv2y843hvclpa26Ptfr/c7zpUX8r9FGSaMDy+2aQ==}
+ '@storybook/docs-tools@7.6.18':
+ resolution: {integrity: sha512-gE4He4YoOAFnFwarSsOJVLC1YVN6iilQXMZsKD2SNI0M30nOeqK5NjFwXtAklq6QQvBZVZV7VRG5sY7i4aGBcQ==}
+
+ '@storybook/docs-tools@7.6.20':
+ resolution: {integrity: sha512-Bw2CcCKQ5xGLQgtexQsI1EGT6y5epoFzOINi0FSTGJ9Wm738nRp5LH3dLk1GZLlywIXcYwOEThb2pM+pZeRQxQ==}
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
- '@storybook/instrumenter@7.6.19':
- resolution: {integrity: sha512-chPRR8/N1fMss4gSOiEbLzDFqA+0tinnrrFeUSHhvadf+VqUcA/G72sf4b3C/jxBDdK6WPC6L+A3pFR/C1dN5A==}
+ '@storybook/instrumenter@7.6.18':
+ resolution: {integrity: sha512-OpGKjsUtgKJCl0AaOCL2I9bRJbQ1psrXd+HgAaIB1VovBHeCxmhktjGxu6GfychVNCFWdoK/plgOUxblAT3CPA==}
- '@storybook/manager-api@7.6.19':
- resolution: {integrity: sha512-dVCx1Q+HZEA4U08XqYljiG88BeS3I3ahnPAQLZAeWQXQRkoc9G2jMgLNPKYPIqEtq7Xrn6SRlFMIofhwWrwZpg==}
+ '@storybook/manager-api@7.6.18':
+ resolution: {integrity: sha512-4c2japUMjnHiel38wQoNWh5RVac6ATMcWxvzPhOKx3I19gbSoUF1CcDg+1piRMWuSyzUBIBlIrBB3s4/02gnnA==}
- '@storybook/manager@7.6.19':
- resolution: {integrity: sha512-fZWQcf59x4P0iiBhrL74PZrqKJAPuk9sWjP8BIkGbf8wTZtUunbY5Sv4225fOL4NLJbuX9/RYLUPoxQ3nucGHA==}
+ '@storybook/manager-api@7.6.20':
+ resolution: {integrity: sha512-gOB3m8hO3gBs9cBoN57T7jU0wNKDh+hi06gLcyd2awARQlAlywnLnr3s1WH5knih6Aq+OpvGBRVKkGLOkaouCQ==}
+
+ '@storybook/manager@7.6.20':
+ resolution: {integrity: sha512-0Cf6WN0t7yEG2DR29tN5j+i7H/TH5EfPppg9h9/KiQSoFHk+6KLoy2p5do94acFU+Ro4+zzxvdCGbcYGKuArpg==}
'@storybook/mdx2-csf@1.1.0':
resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==}
- '@storybook/node-logger@7.6.19':
- resolution: {integrity: sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==}
+ '@storybook/node-logger@7.6.18':
+ resolution: {integrity: sha512-e75XQ6TekxjpzdlW6rZAFtv/9aD/nQb4z9kaBr3GhuVMGVJNihs9ek6eVEFZLxpks4FDVSPTSg0QtFpSgOpbrg==}
+
+ '@storybook/node-logger@7.6.20':
+ resolution: {integrity: sha512-l2i4qF1bscJkOplNffcRTsgQWYR7J51ewmizj5YrTM8BK6rslWT1RntgVJWB1RgPqvx6VsCz1gyP3yW1oKxvYw==}
- '@storybook/postinstall@7.6.19':
- resolution: {integrity: sha512-s6p1vpgMfn+QGDfCK2YNdyyWKidUgb3nGicB81FANRyzYqGB//QlJlghEc2LKCIQbGIZQiwP3l8PdZQmczEJRw==}
+ '@storybook/postinstall@7.6.18':
+ resolution: {integrity: sha512-TTTvuR6LyaRfzrtJvSr+L4Bys8gp3wOKACOErZBXjt3UCQR4rwhwGP7k2GsysiHHLbxGu25ZU2fnnT2OYYeTNA==}
- '@storybook/preset-create-react-app@7.6.19':
- resolution: {integrity: sha512-pdXD3r/e/KNPdIIlTMIzBzm4PSKiibUU/GMLk1c7z96IYszPiyBIagPT5VYEX//owkO9TPFg0fds+e/2vnG5lQ==}
+ '@storybook/postinstall@7.6.20':
+ resolution: {integrity: sha512-AN4WPeNma2xC2/K/wP3I/GMbBUyeSGD3+86ZFFJFO1QmE/Zea6E+1aVlTd1iKHQUcNkZ9bZTrqkhPGVYx10pIw==}
+
+ '@storybook/preset-create-react-app@7.6.18':
+ resolution: {integrity: sha512-0CPaQyitHtnX1sTlZSmXmU/7oTWWEBH0t8qo1Fihsiv2oxodYg0xPSeMLChShMm+YaPCtSUNGgKSNEdLme31Rg==}
peerDependencies:
'@babel/core': '*'
react-scripts: '>=5.0.0'
- '@storybook/preset-react-webpack@7.6.19':
- resolution: {integrity: sha512-WvfDE4upH7jmisx5XOn4E07p9Fm8YJn4Aywc9vYM1jqQ8A1lEH8VSC1KR6dPfdmGr94jRscQkD6fjs9sUNTdrw==}
+ '@storybook/preset-react-webpack@7.6.18':
+ resolution: {integrity: sha512-SxDNdo6xAzhg27DGY+JlA9txil/4+oKtlFJM00SgnH5MHoABPlDg38Gc6C2aDhPgSKiXWALrcF5McTJDBsJmPA==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@babel/core': ^7.22.0
@@ -3381,11 +3373,14 @@ packages:
typescript:
optional: true
- '@storybook/preview-api@7.6.19':
- resolution: {integrity: sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==}
+ '@storybook/preview-api@7.6.18':
+ resolution: {integrity: sha512-X3r3MnoLJWUhHTVFggJcfHzDLCKSOdHNOpXXRNkdG2WXFcCZAlTdm0KqThCvQmdqS4OAOJMfn4pHqtxPG8yfyg==}
+
+ '@storybook/preview-api@7.6.20':
+ resolution: {integrity: sha512-3ic2m9LDZEPwZk02wIhNc3n3rNvbi7VDKn52hDXfAxnL5EYm7yDICAkaWcVaTfblru2zn0EDJt7ROpthscTW5w==}
- '@storybook/preview@7.6.19':
- resolution: {integrity: sha512-VqRPua2koOQTOteB+VvuKNXFYQ7IDEopaPpj9Nx+3kom+bqp0hWdAysWcm6CtKN2GGzBQm+5PvGibMNdawsaVg==}
+ '@storybook/preview@7.6.18':
+ resolution: {integrity: sha512-iltkZxz991GmzXMNkM9b7ddM45IsfZoQ+pMGXOv902Xawx9otvNkMVxBMhpXG+tf7G3FrSM1DFT6V9SycC6pqg==}
'@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0':
resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==}
@@ -3393,14 +3388,20 @@ packages:
typescript: '>= 4.x'
webpack: '>= 4'
- '@storybook/react-dom-shim@7.6.19':
- resolution: {integrity: sha512-tpt2AC1428d1gF4fetMkpkeFZ1WdDr1CLKoLbSInWQZ7i96nbnIMIA9raR/W8ai1bo55KSz9Bq5ytC/1Pac2qQ==}
+ '@storybook/react-dom-shim@7.6.18':
+ resolution: {integrity: sha512-s4eIq5KVnS7E4pIXdq31YzqRZX0FZEYKoUeZziBBajRvmPAJ/zWSBbrGeOIR71xDHT7UkUoeb5EuyfykS9yuoA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ '@storybook/react-dom-shim@7.6.20':
+ resolution: {integrity: sha512-SRvPDr9VWcS24ByQOVmbfZ655y5LvjXRlsF1I6Pr9YZybLfYbu3L5IicfEHT4A8lMdghzgbPFVQaJez46DTrkg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/react-webpack5@7.6.19':
- resolution: {integrity: sha512-QPnDv5eimvgc0zBIvc1H49iBUfZhs0hhrs9eO0+rAC6sIo5BiDcX9nQJZEuamRPVuLjqoRByj6vUpqGI25zASg==}
+ '@storybook/react-webpack5@7.6.18':
+ resolution: {integrity: sha512-H7WbB+XhYyDJX6xyxLB9tlYvJ8YYjw4r0gQzpnYpGevIneZtAUTZ8LahO1mRsmQMYy/TzdvX7KRBxRIoIKu0zA==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@babel/core': ^7.22.0
@@ -3413,8 +3414,19 @@ packages:
typescript:
optional: true
- '@storybook/react@7.6.19':
- resolution: {integrity: sha512-uKShAAp1/pRki1YnRjBveH/jAD3f8V0W2WP1LxTQqnKVFkl01mTbDZ/9ZIK6rVTSILUlmsk3fwsNyRbOKVgBGQ==}
+ '@storybook/react@7.6.18':
+ resolution: {integrity: sha512-cWAMz8W7Xa1fv8ugFsUCw0w08GsWGGw5XiYgLJJ+2/zQNhkMGzsY9zl7XQtULhIBfY0MptC7CLIYHc0t61xvHw==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@storybook/react@7.6.20':
+ resolution: {integrity: sha512-i5tKNgUbTNwlqBWGwPveDhh9ktlS0wGtd97A1ZgKZc3vckLizunlAFc7PRC1O/CMq5PTyxbuUb4RvRD2jWKwDA==}
engines: {node: '>=16.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -3424,23 +3436,35 @@ packages:
typescript:
optional: true
- '@storybook/router@7.6.19':
- resolution: {integrity: sha512-q2/AvY8rG0znFEfbg50OIhkS5yQ6OmyzdCdztoEsDDdsbq87YPmsDj7k8Op1EkTa2T5CB8XhBOCQDtcj7gUUtg==}
+ '@storybook/router@7.6.18':
+ resolution: {integrity: sha512-Kw6nAPWRAFE9DM//pnyjL7Xnxt+yQIONdERDnPrdEmHG5mErXGtO18aFMsb/7GiAD50J/i5ObTp7FJsWffAnbg==}
+
+ '@storybook/router@7.6.20':
+ resolution: {integrity: sha512-mCzsWe6GrH47Xb1++foL98Zdek7uM5GhaSlrI7blWVohGa0qIUYbfJngqR4ZsrXmJeeEvqowobh+jlxg3IJh+w==}
- '@storybook/telemetry@7.6.19':
- resolution: {integrity: sha512-rA5xum4I36M57iiD3uzmW0MOdpl0vEpHWBSAa5hK0a0ALPeY9TgAsQlI/0dSyNYJ/K7aczEEN6d4qm1NC4u10A==}
+ '@storybook/telemetry@7.6.20':
+ resolution: {integrity: sha512-dmAOCWmOscYN6aMbhCMmszQjoycg7tUPRVy2kTaWg6qX10wtMrvEtBV29W4eMvqdsoRj5kcvoNbzRdYcWBUOHQ==}
- '@storybook/test@7.6.19':
- resolution: {integrity: sha512-pEMyrPsV6zfcoH8z/sXlmJYBMBocZU6MZhM//dVGf4OiaOSwCLGDXNImZYNDUOpq4//kxC51yTytkdDgm1QFMg==}
+ '@storybook/test@7.6.18':
+ resolution: {integrity: sha512-NJGHewnP10c9tSXrZylUURAwhk18ZFr3HkA4z6V/Gsn0lgEKYEx5DJjN8GeyZblW0JyZ2LQNSmh5gq8yeNY8Lg==}
+
+ '@storybook/theming@7.6.18':
+ resolution: {integrity: sha512-5nwqV/rAVzS8wZ6DbsX5/ugDLV189hn2m3K9JlJmhVW9b2mSDYW5i1cTjpoChh1t9gMZl82VPnEhgPRMx5bXgw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/theming@7.6.19':
- resolution: {integrity: sha512-sAho13MmtA80ctOaLn8lpkQBsPyiqSdLcOPH5BWFhatQzzBQCpTAKQk+q/xGju8bNiPZ+yQBaBzbN8SfX8ceCg==}
+ '@storybook/theming@7.6.20':
+ resolution: {integrity: sha512-iT1pXHkSkd35JsCte6Qbanmprx5flkqtSHC6Gi6Umqoxlg9IjiLPmpHbaIXzoC06DSW93hPj5Zbi1lPlTvRC7Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/types@7.6.19':
- resolution: {integrity: sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==}
+ '@storybook/types@7.6.18':
+ resolution: {integrity: sha512-W7/8kUtMhEopZhwXFMOKlXwQCrz0PBJ5wQwmJNZ4i0YPTVfFzb+/6pgpkzUNtbXiTp6dfxi3ERoAF9wz9Zyt7w==}
+
+ '@storybook/types@7.6.20':
+ resolution: {integrity: sha512-GncdY3x0LpbhmUAAJwXYtJDUQEwfF175gsjH0/fxPkxPoV7Sef9TM41jQLJW/5+6TnZoCZP/+aJZTJtq3ni23Q==}
'@surma/rollup-plugin-off-main-thread@2.2.3':
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
@@ -3501,71 +3525,71 @@ packages:
resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==}
engines: {node: '>=10'}
- '@swc/core-darwin-arm64@1.5.7':
- resolution: {integrity: sha512-bZLVHPTpH3h6yhwVl395k0Mtx8v6CGhq5r4KQdAoPbADU974Mauz1b6ViHAJ74O0IVE5vyy7tD3OpkQxL/vMDQ==}
+ '@swc/core-darwin-arm64@1.7.28':
+ resolution: {integrity: sha512-BNkj6enHo2pdzOpCtQGKZbXT2A/qWIr0CVtbTM4WkJ3MCK/glbFsyO6X59p1r8+gfaZG4bWYnTTu+RuUAcsL5g==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.5.7':
- resolution: {integrity: sha512-RpUyu2GsviwTc2qVajPL0l8nf2vKj5wzO3WkLSHAHEJbiUZk83NJrZd1RVbEknIMO7+Uyjh54hEh8R26jSByaw==}
+ '@swc/core-darwin-x64@1.7.28':
+ resolution: {integrity: sha512-96zQ+X5Fd6P/RNPkOyikTJgEc2M4TzznfYvjRd2hye5h22jhxCLL/csoauDgN7lYfd7mwsZ/sVXwJTMKl+vZSA==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.5.7':
- resolution: {integrity: sha512-cTZWTnCXLABOuvWiv6nQQM0hP6ZWEkzdgDvztgHI/+u/MvtzJBN5lBQ2lue/9sSFYLMqzqff5EHKlFtrJCA9dQ==}
+ '@swc/core-linux-arm-gnueabihf@1.7.28':
+ resolution: {integrity: sha512-l2100Wx6LdXMOmOW3+KoHhBhyZrGdz8ylkygcVOC0QHp6YIATfuG+rRHksfyEWCSOdL3anM9MJZJX26KT/s+XQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.5.7':
- resolution: {integrity: sha512-hoeTJFBiE/IJP30Be7djWF8Q5KVgkbDtjySmvYLg9P94bHg9TJPSQoC72tXx/oXOgXvElDe/GMybru0UxhKx4g==}
+ '@swc/core-linux-arm64-gnu@1.7.28':
+ resolution: {integrity: sha512-03m6iQ5Bv9u2VPnNRyaBmE8eHi056eE39L0gXcqGoo46GAGuoqYHt9pDz8wS6EgoN4t85iBMUZrkCNqFKkN6ZQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.5.7':
- resolution: {integrity: sha512-+NDhK+IFTiVK1/o7EXdCeF2hEzCiaRSrb9zD7X2Z7inwWlxAntcSuzZW7Y6BRqGQH89KA91qYgwbnjgTQ22PiQ==}
+ '@swc/core-linux-arm64-musl@1.7.28':
+ resolution: {integrity: sha512-vqVOpG/jc8mvTKQjaPBLhr7tnWyzuztOHsPnJqMWmg7zGcMeQC/2c5pU4uzRAfXMTp25iId6s4Y4wWfPS1EeDw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.5.7':
- resolution: {integrity: sha512-25GXpJmeFxKB+7pbY7YQLhWWjkYlR+kHz5I3j9WRl3Lp4v4UD67OGXwPe+DIcHqcouA1fhLhsgHJWtsaNOMBNg==}
+ '@swc/core-linux-x64-gnu@1.7.28':
+ resolution: {integrity: sha512-HGwpWuB83Kr+V0E+zT5UwIIY9OxiS8aLd0UVMRVWuO8SrQyKm9HKJ46+zoAb8tfJrpZftfxvbn2ayZWR7gqosA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.5.7':
- resolution: {integrity: sha512-0VN9Y5EAPBESmSPPsCJzplZHV26akC0sIgd3Hc/7S/1GkSMoeuVL+V9vt+F/cCuzr4VidzSkqftdP3qEIsXSpg==}
+ '@swc/core-linux-x64-musl@1.7.28':
+ resolution: {integrity: sha512-q2Y2T8y8EgFtIiRyInnAXNe94aaHX74F0ha1Bl9VdRxE0u1/So+3VLbPvtp4V3Z6pj5pOePfCQJKifnllgAQ9A==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.5.7':
- resolution: {integrity: sha512-RtoNnstBwy5VloNCvmvYNApkTmuCe4sNcoYWpmY7C1+bPR+6SOo8im1G6/FpNem8AR5fcZCmXHWQ+EUmRWJyuA==}
+ '@swc/core-win32-arm64-msvc@1.7.28':
+ resolution: {integrity: sha512-bCqh4uBT/59h3dWK1v91In6qzz8rKoWoFRxCtNQLIK4jP55K0U231ZK9oN7neZD6bzcOUeFvOGgcyMAgDfFWfA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.5.7':
- resolution: {integrity: sha512-Xm0TfvcmmspvQg1s4+USL3x8D+YPAfX2JHygvxAnCJ0EHun8cm2zvfNBcsTlnwYb0ybFWXXY129aq1wgFC9TpQ==}
+ '@swc/core-win32-ia32-msvc@1.7.28':
+ resolution: {integrity: sha512-XTHbHrksnrqK3JSJ2sbuMWvdJ6/G0roRpgyVTmNDfhTYPOwcVaL/mSrPGLwbksYUbq7ckwoKzrobhdxvQzPsDA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.5.7':
- resolution: {integrity: sha512-tp43WfJLCsKLQKBmjmY/0vv1slVywR5Q4qKjF5OIY8QijaEW7/8VwPyUyVoJZEnDgv9jKtUTG5PzqtIYPZGnyg==}
+ '@swc/core-win32-x64-msvc@1.7.28':
+ resolution: {integrity: sha512-jyXeoq6nX8abiCy2EpporsC5ywNENs4ocYuvxo1LSxDktWN1E2MTXq3cdJcEWB2Vydxq0rDcsGyzkRPMzFhkZw==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.5.7':
- resolution: {integrity: sha512-U4qJRBefIJNJDRCCiVtkfa/hpiZ7w0R6kASea+/KLp+vkus3zcLSB8Ub8SvKgTIxjWpwsKcZlPf5nrv4ls46SQ==}
+ '@swc/core@1.7.28':
+ resolution: {integrity: sha512-XapcMgsOS0cKh01AFEj+qXOk6KM4NZhp7a5vPicdhkRR8RzvjrCa7DTtijMxfotU8bqaEHguxmiIag2HUlT8QQ==}
engines: {node: '>=10'}
peerDependencies:
- '@swc/helpers': ^0.5.0
+ '@swc/helpers': '*'
peerDependenciesMeta:
'@swc/helpers':
optional: true
@@ -3582,25 +3606,16 @@ packages:
peerDependencies:
'@swc/core': '*'
- '@swc/types@0.1.7':
- resolution: {integrity: sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==}
+ '@swc/types@0.1.12':
+ resolution: {integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==}
- '@tailwindcss/typography@0.5.13':
- resolution: {integrity: sha512-ADGcJ8dX21dVVHIwTRgzrcunY6YY9uSlAHHGVKvkA+vLc5qLwEszvKts40lx7z0qc4clpjclwLeK5rVCV2P/uw==}
+ '@tailwindcss/typography@0.5.8':
+ resolution: {integrity: sha512-xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
- '@tanstack/react-virtual@3.5.0':
- resolution: {integrity: sha512-rtvo7KwuIvqK9zb0VZ5IL7fiJAEnG+0EiFZz8FUOs+2mhGqdGmjKIaT1XU7Zq0eFqL0jonLlhbayJI/J2SA/Bw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
-
- '@tanstack/virtual-core@3.5.0':
- resolution: {integrity: sha512-KnPRCkQTyqhanNC0K63GBG3wA8I+D1fQuVnAvcBF8f13akOKeQp1gSbu6f77zCxhEk727iV5oQnbHLYzHrECLg==}
-
- '@testing-library/dom@10.1.0':
- resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==}
+ '@testing-library/dom@10.4.0':
+ resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
'@testing-library/dom@8.20.1':
@@ -3611,37 +3626,20 @@ packages:
resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
engines: {node: '>=14'}
- '@testing-library/jest-dom@5.17.0':
- resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==}
+ '@testing-library/jest-dom@5.16.5':
+ resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==}
engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
- '@testing-library/jest-dom@6.4.5':
- resolution: {integrity: sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==}
+ '@testing-library/jest-dom@6.5.0':
+ resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
- peerDependencies:
- '@jest/globals': '>= 28'
- '@types/bun': latest
- '@types/jest': '>= 28'
- jest: '>= 28'
- vitest: '>= 0.32'
- peerDependenciesMeta:
- '@jest/globals':
- optional: true
- '@types/bun':
- optional: true
- '@types/jest':
- optional: true
- jest:
- optional: true
- vitest:
- optional: true
- '@testing-library/react@12.1.5':
- resolution: {integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==}
+ '@testing-library/react@12.1.3':
+ resolution: {integrity: sha512-oCULRXWRrBtC9m6G/WohPo1GLcLesH7T4fuKzRAKn1CWVu9BzXtqLXDDTA6KhFNNtRwLtfSMr20HFl+Qrdrvmg==}
engines: {node: '>=12'}
peerDependencies:
- react: <18.0.0
- react-dom: <18.0.0
+ react: '*'
+ react-dom: '*'
'@testing-library/react@13.4.0':
resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==}
@@ -3662,8 +3660,8 @@ packages:
peerDependencies:
'@testing-library/dom': '>=7.21.4'
- '@testing-library/user-event@14.5.2':
- resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==}
+ '@testing-library/user-event@14.4.3':
+ resolution: {integrity: sha512-kCUc5MEwaEMakkO5x7aoD+DLi02ehmEM2QCGWvNqAS1dV/fAvORWEjnjsEIvml59M7Y5kCkWN6fCCyPOe8OL6Q==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
'@testing-library/dom': '>=7.21.4'
@@ -3706,8 +3704,8 @@ packages:
'@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- '@types/babel__traverse@7.20.5':
- resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
+ '@types/babel__traverse@7.20.6':
+ resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
'@types/body-parser@1.19.5':
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
@@ -3715,8 +3713,8 @@ packages:
'@types/bonjour@3.5.13':
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
- '@types/chai@4.3.16':
- resolution: {integrity: sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==}
+ '@types/chai@4.3.20':
+ resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==}
'@types/connect-history-api-fallback@1.5.4':
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
@@ -3763,8 +3761,8 @@ packages:
'@types/d3-fetch@3.0.7':
resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==}
- '@types/d3-force@3.0.9':
- resolution: {integrity: sha512-IKtvyFdb4Q0LWna6ymywQsEYjK/94SGhPrMfEr1TIc5OBeziTi+1jcCvttts8e0UWZIxpasjnQk9MNk/3iS+kA==}
+ '@types/d3-force@3.0.10':
+ resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==}
'@types/d3-format@3.0.4':
resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==}
@@ -3838,8 +3836,8 @@ packages:
'@types/ejs@3.1.5':
resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==}
- '@types/emscripten@1.39.12':
- resolution: {integrity: sha512-AQImDBgudQfMqUBfrjZYilRxoHDzTBp+ejh+g1fY67eSMalwIKtBXofjpyI0JBgNpHGzxeGAR2QDya0wxW9zbA==}
+ '@types/emscripten@1.39.13':
+ resolution: {integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==}
'@types/es-aggregate-error@1.0.6':
resolution: {integrity: sha512-qJ7LIFp06h1QE1aVxbVd+zJP2wdaugYXYfd6JxsyRMrYHaxb6itXPogW2tz+ylUJ1n1b+JF1PHyYCfYHm0dvUg==}
@@ -3850,8 +3848,11 @@ packages:
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
- '@types/eslint@8.56.10':
- resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
+ '@types/eslint@8.56.12':
+ resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
+
+ '@types/eslint@9.6.1':
+ resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
'@types/estree@0.0.39':
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
@@ -3862,8 +3863,11 @@ packages:
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- '@types/express-serve-static-core@4.19.0':
- resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+
+ '@types/express-serve-static-core@4.19.5':
+ resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==}
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
@@ -3883,8 +3887,11 @@ packages:
'@types/http-errors@2.0.4':
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
- '@types/http-proxy@1.17.14':
- resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
+ '@types/http-proxy@1.17.15':
+ resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
+
+ '@types/is-ci@3.0.4':
+ resolution: {integrity: sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==}
'@types/istanbul-lib-coverage@2.0.6':
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
@@ -3895,11 +3902,14 @@ packages:
'@types/istanbul-reports@3.0.4':
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
- '@types/jest@29.5.12':
- resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==}
+ '@types/jest@29.2.3':
+ resolution: {integrity: sha512-6XwoEbmatfyoCjWRX7z0fKMmgYKe9+/HrviJ5k0X/tjJWHGAezZOfYaxqQKuzG/TvQyr+ktjm4jgbk0s4/oF2w==}
+
+ '@types/jest@29.5.13':
+ resolution: {integrity: sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==}
- '@types/js-yaml@4.0.9':
- resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==}
+ '@types/js-yaml@4.0.5':
+ resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==}
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -3907,8 +3917,11 @@ packages:
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/lodash@4.17.1':
- resolution: {integrity: sha512-X+2qazGS3jxLAIz5JDXDzglAF3KpijdhFxlf/V1+hEsOUc+HnWi81L/uv/EvGuV90WY+7mPGFCUDGfQC3Gj95Q==}
+ '@types/lodash@4.17.0':
+ resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==}
+
+ '@types/lodash@4.17.9':
+ resolution: {integrity: sha512-w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w==}
'@types/mdast@3.0.15':
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
@@ -3937,11 +3950,11 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@16.18.97':
- resolution: {integrity: sha512-4muilE1Lbfn57unR+/nT9AFjWk0MtWi5muwCEJqnOvfRQDbSfLCUdN7vCIg8TYuaANfhLOV85ve+FNpiUsbSRg==}
+ '@types/node@16.18.109':
+ resolution: {integrity: sha512-PxPCTJDDwBrigapKYIRHegNOMfKTeQUkZMJt+mkEwHf2rskRylueIqaHyAHfcpmFIFi7wq7f/X8Se/5hIVREvg==}
- '@types/node@18.19.33':
- resolution: {integrity: sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==}
+ '@types/node@18.19.51':
+ resolution: {integrity: sha512-IIMkWEIVQDlBpi6pPeGqTqOx7KbzGC3EgIyH8NrxplXOwWw0uVl9vthJUMFrxD7kcEfcRp7jIkgpB28M6JnfWA==}
'@types/node@20.4.6':
resolution: {integrity: sha512-q0RkvNgMweWWIvSMDiXhflGUKMdIxBo2M2tYM/0kEGDueQByFzK4KZAgu5YHGFNxziTlppNpTIBcqHQAxlfHdA==}
@@ -3958,8 +3971,8 @@ packages:
'@types/pretty-hrtime@1.0.3':
resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==}
- '@types/prop-types@15.7.12':
- resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
+ '@types/prop-types@15.7.13':
+ resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
'@types/protocol-buffers-schema@3.4.3':
resolution: {integrity: sha512-8cCg6BiIj4jS0LXUFq3sndmd46yyPLYqMzvXLcTM1MRubh3sfZlQiehoCjGDxSHTqGSjjx8EtVNryIAl0njQWg==}
@@ -3967,21 +3980,15 @@ packages:
'@types/q@1.5.8':
resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==}
- '@types/qs@6.9.15':
- resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==}
+ '@types/qs@6.9.16':
+ resolution: {integrity: sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@17.0.25':
- resolution: {integrity: sha512-urx7A7UxkZQmThYA4So0NelOVjx3V4rNFVJwp0WZlbIK5eM4rNJDiN3R/E9ix0MBh6kAEojk/9YL+Te6D9zHNA==}
-
'@types/react-dom@18.2.7':
resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
- '@types/react@17.0.80':
- resolution: {integrity: sha512-LrgHIu2lEtIo8M7d1FcI3BdwXWoRQwMoXOZ7+dPTW0lYREjmlHl3P0U1VD0i/9tppOuv8/sam7sOjx34TxSFbA==}
-
'@types/react@18.2.18':
resolution: {integrity: sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==}
@@ -3994,9 +4001,6 @@ packages:
'@types/retry@0.12.0':
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- '@types/scheduler@0.16.8':
- resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
-
'@types/scheduler@0.23.0':
resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
@@ -4030,8 +4034,8 @@ packages:
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@types/unist@2.0.10':
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
+ '@types/unist@2.0.11':
+ resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
'@types/urijs@1.19.25':
resolution: {integrity: sha512-XOfUup9r3Y06nFAZh3WvO0rBU4OtlfPB/vgxpjg+NRdGU6CN6djdc6OEiH+PcqHCY6eFLo9Ista73uarf4gnBg==}
@@ -4039,8 +4043,8 @@ packages:
'@types/uuid@9.0.8':
resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
- '@types/ws@8.5.10':
- resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
+ '@types/ws@8.5.12':
+ resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -4048,8 +4052,8 @@ packages:
'@types/yargs@16.0.9':
resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==}
- '@types/yargs@17.0.32':
- resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
+ '@types/yargs@17.0.33':
+ resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
@@ -4065,17 +4069,6 @@ packages:
typescript:
optional: true
- '@typescript-eslint/eslint-plugin@7.9.0':
- resolution: {integrity: sha512-6e+X0X3sFe/G/54aC3jt0txuMTURqLyekmEHViqyA2VnxhLMpvA6nqmcjIy+Cr9tLDHPssA74BP5Mx9HQIxBEA==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^7.0.0
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@typescript-eslint/experimental-utils@5.62.0':
resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4092,8 +4085,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@7.9.0':
- resolution: {integrity: sha512-qHMJfkL5qvgQB2aLvhUSXxbK7OLnDkwPzFalg458pxQgfxKDfT1ZDbHQM/I6mDIf/svlMkj21kzKuQ2ixJlatQ==}
+ '@typescript-eslint/parser@7.7.1':
+ resolution: {integrity: sha512-vmPzBOOtz48F6JAGVS/kZYk4EkXao6iGrD838sp1w3NQQC0W8ry/q641KU4PrG7AKNAf56NOcR8GOpH8l9FPCw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -4106,8 +4099,8 @@ packages:
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@typescript-eslint/scope-manager@7.9.0':
- resolution: {integrity: sha512-ZwPK4DeCDxr3GJltRz5iZejPFAAr4Wk3+2WIBaj1L5PYK5RgxExu/Y68FFVclN0y6GGwH8q+KgKRCvaTmFBbgQ==}
+ '@typescript-eslint/scope-manager@7.7.1':
+ resolution: {integrity: sha512-PytBif2SF+9SpEUKynYn5g1RHFddJUcyynGpztX3l/ik7KmZEv19WCMhUBkHXPU9es/VWGD3/zg3wg90+Dh2rA==}
engines: {node: ^18.18.0 || >=20.0.0}
'@typescript-eslint/type-utils@5.62.0':
@@ -4120,22 +4113,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/type-utils@7.9.0':
- resolution: {integrity: sha512-6Qy8dfut0PFrFRAZsGzuLoM4hre4gjzWJB6sUvdunCYZsYemTkzZNwF1rnGea326PHPT3zn5Lmg32M/xfJfByA==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@typescript-eslint/types@5.62.0':
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@typescript-eslint/types@7.9.0':
- resolution: {integrity: sha512-oZQD9HEWQanl9UfsbGVcZ2cGaR0YT5476xfWE0oE5kQa2sNK2frxOlkeacLOTh9po4AlUT5rtkGyYM5kew0z5w==}
+ '@typescript-eslint/types@7.7.1':
+ resolution: {integrity: sha512-AmPmnGW1ZLTpWa+/2omPrPfR7BcbUU4oha5VIbSbS1a1Tv966bklvLNXxp3mrbc+P2j4MNOTfDffNsk4o0c6/w==}
engines: {node: ^18.18.0 || >=20.0.0}
'@typescript-eslint/typescript-estree@5.62.0':
@@ -4147,8 +4130,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@7.9.0':
- resolution: {integrity: sha512-zBCMCkrb2YjpKV3LA0ZJubtKCDxLttxfdGmwZvTqqWevUPN0FZvSI26FalGFFUZU/9YQK/A4xcQF9o/VVaCKAg==}
+ '@typescript-eslint/typescript-estree@7.7.1':
+ resolution: {integrity: sha512-CXe0JHCXru8Fa36dteXqmH2YxngKJjkQLjxzoj6LYwzZ7qZvgsLSc+eqItCrqIop8Vl2UKoAi0StVWu97FQZIQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
typescript: '*'
@@ -4162,18 +4145,12 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- '@typescript-eslint/utils@7.9.0':
- resolution: {integrity: sha512-5KVRQCzZajmT4Ep+NEgjXCvjuypVvYHUW7RHlXzNPuak2oWpVoD1jf5xCP0dPAuNIchjC7uQyvbdaSTFaLqSdA==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
-
'@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}
- '@typescript-eslint/visitor-keys@7.9.0':
- resolution: {integrity: sha512-iESPx2TNLDNGQLyjKhUvIKprlP49XNEK+MvIf9nIO7ZZaZdbnfWKHnXAgufpxqfA0YryH8XToi4+CjBgVnFTSQ==}
+ '@typescript-eslint/visitor-keys@7.7.1':
+ resolution: {integrity: sha512-gBL3Eq25uADw1LQ9kVpf3hRM+DWzs0uZknHYK3hq4jcTPqVCClHGDnB6UUUV2SFeBeA4KWHWbbLqmbGcZ4FYbw==}
engines: {node: ^18.18.0 || >=20.0.0}
'@ungap/structured-clone@1.2.0':
@@ -4188,48 +4165,93 @@ packages:
'@vitest/utils@0.34.7':
resolution: {integrity: sha512-ziAavQLpCYS9sLOorGrFFKmy2gnfiNU0ZJ15TsMz/K92NAPS/rp9K4z6AJQQk5Y8adCy4Iwpxy7pQumQ/psnRg==}
+ '@webassemblyjs/ast@1.11.1':
+ resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
+
'@webassemblyjs/ast@1.12.1':
resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ '@webassemblyjs/floating-point-hex-parser@1.11.1':
+ resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
+
'@webassemblyjs/floating-point-hex-parser@1.11.6':
resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
+ '@webassemblyjs/helper-api-error@1.11.1':
+ resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
+
'@webassemblyjs/helper-api-error@1.11.6':
resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
+ '@webassemblyjs/helper-buffer@1.11.1':
+ resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
+
'@webassemblyjs/helper-buffer@1.12.1':
resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
+ '@webassemblyjs/helper-numbers@1.11.1':
+ resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
+
'@webassemblyjs/helper-numbers@1.11.6':
resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ '@webassemblyjs/helper-wasm-bytecode@1.11.1':
+ resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
+
'@webassemblyjs/helper-wasm-bytecode@1.11.6':
resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ '@webassemblyjs/helper-wasm-section@1.11.1':
+ resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
+
'@webassemblyjs/helper-wasm-section@1.12.1':
resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ '@webassemblyjs/ieee754@1.11.1':
+ resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
+
'@webassemblyjs/ieee754@1.11.6':
resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ '@webassemblyjs/leb128@1.11.1':
+ resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
+
'@webassemblyjs/leb128@1.11.6':
resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ '@webassemblyjs/utf8@1.11.1':
+ resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
+
'@webassemblyjs/utf8@1.11.6':
resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ '@webassemblyjs/wasm-edit@1.11.1':
+ resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
+
'@webassemblyjs/wasm-edit@1.12.1':
resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ '@webassemblyjs/wasm-gen@1.11.1':
+ resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
+
'@webassemblyjs/wasm-gen@1.12.1':
resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ '@webassemblyjs/wasm-opt@1.11.1':
+ resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
+
'@webassemblyjs/wasm-opt@1.12.1':
resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ '@webassemblyjs/wasm-parser@1.11.1':
+ resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
+
'@webassemblyjs/wasm-parser@1.12.1':
resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ '@webassemblyjs/wast-printer@1.11.1':
+ resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
+
'@webassemblyjs/wast-printer@1.12.1':
resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
@@ -4277,6 +4299,11 @@ packages:
peerDependencies:
acorn: ^8
+ acorn-import-attributes@1.9.5:
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ peerDependencies:
+ acorn: ^8
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -4286,8 +4313,8 @@ packages:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- acorn-walk@8.3.2:
- resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
+ acorn-walk@8.3.4:
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
acorn@7.4.1:
@@ -4295,8 +4322,8 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.11.3:
- resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
+ acorn@8.12.1:
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -4360,9 +4387,6 @@ packages:
ajv@6.5.2:
resolution: {integrity: sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==}
- ajv@8.13.0:
- resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
-
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
@@ -4383,6 +4407,11 @@ packages:
engines: {'0': node >= 0.8.0}
hasBin: true
+ ansi-html@0.0.9:
+ resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==}
+ engines: {'0': node >= 0.8.0}
+ hasBin: true
+
ansi-red@0.1.1:
resolution: {integrity: sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==}
engines: {node: '>=0.10.0'}
@@ -4391,8 +4420,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
ansi-styles@3.2.1:
@@ -4450,6 +4479,10 @@ packages:
aria-query@5.3.0:
resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
+
array-buffer-byte-length@1.0.1:
resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
engines: {node: '>= 0.4'}
@@ -4457,9 +4490,6 @@ packages:
array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- array-ify@1.0.0:
- resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
-
array-includes@3.1.8:
resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
@@ -4488,11 +4518,9 @@ packages:
resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==}
engines: {node: '>= 0.4'}
- array.prototype.toreversed@1.1.2:
- resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
-
- array.prototype.tosorted@1.1.3:
- resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==}
+ array.prototype.tosorted@1.1.4:
+ resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
+ engines: {node: '>= 0.4'}
arraybuffer.prototype.slice@1.0.3:
resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
@@ -4512,6 +4540,9 @@ packages:
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
engines: {node: '>=0.8'}
+ assert@2.0.0:
+ resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==}
+
assert@2.1.0:
resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
@@ -4529,15 +4560,15 @@ packages:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
- astring@1.8.6:
- resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==}
+ astring@1.9.0:
+ resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==}
hasBin: true
async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
- async@3.2.5:
- resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -4570,12 +4601,13 @@ packages:
aws4@1.13.2:
resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
- axe-core@4.7.0:
- resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
+ axe-core@4.10.0:
+ resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
engines: {node: '>=4'}
- axobject-query@3.2.1:
- resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
+ axobject-query@4.1.0:
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
+ engines: {node: '>= 0.4'}
babel-core@7.0.0-bridge.0:
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
@@ -4588,15 +4620,22 @@ packages:
peerDependencies:
'@babel/core': ^7.8.0
- babel-loader@8.3.0:
- resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
+ babel-loader@8.2.3:
+ resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==}
+ engines: {node: '>= 8.9'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+
+ babel-loader@8.4.1:
+ resolution: {integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
- babel-loader@9.1.3:
- resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
+ babel-loader@9.2.1:
+ resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
@@ -4627,8 +4666,18 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.10.4:
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ babel-plugin-polyfill-corejs3@0.8.7:
+ resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ babel-plugin-polyfill-regenerator@0.5.5:
+ resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -4643,8 +4692,8 @@ packages:
babel-plugin-transform-react-remove-prop-types@0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
- babel-preset-current-node-syntax@1.0.1:
- resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
+ babel-preset-current-node-syntax@1.1.0:
+ resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -4704,8 +4753,8 @@ packages:
bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
- body-parser@1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
bonjour-service@1.2.1:
@@ -4724,8 +4773,8 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
breakword@1.0.6:
@@ -4743,8 +4792,8 @@ packages:
browserify-zlib@0.2.0:
resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
+ browserslist@4.24.0:
+ resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -4770,8 +4819,8 @@ packages:
builtin-status-codes@3.0.0:
resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
- bundle-require@4.1.0:
- resolution: {integrity: sha512-FeArRFM+ziGkRViKRnSTbHZc35dgmR9yNog05Kn0+ItI59pOAISGvnnIwW1WgFZQW59IxD9QpJnUPkdIPfZuXg==}
+ bundle-require@4.2.1:
+ resolution: {integrity: sha512-7Q/6vkyYAwOmQNRw75x+4yRtZCZJXUDmHHlFdkiV0wgv/reNjtJwpu1jPJ0w2kbEpIM0uoKI3S4/f39dU7AjSA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
esbuild: '>=0.17'
@@ -4829,8 +4878,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001618:
- resolution: {integrity: sha512-p407+D1tIkDvsEAPS22lJxLQQaG8OTBEqo0KhzfABGk0TU4juBNDSfH0hyAp/HRyx+M8L17z/ltyhxh27FTfQg==}
+ caniuse-lite@1.0.30001663:
+ resolution: {integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==}
capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -4845,8 +4894,8 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@4.4.1:
- resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
+ chai@4.5.0:
+ resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
engines: {node: '>=4'}
chalk@2.4.2:
@@ -4899,8 +4948,8 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- chrome-trace-event@1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
+ chrome-trace-event@1.0.4:
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
ci-info@3.9.0:
@@ -4910,14 +4959,14 @@ packages:
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- cjs-module-lexer@1.3.1:
- resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
+ cjs-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
classcat@5.0.5:
resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==}
- classnames@2.5.1:
- resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+ classnames@2.3.2:
+ resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
clean-css@5.3.3:
resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
@@ -5052,9 +5101,6 @@ packages:
commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- compare-func@2.0.0:
- resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
-
compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
@@ -5078,6 +5124,9 @@ packages:
engines: {node: ^14.13.0 || >=16.0.0}
hasBin: true
+ confbox@0.1.7:
+ resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
+
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
@@ -5106,10 +5155,6 @@ packages:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
- conventional-changelog-conventionalcommits@5.0.0:
- resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==}
- engines: {node: '>=10'}
-
convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
@@ -5123,14 +5168,14 @@ packages:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
- core-js-compat@3.37.1:
- resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ core-js-compat@3.38.1:
+ resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
- core-js-pure@3.37.1:
- resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==}
+ core-js-pure@3.38.1:
+ resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
- core-js@3.37.1:
- resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==}
+ core-js@3.38.1:
+ resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==}
core-util-is@1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
@@ -5138,14 +5183,6 @@ packages:
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- cosmiconfig-typescript-loader@1.0.9:
- resolution: {integrity: sha512-tRuMRhxN4m1Y8hP9SNYfz7jRwt8lZdWxdjg/ohg5esKmsndJIn4yT96oJVcf5x0eA11taXl+sIp+ielu529k6g==}
- engines: {node: '>=12', npm: '>=6'}
- peerDependencies:
- '@types/node': '*'
- cosmiconfig: '>=7'
- typescript: '>=3'
-
cosmiconfig@6.0.0:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
@@ -5321,8 +5358,8 @@ packages:
resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==}
engines: {node: '>= 0.1.90'}
- cypress@13.14.2:
- resolution: {integrity: sha512-lsiQrN17vHMB2fnvxIrKLAjOr9bPwsNbPZNrWf99s4u+DVmCY6U+w7O3GGG9FvP4EUVYaDu+guWeNLiUzBrqvA==}
+ cypress@13.10.0:
+ resolution: {integrity: sha512-tOhwRlurVOQbMduX+KonoMeQILs2cwR3yHGGENoFvvSoLUBHmJ8b9/n21gFSDqjlOJ+SRVcwuh+fG/JDsHsT6Q==}
engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0}
hasBin: true
@@ -5419,6 +5456,15 @@ packages:
supports-color:
optional: true
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decamelize-keys@1.1.1:
resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
engines: {node: '>=0.10.0'}
@@ -5436,8 +5482,8 @@ packages:
dedent@0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
- deep-eql@4.1.3:
- resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ deep-eql@4.1.4:
+ resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
engines: {node: '>=6'}
deep-equal@2.2.3:
@@ -5608,8 +5654,8 @@ packages:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
- dompurify@2.5.3:
- resolution: {integrity: sha512-09uyBM2URzOfXMUAqGRnm9R9IUeSkzO9PktXc2eVQIsBmmJUqRmfL1xW2QPBxVJEtlEVs5d8ndrsIQsyAqs81g==}
+ dompurify@2.5.6:
+ resolution: {integrity: sha512-zUTaUBO8pY4+iJMPE1B9XlO2tXVYIcEA4SNGtvDELzTSCQO7RzH+j7S180BmhmJId78lqGU2z19vgVx2Sxs/PQ==}
domutils@1.7.0:
resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
@@ -5620,10 +5666,6 @@ packages:
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
- dot-prop@5.3.0:
- resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
- engines: {node: '>=8'}
-
dotenv-expand@10.0.0:
resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==}
engines: {node: '>=12'}
@@ -5635,10 +5677,6 @@ packages:
resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==}
engines: {node: '>=10'}
- dotenv@16.0.3:
- resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
- engines: {node: '>=12'}
-
dotenv@16.4.5:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
@@ -5671,8 +5709,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.4.769:
- resolution: {integrity: sha512-bZu7p623NEA2rHTc9K1vykl57ektSPQYFFqQir8BOYf6EKOB+yIsbFB9Kpm7Cgt6tsLr9sRkqfqSZUw7LP1XxQ==}
+ electron-to-chromium@1.5.28:
+ resolution: {integrity: sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==}
emittery@0.10.2:
resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==}
@@ -5696,14 +5734,18 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
endent@2.1.0:
resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==}
- enhanced-resolve@5.16.1:
- resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
enquirer@2.4.1:
@@ -5716,8 +5758,8 @@ packages:
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- envinfo@7.13.0:
- resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==}
+ envinfo@7.14.0:
+ resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==}
engines: {node: '>=4'}
hasBin: true
@@ -5753,8 +5795,11 @@ packages:
resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.5.2:
- resolution: {integrity: sha512-l60ETUTmLqbVbVHv1J4/qj+M8nq7AwMzEcg3kmJDt9dCNrTk+yHcYFf/Kw75pMDwd9mPcIGCG5LcS20SxYRzFA==}
+ es-module-lexer@0.9.3:
+ resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
+
+ es-module-lexer@1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
@@ -5771,11 +5816,14 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
+ es6-object-assign@1.1.0:
+ resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==}
+
esbuild-plugin-alias@0.2.1:
resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
- esbuild-register@3.5.0:
- resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
+ esbuild-register@3.6.0:
+ resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
peerDependencies:
esbuild: '>=0.12 <1'
@@ -5789,8 +5837,8 @@ packages:
engines: {node: '>=12'}
hasBin: true
- escalade@3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
escape-html@1.0.3:
@@ -5831,8 +5879,8 @@ packages:
typescript:
optional: true
- eslint-config-prettier@8.10.0:
- resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
+ eslint-config-prettier@8.3.0:
+ resolution: {integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
@@ -5847,23 +5895,29 @@ packages:
typescript:
optional: true
- eslint-config-turbo@1.13.3:
- resolution: {integrity: sha512-if/QtwEiWZ5b7Bg8yZBPSvS0TeCG2Zvfa/+XBYANS7uSYucjmW+BBC8enJB0PqpB/YLGGOumeo3x7h1Nuba9iw==}
+ eslint-config-turbo@1.9.3:
+ resolution: {integrity: sha512-QG6jxFQkrGSpQqlFKefPdtgUfr20EbU0s4tGGIuGFOcPuJEdsY6VYZpZUxNJvmMcTGqPgMyOPjAFBKhy/DPHLA==}
peerDependencies:
eslint: '>6.6.0'
eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
- eslint-import-resolver-typescript@3.6.1:
- resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
+ eslint-import-resolver-typescript@3.6.3:
+ resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
+ optional: true
+ eslint-plugin-import-x:
+ optional: true
- eslint-module-utils@2.8.1:
- resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ eslint-module-utils@2.11.1:
+ resolution: {integrity: sha512-EwcbfLOhwVMAfatfqLecR2yv3dE5+kQ8kx+Rrt0DvDXEVwW86KQ/xbMDQhtp5l42VXukD5SOF8mQQHbaNtO0CQ==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -5901,7 +5955,17 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-jest@25.7.0:
+ eslint-plugin-import@2.30.0:
+ resolution: {integrity: sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+
+ eslint-plugin-jest@25.7.0:
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -5914,11 +5978,11 @@ packages:
jest:
optional: true
- eslint-plugin-jsx-a11y@6.8.0:
- resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
+ eslint-plugin-jsx-a11y@6.10.0:
+ resolution: {integrity: sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==}
engines: {node: '>=4.0'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
eslint-plugin-react-hooks@4.6.2:
resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
@@ -5938,14 +6002,14 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- eslint-plugin-react@7.34.1:
- resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==}
+ eslint-plugin-react@7.36.1:
+ resolution: {integrity: sha512-/qwbqNXZoq+VP30s1d4Nc1C5GTxjJQjk4Jzs4Wq2qzxFM7dSmuG2UkIjg2USMLh3A/aVcUNrK7v0J5U1XEGGwA==}
engines: {node: '>=4'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
- eslint-plugin-security@1.7.1:
- resolution: {integrity: sha512-sMStceig8AFglhhT2LqlU5r+/fn9OwsA72O5bBuQVTssPCdQAOQzL+oMn/ZcpeUY6KcNfLJArgcrsSULNjYYdQ==}
+ eslint-plugin-security@1.5.0:
+ resolution: {integrity: sha512-hAFVwLZ/UeXrlyVD2TDarv/x00CoFVpaY0IUZhKjPjiFxqkuQVixsK4f2rxngeQOqSxi6OUjzJM/jMwKEVjJ8g==}
eslint-plugin-security@3.0.0:
resolution: {integrity: sha512-2Ij7PkmXIF2cKwoVkEgemwoXbOnxg5UfdhdcpNxZwJxC/10dbsdhHISrTyJ/n8DUkt3yiN6P1ywEgcMGjIwHIw==}
@@ -5975,8 +6039,8 @@ packages:
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
- eslint-plugin-turbo@1.13.3:
- resolution: {integrity: sha512-RjmlnqYsEqnJ+U3M3IS5jLJDjWv5NsvReCpsC61n5pJ4JMHTZ/lU0EIoL1ccuL1L5wP0APzdXdByBxERcPQ+Nw==}
+ eslint-plugin-turbo@1.9.3:
+ resolution: {integrity: sha512-ZsRtksdzk3v+z5/I/K4E50E4lfZ7oYmLX395gkrUMBz4/spJlYbr+GC8hP9oVNLj9s5Pvnm9rLv/zoj5PVYaVw==}
peerDependencies:
eslint: '>6.6.0'
@@ -5988,6 +6052,12 @@ packages:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-utils@3.0.0:
+ resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
+ engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
+ peerDependencies:
+ eslint: '>=5'
+
eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
@@ -6003,8 +6073,13 @@ packages:
eslint: ^7.0.0 || ^8.0.0
webpack: ^5.0.0
- eslint@8.57.0:
- resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
+ eslint@8.27.0:
+ resolution: {integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ hasBin: true
+
+ eslint@8.57.1:
+ resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
@@ -6022,8 +6097,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- esquery@1.5.0:
- resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ esquery@1.6.0:
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
esrecurse@4.3.0:
@@ -6095,8 +6170,8 @@ packages:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- express@4.19.2:
- resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
+ express@4.21.0:
+ resolution: {integrity: sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==}
engines: {node: '>= 0.10.0'}
extend-shallow@2.0.1:
@@ -6209,12 +6284,12 @@ packages:
resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==}
engines: {node: '>=0.10.0'}
- fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- finalhandler@1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ finalhandler@1.3.1:
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
find-cache-dir@2.1.0:
@@ -6252,19 +6327,15 @@ packages:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
- flat@5.0.2:
- resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
- hasBin: true
-
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- flow-parser@0.236.0:
- resolution: {integrity: sha512-0OEk9Gr+Yj7wjDW2KgaNYUypKau71jAfFyeLQF5iVtxqc6uJHag/MT7pmaEApf4qM7u86DkBcd4ualddYMfbLw==}
+ flow-parser@0.246.0:
+ resolution: {integrity: sha512-WHRizzSrWFTcKo7cVcbP3wzZVhzsoYxoWqbnH4z+JXGqrjVmnsld6kBZWVlB200PwD5ur8r+HV3KUDxv3cHhOQ==}
engines: {node: '>=0.4.0'}
- follow-redirects@1.15.6:
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ follow-redirects@1.15.9:
+ resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -6285,8 +6356,8 @@ packages:
foreachasync@3.0.0:
resolution: {integrity: sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==}
- foreground-child@3.1.1:
- resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
+ foreground-child@3.3.0:
+ resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
forever-agent@0.6.1:
@@ -6440,8 +6511,8 @@ packages:
resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.7.5:
- resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==}
+ get-tsconfig@4.8.1:
+ resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
getos@3.2.1:
resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==}
@@ -6467,16 +6538,17 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.3.15:
- resolution: {integrity: sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==}
- engines: {node: '>=16 || 14 >=14.18'}
+ glob@10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
glob@7.1.7:
resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
+ deprecated: Glob versions prior to v9 are no longer supported
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ deprecated: Glob versions prior to v9 are no longer supported
global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
@@ -6723,8 +6795,8 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
immer@9.0.21:
@@ -6734,8 +6806,8 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-local@3.1.0:
- resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
+ import-local@3.2.0:
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
engines: {node: '>=8'}
hasBin: true
@@ -6749,6 +6821,7 @@ packages:
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
@@ -6770,9 +6843,6 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
- ip@2.0.1:
- resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==}
-
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
@@ -6818,6 +6888,9 @@ packages:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
+ is-bun-module@1.2.1:
+ resolution: {integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==}
+
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
@@ -6826,8 +6899,9 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
- is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
+ engines: {node: '>= 0.4'}
is-data-view@1.0.1:
resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
@@ -6923,10 +6997,6 @@ packages:
resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
- is-obj@2.0.0:
- resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
- engines: {node: '>=8'}
-
is-path-cwd@2.2.0:
resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
engines: {node: '>=6'}
@@ -7077,12 +7147,11 @@ packages:
iterator.prototype@1.1.2:
resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
- jackspeak@2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
- jake@10.9.1:
- resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==}
+ jake@10.9.2:
+ resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
engines: {node: '>=10'}
hasBin: true
@@ -7286,16 +7355,16 @@ packages:
node-notifier:
optional: true
- jiti@1.21.0:
- resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
+ jiti@1.21.6:
+ resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
- js-base64@3.7.7:
- resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
+ js-base64@3.7.3:
+ resolution: {integrity: sha512-PAr6Xg2jvd7MCR6Ld9Jg3BmTcjYsHEBx1VlwEwULb/qowPf5VD9kEMagj23Gm7JRnSvE/Da/57nChZjnvL8v6A==}
js-beautify@1.15.1:
resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==}
@@ -7309,6 +7378,9 @@ packages:
js-file-download@0.4.12:
resolution: {integrity: sha512-rML+NkoD08p5Dllpjo0ffy4jRHeY6Zsapvr/W86N7E0yuzAO6qa5X9+xog6zQNlH102J7IXljNY2FtS6Lj3ucg==}
+ js-sdsl@4.4.2:
+ resolution: {integrity: sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -7341,8 +7413,8 @@ packages:
canvas:
optional: true
- jsep@1.3.8:
- resolution: {integrity: sha512-qofGylTGgYj9gZFsHuyWAN4jr35eJ66qJCK4eKDnldohuUoQFbU3iZn2zjvEbd9wOAhP9Wx5DsAAduTyE1PSWQ==}
+ jsep@1.3.9:
+ resolution: {integrity: sha512-i1rBX5N7VPl0eYb6+mHNp52sEuaS2Wi8CDYx1X5sn9naevL78+265XJqy1qENEk7mRKwS06NHpUqiBwR7qeodw==}
engines: {node: '>= 10.16.0'}
jsesc@0.5.0:
@@ -7357,8 +7429,8 @@ packages:
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- json-e@4.7.0:
- resolution: {integrity: sha512-0Ep2/T5qXy2sKAj/pZ5swxd8ktfW6Rqc5T4Lu3KvF5UhNnFhbogNpb1OCADfg0/yrShNg2Cop/MV1RQ1UvVg4Q==}
+ json-e@4.7.1:
+ resolution: {integrity: sha512-OV/KlCdY6J/yTJwqBvNFjI1UkAGvnYNiY7wxloXwxNXro3RA+YedR66Z493gO6QyL/DKBPLVrFZyf2HJXkW9Lg==}
engines: {node: '>=12'}
json-parse-even-better-errors@2.3.1:
@@ -7404,8 +7476,8 @@ packages:
jsonc-parser@2.2.1:
resolution: {integrity: sha512-o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w==}
- jsonc-parser@3.2.1:
- resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
+ jsonc-parser@3.3.1:
+ resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
jsonfile@1.0.1:
resolution: {integrity: sha512-KbsDJNRfRPF5v49tMNf9sqyyGqGLBcz1v5kZT01kG5ns5mQSltwxCKVmUzVKtEinkUnTDtSrp6ngWpV7Xw0ZlA==}
@@ -7472,15 +7544,15 @@ packages:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- language-subtag-registry@0.3.22:
- resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
+ language-subtag-registry@0.3.23:
+ resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
language-tags@1.0.9:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
- launch-editor@2.6.1:
- resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==}
+ launch-editor@2.9.1:
+ resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
lazy-ass@1.6.0:
resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
@@ -7510,8 +7582,8 @@ packages:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- lilconfig@3.1.1:
- resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
+ lilconfig@3.1.2:
+ resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -7545,12 +7617,16 @@ packages:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
+ loader-utils@1.4.2:
+ resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
+ engines: {node: '>=4.0.0'}
+
loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
- loader-utils@3.2.1:
- resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
+ loader-utils@3.3.1:
+ resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
engines: {node: '>= 12.13.0'}
locate-path@3.0.0:
@@ -7638,9 +7714,8 @@ packages:
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
- lru-cache@10.2.2:
- resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
- engines: {node: 14 || >=16.14}
+ lru-cache@10.4.3:
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
@@ -7655,8 +7730,8 @@ packages:
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- magic-string@0.30.10:
- resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+ magic-string@0.30.11:
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
@@ -7698,8 +7773,8 @@ packages:
markdown-table@3.0.3:
resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
- markdown-to-jsx@7.4.7:
- resolution: {integrity: sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg==}
+ markdown-to-jsx@7.5.0:
+ resolution: {integrity: sha512-RrBNcMHiFPcz/iqIj0n3wclzHXjwS7mzjBNWecKKVhNTIxQepIix6Il/wZCn2Cg5Y1ow2Qi84+eJrryFRWBEWw==}
engines: {node: '>= 10'}
peerDependencies:
react: '>= 0.14.0'
@@ -7780,8 +7855,8 @@ packages:
resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==}
engines: {node: '>=8'}
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -7878,14 +7953,18 @@ packages:
micromark@3.2.0:
resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
- micromatch@4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ mime-db@1.53.0:
+ resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
+ engines: {node: '>= 0.6'}
+
mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
@@ -7912,8 +7991,8 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- mini-css-extract-plugin@2.9.0:
- resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==}
+ mini-css-extract-plugin@2.9.1:
+ resolution: {integrity: sha512-+Vyi+GCCOHnrJ2VPS+6aPoXN2k2jgUzDRhTFLjjTBn23qyXJXkjUWQgTL+mXpF5/A8ixLdCc6kWsoeOjKGejKQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
@@ -7932,8 +8011,8 @@ packages:
resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
engines: {node: '>=16 || 14 >=14.17'}
- minimatch@9.0.4:
- resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
minimist-options@4.1.0:
@@ -7951,8 +8030,8 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.1.1:
- resolution: {integrity: sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==}
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
minizlib@2.1.2:
@@ -7983,11 +8062,14 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ mlly@1.7.1:
+ resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
+
monaco-editor@0.34.1:
resolution: {integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==}
- monaco-marker-data-provider@1.2.2:
- resolution: {integrity: sha512-vLsgwsIm4fcqQAi54SsfLYuvWuIOgPV3kmkvtXVh7SGCO2cWvkXhLm4PAHpDyaK3w8AwWAxM/sP/vKXvZJi7Pw==}
+ monaco-marker-data-provider@1.2.3:
+ resolution: {integrity: sha512-BOiQs9UNEwVrF1rwYI32HUP8D7JTuHlJRlykx83e4+jfh1ceBWIBfB5ENDVSFUz651d95kxjKj36vV2JO3zr9w==}
monaco-types@0.1.0:
resolution: {integrity: sha512-aWK7SN9hAqNYi0WosPoMjenMeXJjwCxDibOqWffyQ/qXdzB/86xshGQobRferfmNz7BSNQ8GB0MD0oby9/5fTQ==}
@@ -8107,8 +8189,8 @@ packages:
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- node-releases@2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
nopt@7.2.1:
resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
@@ -8144,11 +8226,11 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nwsapi@2.2.10:
- resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
+ nwsapi@2.2.12:
+ resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==}
- nypm@0.3.8:
- resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==}
+ nypm@0.3.11:
+ resolution: {integrity: sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -8160,8 +8242,9 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- object-inspect@1.13.1:
- resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ object-inspect@1.13.2:
+ resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
+ engines: {node: '>= 0.4'}
object-is@1.1.6:
resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
@@ -8209,8 +8292,8 @@ packages:
obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
- ohash@1.1.3:
- resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
+ ohash@1.1.4:
+ resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
@@ -8314,6 +8397,9 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ package-json-from-dist@1.0.0:
+ resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
+
pako@0.2.9:
resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
@@ -8381,8 +8467,8 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ path-to-regexp@0.1.10:
+ resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
@@ -8406,8 +8492,8 @@ packages:
picocolors@0.2.1:
resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
- picocolors@1.0.1:
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.0:
+ resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -8441,6 +8527,9 @@ packages:
resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
engines: {node: '>=14.16'}
+ pkg-types@1.2.0:
+ resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
+
pkg-up@3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
engines: {node: '>=8'}
@@ -8723,8 +8812,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
- postcss-nested@6.0.1:
- resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
+ postcss-nested@6.2.0:
+ resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
@@ -8864,8 +8953,8 @@ packages:
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
engines: {node: '>=4'}
- postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
postcss-svgo@5.1.0:
@@ -8891,12 +8980,12 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ postcss@8.4.47:
+ resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
- preferred-pm@3.1.3:
- resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==}
+ preferred-pm@3.1.4:
+ resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==}
engines: {node: '>=10'}
prelude-ls@1.1.2:
@@ -8959,10 +9048,13 @@ packages:
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
- protobufjs@7.3.0:
- resolution: {integrity: sha512-YWD03n3shzV9ImZRX3ccbjqLxj7NokGN0V/ESiBV5xWqrommYHYiihuIyavq03pWSGqlyvYUFmfoMKd+1rPA/g==}
+ protobufjs@7.4.0:
+ resolution: {integrity: sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==}
engines: {node: '>=12.0.0'}
+ protocol-buffers-schema@3.6.0:
+ resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==}
+
proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
@@ -8985,12 +9077,15 @@ packages:
pump@2.0.1:
resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
- pump@3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ pump@3.0.2:
+ resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
pumpify@1.5.1:
resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
+ punycode@1.3.2:
+ resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
+
punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
@@ -9005,24 +9100,25 @@ packages:
puppeteer@14.4.1:
resolution: {integrity: sha512-+H0Gm84aXUvSLdSiDROtLlOofftClgw2TdceMvvCU9UvMryappoeS3+eOLfKvoy4sm8B8MWnYmPhWxVFudAOFQ==}
engines: {node: '>=14.1.0'}
- deprecated: < 21.9.0 is no longer supported
+ deprecated: < 22.8.2 is no longer supported
q@1.5.1:
resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
+ deprecated: |-
+ You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
- engines: {node: '>=0.6'}
-
- qs@6.12.1:
- resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
- engines: {node: '>=0.6'}
+ (For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
qs@6.13.0:
resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
+ querystring@0.2.0:
+ resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==}
+ engines: {node: '>=0.4.x'}
+ deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
+
querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
@@ -9058,12 +9154,6 @@ packages:
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
- raw-loader@4.0.2:
- resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
-
react-app-polyfill@3.0.0:
resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==}
engines: {node: '>=14'}
@@ -9084,8 +9174,8 @@ packages:
typescript:
optional: true
- react-docgen-typescript-plugin@1.0.6:
- resolution: {integrity: sha512-01ju9lihtH9G+q1jhyi2HEhNfPeQwmNe6zxrSQCGnL3fiBGUZve5Ll4voxIExMhsjEcmJtpmNr1J3FeBd+6PBw==}
+ react-docgen-typescript-plugin@1.0.5:
+ resolution: {integrity: sha512-Ds6s2ioyIlH45XSfEVMNwRcDkzuff3xQCPxDFOzTc8GEshy+hksas8RYlmV4JEQREI+OGEGybhMCJk3vFbQZNQ==}
peerDependencies:
typescript: '>= 4.x'
webpack: '>= 4'
@@ -9125,8 +9215,8 @@ packages:
react: '>=16'
react-dom: '>=16'
- react-icons@4.12.0:
- resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==}
+ react-icons@4.8.0:
+ resolution: {integrity: sha512-N6+kOLcihDiAnj5Czu637waJqSnwlMNROzVZMhfX68V/9bu9qHaMIJC4UdozWoOk57gahFCNHwVvWzm0MTzRjg==}
peerDependencies:
react: '*'
@@ -9205,8 +9295,8 @@ packages:
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
engines: {node: '>=0.10.0'}
- reactflow@11.11.3:
- resolution: {integrity: sha512-wusd1Xpn1wgsSEv7UIa4NNraCwH9syBtubBy4xVNXg3b+CDKM+sFaF3hnMx0tr0et4km9urIDdNvwm34QiZong==}
+ reactflow@11.2.0:
+ resolution: {integrity: sha512-wrpcpY1J1QY87meJXrd7Y1jZQ9s0VvXudpeMrXeq1HEgYOyYmZrg2oxv4ck9m9liq0Urz9z/eWrIQTkdb/6P5A==}
peerDependencies:
react: '>=17'
react-dom: '>=17'
@@ -9237,8 +9327,8 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- recast@0.23.7:
- resolution: {integrity: sha512-MpQlLZVpqbbxYcqEjwpRWo88sGvjOYoXptySz710RuddNMHx+wPkoNX6YyLZJlXAh5VZr1qmPrTwcTuFMh0Lag==}
+ recast@0.23.9:
+ resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
engines: {node: '>= 4'}
recursive-readdir@2.2.3:
@@ -9253,8 +9343,8 @@ packages:
resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
engines: {node: '>= 0.4'}
- regenerate-unicode-properties@10.1.1:
- resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
+ regenerate-unicode-properties@10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
engines: {node: '>=4'}
regenerate@1.4.2:
@@ -9280,6 +9370,10 @@ packages:
resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
engines: {node: '>= 0.4'}
+ regexpp@3.2.0:
+ resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
+ engines: {node: '>=8'}
+
regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
@@ -9399,18 +9493,22 @@ packages:
rimraf@2.2.8:
resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
rimraf@2.7.1:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
rollup-plugin-terser@7.0.2:
@@ -9424,8 +9522,8 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- rollup@4.17.2:
- resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==}
+ rollup@4.22.4:
+ resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -9459,8 +9557,8 @@ packages:
safe-stable-stringify@1.1.1:
resolution: {integrity: sha512-ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==}
- safe-stable-stringify@2.4.3:
- resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==}
+ safe-stable-stringify@2.5.0:
+ resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
engines: {node: '>=10'}
safer-buffer@2.1.2:
@@ -9532,13 +9630,13 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.6.2:
- resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ send@0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
sentence-case@3.0.4:
@@ -9554,8 +9652,8 @@ packages:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.2:
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
set-blocking@2.0.0:
@@ -9650,8 +9748,8 @@ packages:
source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map-loader@3.0.2:
@@ -9701,8 +9799,8 @@ packages:
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- spdx-license-ids@3.0.17:
- resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==}
+ spdx-license-ids@3.0.20:
+ resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
@@ -9751,8 +9849,8 @@ packages:
store2@2.14.3:
resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==}
- storybook@7.6.19:
- resolution: {integrity: sha512-xWD1C4vD/4KMffCrBBrUpsLUO/9uNpm8BVW8+Vcb30gkQDfficZ0oziWkmLexpT53VSioa24iazGXMwBqllYjQ==}
+ storybook@7.6.20:
+ resolution: {integrity: sha512-Wt04pPTO71pwmRmsgkyZhNo4Bvdb/1pBAMsIFb9nQLykEdzzpXjvingxFFvdOG4nIowzwgxD+CLlyRqVJqnATw==}
hasBin: true
stream-browserify@3.0.0:
@@ -9790,10 +9888,16 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
+ string.prototype.includes@2.0.0:
+ resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==}
+
string.prototype.matchall@4.0.11:
resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
engines: {node: '>= 0.4'}
+ string.prototype.repeat@1.0.0:
+ resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
+
string.prototype.trim@1.2.9:
resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
engines: {node: '>= 0.4'}
@@ -9954,6 +10058,11 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
+ tailwindcss@3.4.13:
+ resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+
tailwindcss@3.4.3:
resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
engines: {node: '>=14.0.0'}
@@ -10021,8 +10130,8 @@ packages:
uglify-js:
optional: true
- terser@5.31.0:
- resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
+ terser@5.33.0:
+ resolution: {integrity: sha512-JuPVaB7s1gdFKPKTelwUyRq5Sid2A3Gko2S0PncwdBq7kN9Ti9HPWDQ06MPsEDGsZeVESjKEnyGy68quBk1w6g==}
engines: {node: '>=10'}
hasBin: true
@@ -10091,8 +10200,8 @@ packages:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
- tocbot@4.27.20:
- resolution: {integrity: sha512-6M78FT20+FA5edtx7KowLvhG3gbZ6GRcEkL/0b2TcPbn6Ba+1ayI3SEVxe25zjkWGs0jd04InImaO81Hd8Hukw==}
+ tocbot@4.29.0:
+ resolution: {integrity: sha512-E+8+lceJpWHJYKq+qFHbi+gmFdXZeOAliHFdgiIAUo68cr8ClReXAx7h9e3TcDM0kw9PSnBn3GAZEpRmRLZ93g==}
toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
@@ -10146,15 +10255,15 @@ packages:
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- ts-loader@9.5.1:
- resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==}
+ ts-loader@9.4.3:
+ resolution: {integrity: sha512-n3hBnm6ozJYzwiwt5YRiJZkzktftRpMiBApHaJPoWLA+qetQBAXkHqCLM6nwSdRDimqVtA5ocIkcTRLMTt7yzA==}
engines: {node: '>=12.0.0'}
peerDependencies:
typescript: '*'
webpack: ^5.0.0
- ts-node@10.9.2:
- resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
+ ts-node@10.9.1:
+ resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
'@swc/core': '>=1.2.50'
@@ -10182,8 +10291,8 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tslib@2.7.0:
+ resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
tsup@8.0.2:
resolution: {integrity: sha512-NY8xtQXdH7hDUAZwcQdY/Vzlw9johQsaqf7iwZ6g1DOUlFYQ5/AtVAjTvihhEyeRlGo4dLRVHtrRaL35M1daqQ==}
@@ -10218,38 +10327,38 @@ packages:
tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
- turbo-darwin-64@1.13.3:
- resolution: {integrity: sha512-glup8Qx1qEFB5jerAnXbS8WrL92OKyMmg5Hnd4PleLljAeYmx+cmmnsmLT7tpaVZIN58EAAwu8wHC6kIIqhbWA==}
+ turbo-darwin-64@1.12.4:
+ resolution: {integrity: sha512-dBwFxhp9isTa9RS/fz2gDVk5wWhKQsPQMozYhjM7TT4jTrnYn0ZJMzr7V3B/M/T8QF65TbniW7w1gtgxQgX5Zg==}
cpu: [x64]
os: [darwin]
- turbo-darwin-arm64@1.13.3:
- resolution: {integrity: sha512-/np2xD+f/+9qY8BVtuOQXRq5f9LehCFxamiQnwdqWm5iZmdjygC5T3uVSYuagVFsZKMvX3ycySwh8dylGTl6lg==}
+ turbo-darwin-arm64@1.12.4:
+ resolution: {integrity: sha512-1Uo5iI6xsJ1j9ObsqxYRsa3W26mEbUe6fnj4rQYV6kDaqYD54oAMJ6hM53q9rB8JvFxwdrUXGp3PwTw9A0qqkA==}
cpu: [arm64]
os: [darwin]
- turbo-linux-64@1.13.3:
- resolution: {integrity: sha512-G+HGrau54iAnbXLfl+N/PynqpDwi/uDzb6iM9hXEDG+yJnSJxaHMShhOkXYJPk9offm9prH33Khx2scXrYVW1g==}
+ turbo-linux-64@1.12.4:
+ resolution: {integrity: sha512-ONg2aSqKP7LAQOg7ysmU5WpEQp4DGNxSlAiR7um+LKtbmC/UxogbR5+T+Uuq6zGuQ5kJyKjWJ4NhtvUswOqBsA==}
cpu: [x64]
os: [linux]
- turbo-linux-arm64@1.13.3:
- resolution: {integrity: sha512-qWwEl5VR02NqRyl68/3pwp3c/olZuSp+vwlwrunuoNTm6JXGLG5pTeme4zoHNnk0qn4cCX7DFrOboArlYxv0wQ==}
+ turbo-linux-arm64@1.12.4:
+ resolution: {integrity: sha512-9FPufkwdgfIKg/9jj87Cdtftw8o36y27/S2vLN7FTR2pp9c0MQiTBOLVYadUr1FlShupddmaMbTkXEhyt9SdrA==}
cpu: [arm64]
os: [linux]
- turbo-windows-64@1.13.3:
- resolution: {integrity: sha512-Nudr4bRChfJzBPzEmpVV85VwUYRCGKecwkBFpbp2a4NtrJ3+UP1VZES653ckqCu2FRyRuS0n03v9euMbAvzH+Q==}
+ turbo-windows-64@1.12.4:
+ resolution: {integrity: sha512-2mOtxHW5Vjh/5rDVu/aFwsMzI+chs8XcEuJHlY1sYOpEymYTz+u6AXbnzRvwZFMrLKr7J7fQOGl+v96sLKbNdA==}
cpu: [x64]
os: [win32]
- turbo-windows-arm64@1.13.3:
- resolution: {integrity: sha512-ouJCgsVLd3icjRLmRvHQDDZnmGzT64GBupM1Y+TjtYn2LVaEBoV6hicFy8x5DUpnqdLy+YpCzRMkWlwhmkX7sQ==}
+ turbo-windows-arm64@1.12.4:
+ resolution: {integrity: sha512-nOY5wae9qnxPOpT1fRuYO0ks6dTwpKMPV6++VkDkamFDLFHUDVM/9kmD2UTeh1yyrKnrZksbb9zmShhmfj1wog==}
cpu: [arm64]
os: [win32]
- turbo@1.13.3:
- resolution: {integrity: sha512-n17HJv4F4CpsYTvKzUJhLbyewbXjq1oLCi90i5tW1TiWDz16ML1eDG7wi5dHaKxzh5efIM56SITnuVbMq5dk4g==}
+ turbo@1.12.4:
+ resolution: {integrity: sha512-yUJ7elEUSToiGwFZogXpYKJpQ0BvaMbkEuQECIWtkBLcmWzlMOt6bActsIm29oN83mRU0WbzGt4e8H1KHWedhg==}
hasBin: true
tweetnacl@0.14.5:
@@ -10267,6 +10376,10 @@ packages:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
+ type-detect@4.1.0:
+ resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
+ engines: {node: '>=4'}
+
type-fest@0.13.1:
resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
engines: {node: '>=10'}
@@ -10329,6 +10442,11 @@ packages:
resolution: {integrity: sha512-EcmquhfGEmEJOAezLZC6CzY0rPNzfXuky+Z3zoXULEEncW8e13aAjmC2r8ppT1bvvDekJj1TJ4xVhOdkjYtkUA==}
hasBin: true
+ typescript@4.9.4:
+ resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
+
typescript@4.9.5:
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
engines: {node: '>=4.2.0'}
@@ -10342,11 +10460,11 @@ packages:
uc.micro@1.0.6:
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
- ufo@1.5.3:
- resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
+ ufo@1.5.4:
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
- uglify-js@3.17.4:
- resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
+ uglify-js@3.19.3:
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
hasBin: true
@@ -10362,16 +10480,16 @@ packages:
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- unicode-canonical-property-names-ecmascript@2.0.0:
- resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
+ unicode-canonical-property-names-ecmascript@2.0.1:
+ resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
engines: {node: '>=4'}
unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.1.0:
- resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ unicode-match-property-value-ecmascript@2.2.0:
+ resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.1.0:
@@ -10422,9 +10540,14 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unplugin@1.10.1:
- resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
+ unplugin@1.14.1:
+ resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==}
engines: {node: '>=14.0.0'}
+ peerDependencies:
+ webpack-sources: ^3
+ peerDependenciesMeta:
+ webpack-sources:
+ optional: true
unquote@1.1.1:
resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
@@ -10437,8 +10560,8 @@ packages:
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
engines: {node: '>=4'}
- update-browserslist-db@1.0.16:
- resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
+ update-browserslist-db@1.1.0:
+ resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -10458,8 +10581,12 @@ packages:
url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
- url@0.11.3:
- resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
+ url@0.11.0:
+ resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==}
+
+ url@0.11.4:
+ resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==}
+ engines: {node: '>= 0.4'}
urlpattern-polyfill@8.0.2:
resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
@@ -10558,8 +10685,8 @@ packages:
vfile@5.3.7:
resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
- vscode-languageserver-textdocument@1.0.11:
- resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==}
+ vscode-languageserver-textdocument@1.0.12:
+ resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
vscode-languageserver-types@3.17.5:
resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==}
@@ -10584,8 +10711,8 @@ packages:
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
- watchpack@2.4.1:
- resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ watchpack@2.4.2:
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
engines: {node: '>=10.13.0'}
wbuf@1.7.3:
@@ -10597,8 +10724,8 @@ packages:
web-vitals@2.1.4:
resolution: {integrity: sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==}
- web-vitals@3.5.2:
- resolution: {integrity: sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==}
+ web-vitals@3.1.0:
+ resolution: {integrity: sha512-zCeQ+bOjWjJbXv5ZL0r8Py3XP2doCQMZXNKlBGfUjPAVZWokApdeF/kFlK1peuKlCt8sL9TFkKzyXE9/cmNJQA==}
webapi-parser@0.5.0:
resolution: {integrity: sha512-fPt6XuMqLSvBz8exwX4QE1UT+pROLHa00EMDCdO0ybICduwQ1V4f7AWX4pNOpCp+x+0FjczEsOxtQU0d8L3QKw==}
@@ -10654,10 +10781,6 @@ packages:
peerDependencies:
webpack: ^4.44.2 || ^5.47.0
- webpack-merge@5.10.0:
- resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==}
- engines: {node: '>=10.0.0'}
-
webpack-sources@1.4.3:
resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
@@ -10672,11 +10795,21 @@ packages:
webpack-virtual-modules@0.5.0:
resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
- webpack-virtual-modules@0.6.1:
- resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
+ webpack-virtual-modules@0.6.2:
+ resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
+
+ webpack@5.75.0:
+ resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
- webpack@5.91.0:
- resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ webpack@5.95.0:
+ resolution: {integrity: sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -10715,8 +10848,8 @@ packages:
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-builtin-type@1.1.3:
- resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
+ which-builtin-type@1.1.4:
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
@@ -10726,8 +10859,8 @@ packages:
which-module@2.0.1:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- which-pm@2.0.0:
- resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==}
+ which-pm@2.2.0:
+ resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==}
engines: {node: '>=8.15'}
which-typed-array@1.1.15:
@@ -10743,9 +10876,6 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- wildcard@2.0.1:
- resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
-
word-wrap@1.2.5:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
@@ -10775,6 +10905,7 @@ packages:
workbox-google-analytics@6.6.0:
resolution: {integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==}
+ deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
workbox-navigation-preload@6.6.0:
resolution: {integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==}
@@ -10834,8 +10965,8 @@ packages:
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- ws@6.2.2:
- resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ ws@6.2.3:
+ resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -10845,8 +10976,8 @@ packages:
utf-8-validate:
optional: true
- ws@7.5.9:
- resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
+ ws@7.5.10:
+ resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -10857,8 +10988,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.17.0:
- resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -10914,8 +11045,8 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.4.2:
- resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==}
+ yaml@2.5.1:
+ resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
engines: {node: '>= 14'}
hasBin: true
@@ -10954,8 +11085,8 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
zustand@4.5.2:
@@ -10978,7 +11109,7 @@ packages:
snapshots:
- '@adobe/css-tools@4.3.3': {}
+ '@adobe/css-tools@4.4.0': {}
'@alloc/quick-lru@5.2.0': {}
@@ -10987,14 +11118,14 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@apideck/better-ajv-errors@0.3.6(ajv@8.13.0)':
+ '@apideck/better-ajv-errors@0.3.6(ajv@8.17.1)':
dependencies:
- ajv: 8.13.0
+ ajv: 8.17.1
json-schema: 0.4.0
jsonpointer: 5.0.1
leven: 3.1.0
- '@apidevtools/json-schema-ref-parser@11.6.1':
+ '@apidevtools/json-schema-ref-parser@11.7.0':
dependencies:
'@jsdevtools/ono': 7.1.3
'@types/json-schema': 7.0.15
@@ -11023,14 +11154,22 @@ snapshots:
'@apidevtools/openapi-schemas': 2.1.0
'@apidevtools/swagger-methods': 3.0.2
'@jsdevtools/ono': 7.1.3
- ajv: 8.13.0
- ajv-draft-04: 1.0.0(ajv@8.13.0)
+ ajv: 8.17.1
+ ajv-draft-04: 1.0.0(ajv@8.17.1)
call-me-maybe: 1.0.2
openapi-types: 9.3.0
- '@asyncapi/avro-schema-parser@3.0.22':
+ '@asyncapi/avro-schema-parser@3.0.19':
+ dependencies:
+ '@asyncapi/parser': 3.2.2
+ '@types/json-schema': 7.0.15
+ avsc: 5.7.7
+ transitivePeerDependencies:
+ - encoding
+
+ '@asyncapi/avro-schema-parser@3.0.24':
dependencies:
- '@asyncapi/parser': 3.3.0
+ '@asyncapi/parser': 3.2.2
'@types/json-schema': 7.0.15
avsc: 5.7.7
transitivePeerDependencies:
@@ -11038,15 +11177,15 @@ snapshots:
'@asyncapi/converter@1.5.0':
dependencies:
- '@asyncapi/parser': 3.3.0
+ '@asyncapi/parser': 3.2.2
js-yaml: 3.14.1
transitivePeerDependencies:
- encoding
- '@asyncapi/dotnet-nats-template@0.12.1(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)':
+ '@asyncapi/dotnet-nats-template@0.12.1':
dependencies:
- '@asyncapi/generator-react-sdk': 0.2.25(@types/babel__core@7.20.5)
- '@asyncapi/modelina': 1.9.1(@swc/helpers@0.5.5)
+ '@asyncapi/generator-react-sdk': 0.2.25
+ '@asyncapi/modelina': 1.9.1
transitivePeerDependencies:
- '@swc/helpers'
- '@swc/wasm'
@@ -11064,13 +11203,13 @@ snapshots:
dependencies:
fs.extra: 1.3.2
- '@asyncapi/generator-react-sdk@0.2.25(@types/babel__core@7.20.5)':
+ '@asyncapi/generator-react-sdk@0.2.25':
dependencies:
'@asyncapi/parser': 1.18.1
'@babel/core': 7.12.9
- '@babel/preset-env': 7.24.5(@babel/core@7.12.9)
- '@babel/preset-react': 7.24.1(@babel/core@7.12.9)
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.12.9)(@types/babel__core@7.20.5)(rollup@2.79.1)
+ '@babel/preset-env': 7.25.4(@babel/core@7.12.9)
+ '@babel/preset-react': 7.24.7(@babel/core@7.12.9)
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.12.9)(rollup@2.79.1)
babel-plugin-source-map-support: 2.2.0
prop-types: 15.8.1
react: 17.0.2
@@ -11081,13 +11220,13 @@ snapshots:
- encoding
- supports-color
- '@asyncapi/generator-react-sdk@1.0.18(@types/babel__core@7.20.5)':
+ '@asyncapi/generator-react-sdk@1.1.2':
dependencies:
- '@asyncapi/parser': 3.3.0
+ '@asyncapi/parser': 3.2.2
'@babel/core': 7.12.9
- '@babel/preset-env': 7.24.5(@babel/core@7.12.9)
- '@babel/preset-react': 7.24.1(@babel/core@7.12.9)
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.12.9)(@types/babel__core@7.20.5)(rollup@2.79.1)
+ '@babel/preset-env': 7.25.4(@babel/core@7.12.9)
+ '@babel/preset-react': 7.24.7(@babel/core@7.12.9)
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.12.9)(rollup@2.79.1)
babel-plugin-source-map-support: 2.2.0
prop-types: 15.8.1
react: 17.0.2
@@ -11098,12 +11237,12 @@ snapshots:
- encoding
- supports-color
- '@asyncapi/go-watermill-template@0.2.75(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)':
+ '@asyncapi/go-watermill-template@0.2.72':
dependencies:
'@asyncapi/generator-filters': 2.1.0
'@asyncapi/generator-hooks': 0.1.0
- '@asyncapi/generator-react-sdk': 0.2.25(@types/babel__core@7.20.5)
- '@asyncapi/modelina': 3.5.0(@swc/helpers@0.5.5)
+ '@asyncapi/generator-react-sdk': 0.2.25
+ '@asyncapi/modelina': 3.7.0
transitivePeerDependencies:
- '@swc/helpers'
- '@swc/wasm'
@@ -11111,11 +11250,11 @@ snapshots:
- encoding
- supports-color
- '@asyncapi/html-template@2.3.5(@types/babel__core@7.20.5)(react@18.2.0)':
+ '@asyncapi/html-template@2.3.0(react@18.2.0)':
dependencies:
- '@asyncapi/generator-react-sdk': 1.0.18(@types/babel__core@7.20.5)
- '@asyncapi/parser': 3.3.0
- '@asyncapi/react-component': 1.4.10(react-dom@17.0.2(react@18.2.0))(react@18.2.0)
+ '@asyncapi/generator-react-sdk': 1.1.2
+ '@asyncapi/parser': 3.2.2
+ '@asyncapi/react-component': 1.4.10(react-dom@17.0.2)(react@18.2.0)
highlight.js: 10.7.3
puppeteer: 14.4.1
react-dom: 17.0.2(react@18.2.0)
@@ -11133,7 +11272,7 @@ snapshots:
'@asyncapi/java-spring-cloud-stream-template@0.13.4':
dependencies:
'@asyncapi/generator-filters': 2.1.0
- '@types/node': 16.18.97
+ '@types/node': 16.18.109
js-yaml: 3.14.1
lodash: 4.17.21
@@ -11146,19 +11285,19 @@ snapshots:
replace-in-file: 6.3.5
tmp: 0.2.3
- '@asyncapi/java-template@0.2.10(@types/babel__core@7.20.5)':
+ '@asyncapi/java-template@0.2.1':
dependencies:
'@asyncapi/generator-filters': 2.1.0
'@asyncapi/generator-hooks': 0.1.0
- '@asyncapi/generator-react-sdk': 1.0.18(@types/babel__core@7.20.5)
+ '@asyncapi/generator-react-sdk': 0.2.25
transitivePeerDependencies:
- '@types/babel__core'
- encoding
- supports-color
- '@asyncapi/markdown-template@1.6.1(@types/babel__core@7.20.5)':
+ '@asyncapi/markdown-template@1.5.0':
dependencies:
- '@asyncapi/generator-react-sdk': 1.0.18(@types/babel__core@7.20.5)
+ '@asyncapi/generator-react-sdk': 1.1.2
openapi-sampler: 1.5.1
yaml: 1.10.2
transitivePeerDependencies:
@@ -11166,50 +11305,50 @@ snapshots:
- encoding
- supports-color
- '@asyncapi/modelina@1.9.1(@swc/helpers@0.5.5)':
+ '@asyncapi/modelina@1.9.1':
dependencies:
'@apidevtools/json-schema-ref-parser': 9.1.2
'@apidevtools/swagger-parser': 10.1.0(openapi-types@9.3.0)
- '@asyncapi/avro-schema-parser': 3.0.22
- '@asyncapi/openapi-schema-parser': 3.0.22
+ '@asyncapi/avro-schema-parser': 3.0.19
+ '@asyncapi/openapi-schema-parser': 3.0.18
'@asyncapi/parser': 2.1.2
- '@asyncapi/raml-dt-schema-parser': 4.0.22
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
- '@swc/jest': 0.2.36(@swc/core@1.5.7(@swc/helpers@0.5.5))
+ '@asyncapi/raml-dt-schema-parser': 4.0.24
+ '@swc/core': 1.7.28
+ '@swc/jest': 0.2.36(@swc/core@1.7.28)
alterschema: 1.1.3
change-case: 4.1.2
openapi-types: 9.3.0
- typescript-json-schema: 0.57.0(@swc/core@1.5.7(@swc/helpers@0.5.5))
+ typescript-json-schema: 0.57.0(@swc/core@1.7.28)
transitivePeerDependencies:
- '@swc/helpers'
- '@swc/wasm'
- encoding
- '@asyncapi/modelina@3.5.0(@swc/helpers@0.5.5)':
+ '@asyncapi/modelina@3.7.0':
dependencies:
- '@apidevtools/json-schema-ref-parser': 11.6.1
+ '@apidevtools/json-schema-ref-parser': 11.7.0
'@apidevtools/swagger-parser': 10.1.0(openapi-types@9.3.0)
- '@asyncapi/parser': 3.3.0
- '@smoya/multi-parser': 5.0.7
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
- '@swc/jest': 0.2.36(@swc/core@1.5.7(@swc/helpers@0.5.5))
+ '@asyncapi/parser': 3.2.2
+ '@smoya/multi-parser': 5.0.9
+ '@swc/core': 1.7.28
+ '@swc/jest': 0.2.36(@swc/core@1.7.28)
'@types/node': 20.4.6
alterschema: 1.1.3
change-case: 4.1.2
cross-env: 7.0.3
openapi-types: 9.3.0
- typescript-json-schema: 0.58.1(@swc/core@1.5.7(@swc/helpers@0.5.5))
+ typescript-json-schema: 0.58.1(@swc/core@1.7.28)
transitivePeerDependencies:
- '@swc/helpers'
- '@swc/wasm'
- encoding
- '@asyncapi/nodejs-template@2.0.1(@types/babel__core@7.20.5)(eslint@8.57.0)':
+ '@asyncapi/nodejs-template@2.0.1(eslint@8.57.1)':
dependencies:
'@asyncapi/generator-filters': 2.1.0
'@asyncapi/generator-hooks': 0.1.0
- '@asyncapi/generator-react-sdk': 1.0.18(@types/babel__core@7.20.5)
- eslint-plugin-react: 7.34.1(eslint@8.57.0)
+ '@asyncapi/generator-react-sdk': 1.1.2
+ eslint-plugin-react: 7.36.1(eslint@8.57.1)
filenamify: 4.3.0
js-beautify: 1.15.1
lodash: 4.17.21
@@ -11220,34 +11359,28 @@ snapshots:
- eslint
- supports-color
- '@asyncapi/nodejs-template@3.0.0(@types/babel__core@7.20.5)(eslint@8.57.0)':
+ '@asyncapi/nodejs-ws-template@0.9.33':
dependencies:
'@asyncapi/generator-filters': 2.1.0
'@asyncapi/generator-hooks': 0.1.0
- '@asyncapi/generator-react-sdk': 1.0.18(@types/babel__core@7.20.5)
- eslint-plugin-react: 7.34.1(eslint@8.57.0)
- filenamify: 4.3.0
- js-beautify: 1.15.1
- lodash: 4.17.21
- markdown-toc: 1.2.0
- transitivePeerDependencies:
- - '@types/babel__core'
- - encoding
- - eslint
- - supports-color
- '@asyncapi/nodejs-ws-template@0.9.35':
+ '@asyncapi/openapi-schema-parser@3.0.18':
dependencies:
- '@asyncapi/generator-filters': 2.1.0
- '@asyncapi/generator-hooks': 0.1.0
+ '@asyncapi/parser': 3.2.2
+ '@openapi-contrib/openapi-schema-to-json-schema': 3.2.0
+ ajv: 8.17.1
+ ajv-errors: 3.0.0(ajv@8.17.1)
+ ajv-formats: 2.1.1(ajv@8.17.1)
+ transitivePeerDependencies:
+ - encoding
- '@asyncapi/openapi-schema-parser@3.0.22':
+ '@asyncapi/openapi-schema-parser@3.0.24':
dependencies:
- '@asyncapi/parser': 3.3.0
+ '@asyncapi/parser': 3.2.2
'@openapi-contrib/openapi-schema-to-json-schema': 3.2.0
- ajv: 8.13.0
- ajv-errors: 3.0.0(ajv@8.13.0)
- ajv-formats: 2.1.1(ajv@8.13.0)
+ ajv: 8.17.1
+ ajv-errors: 3.0.0(ajv@8.17.1)
+ ajv-formats: 2.1.1(ajv@8.17.1)
transitivePeerDependencies:
- encoding
@@ -11269,19 +11402,19 @@ snapshots:
dependencies:
'@asyncapi/specs': 5.1.0
'@openapi-contrib/openapi-schema-to-json-schema': 3.2.0
- '@stoplight/json': 3.21.0
+ '@stoplight/json': 3.21.7
'@stoplight/json-ref-readers': 1.2.2
'@stoplight/json-ref-resolver': 3.1.6
- '@stoplight/spectral-core': 1.18.3
- '@stoplight/spectral-functions': 1.7.2
+ '@stoplight/spectral-core': 1.19.1
+ '@stoplight/spectral-functions': 1.9.0
'@stoplight/spectral-parsers': 1.0.4
'@stoplight/spectral-ref-resolver': 1.0.4
'@stoplight/types': 13.20.0
'@types/json-schema': 7.0.15
'@types/urijs': 1.19.25
- ajv: 8.13.0
- ajv-errors: 3.0.0(ajv@8.13.0)
- ajv-formats: 2.1.1(ajv@8.13.0)
+ ajv: 8.17.1
+ ajv-errors: 3.0.0(ajv@8.17.1)
+ ajv-formats: 2.1.1(ajv@8.17.1)
avsc: 5.7.7
js-yaml: 4.1.0
jsonpath-plus: 7.2.0
@@ -11294,8 +11427,8 @@ snapshots:
'@asyncapi/specs': 6.8.0
'@openapi-contrib/openapi-schema-to-json-schema': 3.2.0
'@stoplight/json-ref-resolver': 3.1.6
- '@stoplight/spectral-core': 1.18.3
- '@stoplight/spectral-functions': 1.7.2
+ '@stoplight/spectral-core': 1.19.1
+ '@stoplight/spectral-functions': 1.9.0
'@stoplight/spectral-parsers': 1.0.4
'@types/json-schema': 7.0.15
'@types/urijs': 1.19.25
@@ -11311,15 +11444,15 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@asyncapi/parser@3.3.0':
+ '@asyncapi/parser@3.2.2':
dependencies:
'@asyncapi/specs': 6.8.0
'@openapi-contrib/openapi-schema-to-json-schema': 3.2.0
'@stoplight/json': 3.21.0
'@stoplight/json-ref-readers': 1.2.2
'@stoplight/json-ref-resolver': 3.1.6
- '@stoplight/spectral-core': 1.18.3
- '@stoplight/spectral-functions': 1.7.2
+ '@stoplight/spectral-core': 1.19.1
+ '@stoplight/spectral-functions': 1.9.0
'@stoplight/spectral-parsers': 1.0.4
'@stoplight/spectral-ref-resolver': 1.0.4
'@stoplight/types': 13.20.0
@@ -11335,11 +11468,27 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@asyncapi/protobuf-schema-parser@3.2.12':
+ '@asyncapi/protobuf-schema-parser@3.0.0':
+ dependencies:
+ '@asyncapi/parser': 2.1.2
+ '@types/protocol-buffers-schema': 3.4.3
+ protocol-buffers-schema: 3.6.0
+ transitivePeerDependencies:
+ - encoding
+
+ '@asyncapi/protobuf-schema-parser@3.2.14':
+ dependencies:
+ '@asyncapi/parser': 3.2.2
+ '@types/protocol-buffers-schema': 3.4.3
+ protobufjs: 7.4.0
+ transitivePeerDependencies:
+ - encoding
+
+ '@asyncapi/protobuf-schema-parser@3.2.8':
dependencies:
- '@asyncapi/parser': 3.3.0
+ '@asyncapi/parser': 3.2.2
'@types/protocol-buffers-schema': 3.4.3
- protobufjs: 7.3.0
+ protobufjs: 7.4.0
transitivePeerDependencies:
- encoding
@@ -11349,28 +11498,28 @@ snapshots:
js-yaml: 3.14.1
lodash: 4.17.21
- '@asyncapi/raml-dt-schema-parser@4.0.22':
+ '@asyncapi/raml-dt-schema-parser@4.0.24':
dependencies:
- '@asyncapi/parser': 3.3.0
+ '@asyncapi/parser': 3.2.2
js-yaml: 4.1.0
ramldt2jsonschema: 1.2.3
webapi-parser: 0.5.0
transitivePeerDependencies:
- encoding
- '@asyncapi/react-component@1.4.10(react-dom@17.0.2(react@18.2.0))(react@18.2.0)':
+ '@asyncapi/react-component@1.2.2(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@asyncapi/avro-schema-parser': 3.0.22
- '@asyncapi/openapi-schema-parser': 3.0.22
- '@asyncapi/parser': 3.3.0
- '@asyncapi/protobuf-schema-parser': 3.2.12
+ '@asyncapi/avro-schema-parser': 3.0.19
+ '@asyncapi/openapi-schema-parser': 3.0.18
+ '@asyncapi/parser': 3.2.2
+ '@asyncapi/protobuf-schema-parser': 3.0.0
highlight.js: 10.7.3
isomorphic-dompurify: 0.13.0
marked: 4.3.0
openapi-sampler: 1.5.1
react: 18.2.0
- react-dom: 17.0.2(react@18.2.0)
- use-resize-observer: 8.0.0(react-dom@17.0.2(react@18.2.0))(react@18.2.0)
+ react-dom: 18.2.0(react@18.2.0)
+ use-resize-observer: 8.0.0(react-dom@18.2.0)(react@18.2.0)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -11378,19 +11527,19 @@ snapshots:
- supports-color
- utf-8-validate
- '@asyncapi/react-component@1.4.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@asyncapi/react-component@1.4.10(react-dom@17.0.2)(react@18.2.0)':
dependencies:
- '@asyncapi/avro-schema-parser': 3.0.22
- '@asyncapi/openapi-schema-parser': 3.0.22
- '@asyncapi/parser': 3.3.0
- '@asyncapi/protobuf-schema-parser': 3.2.12
+ '@asyncapi/avro-schema-parser': 3.0.24
+ '@asyncapi/openapi-schema-parser': 3.0.24
+ '@asyncapi/parser': 3.2.2
+ '@asyncapi/protobuf-schema-parser': 3.2.14
highlight.js: 10.7.3
isomorphic-dompurify: 0.13.0
marked: 4.3.0
openapi-sampler: 1.5.1
react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- use-resize-observer: 8.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react-dom: 17.0.2(react@18.2.0)
+ use-resize-observer: 8.0.0(react-dom@17.0.2)(react@18.2.0)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -11406,7 +11555,7 @@ snapshots:
dependencies:
'@types/json-schema': 7.0.15
- '@asyncapi/specs@6.7.1':
+ '@asyncapi/specs@6.5.4':
dependencies:
'@types/json-schema': 7.0.15
@@ -11414,11 +11563,11 @@ snapshots:
dependencies:
'@types/json-schema': 7.0.15
- '@asyncapi/ts-nats-template@0.10.3(@swc/helpers@0.5.5)(@types/babel__core@7.20.5)':
+ '@asyncapi/ts-nats-template@0.10.3':
dependencies:
'@asyncapi/generator-filters': 2.1.0
- '@asyncapi/generator-react-sdk': 0.2.25(@types/babel__core@7.20.5)
- '@asyncapi/modelina': 1.9.1(@swc/helpers@0.5.5)
+ '@asyncapi/generator-react-sdk': 0.2.25
+ '@asyncapi/modelina': 1.9.1
'@asyncapi/parser': 1.18.1
cross-env: 7.0.3
filenamify: 4.3.0
@@ -11436,25 +11585,25 @@ snapshots:
dependencies:
default-browser-id: 3.0.0
- '@babel/code-frame@7.24.2':
+ '@babel/code-frame@7.24.7':
dependencies:
- '@babel/highlight': 7.24.5
- picocolors: 1.0.1
+ '@babel/highlight': 7.24.7
+ picocolors: 1.1.0
- '@babel/compat-data@7.24.4': {}
+ '@babel/compat-data@7.25.4': {}
'@babel/core@7.12.9':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.9)
- '@babel/helpers': 7.24.5
- '@babel/parser': 7.24.5
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.6
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.12.9)
+ '@babel/helpers': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
convert-source-map: 1.9.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
lodash: 4.17.21
@@ -11464,1229 +11613,2050 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.24.5':
+ '@babel/core@7.17.4':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.6
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.4)
+ '@babel/helpers': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ convert-source-map: 1.9.0
+ debug: 4.3.7(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/core@7.25.2':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helpers': 7.24.5
- '@babel/parser': 7.24.5
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.6
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helpers': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
convert-source-map: 2.0.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.24.5(@babel/core@7.24.5)(eslint@8.57.0)':
+ '@babel/eslint-parser@7.25.1(@babel/core@7.25.2)(eslint@8.57.1)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-visitor-keys: 2.1.0
semver: 6.3.1
- '@babel/generator@7.24.5':
+ '@babel/generator@7.25.6':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.25.6
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/helper-annotate-as-pure@7.22.5':
+ '@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.25.6
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-compilation-targets@7.23.6':
+ '@babel/helper-compilation-targets@7.25.2':
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/helper-validator-option': 7.23.5
- browserslist: 4.23.0
+ '@babel/compat-data': 7.25.4
+ '@babel/helper-validator-option': 7.24.8
+ browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.12.9)':
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.24.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.12.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.12.9)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/traverse': 7.25.6
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.17.4)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/traverse': 7.25.6
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.24.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/traverse': 7.25.6
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.12.9)':
+ '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.5)':
+ '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.12.9)':
+ '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- debug: 4.3.4(supports-color@8.1.1)
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+
+ '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.5)':
+ '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- debug: 4.3.4(supports-color@8.1.1)
+ '@babel/core': 7.17.4
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-environment-visitor@7.22.20': {}
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.12.9)':
+ dependencies:
+ '@babel/core': 7.12.9
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ debug: 4.3.7(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-function-name@7.23.0':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.17.4)':
dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ debug: 4.3.7(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-hoist-variables@7.22.5':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ debug: 4.3.7(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-member-expression-to-functions@7.24.5':
+ '@babel/helper-member-expression-to-functions@7.24.8':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-imports@7.24.3':
+ '@babel/helper-module-imports@7.24.7':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-transforms@7.24.5(@babel/core@7.12.9)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.24.5
- '@babel/helper-split-export-declaration': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.24.5
- '@babel/helper-split-export-declaration': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-optimise-call-expression@7.22.5':
+ '@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.25.6
- '@babel/helper-plugin-utils@7.24.5': {}
+ '@babel/helper-plugin-utils@7.24.8': {}
- '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.12.9)':
+ '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-wrap-function': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-wrap-function': 7.25.0
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.5)':
+ '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-wrap-function': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-wrap-function': 7.25.0
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-replace-supers@7.24.1(@babel/core@7.12.9)':
+ '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.24.5
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-wrap-function': 7.25.0
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.5)':
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.12.9)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.24.5
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/core': 7.12.9
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-simple-access@7.24.5':
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.17.4)':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-split-export-declaration@7.24.5':
+ '@babel/helper-simple-access@7.24.7':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-string-parser@7.24.1': {}
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-validator-identifier@7.24.5': {}
+ '@babel/helper-string-parser@7.24.8': {}
- '@babel/helper-validator-option@7.23.5': {}
+ '@babel/helper-validator-identifier@7.24.7': {}
- '@babel/helper-wrap-function@7.24.5':
- dependencies:
- '@babel/helper-function-name': 7.23.0
- '@babel/template': 7.24.0
- '@babel/types': 7.24.5
+ '@babel/helper-validator-option@7.24.8': {}
- '@babel/helpers@7.24.5':
+ '@babel/helper-wrap-function@7.25.0':
dependencies:
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/highlight@7.24.5':
+ '@babel/helpers@7.25.6':
+ dependencies:
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
+
+ '@babel/highlight@7.24.7':
dependencies:
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
- '@babel/parser@7.24.5':
+ '@babel/parser@7.25.6':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.25.6
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.12.9)':
+ dependencies:
+ '@babel/core': 7.12.9
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.5)':
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.5)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.5)':
+ '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.5)':
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.5)':
+ '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+
+ '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.5)':
+ '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.9)':
+ '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.12.9)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.12.9
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.9)':
+ '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.9)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.9)':
+ dependencies:
+ '@babel/core': 7.12.9
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.12.9)':
+ dependencies:
+ '@babel/core': 7.12.9
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.9)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.12.9
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.12.9)':
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.12.9)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9)
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.17.4)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.4)
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.5)':
+ '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.12.9)
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.12.9)':
+ '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.5)':
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-classes@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-classes@7.25.4(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 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.24.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.12.9)
- '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.12.9)
+ '@babel/traverse': 7.25.6
globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-classes@7.25.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.17.4)
+ '@babel/traverse': 7.25.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-classes@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 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.24.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
- '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.6
globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/template': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/template': 7.25.0
+
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/template': 7.25.0
- '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/template': 7.24.0
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/template': 7.25.0
- '@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.12.9)':
+ dependencies:
+ '@babel/core': 7.12.9
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.4)
- '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
+
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.17.4)
- '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.17.4)
+
+ '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
+
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.17.4)
+
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-literals@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-literals@7.25.2(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-literals@7.25.2(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9)
- '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.17.4)
+
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-simple-access': 7.24.5
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-simple-access': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.4)
- '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9)
- '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.17.4)
+
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9)
+
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.4)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.17.4)
- '@babel/plugin-transform-object-rest-spread@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.17.4)
+
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-parameters@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-parameters@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-react-constant-elements@7.25.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5)
+ '@babel/core': 7.17.4
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.12.9)':
+ '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.12.9)
- '@babel/types': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.12.9)
+ '@babel/types': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5)':
+ '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
- '@babel/types': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.17.4)
+ '@babel/types': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/types': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ regenerator-transform: 0.15.2
+
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.5)':
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.5
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-runtime@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-spread@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-typeof-symbol@7.24.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-typeof-symbol@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-typescript@7.24.5(@babel/core@7.24.5)':
+ '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.17.4)':
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.12.9)':
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.5)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.12.9)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.12.9
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.4)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/preset-env@7.22.4(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/compat-data': 7.25.4
+ '@babel/core': 7.17.4
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.17.4)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.17.4)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.4)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.17.4)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.4)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.4)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.17.4)
+ '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.17.4)
+ '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.17.4)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.17.4)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.17.4)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.17.4)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.4)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.17.4)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.4)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.17.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.4)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.17.4)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.17.4)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.17.4)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.17.4)
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.17.4)
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.17.4)
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.17.4)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.17.4)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.17.4)
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.17.4)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.17.4)
+ '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.17.4)
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.17.4)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.17.4)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.17.4)
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.17.4)
+ '@babel/preset-modules': 0.1.6(@babel/core@7.17.4)
+ '@babel/types': 7.25.6
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.17.4)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.17.4)
+ babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.17.4)
+ core-js-compat: 3.38.1
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/preset-env@7.24.5(@babel/core@7.12.9)':
+ '@babel/preset-env@7.25.4(@babel/core@7.12.9)':
dependencies:
- '@babel/compat-data': 7.24.4
+ '@babel/compat-data': 7.25.4
'@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.12.9)
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.12.9)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.12.9)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.12.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.12.9)
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.12.9)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.12.9)
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9)
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.12.9)
+ '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.12.9)
+ '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.12.9)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.12.9)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9)
@@ -12698,203 +13668,274 @@ snapshots:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.12.9)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.12.9)
- '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.12.9)
- '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.12.9)
- '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-object-rest-spread': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-private-property-in-object': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-typeof-symbol': 7.24.5(@babel/core@7.12.9)
- '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.12.9)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.12.9)
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.12.9)
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.12.9)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.12.9)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.12.9)
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.12.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.12.9)
+ '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.12.9)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.12.9)
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.12.9)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.12.9)
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.12.9)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.12.9)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.12.9)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.12.9)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.24.5(@babel/core@7.24.5)':
- dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.5)
- '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.5)
- '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.5)
- '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-object-rest-spread': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-private-property-in-object': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-typeof-symbol': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.5)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.5)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
- core-js-compat: 3.37.1
+ '@babel/preset-env@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/compat-data': 7.25.4
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
+ core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.24.1(@babel/core@7.24.5)':
+ '@babel/preset-flow@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.17.4)
+
+ '@babel/preset-flow@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
+
+ '@babel/preset-modules@0.1.6(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.4)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.17.4)
+ '@babel/types': 7.25.6
+ esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/types': 7.25.6
esutils: 2.0.3
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/types': 7.25.6
esutils: 2.0.3
- '@babel/preset-react@7.24.1(@babel/core@7.12.9)':
+ '@babel/preset-react@7.22.3(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.17.4)
+ '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-react@7.24.7(@babel/core@7.12.9)':
+ dependencies:
+ '@babel/core': 7.12.9
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-react@7.24.7(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.17.4)
+ '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-react@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-typescript@7.24.1(@babel/core@7.17.4)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.17.4)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.17.4)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-typescript@7.24.1(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/register@7.24.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.12.9)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.12.9)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.12.9)
- '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.12.9)
-
- '@babel/preset-react@7.24.1(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.5)
- '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.5)
-
- '@babel/preset-typescript@7.24.1(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
-
- '@babel/register@7.23.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -12903,48 +13944,45 @@ snapshots:
'@babel/regjsgen@0.8.0': {}
- '@babel/runtime@7.24.5':
+ '@babel/runtime@7.25.6':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.24.0':
+ '@babel/template@7.25.0':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
- '@babel/traverse@7.24.5':
+ '@babel/traverse@7.25.6':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.5
- '@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.24.5
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
- debug: 4.3.4(supports-color@8.1.1)
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
+ debug: 4.3.7(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.5':
+ '@babel/types@7.25.6':
dependencies:
- '@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-string-parser': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
'@base2/pretty-print-object@1.0.1': {}
'@bcoe/v8-coverage@0.2.3': {}
- '@changesets/apply-release-plan@7.0.0':
+ '@changesets/apply-release-plan@6.1.4':
dependencies:
- '@babel/runtime': 7.24.5
- '@changesets/config': 3.0.0
- '@changesets/get-version-range-type': 0.4.0
- '@changesets/git': 3.0.0
- '@changesets/types': 6.0.0
+ '@babel/runtime': 7.25.6
+ '@changesets/config': 2.3.1
+ '@changesets/get-version-range-type': 0.3.2
+ '@changesets/git': 2.0.0
+ '@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
detect-indent: 6.1.0
fs-extra: 7.0.1
@@ -12952,164 +13990,165 @@ snapshots:
outdent: 0.5.0
prettier: 2.8.8
resolve-from: 5.0.0
- semver: 7.6.2
+ semver: 7.6.3
- '@changesets/assemble-release-plan@6.0.0':
+ '@changesets/assemble-release-plan@5.2.4':
dependencies:
- '@babel/runtime': 7.24.5
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.0.0
- '@changesets/types': 6.0.0
+ '@babel/runtime': 7.25.6
+ '@changesets/errors': 0.1.4
+ '@changesets/get-dependents-graph': 1.3.6
+ '@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
- semver: 7.6.2
-
- '@changesets/changelog-git@0.2.0':
- dependencies:
- '@changesets/types': 6.0.0
-
- '@changesets/cli@2.27.1':
- dependencies:
- '@babel/runtime': 7.24.5
- '@changesets/apply-release-plan': 7.0.0
- '@changesets/assemble-release-plan': 6.0.0
- '@changesets/changelog-git': 0.2.0
- '@changesets/config': 3.0.0
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.0.0
- '@changesets/get-release-plan': 4.0.0
- '@changesets/git': 3.0.0
- '@changesets/logger': 0.1.0
- '@changesets/pre': 2.0.0
- '@changesets/read': 0.6.0
- '@changesets/types': 6.0.0
- '@changesets/write': 0.3.0
+ semver: 7.6.3
+
+ '@changesets/changelog-git@0.1.14':
+ dependencies:
+ '@changesets/types': 5.2.1
+
+ '@changesets/cli@2.26.2':
+ dependencies:
+ '@babel/runtime': 7.25.6
+ '@changesets/apply-release-plan': 6.1.4
+ '@changesets/assemble-release-plan': 5.2.4
+ '@changesets/changelog-git': 0.1.14
+ '@changesets/config': 2.3.1
+ '@changesets/errors': 0.1.4
+ '@changesets/get-dependents-graph': 1.3.6
+ '@changesets/get-release-plan': 3.0.17
+ '@changesets/git': 2.0.0
+ '@changesets/logger': 0.0.5
+ '@changesets/pre': 1.0.14
+ '@changesets/read': 0.5.9
+ '@changesets/types': 5.2.1
+ '@changesets/write': 0.2.3
'@manypkg/get-packages': 1.1.3
+ '@types/is-ci': 3.0.4
'@types/semver': 7.5.8
ansi-colors: 4.1.3
chalk: 2.4.2
- ci-info: 3.9.0
enquirer: 2.4.1
external-editor: 3.1.0
fs-extra: 7.0.1
human-id: 1.0.2
+ is-ci: 3.0.1
meow: 6.1.1
outdent: 0.5.0
p-limit: 2.3.0
- preferred-pm: 3.1.3
+ preferred-pm: 3.1.4
resolve-from: 5.0.0
- semver: 7.6.2
+ semver: 7.6.3
spawndamnit: 2.0.0
term-size: 2.2.1
tty-table: 4.2.3
- '@changesets/config@3.0.0':
+ '@changesets/config@2.3.1':
dependencies:
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.0.0
- '@changesets/logger': 0.1.0
- '@changesets/types': 6.0.0
+ '@changesets/errors': 0.1.4
+ '@changesets/get-dependents-graph': 1.3.6
+ '@changesets/logger': 0.0.5
+ '@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
- '@changesets/errors@0.2.0':
+ '@changesets/errors@0.1.4':
dependencies:
extendable-error: 0.1.7
- '@changesets/get-dependents-graph@2.0.0':
+ '@changesets/get-dependents-graph@1.3.6':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
chalk: 2.4.2
fs-extra: 7.0.1
- semver: 7.6.2
+ semver: 7.6.3
- '@changesets/get-release-plan@4.0.0':
+ '@changesets/get-release-plan@3.0.17':
dependencies:
- '@babel/runtime': 7.24.5
- '@changesets/assemble-release-plan': 6.0.0
- '@changesets/config': 3.0.0
- '@changesets/pre': 2.0.0
- '@changesets/read': 0.6.0
- '@changesets/types': 6.0.0
+ '@babel/runtime': 7.25.6
+ '@changesets/assemble-release-plan': 5.2.4
+ '@changesets/config': 2.3.1
+ '@changesets/pre': 1.0.14
+ '@changesets/read': 0.5.9
+ '@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
- '@changesets/get-version-range-type@0.4.0': {}
+ '@changesets/get-version-range-type@0.3.2': {}
- '@changesets/git@3.0.0':
+ '@changesets/git@2.0.0':
dependencies:
- '@babel/runtime': 7.24.5
- '@changesets/errors': 0.2.0
- '@changesets/types': 6.0.0
+ '@babel/runtime': 7.25.6
+ '@changesets/errors': 0.1.4
+ '@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
is-subdir: 1.2.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
spawndamnit: 2.0.0
- '@changesets/logger@0.1.0':
+ '@changesets/logger@0.0.5':
dependencies:
chalk: 2.4.2
- '@changesets/parse@0.4.0':
+ '@changesets/parse@0.3.16':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 5.2.1
js-yaml: 3.14.1
- '@changesets/pre@2.0.0':
+ '@changesets/pre@1.0.14':
dependencies:
- '@babel/runtime': 7.24.5
- '@changesets/errors': 0.2.0
- '@changesets/types': 6.0.0
+ '@babel/runtime': 7.25.6
+ '@changesets/errors': 0.1.4
+ '@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- '@changesets/read@0.6.0':
+ '@changesets/read@0.5.9':
dependencies:
- '@babel/runtime': 7.24.5
- '@changesets/git': 3.0.0
- '@changesets/logger': 0.1.0
- '@changesets/parse': 0.4.0
- '@changesets/types': 6.0.0
+ '@babel/runtime': 7.25.6
+ '@changesets/git': 2.0.0
+ '@changesets/logger': 0.0.5
+ '@changesets/parse': 0.3.16
+ '@changesets/types': 5.2.1
chalk: 2.4.2
fs-extra: 7.0.1
p-filter: 2.1.0
'@changesets/types@4.1.0': {}
- '@changesets/types@6.0.0': {}
+ '@changesets/types@5.2.1': {}
- '@changesets/write@0.3.0':
+ '@changesets/write@0.2.3':
dependencies:
- '@babel/runtime': 7.24.5
- '@changesets/types': 6.0.0
+ '@babel/runtime': 7.25.6
+ '@changesets/types': 5.2.1
fs-extra: 7.0.1
human-id: 1.0.2
prettier: 2.8.8
- '@codemirror/autocomplete@6.16.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)':
+ '@codemirror/autocomplete@6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)':
dependencies:
- '@codemirror/language': 6.10.1
+ '@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
'@codemirror/view': 6.26.3
'@lezer/common': 1.2.1
- '@codemirror/commands@6.5.0':
+ '@codemirror/commands@6.6.2':
dependencies:
- '@codemirror/language': 6.10.1
+ '@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.26.3
+ '@codemirror/view': 6.34.0
'@lezer/common': 1.2.1
- '@codemirror/language@6.10.1':
+ '@codemirror/language@6.10.3':
dependencies:
'@codemirror/state': 6.4.1
'@codemirror/view': 6.26.3
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.0
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
style-mod: 4.1.2
- '@codemirror/lint@6.7.1':
+ '@codemirror/lint@6.8.2':
dependencies:
'@codemirror/state': 6.4.1
'@codemirror/view': 6.26.3
@@ -13129,41 +14168,14 @@ snapshots:
style-mod: 4.1.2
w3c-keyname: 2.2.8
- '@colors/colors@1.5.0':
- optional: true
-
- '@craco/craco@7.1.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(postcss@8.4.31)(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.1))(typescript@4.9.5)':
+ '@codemirror/view@6.34.0':
dependencies:
- autoprefixer: 10.4.14(postcss@8.4.31)
- cosmiconfig: 7.1.0
- cosmiconfig-typescript-loader: 1.0.9(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(cosmiconfig@7.1.0)(typescript@4.9.5)
- cross-spawn: 7.0.3
- lodash: 4.17.21
- react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.1)
- semver: 7.6.2
- webpack-merge: 5.10.0
- transitivePeerDependencies:
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - postcss
- - typescript
+ '@codemirror/state': 6.4.1
+ style-mod: 4.1.2
+ w3c-keyname: 2.2.8
- '@craco/types@7.1.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(eslint@8.57.0)(postcss@8.4.31)':
- dependencies:
- '@babel/types': 7.24.5
- '@jest/types': 27.5.1
- '@types/eslint': 8.56.10
- autoprefixer: 10.4.14(postcss@8.4.31)
- eslint-webpack-plugin: 3.2.0(eslint@8.57.0)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - eslint
- - postcss
- - uglify-js
- - webpack-cli
+ '@colors/colors@1.5.0':
+ optional: true
'@cspotcode/source-map-support@0.8.1':
dependencies:
@@ -13173,9 +14185,9 @@ snapshots:
'@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.31)':
dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
'@csstools/postcss-color-function@1.1.1(postcss@8.4.31)':
dependencies:
@@ -13201,9 +14213,9 @@ snapshots:
'@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.31)':
dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
'@csstools/postcss-nested-calc@1.0.0(postcss@8.4.31)':
dependencies:
@@ -13245,9 +14257,9 @@ snapshots:
dependencies:
postcss: 8.4.31
- '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.16)':
+ '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.2)':
dependencies:
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
'@cypress/request@3.0.5':
dependencies:
@@ -13279,12 +14291,12 @@ snapshots:
'@discoveryjs/json-ext@0.5.7': {}
- '@ebay/nice-modal-react@1.2.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@ebay/nice-modal-react@1.2.10(react-dom@18.2.0)(react@18.2.0)':
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)':
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.2.0)':
dependencies:
react: 18.2.0
@@ -13423,20 +14435,39 @@ snapshots:
'@esbuild/win32-x64@0.19.12':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@8.27.0)':
+ dependencies:
+ eslint: 8.27.0
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.4.0(eslint@8.57.1)':
dependencies:
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.10.0': {}
+ '@eslint-community/regexpp@4.11.1': {}
+
+ '@eslint/eslintrc@1.4.1':
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.7(supports-color@8.1.1)
+ espree: 9.6.1
+ globals: 13.24.0
+ ignore: 5.3.2
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
espree: 9.6.1
globals: 13.24.0
- ignore: 5.3.1
+ ignore: 5.3.2
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -13444,50 +14475,57 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@8.57.0': {}
+ '@eslint/js@8.57.1': {}
'@fal-works/esbuild-plugin-global-externals@2.1.2': {}
- '@floating-ui/core@1.6.1':
+ '@floating-ui/core@1.6.8':
dependencies:
- '@floating-ui/utils': 0.2.2
+ '@floating-ui/utils': 0.2.8
- '@floating-ui/dom@1.6.5':
+ '@floating-ui/dom@1.6.11':
dependencies:
- '@floating-ui/core': 1.6.1
- '@floating-ui/utils': 0.2.2
+ '@floating-ui/core': 1.6.8
+ '@floating-ui/utils': 0.2.8
- '@floating-ui/react-dom@2.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@floating-ui/react-dom@2.1.2(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@floating-ui/dom': 1.6.5
+ '@floating-ui/dom': 1.6.11
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@floating-ui/utils@0.2.2': {}
+ '@floating-ui/utils@0.2.8': {}
'@fmvilas/pseudo-yaml-ast@0.3.1':
dependencies:
yaml-ast-parser: 0.0.43
- '@headlessui/react@1.7.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@headlessui/react@1.7.15(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@tanstack/react-virtual': 3.5.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
client-only: 0.0.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@heroicons/react@2.1.3(react@18.2.0)':
+ '@heroicons/react@2.0.18(react@18.2.0)':
dependencies:
react: 18.2.0
- '@hookstate/core@4.0.1(react@18.2.0)':
+ '@hookstate/core@4.0.0-rc21(react@18.2.0)':
dependencies:
react: 18.2.0
'@humanwhocodes/config-array@0.11.14':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@humanwhocodes/config-array@0.13.0':
+ dependencies:
+ '@humanwhocodes/object-schema': 2.0.3
+ debug: 4.3.7(supports-color@8.1.1)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -13551,7 +14589,7 @@ snapshots:
'@jest/console@27.5.1':
dependencies:
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
chalk: 4.1.2
jest-message-util: 27.5.1
jest-util: 27.5.1
@@ -13560,64 +14598,27 @@ snapshots:
'@jest/console@28.1.3':
dependencies:
'@jest/types': 28.1.3
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
chalk: 4.1.2
jest-message-util: 28.1.3
jest-util: 28.1.3
slash: 3.0.0
- '@jest/core@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))':
- dependencies:
- '@jest/console': 27.5.1
- '@jest/reporters': 27.5.1
- '@jest/test-result': 27.5.1
- '@jest/transform': 27.5.1
- '@jest/types': 27.5.1
- '@types/node': 18.19.33
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- emittery: 0.8.1
- exit: 0.1.2
- graceful-fs: 4.2.11
- jest-changed-files: 27.5.1
- jest-config: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- jest-haste-map: 27.5.1
- jest-message-util: 27.5.1
- jest-regex-util: 27.5.1
- jest-resolve: 27.5.1
- jest-resolve-dependencies: 27.5.1
- jest-runner: 27.5.1
- jest-runtime: 27.5.1
- jest-snapshot: 27.5.1
- jest-util: 27.5.1
- jest-validate: 27.5.1
- jest-watcher: 27.5.1
- micromatch: 4.0.5
- rimraf: 3.0.2
- slash: 3.0.0
- strip-ansi: 6.0.1
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - ts-node
- - utf-8-validate
-
- '@jest/core@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))':
+ '@jest/core@27.5.1':
dependencies:
'@jest/console': 27.5.1
'@jest/reporters': 27.5.1
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.8.1
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 27.5.1
- jest-config: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ jest-config: 27.5.1
jest-haste-map: 27.5.1
jest-message-util: 27.5.1
jest-regex-util: 27.5.1
@@ -13629,7 +14630,7 @@ snapshots:
jest-util: 27.5.1
jest-validate: 27.5.1
jest-watcher: 27.5.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
rimraf: 3.0.2
slash: 3.0.0
strip-ansi: 6.0.1
@@ -13648,7 +14649,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
jest-mock: 27.5.1
'@jest/expect-utils@29.7.0':
@@ -13659,7 +14660,7 @@ snapshots:
dependencies:
'@jest/types': 27.5.1
'@sinonjs/fake-timers': 8.1.0
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
jest-message-util: 27.5.1
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -13677,7 +14678,7 @@ snapshots:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -13739,7 +14740,7 @@ snapshots:
'@jest/transform@27.5.1':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
'@jest/types': 27.5.1
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -13749,7 +14750,7 @@ snapshots:
jest-haste-map: 27.5.1
jest-regex-util: 27.5.1
jest-util: 27.5.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
source-map: 0.6.1
@@ -13759,7 +14760,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.17.4
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -13770,7 +14771,7 @@ snapshots:
jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
jest-util: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
@@ -13781,7 +14782,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/yargs': 16.0.9
chalk: 4.1.2
@@ -13790,8 +14791,8 @@ snapshots:
'@jest/schemas': 28.1.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.33
- '@types/yargs': 17.0.32
+ '@types/node': 20.4.6
+ '@types/yargs': 17.0.33
chalk: 4.1.2
'@jest/types@29.6.3':
@@ -13800,13 +14801,13 @@ snapshots:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
'@types/node': 20.4.6
- '@types/yargs': 17.0.32
+ '@types/yargs': 17.0.33
chalk: 4.1.2
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping': 0.3.25
'@jridgewell/resolve-uri@3.1.2': {}
@@ -13818,27 +14819,27 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/sourcemap-codec@1.5.0': {}
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping@0.3.9':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jsdevtools/ono@7.1.3': {}
- '@jsep-plugin/regex@1.0.3(jsep@1.3.8)':
+ '@jsep-plugin/regex@1.0.3(jsep@1.3.9)':
dependencies:
- jsep: 1.3.8
+ jsep: 1.3.9
- '@jsep-plugin/ternary@1.1.3(jsep@1.3.8)':
+ '@jsep-plugin/ternary@1.1.3(jsep@1.3.9)':
dependencies:
- jsep: 1.3.8
+ jsep: 1.3.9
'@juggle/resize-observer@3.4.0': {}
@@ -13846,24 +14847,24 @@ snapshots:
'@lezer/common@1.2.1': {}
- '@lezer/highlight@1.2.0':
+ '@lezer/highlight@1.2.1':
dependencies:
'@lezer/common': 1.2.1
- '@lezer/lr@1.4.0':
+ '@lezer/lr@1.4.2':
dependencies:
'@lezer/common': 1.2.1
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -13885,17 +14886,18 @@ snapshots:
monaco-editor: 0.34.1
state-local: 1.0.7
- '@monaco-editor/react@4.6.0(monaco-editor@0.34.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@monaco-editor/react@4.4.6(monaco-editor@0.34.1)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
'@monaco-editor/loader': 1.4.0(monaco-editor@0.34.1)
monaco-editor: 0.34.1
+ prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
'@ndelangen/get-tarball@3.0.9':
dependencies:
gunzip-maybe: 1.4.2
- pump: 3.0.0
+ pump: 3.0.2
tar-fs: 2.1.1
'@netlify/blobs@8.0.1': {}
@@ -13960,6 +14962,8 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
+ '@nolyfill/is-core-module@1.0.39': {}
+
'@one-ini/wasm@0.1.1': {}
'@openapi-contrib/openapi-schema-to-json-schema@3.2.0':
@@ -13969,37 +14973,30 @@ snapshots:
'@pkgjs/parseargs@0.11.0':
optional: true
- '@pmmmwh/react-refresh-webpack-plugin@0.5.13(react-refresh@0.11.0)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.11.0)(webpack-dev-server@4.15.2)(webpack@5.95.0)':
dependencies:
- ansi-html-community: 0.0.8
- core-js-pure: 3.37.1
+ ansi-html: 0.0.9
+ core-js-pure: 3.38.1
error-stack-parser: 2.1.4
html-entities: 2.5.2
loader-utils: 2.0.4
react-refresh: 0.11.0
- schema-utils: 3.3.0
+ schema-utils: 4.2.0
source-map: 0.7.4
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
- type-fest: 2.19.0
- webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- webpack-hot-middleware: 2.26.1
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
+ webpack-dev-server: 4.15.2(webpack@5.95.0)
- '@pmmmwh/react-refresh-webpack-plugin@0.5.13(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(webpack@5.75.0)':
dependencies:
- ansi-html-community: 0.0.8
- core-js-pure: 3.37.1
+ ansi-html: 0.0.9
+ core-js-pure: 3.38.1
error-stack-parser: 2.1.4
html-entities: 2.5.2
loader-utils: 2.0.4
react-refresh: 0.14.2
- schema-utils: 3.3.0
+ schema-utils: 4.2.0
source-map: 0.7.4
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
- type-fest: 2.19.0
- webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- webpack-hot-middleware: 2.26.1
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
'@popperjs/core@2.11.8': {}
@@ -14028,507 +15025,502 @@ snapshots:
'@radix-ui/number@1.0.1':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive@1.0.1':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
+
+ '@radix-ui/primitive@1.1.0': {}
- '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-arrow@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-collection@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.18)(react@18.2.0)':
+ '@radix-ui/react-collection@1.1.0(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@radix-ui/react-compose-refs': 1.1.0(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(react@18.2.0)
react: 18.2.0
- optionalDependencies:
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.18)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.6
'@types/react': 18.2.18
+ react: 18.2.0
- '@radix-ui/react-context@1.0.1(@types/react@18.2.18)(react@18.2.0)':
+ '@radix-ui/react-compose-refs@1.1.0(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
react: 18.2.0
- optionalDependencies:
+
+ '@radix-ui/react-context@1.0.1(@types/react@18.2.18)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.6
'@types/react': 18.2.18
+ react: 18.2.0
- '@radix-ui/react-direction@1.0.1(@types/react@18.2.18)(react@18.2.0)':
+ '@radix-ui/react-context@1.1.0(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
react: 18.2.0
- optionalDependencies:
+
+ '@radix-ui/react-direction@1.0.1(@types/react@18.2.18)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.6
'@types/react': 18.2.18
+ react: 18.2.0
- '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-direction@1.1.0(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.18)(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-dismissable-layer@1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-dropdown-menu@2.0.5(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.5(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
'@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- react: 18.2.0
- optionalDependencies:
+ '@babel/runtime': 7.25.6
'@types/react': 18.2.18
-
- '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-focus-scope@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-form@0.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-form@0.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-label': 2.0.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-label': 2.0.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
'@radix-ui/react-id@1.0.1(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- react: 18.2.0
- optionalDependencies:
'@types/react': 18.2.18
+ react: 18.2.0
- '@radix-ui/react-label@2.0.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-id@1.1.0(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
+
+ '@radix-ui/react-label@2.0.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.18
- '@types/react-dom': 18.2.7
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
- '@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-menu@2.0.5(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
aria-hidden: 1.2.4
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.5(@types/react@18.2.18)(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-popper@1.1.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@floating-ui/react-dom': 2.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.25.6
+ '@floating-ui/react-dom': 2.1.2(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
'@types/react': 18.2.18
- '@types/react-dom': 18.2.7
-
- '@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.24.5
- '@floating-ui/react-dom': 2.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/rect': 1.0.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-portal@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.18
- '@types/react-dom': 18.2.7
-
- '@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-presence@1.0.1(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-primitive@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@radix-ui/react-primitive@2.0.0(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-slot': 1.1.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-roving-focus@1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@radix-ui/react-roving-focus@1.1.0(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collection': 1.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-select@1.2.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-select@1.2.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.18
aria-hidden: 1.2.4
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.5(@types/react@18.2.18)(react@18.2.0)
- optionalDependencies:
+
+ '@radix-ui/react-separator@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.18
- '@types/react-dom': 18.2.7
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
- '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-separator@1.1.0(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
'@radix-ui/react-slot@1.0.2(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- react: 18.2.0
- optionalDependencies:
'@types/react': 18.2.18
+ react: 18.2.0
+
+ '@radix-ui/react-slot@1.1.0(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(react@18.2.0)
+ react: 18.2.0
- '@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-switch@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-toggle-group@1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
+
+ '@radix-ui/react-toggle-group@1.1.0(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-context': 1.1.0(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle': 1.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@radix-ui/react-toggle@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.6
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@types/react': 18.2.18
- '@types/react-dom': 18.2.7
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
- '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-toggle@1.1.0(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-primitive': 2.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-toolbar@1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-separator': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle-group': 1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@radix-ui/react-toolbar@1.1.0(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-context': 1.1.0(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-separator': 1.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle-group': 1.1.0(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
- '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-tooltip@1.0.6(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
'@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- react: 18.2.0
- optionalDependencies:
+ '@babel/runtime': 7.25.6
'@types/react': 18.2.18
+ react: 18.2.0
+
+ '@radix-ui/react-use-callback-ref@1.1.0(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
'@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- react: 18.2.0
- optionalDependencies:
'@types/react': 18.2.18
+ react: 18.2.0
+
+ '@radix-ui/react-use-controllable-state@1.1.0(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(react@18.2.0)
+ react: 18.2.0
'@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- react: 18.2.0
- optionalDependencies:
'@types/react': 18.2.18
+ react: 18.2.0
'@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- react: 18.2.0
- optionalDependencies:
+ '@babel/runtime': 7.25.6
'@types/react': 18.2.18
+ react: 18.2.0
- '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.18)(react@18.2.0)':
+ '@radix-ui/react-use-layout-effect@1.1.0(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
react: 18.2.0
- optionalDependencies:
+
+ '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.18)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.6
'@types/react': 18.2.18
+ react: 18.2.0
'@radix-ui/react-use-rect@1.0.1(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/rect': 1.0.1
- react: 18.2.0
- optionalDependencies:
'@types/react': 18.2.18
+ react: 18.2.0
'@radix-ui/react-use-size@1.0.1(@types/react@18.2.18)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
- react: 18.2.0
- optionalDependencies:
'@types/react': 18.2.18
+ react: 18.2.0
- '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
- '@types/react-dom': 18.2.7
'@radix-ui/rect@1.0.1':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
- '@reactflow/background@11.3.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@reactflow/background@11.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@reactflow/core': 11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.25.6
+ '@reactflow/core': 11.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
classcat: 5.0.5
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- zustand: 4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0)
+ zustand: 4.5.2(@types/react@18.2.18)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- immer
- '@reactflow/controls@11.2.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@reactflow/controls@11.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@reactflow/core': 11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.25.6
+ '@reactflow/core': 11.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
classcat: 5.0.5
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- zustand: 4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- immer
- '@reactflow/core@11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@reactflow/core@11.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
'@types/d3': 7.4.3
'@types/d3-drag': 3.0.7
@@ -14540,14 +15532,15 @@ snapshots:
d3-zoom: 3.0.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- zustand: 4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0)
+ zustand: 4.5.2(@types/react@18.2.18)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- immer
- '@reactflow/minimap@11.7.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@reactflow/minimap@11.1.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@reactflow/core': 11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.25.6
+ '@reactflow/core': 11.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
'@types/d3-selection': 3.0.10
'@types/d3-zoom': 3.0.8
classcat: 5.0.5
@@ -14555,52 +15548,28 @@ snapshots:
d3-zoom: 3.0.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- zustand: 4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
- - immer
-
- '@reactflow/node-resizer@2.2.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@reactflow/core': 11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- classcat: 5.0.5
- d3-drag: 3.0.0
- d3-selection: 3.0.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- zustand: 4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
- - immer
-
- '@reactflow/node-toolbar@1.3.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@reactflow/core': 11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- classcat: 5.0.5
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- zustand: 4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0)
+ zustand: 4.5.2(@types/react@18.2.18)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- immer
- '@rollup/plugin-babel@5.3.1(@babel/core@7.12.9)(@types/babel__core@7.20.5)(rollup@2.79.1)':
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.12.9)(rollup@2.79.1)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-module-imports': 7.24.7
'@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
- optionalDependencies:
- '@types/babel__core': 7.20.5
+ transitivePeerDependencies:
+ - supports-color
- '@rollup/plugin-babel@5.3.1(@babel/core@7.24.5)(@types/babel__core@7.20.5)(rollup@2.79.1)':
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.25.2)(rollup@2.79.1)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.24.3
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
'@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
- optionalDependencies:
- '@types/babel__core': 7.20.5
+ transitivePeerDependencies:
+ - supports-color
'@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1)':
dependencies:
@@ -14625,55 +15594,57 @@ snapshots:
picomatch: 2.3.1
rollup: 2.79.1
- '@rollup/rollup-android-arm-eabi@4.17.2':
+ '@rollup/rollup-android-arm-eabi@4.22.4':
optional: true
- '@rollup/rollup-android-arm64@4.17.2':
+ '@rollup/rollup-android-arm64@4.22.4':
optional: true
- '@rollup/rollup-darwin-arm64@4.17.2':
+ '@rollup/rollup-darwin-arm64@4.22.4':
optional: true
- '@rollup/rollup-darwin-x64@4.17.2':
+ '@rollup/rollup-darwin-x64@4.22.4':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.17.2':
+ '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.17.2':
+ '@rollup/rollup-linux-arm-musleabihf@4.22.4':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.17.2':
+ '@rollup/rollup-linux-arm64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.17.2':
+ '@rollup/rollup-linux-arm64-musl@4.22.4':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.17.2':
+ '@rollup/rollup-linux-riscv64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.17.2':
+ '@rollup/rollup-linux-s390x-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.17.2':
+ '@rollup/rollup-linux-x64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-x64-musl@4.17.2':
+ '@rollup/rollup-linux-x64-musl@4.22.4':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.17.2':
+ '@rollup/rollup-win32-arm64-msvc@4.22.4':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.17.2':
+ '@rollup/rollup-win32-ia32-msvc@4.22.4':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.17.2':
+ '@rollup/rollup-win32-x64-msvc@4.22.4':
optional: true
- '@rushstack/eslint-patch@1.10.2': {}
+ '@rtsao/scc@1.1.0': {}
+
+ '@rushstack/eslint-patch@1.10.4': {}
'@sinclair/typebox@0.24.51': {}
@@ -14687,15 +15658,15 @@ snapshots:
dependencies:
'@sinonjs/commons': 1.8.6
- '@smoya/multi-parser@5.0.7':
+ '@smoya/multi-parser@5.0.9':
dependencies:
- '@asyncapi/avro-schema-parser': 3.0.22
- '@asyncapi/openapi-schema-parser': 3.0.22
- '@asyncapi/protobuf-schema-parser': 3.2.12
- '@asyncapi/raml-dt-schema-parser': 4.0.22
+ '@asyncapi/avro-schema-parser': 3.0.19
+ '@asyncapi/openapi-schema-parser': 3.0.18
+ '@asyncapi/protobuf-schema-parser': 3.2.8
+ '@asyncapi/raml-dt-schema-parser': 4.0.24
parserapiv1: '@asyncapi/parser@2.1.2'
parserapiv2: '@asyncapi/parser@3.0.0-next-major-spec.8'
- parserapiv3: '@asyncapi/parser@3.3.0'
+ parserapiv3: '@asyncapi/parser@3.2.2'
transitivePeerDependencies:
- encoding
@@ -14707,7 +15678,7 @@ snapshots:
'@stoplight/json-ref-readers@1.2.2':
dependencies:
- node-fetch: 2.7.0
+ node-fetch: 2.6.7
tslib: 1.14.1
transitivePeerDependencies:
- encoding
@@ -14722,7 +15693,7 @@ snapshots:
fast-memoize: 2.5.2
immer: 9.0.21
lodash: 4.17.21
- tslib: 2.6.2
+ tslib: 2.7.0
urijs: 1.19.11
'@stoplight/json@3.21.0':
@@ -14734,11 +15705,20 @@ snapshots:
lodash: 4.17.21
safe-stable-stringify: 1.1.1
+ '@stoplight/json@3.21.7':
+ dependencies:
+ '@stoplight/ordered-object-literal': 1.0.5
+ '@stoplight/path': 1.3.2
+ '@stoplight/types': 13.20.0
+ jsonc-parser: 2.2.1
+ lodash: 4.17.21
+ safe-stable-stringify: 1.1.1
+
'@stoplight/ordered-object-literal@1.0.5': {}
'@stoplight/path@1.3.2': {}
- '@stoplight/spectral-core@1.18.3':
+ '@stoplight/spectral-core@1.19.1':
dependencies:
'@stoplight/better-ajv-errors': 1.0.3(ajv@8.17.1)
'@stoplight/json': 3.21.0
@@ -14760,32 +15740,32 @@ snapshots:
nimma: 0.2.2
pony-cause: 1.1.1
simple-eval: 1.0.0
- tslib: 2.6.2
+ tslib: 2.7.0
transitivePeerDependencies:
- encoding
- '@stoplight/spectral-formats@1.6.0':
+ '@stoplight/spectral-formats@1.7.0':
dependencies:
'@stoplight/json': 3.21.0
- '@stoplight/spectral-core': 1.18.3
+ '@stoplight/spectral-core': 1.19.1
'@types/json-schema': 7.0.15
- tslib: 2.6.2
+ tslib: 2.7.0
transitivePeerDependencies:
- encoding
- '@stoplight/spectral-functions@1.7.2':
+ '@stoplight/spectral-functions@1.9.0':
dependencies:
'@stoplight/better-ajv-errors': 1.0.3(ajv@8.17.1)
'@stoplight/json': 3.21.0
- '@stoplight/spectral-core': 1.18.3
- '@stoplight/spectral-formats': 1.6.0
+ '@stoplight/spectral-core': 1.19.1
+ '@stoplight/spectral-formats': 1.7.0
'@stoplight/spectral-runtime': 1.1.2
ajv: 8.17.1
ajv-draft-04: 1.0.0(ajv@8.17.1)
ajv-errors: 3.0.0(ajv@8.17.1)
ajv-formats: 2.1.1(ajv@8.17.1)
lodash: 4.17.21
- tslib: 2.6.2
+ tslib: 2.7.0
transitivePeerDependencies:
- encoding
@@ -14794,7 +15774,7 @@ snapshots:
'@stoplight/json': 3.21.0
'@stoplight/types': 14.1.1
'@stoplight/yaml': 4.3.0
- tslib: 2.6.2
+ tslib: 2.7.0
'@stoplight/spectral-ref-resolver@1.0.4':
dependencies:
@@ -14802,7 +15782,7 @@ snapshots:
'@stoplight/json-ref-resolver': 3.1.6
'@stoplight/spectral-runtime': 1.1.2
dependency-graph: 0.11.0
- tslib: 2.6.2
+ tslib: 2.7.0
transitivePeerDependencies:
- encoding
@@ -14813,8 +15793,8 @@ snapshots:
'@stoplight/types': 12.5.0
abort-controller: 3.0.0
lodash: 4.17.21
- node-fetch: 2.7.0
- tslib: 2.6.2
+ node-fetch: 2.6.7
+ tslib: 2.7.0
transitivePeerDependencies:
- encoding
@@ -14845,26 +15825,26 @@ snapshots:
'@stoplight/ordered-object-literal': 1.0.5
'@stoplight/types': 14.1.1
'@stoplight/yaml-ast-parser': 0.0.50
- tslib: 2.6.2
+ tslib: 2.7.0
- '@storybook/addon-actions@7.6.19':
+ '@storybook/addon-actions@7.6.18':
dependencies:
- '@storybook/core-events': 7.6.19
+ '@storybook/core-events': 7.6.18
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
dequal: 2.0.3
polished: 4.3.1
uuid: 9.0.1
- '@storybook/addon-backgrounds@7.6.19':
+ '@storybook/addon-backgrounds@7.6.18':
dependencies:
'@storybook/global': 5.0.0
memoizerific: 1.11.3
ts-dedent: 2.2.0
- '@storybook/addon-controls@7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/addon-controls@7.6.18(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@storybook/blocks': 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/blocks': 7.6.18(react-dom@18.2.0)(react@18.2.0)
lodash: 4.17.21
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -14875,23 +15855,23 @@ snapshots:
- react-dom
- supports-color
- '@storybook/addon-docs@7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/addon-docs@7.6.18(react-dom@18.2.0)(react@18.2.0)':
dependencies:
'@jest/transform': 29.7.0
'@mdx-js/react': 2.3.0(react@18.2.0)
- '@storybook/blocks': 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/client-logger': 7.6.19
- '@storybook/components': 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/csf-plugin': 7.6.19
- '@storybook/csf-tools': 7.6.19
+ '@storybook/blocks': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.6.18
+ '@storybook/components': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/csf-plugin': 7.6.18
+ '@storybook/csf-tools': 7.6.18
'@storybook/global': 5.0.0
'@storybook/mdx2-csf': 1.1.0
- '@storybook/node-logger': 7.6.19
- '@storybook/postinstall': 7.6.19
- '@storybook/preview-api': 7.6.19
- '@storybook/react-dom-shim': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/theming': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.19
+ '@storybook/node-logger': 7.6.18
+ '@storybook/postinstall': 7.6.18
+ '@storybook/preview-api': 7.6.18
+ '@storybook/react-dom-shim': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.18
fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -14903,22 +15883,53 @@ snapshots:
- '@types/react-dom'
- encoding
- supports-color
+ - webpack-sources
- '@storybook/addon-essentials@7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@storybook/addon-actions': 7.6.19
- '@storybook/addon-backgrounds': 7.6.19
- '@storybook/addon-controls': 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/addon-docs': 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/addon-highlight': 7.6.19
- '@storybook/addon-measure': 7.6.19
- '@storybook/addon-outline': 7.6.19
- '@storybook/addon-toolbars': 7.6.19
- '@storybook/addon-viewport': 7.6.19
- '@storybook/core-common': 7.6.19
- '@storybook/manager-api': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/node-logger': 7.6.19
- '@storybook/preview-api': 7.6.19
+ '@storybook/addon-docs@7.6.20(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@jest/transform': 29.7.0
+ '@mdx-js/react': 2.3.0(react@18.2.0)
+ '@storybook/blocks': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.6.20
+ '@storybook/components': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/csf-plugin': 7.6.20
+ '@storybook/csf-tools': 7.6.20
+ '@storybook/global': 5.0.0
+ '@storybook/mdx2-csf': 1.1.0
+ '@storybook/node-logger': 7.6.20
+ '@storybook/postinstall': 7.6.20
+ '@storybook/preview-api': 7.6.20
+ '@storybook/react-dom-shim': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.20
+ fs-extra: 11.2.0
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ remark-external-links: 8.0.0
+ remark-slug: 6.1.0
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+ - encoding
+ - supports-color
+ - webpack-sources
+
+ '@storybook/addon-essentials@7.6.18(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@storybook/addon-actions': 7.6.18
+ '@storybook/addon-backgrounds': 7.6.18
+ '@storybook/addon-controls': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-docs': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-highlight': 7.6.18
+ '@storybook/addon-measure': 7.6.18
+ '@storybook/addon-outline': 7.6.18
+ '@storybook/addon-toolbars': 7.6.18
+ '@storybook/addon-viewport': 7.6.18
+ '@storybook/core-common': 7.6.18
+ '@storybook/manager-api': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/node-logger': 7.6.18
+ '@storybook/preview-api': 7.6.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
@@ -14927,77 +15938,110 @@ snapshots:
- '@types/react-dom'
- encoding
- supports-color
+ - webpack-sources
- '@storybook/addon-highlight@7.6.19':
+ '@storybook/addon-highlight@7.6.18':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/addon-interactions@7.6.19':
+ '@storybook/addon-interactions@7.6.18':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/types': 7.6.19
+ '@storybook/types': 7.6.18
jest-mock: 27.5.1
polished: 4.3.1
ts-dedent: 2.2.0
- '@storybook/addon-links@7.6.19(react@18.2.0)':
+ '@storybook/addon-links@7.6.18(react@18.2.0)':
dependencies:
- '@storybook/csf': 0.1.7
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- ts-dedent: 2.2.0
- optionalDependencies:
react: 18.2.0
+ ts-dedent: 2.2.0
- '@storybook/addon-measure@7.6.19':
+ '@storybook/addon-measure@7.6.18':
dependencies:
'@storybook/global': 5.0.0
tiny-invariant: 1.3.3
- '@storybook/addon-outline@7.6.19':
+ '@storybook/addon-outline@7.6.18':
dependencies:
'@storybook/global': 5.0.0
ts-dedent: 2.2.0
- '@storybook/addon-toolbars@7.6.19': {}
+ '@storybook/addon-toolbars@7.6.18': {}
- '@storybook/addon-viewport@7.6.19':
+ '@storybook/addon-viewport@7.6.18':
dependencies:
memoizerific: 1.11.3
- '@storybook/addons@7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/addons@7.6.18(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@storybook/manager-api': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/preview-api': 7.6.19
- '@storybook/types': 7.6.19
+ '@storybook/manager-api': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.6.18
+ '@storybook/types': 7.6.18
transitivePeerDependencies:
- react
- react-dom
- '@storybook/blocks@7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/blocks@7.6.18(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@storybook/channels': 7.6.18
+ '@storybook/client-logger': 7.6.18
+ '@storybook/components': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.6.18
+ '@storybook/csf': 0.1.11
+ '@storybook/docs-tools': 7.6.18
+ '@storybook/global': 5.0.0
+ '@storybook/manager-api': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.6.18
+ '@storybook/theming': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.18
+ '@types/lodash': 4.17.9
+ color-convert: 2.0.1
+ dequal: 2.0.3
+ lodash: 4.17.21
+ markdown-to-jsx: 7.5.0(react@18.2.0)
+ memoizerific: 1.11.3
+ polished: 4.3.1
+ react: 18.2.0
+ react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0)
+ react-dom: 18.2.0(react@18.2.0)
+ telejson: 7.2.0
+ tocbot: 4.29.0
+ ts-dedent: 2.2.0
+ util-deprecate: 1.0.2
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+ - encoding
+ - supports-color
+
+ '@storybook/blocks@7.6.20(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@storybook/channels': 7.6.19
- '@storybook/client-logger': 7.6.19
- '@storybook/components': 7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/core-events': 7.6.19
- '@storybook/csf': 0.1.7
- '@storybook/docs-tools': 7.6.19
+ '@storybook/channels': 7.6.20
+ '@storybook/client-logger': 7.6.20
+ '@storybook/components': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.6.20
+ '@storybook/csf': 0.1.11
+ '@storybook/docs-tools': 7.6.20
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/preview-api': 7.6.19
- '@storybook/theming': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.19
- '@types/lodash': 4.17.1
+ '@storybook/manager-api': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.6.20
+ '@storybook/theming': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.20
+ '@types/lodash': 4.17.9
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
- markdown-to-jsx: 7.4.7(react@18.2.0)
+ markdown-to-jsx: 7.5.0(react@18.2.0)
memoizerific: 1.11.3
polished: 4.3.1
react: 18.2.0
- react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0)
react-dom: 18.2.0(react@18.2.0)
telejson: 7.2.0
- tocbot: 4.27.20
+ tocbot: 4.29.0
ts-dedent: 2.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
@@ -15006,12 +16050,12 @@ snapshots:
- encoding
- supports-color
- '@storybook/builder-manager@7.6.19':
+ '@storybook/builder-manager@7.6.20':
dependencies:
'@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@storybook/core-common': 7.6.19
- '@storybook/manager': 7.6.19
- '@storybook/node-logger': 7.6.19
+ '@storybook/core-common': 7.6.20
+ '@storybook/manager': 7.6.20
+ '@storybook/node-logger': 7.6.20
'@types/ejs': 3.1.5
'@types/find-cache-dir': 3.2.1
'@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20)
@@ -15019,7 +16063,7 @@ snapshots:
ejs: 3.1.10
esbuild: 0.18.20
esbuild-plugin-alias: 0.2.1
- express: 4.19.2
+ express: 4.21.0
find-cache-dir: 3.3.2
fs-extra: 11.2.0
process: 0.11.10
@@ -15028,48 +16072,47 @@ snapshots:
- encoding
- supports-color
- '@storybook/builder-webpack5@7.6.19(@swc/helpers@0.5.5)(esbuild@0.18.20)(typescript@5.1.6)':
- dependencies:
- '@babel/core': 7.24.5
- '@storybook/channels': 7.6.19
- '@storybook/client-logger': 7.6.19
- '@storybook/core-common': 7.6.19
- '@storybook/core-events': 7.6.19
- '@storybook/core-webpack': 7.6.19
- '@storybook/node-logger': 7.6.19
- '@storybook/preview': 7.6.19
- '@storybook/preview-api': 7.6.19
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
- '@types/node': 18.19.33
+ '@storybook/builder-webpack5@7.6.18(esbuild@0.18.20)(typescript@5.1.6)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@storybook/channels': 7.6.18
+ '@storybook/client-logger': 7.6.18
+ '@storybook/core-common': 7.6.18
+ '@storybook/core-events': 7.6.18
+ '@storybook/core-webpack': 7.6.18
+ '@storybook/node-logger': 7.6.18
+ '@storybook/preview': 7.6.18
+ '@storybook/preview-api': 7.6.18
+ '@swc/core': 1.7.28
+ '@types/node': 18.19.51
'@types/semver': 7.5.8
- babel-loader: 9.1.3(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ babel-loader: 9.2.1(@babel/core@7.25.2)(webpack@5.75.0)
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
- cjs-module-lexer: 1.3.1
+ cjs-module-lexer: 1.4.1
constants-browserify: 1.0.0
- css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- es-module-lexer: 1.5.2
- express: 4.19.2
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ css-loader: 6.11.0(webpack@5.75.0)
+ es-module-lexer: 1.5.4
+ express: 4.21.0
+ fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.75.0)
fs-extra: 11.2.0
- html-webpack-plugin: 5.6.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- magic-string: 0.30.10
+ html-webpack-plugin: 5.6.0(webpack@5.75.0)
+ magic-string: 0.30.11
path-browserify: 1.0.1
process: 0.11.10
- semver: 7.6.2
- style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- swc-loader: 0.2.6(@swc/core@1.5.7(@swc/helpers@0.5.5))(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ semver: 7.6.3
+ style-loader: 3.3.4(webpack@5.75.0)
+ swc-loader: 0.2.6(@swc/core@1.7.28)(webpack@5.75.0)
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.28)(esbuild@0.18.20)(webpack@5.75.0)
ts-dedent: 2.2.0
- url: 0.11.3
+ typescript: 5.1.6
+ url: 0.11.4
util: 0.12.5
util-deprecate: 1.0.2
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- webpack-dev-middleware: 6.1.3(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
+ webpack-dev-middleware: 6.1.3(webpack@5.75.0)
webpack-hot-middleware: 2.26.1
webpack-virtual-modules: 0.5.0
- optionalDependencies:
- typescript: 5.1.6
transitivePeerDependencies:
- '@rspack/core'
- '@swc/helpers'
@@ -15079,29 +16122,38 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/channels@7.6.19':
+ '@storybook/channels@7.6.18':
+ dependencies:
+ '@storybook/client-logger': 7.6.18
+ '@storybook/core-events': 7.6.18
+ '@storybook/global': 5.0.0
+ qs: 6.13.0
+ telejson: 7.2.0
+ tiny-invariant: 1.3.3
+
+ '@storybook/channels@7.6.20':
dependencies:
- '@storybook/client-logger': 7.6.19
- '@storybook/core-events': 7.6.19
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-events': 7.6.20
'@storybook/global': 5.0.0
- qs: 6.12.1
+ qs: 6.13.0
telejson: 7.2.0
tiny-invariant: 1.3.3
- '@storybook/cli@7.6.19':
+ '@storybook/cli@7.6.20':
dependencies:
- '@babel/core': 7.24.5
- '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/types': 7.25.6
'@ndelangen/get-tarball': 3.0.9
- '@storybook/codemod': 7.6.19
- '@storybook/core-common': 7.6.19
- '@storybook/core-events': 7.6.19
- '@storybook/core-server': 7.6.19
- '@storybook/csf-tools': 7.6.19
- '@storybook/node-logger': 7.6.19
- '@storybook/telemetry': 7.6.19
- '@storybook/types': 7.6.19
+ '@storybook/codemod': 7.6.20
+ '@storybook/core-common': 7.6.20
+ '@storybook/core-events': 7.6.20
+ '@storybook/core-server': 7.6.20
+ '@storybook/csf-tools': 7.6.20
+ '@storybook/node-logger': 7.6.20
+ '@storybook/telemetry': 7.6.20
+ '@storybook/types': 7.6.20
'@types/semver': 7.5.8
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
@@ -15109,23 +16161,23 @@ snapshots:
commander: 6.2.1
cross-spawn: 7.0.3
detect-indent: 6.1.0
- envinfo: 7.13.0
+ envinfo: 7.14.0
execa: 5.1.1
- express: 4.19.2
+ express: 4.21.0
find-up: 5.0.0
fs-extra: 11.2.0
get-npm-tarball-url: 2.1.0
get-port: 5.1.1
giget: 1.2.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.5(@babel/core@7.24.5))
+ jscodeshift: 0.15.2(@babel/preset-env@7.25.4)
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
prompts: 2.4.2
puppeteer-core: 2.1.1
read-pkg-up: 7.0.1
- semver: 7.6.2
+ semver: 7.6.3
strip-json-comments: 3.1.1
tempy: 1.0.1
ts-dedent: 2.2.0
@@ -15136,69 +16188,125 @@ snapshots:
- supports-color
- utf-8-validate
- '@storybook/client-logger@7.6.19':
+ '@storybook/client-logger@7.6.18':
+ dependencies:
+ '@storybook/global': 5.0.0
+
+ '@storybook/client-logger@7.6.20':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/codemod@7.6.19':
+ '@storybook/codemod@7.6.20':
dependencies:
- '@babel/core': 7.24.5
- '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/types': 7.24.5
- '@storybook/csf': 0.1.7
- '@storybook/csf-tools': 7.6.19
- '@storybook/node-logger': 7.6.19
- '@storybook/types': 7.6.19
+ '@babel/core': 7.25.2
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/types': 7.25.6
+ '@storybook/csf': 0.1.11
+ '@storybook/csf-tools': 7.6.20
+ '@storybook/node-logger': 7.6.20
+ '@storybook/types': 7.6.20
'@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.5(@babel/core@7.24.5))
+ jscodeshift: 0.15.2(@babel/preset-env@7.25.4)
lodash: 4.17.21
prettier: 2.8.8
- recast: 0.23.7
+ recast: 0.23.9
transitivePeerDependencies:
- supports-color
- '@storybook/components@7.6.19(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/components@7.6.18(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-select': 1.2.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toolbar': 1.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.6.18
+ '@storybook/csf': 0.1.11
+ '@storybook/global': 5.0.0
+ '@storybook/theming': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.18
+ memoizerific: 1.11.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0)
+ util-deprecate: 1.0.2
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+
+ '@storybook/components@7.6.20(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/client-logger': 7.6.19
- '@storybook/csf': 0.1.7
+ '@radix-ui/react-select': 1.2.2(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toolbar': 1.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.6.20
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- '@storybook/theming': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.19
+ '@storybook/theming': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.20
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0)
util-deprecate: 1.0.2
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
- '@storybook/core-client@7.6.19':
+ '@storybook/core-client@7.6.18':
dependencies:
- '@storybook/client-logger': 7.6.19
- '@storybook/preview-api': 7.6.19
+ '@storybook/client-logger': 7.6.18
+ '@storybook/preview-api': 7.6.18
+
+ '@storybook/core-client@7.6.20':
+ dependencies:
+ '@storybook/client-logger': 7.6.20
+ '@storybook/preview-api': 7.6.20
+
+ '@storybook/core-common@7.6.18':
+ dependencies:
+ '@storybook/core-events': 7.6.18
+ '@storybook/node-logger': 7.6.18
+ '@storybook/types': 7.6.18
+ '@types/find-cache-dir': 3.2.1
+ '@types/node': 18.19.51
+ '@types/node-fetch': 2.6.11
+ '@types/pretty-hrtime': 1.0.3
+ chalk: 4.1.2
+ esbuild: 0.18.20
+ esbuild-register: 3.6.0(esbuild@0.18.20)
+ file-system-cache: 2.3.0
+ find-cache-dir: 3.3.2
+ find-up: 5.0.0
+ fs-extra: 11.2.0
+ glob: 10.4.5
+ handlebars: 4.7.8
+ lazy-universal-dotenv: 4.0.0
+ node-fetch: 2.7.0
+ picomatch: 2.3.1
+ pkg-dir: 5.0.0
+ pretty-hrtime: 1.0.3
+ resolve-from: 5.0.0
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
- '@storybook/core-common@7.6.19':
+ '@storybook/core-common@7.6.20':
dependencies:
- '@storybook/core-events': 7.6.19
- '@storybook/node-logger': 7.6.19
- '@storybook/types': 7.6.19
+ '@storybook/core-events': 7.6.20
+ '@storybook/node-logger': 7.6.20
+ '@storybook/types': 7.6.20
'@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.33
+ '@types/node': 18.19.51
'@types/node-fetch': 2.6.11
'@types/pretty-hrtime': 1.0.3
chalk: 4.1.2
esbuild: 0.18.20
- esbuild-register: 3.5.0(esbuild@0.18.20)
+ esbuild-register: 3.6.0(esbuild@0.18.20)
file-system-cache: 2.3.0
find-cache-dir: 3.3.2
find-up: 5.0.0
fs-extra: 11.2.0
- glob: 10.3.15
+ glob: 10.4.5
handlebars: 4.7.8
lazy-universal-dotenv: 4.0.0
node-fetch: 2.7.0
@@ -15211,29 +16319,33 @@ snapshots:
- encoding
- supports-color
- '@storybook/core-events@7.6.19':
+ '@storybook/core-events@7.6.18':
dependencies:
ts-dedent: 2.2.0
- '@storybook/core-server@7.6.19':
+ '@storybook/core-events@7.6.20':
+ dependencies:
+ ts-dedent: 2.2.0
+
+ '@storybook/core-server@7.6.20':
dependencies:
'@aw-web-design/x-default-browser': 1.4.126
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-manager': 7.6.19
- '@storybook/channels': 7.6.19
- '@storybook/core-common': 7.6.19
- '@storybook/core-events': 7.6.19
- '@storybook/csf': 0.1.7
- '@storybook/csf-tools': 7.6.19
+ '@storybook/builder-manager': 7.6.20
+ '@storybook/channels': 7.6.20
+ '@storybook/core-common': 7.6.20
+ '@storybook/core-events': 7.6.20
+ '@storybook/csf': 0.1.11
+ '@storybook/csf-tools': 7.6.20
'@storybook/docs-mdx': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/manager': 7.6.19
- '@storybook/node-logger': 7.6.19
- '@storybook/preview-api': 7.6.19
- '@storybook/telemetry': 7.6.19
- '@storybook/types': 7.6.19
+ '@storybook/manager': 7.6.20
+ '@storybook/node-logger': 7.6.20
+ '@storybook/preview-api': 7.6.20
+ '@storybook/telemetry': 7.6.20
+ '@storybook/types': 7.6.20
'@types/detect-port': 1.3.5
- '@types/node': 18.19.33
+ '@types/node': 18.19.51
'@types/pretty-hrtime': 1.0.3
'@types/semver': 7.5.8
better-opn: 3.0.2
@@ -15241,57 +16353,79 @@ snapshots:
cli-table3: 0.6.5
compression: 1.7.4
detect-port: 1.6.1
- express: 4.19.2
+ express: 4.21.0
fs-extra: 11.2.0
globby: 11.1.0
- ip: 2.0.1
lodash: 4.17.21
open: 8.4.2
pretty-hrtime: 1.0.3
prompts: 2.4.2
read-pkg-up: 7.0.1
- semver: 7.6.2
+ semver: 7.6.3
telejson: 7.2.0
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
util: 0.12.5
util-deprecate: 1.0.2
- watchpack: 2.4.1
- ws: 8.17.0
+ watchpack: 2.4.2
+ ws: 8.18.0
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
- '@storybook/core-webpack@7.6.19':
+ '@storybook/core-webpack@7.6.18':
dependencies:
- '@storybook/core-common': 7.6.19
- '@storybook/node-logger': 7.6.19
- '@storybook/types': 7.6.19
- '@types/node': 18.19.33
+ '@storybook/core-common': 7.6.18
+ '@storybook/node-logger': 7.6.18
+ '@storybook/types': 7.6.18
+ '@types/node': 18.19.51
ts-dedent: 2.2.0
transitivePeerDependencies:
- encoding
- supports-color
- '@storybook/csf-plugin@7.6.19':
+ '@storybook/csf-plugin@7.6.18':
+ dependencies:
+ '@storybook/csf-tools': 7.6.18
+ unplugin: 1.14.1
+ transitivePeerDependencies:
+ - supports-color
+ - webpack-sources
+
+ '@storybook/csf-plugin@7.6.20':
+ dependencies:
+ '@storybook/csf-tools': 7.6.20
+ unplugin: 1.14.1
+ transitivePeerDependencies:
+ - supports-color
+ - webpack-sources
+
+ '@storybook/csf-tools@7.6.18':
dependencies:
- '@storybook/csf-tools': 7.6.19
- unplugin: 1.10.1
+ '@babel/generator': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ '@storybook/csf': 0.1.11
+ '@storybook/types': 7.6.18
+ fs-extra: 11.2.0
+ recast: 0.23.9
+ ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- '@storybook/csf-tools@7.6.19':
+ '@storybook/csf-tools@7.6.20':
dependencies:
- '@babel/generator': 7.24.5
- '@babel/parser': 7.24.5
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
- '@storybook/csf': 0.1.7
- '@storybook/types': 7.6.19
+ '@babel/generator': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ '@storybook/csf': 0.1.11
+ '@storybook/types': 7.6.20
fs-extra: 11.2.0
- recast: 0.23.7
+ recast: 0.23.9
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
@@ -15300,17 +16434,30 @@ snapshots:
dependencies:
lodash: 4.17.21
- '@storybook/csf@0.1.7':
+ '@storybook/csf@0.1.11':
dependencies:
type-fest: 2.19.0
'@storybook/docs-mdx@0.1.0': {}
- '@storybook/docs-tools@7.6.19':
+ '@storybook/docs-tools@7.6.18':
+ dependencies:
+ '@storybook/core-common': 7.6.18
+ '@storybook/preview-api': 7.6.18
+ '@storybook/types': 7.6.18
+ '@types/doctrine': 0.0.3
+ assert: 2.1.0
+ doctrine: 3.0.0
+ lodash: 4.17.21
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@storybook/docs-tools@7.6.20':
dependencies:
- '@storybook/core-common': 7.6.19
- '@storybook/preview-api': 7.6.19
- '@storybook/types': 7.6.19
+ '@storybook/core-common': 7.6.20
+ '@storybook/preview-api': 7.6.20
+ '@storybook/types': 7.6.20
'@types/doctrine': 0.0.3
assert: 2.1.0
doctrine: 3.0.0
@@ -15321,26 +16468,46 @@ snapshots:
'@storybook/global@5.0.0': {}
- '@storybook/instrumenter@7.6.19':
+ '@storybook/instrumenter@7.6.18':
dependencies:
- '@storybook/channels': 7.6.19
- '@storybook/client-logger': 7.6.19
- '@storybook/core-events': 7.6.19
+ '@storybook/channels': 7.6.18
+ '@storybook/client-logger': 7.6.18
+ '@storybook/core-events': 7.6.18
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.6.19
+ '@storybook/preview-api': 7.6.18
'@vitest/utils': 0.34.7
util: 0.12.5
- '@storybook/manager-api@7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/manager-api@7.6.18(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@storybook/channels': 7.6.18
+ '@storybook/client-logger': 7.6.18
+ '@storybook/core-events': 7.6.18
+ '@storybook/csf': 0.1.11
+ '@storybook/global': 5.0.0
+ '@storybook/router': 7.6.18
+ '@storybook/theming': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.18
+ dequal: 2.0.3
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ store2: 2.14.3
+ telejson: 7.2.0
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - react
+ - react-dom
+
+ '@storybook/manager-api@7.6.20(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@storybook/channels': 7.6.19
- '@storybook/client-logger': 7.6.19
- '@storybook/core-events': 7.6.19
- '@storybook/csf': 0.1.7
+ '@storybook/channels': 7.6.20
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-events': 7.6.20
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- '@storybook/router': 7.6.19
- '@storybook/theming': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.19
+ '@storybook/router': 7.6.20
+ '@storybook/theming': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.20
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
@@ -15351,25 +16518,29 @@ snapshots:
- react
- react-dom
- '@storybook/manager@7.6.19': {}
+ '@storybook/manager@7.6.20': {}
'@storybook/mdx2-csf@1.1.0': {}
- '@storybook/node-logger@7.6.19': {}
+ '@storybook/node-logger@7.6.18': {}
+
+ '@storybook/node-logger@7.6.20': {}
+
+ '@storybook/postinstall@7.6.18': {}
- '@storybook/postinstall@7.6.19': {}
+ '@storybook/postinstall@7.6.20': {}
- '@storybook/preset-create-react-app@7.6.19(@babel/core@7.24.5)(react-refresh@0.14.2)(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))(type-fest@2.19.0)(typescript@5.1.6)(webpack-hot-middleware@2.26.1))(type-fest@2.19.0)(typescript@5.1.6)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))':
+ '@storybook/preset-create-react-app@7.6.18(@babel/core@7.17.4)(react-refresh@0.14.2)(react-scripts@5.0.1)(typescript@5.1.6)(webpack@5.75.0)':
dependencies:
- '@babel/core': 7.24.5
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- '@storybook/types': 7.6.19
+ '@babel/core': 7.17.4
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(webpack@5.75.0)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.75.0)
+ '@storybook/types': 7.6.18
'@types/babel__core': 7.20.5
'@types/semver': 7.5.8
pnp-webpack-plugin: 1.7.0(typescript@5.1.6)
- react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))(type-fest@2.19.0)(typescript@5.1.6)(webpack-hot-middleware@2.26.1)
- semver: 7.6.2
+ react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.24.7)(@babel/plugin-transform-react-jsx@7.25.2)(@swc/core@1.7.28)(esbuild@0.18.20)(eslint@8.57.1)(react@18.2.0)(typescript@5.1.6)
+ semver: 7.6.3
transitivePeerDependencies:
- '@types/webpack'
- react-refresh
@@ -15382,30 +16553,29 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@storybook/preset-react-webpack@7.6.19(@babel/core@7.24.5)(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.1.6)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)':
- dependencies:
- '@babel/preset-flow': 7.24.1(@babel/core@7.24.5)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.5)
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- '@storybook/core-webpack': 7.6.19
- '@storybook/docs-tools': 7.6.19
- '@storybook/node-logger': 7.6.19
- '@storybook/react': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.6)
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- '@types/node': 18.19.33
+ '@storybook/preset-react-webpack@7.6.18(@babel/core@7.17.4)(@swc/core@1.7.28)(esbuild@0.18.20)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/preset-flow': 7.24.7(@babel/core@7.17.4)
+ '@babel/preset-react': 7.24.7(@babel/core@7.17.4)
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(webpack@5.75.0)
+ '@storybook/core-webpack': 7.6.18
+ '@storybook/docs-tools': 7.6.18
+ '@storybook/node-logger': 7.6.18
+ '@storybook/react': 7.6.18(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.75.0)
+ '@types/node': 18.19.51
'@types/semver': 7.5.8
babel-plugin-add-react-displayname: 0.0.5
fs-extra: 11.2.0
- magic-string: 0.30.10
+ magic-string: 0.30.11
react: 18.2.0
react-docgen: 7.0.3
react-dom: 18.2.0(react@18.2.0)
react-refresh: 0.14.2
- semver: 7.6.2
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
- '@babel/core': 7.24.5
+ semver: 7.6.3
typescript: 5.1.6
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
transitivePeerDependencies:
- '@swc/core'
- '@types/webpack'
@@ -15420,54 +16590,75 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@storybook/preview-api@7.6.19':
+ '@storybook/preview-api@7.6.18':
+ dependencies:
+ '@storybook/channels': 7.6.18
+ '@storybook/client-logger': 7.6.18
+ '@storybook/core-events': 7.6.18
+ '@storybook/csf': 0.1.11
+ '@storybook/global': 5.0.0
+ '@storybook/types': 7.6.18
+ '@types/qs': 6.9.16
+ dequal: 2.0.3
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ qs: 6.13.0
+ synchronous-promise: 2.0.17
+ ts-dedent: 2.2.0
+ util-deprecate: 1.0.2
+
+ '@storybook/preview-api@7.6.20':
dependencies:
- '@storybook/channels': 7.6.19
- '@storybook/client-logger': 7.6.19
- '@storybook/core-events': 7.6.19
- '@storybook/csf': 0.1.7
+ '@storybook/channels': 7.6.20
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-events': 7.6.20
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- '@storybook/types': 7.6.19
- '@types/qs': 6.9.15
+ '@storybook/types': 7.6.20
+ '@types/qs': 6.9.16
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.12.1
+ qs: 6.13.0
synchronous-promise: 2.0.17
ts-dedent: 2.2.0
util-deprecate: 1.0.2
- '@storybook/preview@7.6.19': {}
+ '@storybook/preview@7.6.18': {}
- '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))':
+ '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.75.0)':
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
endent: 2.1.0
find-cache-dir: 3.3.2
flat-cache: 3.2.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
react-docgen-typescript: 2.2.2(typescript@5.1.6)
- tslib: 2.6.2
+ tslib: 2.7.0
typescript: 5.1.6
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
transitivePeerDependencies:
- supports-color
- '@storybook/react-dom-shim@7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/react-dom-shim@7.6.18(react-dom@18.2.0)(react@18.2.0)':
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@storybook/react-webpack5@7.6.19(@babel/core@7.24.5)(@swc/core@1.5.7(@swc/helpers@0.5.5))(@swc/helpers@0.5.5)(esbuild@0.18.20)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.1.6)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)':
+ '@storybook/react-dom-shim@7.6.20(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@storybook/builder-webpack5': 7.6.19(@swc/helpers@0.5.5)(esbuild@0.18.20)(typescript@5.1.6)
- '@storybook/preset-react-webpack': 7.6.19(@babel/core@7.24.5)(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.1.6)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)
- '@storybook/react': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.6)
- '@types/node': 18.19.33
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- optionalDependencies:
- '@babel/core': 7.24.5
+
+ '@storybook/react-webpack5@7.6.18(@babel/core@7.17.4)(@swc/core@1.7.28)(esbuild@0.18.20)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)':
+ dependencies:
+ '@babel/core': 7.17.4
+ '@storybook/builder-webpack5': 7.6.18(esbuild@0.18.20)(typescript@5.1.6)
+ '@storybook/preset-react-webpack': 7.6.18(@babel/core@7.17.4)(@swc/core@1.7.28)(esbuild@0.18.20)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@storybook/react': 7.6.18(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@types/node': 18.19.51
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
typescript: 5.1.6
transitivePeerDependencies:
- '@rspack/core'
@@ -15485,18 +16676,18 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@storybook/react@7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.6)':
+ '@storybook/react@7.6.18(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)':
dependencies:
- '@storybook/client-logger': 7.6.19
- '@storybook/core-client': 7.6.19
- '@storybook/docs-tools': 7.6.19
+ '@storybook/client-logger': 7.6.18
+ '@storybook/core-client': 7.6.18
+ '@storybook/docs-tools': 7.6.18
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.6.19
- '@storybook/react-dom-shim': 7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.19
+ '@storybook/preview-api': 7.6.18
+ '@storybook/react-dom-shim': 7.6.18(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.18
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.19.33
+ '@types/node': 18.19.51
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -15506,27 +16697,62 @@ snapshots:
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-element-to-jsx-string: 15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0)
ts-dedent: 2.2.0
type-fest: 2.19.0
+ typescript: 5.1.6
util-deprecate: 1.0.2
- optionalDependencies:
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@storybook/react@7.6.20(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)':
+ dependencies:
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-client': 7.6.20
+ '@storybook/docs-tools': 7.6.20
+ '@storybook/global': 5.0.0
+ '@storybook/preview-api': 7.6.20
+ '@storybook/react-dom-shim': 7.6.20(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.20
+ '@types/escodegen': 0.0.6
+ '@types/estree': 0.0.51
+ '@types/node': 18.19.51
+ acorn: 7.4.1
+ acorn-jsx: 5.3.2(acorn@7.4.1)
+ acorn-walk: 7.2.0
+ escodegen: 2.1.0
+ html-tags: 3.3.1
+ lodash: 4.17.21
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0)
+ ts-dedent: 2.2.0
+ type-fest: 2.19.0
typescript: 5.1.6
+ util-deprecate: 1.0.2
transitivePeerDependencies:
- encoding
- supports-color
- '@storybook/router@7.6.19':
+ '@storybook/router@7.6.18':
+ dependencies:
+ '@storybook/client-logger': 7.6.18
+ memoizerific: 1.11.3
+ qs: 6.13.0
+
+ '@storybook/router@7.6.20':
dependencies:
- '@storybook/client-logger': 7.6.19
+ '@storybook/client-logger': 7.6.20
memoizerific: 1.11.3
- qs: 6.12.1
+ qs: 6.13.0
- '@storybook/telemetry@7.6.19':
+ '@storybook/telemetry@7.6.20':
dependencies:
- '@storybook/client-logger': 7.6.19
- '@storybook/core-common': 7.6.19
- '@storybook/csf-tools': 7.6.19
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-common': 7.6.20
+ '@storybook/csf-tools': 7.6.20
chalk: 4.1.2
detect-package-manager: 2.0.1
fetch-retry: 5.0.6
@@ -15536,39 +16762,49 @@ snapshots:
- encoding
- supports-color
- '@storybook/test@7.6.19(@jest/globals@27.5.1)(@types/jest@29.5.12)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))':
+ '@storybook/test@7.6.18':
dependencies:
- '@storybook/client-logger': 7.6.19
- '@storybook/core-events': 7.6.19
- '@storybook/instrumenter': 7.6.19
- '@storybook/preview-api': 7.6.19
+ '@storybook/client-logger': 7.6.18
+ '@storybook/core-events': 7.6.18
+ '@storybook/instrumenter': 7.6.18
+ '@storybook/preview-api': 7.6.18
'@testing-library/dom': 9.3.4
- '@testing-library/jest-dom': 6.4.5(@jest/globals@27.5.1)(@types/jest@29.5.12)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))
+ '@testing-library/jest-dom': 6.5.0
'@testing-library/user-event': 14.3.0(@testing-library/dom@9.3.4)
- '@types/chai': 4.3.16
+ '@types/chai': 4.3.20
'@vitest/expect': 0.34.7
'@vitest/spy': 0.34.7
- chai: 4.4.1
+ chai: 4.5.0
util: 0.12.5
- transitivePeerDependencies:
- - '@jest/globals'
- - '@types/bun'
- - '@types/jest'
- - jest
- - vitest
- '@storybook/theming@7.6.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/theming@7.6.18(react-dom@18.2.0)(react@18.2.0)':
+ dependencies:
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0)
+ '@storybook/client-logger': 7.6.18
+ '@storybook/global': 5.0.0
+ memoizerific: 1.11.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@storybook/theming@7.6.20(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
- '@storybook/client-logger': 7.6.19
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0)
+ '@storybook/client-logger': 7.6.20
'@storybook/global': 5.0.0
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@storybook/types@7.6.19':
+ '@storybook/types@7.6.18':
dependencies:
- '@storybook/channels': 7.6.19
+ '@storybook/channels': 7.6.18
+ '@types/babel__core': 7.20.5
+ '@types/express': 4.17.21
+ file-system-cache: 2.3.0
+
+ '@storybook/types@7.6.20':
+ dependencies:
+ '@storybook/channels': 7.6.20
'@types/babel__core': 7.20.5
'@types/express': 4.17.21
file-system-cache: 2.3.0
@@ -15617,11 +16853,11 @@ snapshots:
'@svgr/hast-util-to-babel-ast@5.5.0':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.25.6
'@svgr/plugin-jsx@5.5.0':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
'@svgr/babel-preset': 5.5.0
'@svgr/hast-util-to-babel-ast': 5.5.0
svg-parser: 2.0.4
@@ -15636,10 +16872,10 @@ snapshots:
'@svgr/webpack@5.5.0':
dependencies:
- '@babel/core': 7.24.5
- '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.5)
- '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-constant-elements': 7.25.1(@babel/core@7.25.2)
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
'@svgr/core': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/plugin-svgo': 5.5.0
@@ -15647,99 +16883,82 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@swc/core-darwin-arm64@1.5.7':
+ '@swc/core-darwin-arm64@1.7.28':
optional: true
- '@swc/core-darwin-x64@1.5.7':
+ '@swc/core-darwin-x64@1.7.28':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.5.7':
+ '@swc/core-linux-arm-gnueabihf@1.7.28':
optional: true
- '@swc/core-linux-arm64-gnu@1.5.7':
+ '@swc/core-linux-arm64-gnu@1.7.28':
optional: true
- '@swc/core-linux-arm64-musl@1.5.7':
+ '@swc/core-linux-arm64-musl@1.7.28':
optional: true
- '@swc/core-linux-x64-gnu@1.5.7':
+ '@swc/core-linux-x64-gnu@1.7.28':
optional: true
- '@swc/core-linux-x64-musl@1.5.7':
+ '@swc/core-linux-x64-musl@1.7.28':
optional: true
- '@swc/core-win32-arm64-msvc@1.5.7':
+ '@swc/core-win32-arm64-msvc@1.7.28':
optional: true
- '@swc/core-win32-ia32-msvc@1.5.7':
+ '@swc/core-win32-ia32-msvc@1.7.28':
optional: true
- '@swc/core-win32-x64-msvc@1.5.7':
+ '@swc/core-win32-x64-msvc@1.7.28':
optional: true
- '@swc/core@1.5.7(@swc/helpers@0.5.5)':
+ '@swc/core@1.7.28':
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.7
+ '@swc/types': 0.1.12
optionalDependencies:
- '@swc/core-darwin-arm64': 1.5.7
- '@swc/core-darwin-x64': 1.5.7
- '@swc/core-linux-arm-gnueabihf': 1.5.7
- '@swc/core-linux-arm64-gnu': 1.5.7
- '@swc/core-linux-arm64-musl': 1.5.7
- '@swc/core-linux-x64-gnu': 1.5.7
- '@swc/core-linux-x64-musl': 1.5.7
- '@swc/core-win32-arm64-msvc': 1.5.7
- '@swc/core-win32-ia32-msvc': 1.5.7
- '@swc/core-win32-x64-msvc': 1.5.7
- '@swc/helpers': 0.5.5
+ '@swc/core-darwin-arm64': 1.7.28
+ '@swc/core-darwin-x64': 1.7.28
+ '@swc/core-linux-arm-gnueabihf': 1.7.28
+ '@swc/core-linux-arm64-gnu': 1.7.28
+ '@swc/core-linux-arm64-musl': 1.7.28
+ '@swc/core-linux-x64-gnu': 1.7.28
+ '@swc/core-linux-x64-musl': 1.7.28
+ '@swc/core-win32-arm64-msvc': 1.7.28
+ '@swc/core-win32-ia32-msvc': 1.7.28
+ '@swc/core-win32-x64-msvc': 1.7.28
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.5':
dependencies:
'@swc/counter': 0.1.3
- tslib: 2.6.2
+ tslib: 2.7.0
- '@swc/jest@0.2.36(@swc/core@1.5.7(@swc/helpers@0.5.5))':
+ '@swc/jest@0.2.36(@swc/core@1.7.28)':
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
+ '@swc/core': 1.7.28
'@swc/counter': 0.1.3
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.3.1
- '@swc/types@0.1.7':
+ '@swc/types@0.1.12':
dependencies:
'@swc/counter': 0.1.3
- '@tailwindcss/typography@0.5.13(tailwindcss@3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)))':
- dependencies:
- lodash.castarray: 4.4.0
- lodash.isplainobject: 4.0.6
- lodash.merge: 4.6.2
- postcss-selector-parser: 6.0.10
- tailwindcss: 3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
-
- '@tailwindcss/typography@0.5.13(tailwindcss@3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))':
+ '@tailwindcss/typography@0.5.8(tailwindcss@3.3.3)':
dependencies:
lodash.castarray: 4.4.0
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
-
- '@tanstack/react-virtual@3.5.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@tanstack/virtual-core': 3.5.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ tailwindcss: 3.3.3(ts-node@10.9.1)
- '@tanstack/virtual-core@3.5.0': {}
-
- '@testing-library/dom@10.1.0':
+ '@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.5
+ '@babel/code-frame': 7.24.7
+ '@babel/runtime': 7.25.6
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -15749,8 +16968,8 @@ snapshots:
'@testing-library/dom@8.20.1':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.5
+ '@babel/code-frame': 7.24.7
+ '@babel/runtime': 7.25.6
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -15760,8 +16979,8 @@ snapshots:
'@testing-library/dom@9.3.4':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.5
+ '@babel/code-frame': 7.24.7
+ '@babel/runtime': 7.25.6
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -15769,63 +16988,58 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/jest-dom@5.17.0':
+ '@testing-library/jest-dom@5.16.5':
dependencies:
- '@adobe/css-tools': 4.3.3
- '@babel/runtime': 7.24.5
+ '@adobe/css-tools': 4.4.0
+ '@babel/runtime': 7.25.6
'@types/testing-library__jest-dom': 5.14.9
- aria-query: 5.3.0
+ aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.5.16
lodash: 4.17.21
redent: 3.0.0
- '@testing-library/jest-dom@6.4.5(@jest/globals@27.5.1)(@types/jest@29.5.12)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))':
+ '@testing-library/jest-dom@6.5.0':
dependencies:
- '@adobe/css-tools': 4.3.3
- '@babel/runtime': 7.24.5
- aria-query: 5.3.0
+ '@adobe/css-tools': 4.4.0
+ aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
lodash: 4.17.21
redent: 3.0.0
- optionalDependencies:
- '@jest/globals': 27.5.1
- '@types/jest': 29.5.12
- jest: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
- '@testing-library/react@12.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@testing-library/react@12.1.3(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@testing-library/dom': 8.20.1
- '@types/react-dom': 17.0.25
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@testing-library/react@13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@testing-library/react@13.4.0(react-dom@18.2.0)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
'@testing-library/dom': 8.20.1
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@testing-library/user-event@13.5.0(@testing-library/dom@9.3.4)':
+ '@testing-library/user-event@13.5.0(@testing-library/dom@10.4.0)':
dependencies:
- '@babel/runtime': 7.24.5
- '@testing-library/dom': 9.3.4
+ '@babel/runtime': 7.25.6
+ '@testing-library/dom': 10.4.0
'@testing-library/user-event@14.3.0(@testing-library/dom@9.3.4)':
dependencies:
'@testing-library/dom': 9.3.4
- '@testing-library/user-event@14.5.2(@testing-library/dom@10.1.0)':
+ '@testing-library/user-event@14.4.3(@testing-library/dom@10.4.0)':
dependencies:
- '@testing-library/dom': 10.1.0
+ '@testing-library/dom': 10.4.0
- '@tippyjs/react@4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@tippyjs/react@4.2.6(react-dom@18.2.0)(react@18.2.0)':
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -15847,24 +17061,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.5
+ '@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.25.6
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
- '@types/babel__traverse@7.20.5':
+ '@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.25.6
'@types/body-parser@1.19.5':
dependencies:
@@ -15873,14 +17087,14 @@ snapshots:
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
- '@types/chai@4.3.16': {}
+ '@types/chai@4.3.20': {}
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 4.19.0
- '@types/node': 18.19.33
+ '@types/express-serve-static-core': 4.19.5
+ '@types/node': 20.4.6
'@types/connect@3.4.38':
dependencies:
@@ -15925,7 +17139,7 @@ snapshots:
dependencies:
'@types/d3-dsv': 3.0.7
- '@types/d3-force@3.0.9': {}
+ '@types/d3-force@3.0.10': {}
'@types/d3-format@3.0.4': {}
@@ -15988,7 +17202,7 @@ snapshots:
'@types/d3-dsv': 3.0.7
'@types/d3-ease': 3.0.2
'@types/d3-fetch': 3.0.7
- '@types/d3-force': 3.0.9
+ '@types/d3-force': 3.0.10
'@types/d3-format': 3.0.4
'@types/d3-geo': 3.1.0
'@types/d3-hierarchy': 3.1.7
@@ -16023,22 +17237,27 @@ snapshots:
'@types/ejs@3.1.5': {}
- '@types/emscripten@1.39.12': {}
+ '@types/emscripten@1.39.13': {}
'@types/es-aggregate-error@1.0.6':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/escodegen@0.0.6': {}
'@types/eslint-scope@3.7.7':
dependencies:
- '@types/eslint': 8.56.10
- '@types/estree': 1.0.5
+ '@types/eslint': 9.6.1
+ '@types/estree': 0.0.51
- '@types/eslint@8.56.10':
+ '@types/eslint@8.56.12':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
+
+ '@types/eslint@9.6.1':
+ dependencies:
+ '@types/estree': 0.0.51
'@types/json-schema': 7.0.15
'@types/estree@0.0.39': {}
@@ -16047,18 +17266,20 @@ snapshots:
'@types/estree@1.0.5': {}
- '@types/express-serve-static-core@4.19.0':
+ '@types/estree@1.0.6': {}
+
+ '@types/express-serve-static-core@4.19.5':
dependencies:
'@types/node': 20.4.6
- '@types/qs': 6.9.15
+ '@types/qs': 6.9.16
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express@4.17.21':
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.19.0
- '@types/qs': 6.9.15
+ '@types/express-serve-static-core': 4.19.5
+ '@types/qs': 6.9.16
'@types/serve-static': 1.15.7
'@types/find-cache-dir@3.2.1': {}
@@ -16067,15 +17288,19 @@ snapshots:
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/html-minifier-terser@6.1.0': {}
'@types/http-errors@2.0.4': {}
- '@types/http-proxy@1.17.14':
+ '@types/http-proxy@1.17.15':
+ dependencies:
+ '@types/node': 20.4.6
+
+ '@types/is-ci@3.0.4':
dependencies:
- '@types/node': 18.19.33
+ ci-info: 3.9.0
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -16087,22 +17312,29 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.3
- '@types/jest@29.5.12':
+ '@types/jest@29.2.3':
+ dependencies:
+ expect: 29.7.0
+ pretty-format: 29.7.0
+
+ '@types/jest@29.5.13':
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
- '@types/js-yaml@4.0.9': {}
+ '@types/js-yaml@4.0.5': {}
'@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
- '@types/lodash@4.17.1': {}
+ '@types/lodash@4.17.0': {}
+
+ '@types/lodash@4.17.9': {}
'@types/mdast@3.0.15':
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
'@types/mdx@2.0.13': {}
@@ -16116,18 +17348,18 @@ snapshots:
'@types/node-fetch@2.6.11':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
form-data: 4.0.0
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/node@12.20.55': {}
- '@types/node@16.18.97': {}
+ '@types/node@16.18.109': {}
- '@types/node@18.19.33':
+ '@types/node@18.19.51':
dependencies:
undici-types: 5.26.5
@@ -16141,48 +17373,36 @@ snapshots:
'@types/pretty-hrtime@1.0.3': {}
- '@types/prop-types@15.7.12': {}
+ '@types/prop-types@15.7.13': {}
'@types/protocol-buffers-schema@3.4.3':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/q@1.5.8': {}
- '@types/qs@6.9.15': {}
+ '@types/qs@6.9.16': {}
'@types/range-parser@1.2.7': {}
- '@types/react-dom@17.0.25':
- dependencies:
- '@types/react': 17.0.80
-
'@types/react-dom@18.2.7':
dependencies:
'@types/react': 18.2.18
- '@types/react@17.0.80':
- dependencies:
- '@types/prop-types': 15.7.12
- '@types/scheduler': 0.16.8
- csstype: 3.1.3
-
'@types/react@18.2.18':
dependencies:
- '@types/prop-types': 15.7.12
+ '@types/prop-types': 15.7.13
'@types/scheduler': 0.23.0
csstype: 3.1.3
'@types/resolve@1.17.1':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/resolve@1.20.6': {}
'@types/retry@0.12.0': {}
- '@types/scheduler@0.16.8': {}
-
'@types/scheduler@0.23.0': {}
'@types/semver@7.5.8': {}
@@ -16199,7 +17419,7 @@ snapshots:
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/send': 0.17.4
'@types/sinonjs__fake-timers@8.1.1': {}
@@ -16208,25 +17428,25 @@ snapshots:
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/stack-utils@2.0.3': {}
'@types/testing-library__jest-dom@5.14.9':
dependencies:
- '@types/jest': 29.5.12
+ '@types/jest': 29.5.13
'@types/trusted-types@2.0.7': {}
- '@types/unist@2.0.10': {}
+ '@types/unist@2.0.11': {}
'@types/urijs@1.19.25': {}
'@types/uuid@9.0.8': {}
- '@types/ws@8.5.10':
+ '@types/ws@8.5.12':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
'@types/yargs-parser@21.0.3': {}
@@ -16234,120 +17454,89 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@types/yargs@17.0.32':
+ '@types/yargs@17.0.33':
dependencies:
'@types/yargs-parser': 21.0.3
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
optional: true
- '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)':
+ '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.27.0)(typescript@5.1.6)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
+ '@eslint-community/regexpp': 4.11.1
+ '@typescript-eslint/parser': 5.62.0(eslint@8.27.0)(typescript@5.1.6)
'@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.27.0)(typescript@5.1.6)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.27.0)(typescript@5.1.6)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.27.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
natural-compare-lite: 1.4.0
- semver: 7.6.2
- tsutils: 3.21.0(typescript@4.9.5)
- optionalDependencies:
- typescript: 4.9.5
+ semver: 7.6.3
+ tsutils: 3.21.0(typescript@5.1.6)
+ typescript: 5.1.6
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(typescript@5.1.6)':
+ '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.1)(typescript@5.1.6)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
+ '@eslint-community/regexpp': 4.11.1
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
'@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.57.1
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
natural-compare-lite: 1.4.0
- semver: 7.6.2
+ semver: 7.6.3
tsutils: 3.21.0(typescript@5.1.6)
- optionalDependencies:
- typescript: 5.1.6
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(typescript@5.1.6)':
- dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.9.0(eslint@8.57.0)(typescript@5.1.6)
- '@typescript-eslint/scope-manager': 7.9.0
- '@typescript-eslint/type-utils': 7.9.0(eslint@8.57.0)(typescript@5.1.6)
- '@typescript-eslint/utils': 7.9.0(eslint@8.57.0)(typescript@5.1.6)
- '@typescript-eslint/visitor-keys': 7.9.0
- eslint: 8.57.0
- graphemer: 1.4.0
- ignore: 5.3.1
- natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.1.6)
- optionalDependencies:
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@4.9.5)':
+ '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.1)(typescript@5.1.6)':
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- eslint: 8.57.0
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.1.6)':
- dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- eslint: 8.57.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5)':
+ '@typescript-eslint/parser@5.62.0(eslint@8.27.0)(typescript@5.1.6)':
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
- optionalDependencies:
- typescript: 4.9.5
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.27.0
+ typescript: 5.1.6
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6)':
+ '@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.1.6)':
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
- optionalDependencies:
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.57.1
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6)':
+ '@typescript-eslint/parser@7.7.1(eslint@8.57.1)(typescript@5.1.6)':
dependencies:
- '@typescript-eslint/scope-manager': 7.9.0
- '@typescript-eslint/types': 7.9.0
- '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.1.6)
- '@typescript-eslint/visitor-keys': 7.9.0
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
- optionalDependencies:
+ '@typescript-eslint/scope-manager': 7.7.1
+ '@typescript-eslint/types': 7.7.1
+ '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.1.6)
+ '@typescript-eslint/visitor-keys': 7.7.1
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.57.1
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
@@ -16357,131 +17546,90 @@ snapshots:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- '@typescript-eslint/scope-manager@7.9.0':
- dependencies:
- '@typescript-eslint/types': 7.9.0
- '@typescript-eslint/visitor-keys': 7.9.0
-
- '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@4.9.5)':
+ '@typescript-eslint/scope-manager@7.7.1':
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
- tsutils: 3.21.0(typescript@4.9.5)
- optionalDependencies:
- typescript: 4.9.5
- transitivePeerDependencies:
- - supports-color
+ '@typescript-eslint/types': 7.7.1
+ '@typescript-eslint/visitor-keys': 7.7.1
- '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.1.6)':
+ '@typescript-eslint/type-utils@5.62.0(eslint@8.27.0)(typescript@5.1.6)':
dependencies:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
+ '@typescript-eslint/utils': 5.62.0(eslint@8.27.0)(typescript@5.1.6)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.27.0
tsutils: 3.21.0(typescript@5.1.6)
- optionalDependencies:
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.9.0(eslint@8.57.0)(typescript@5.1.6)':
+ '@typescript-eslint/type-utils@5.62.0(eslint@8.57.1)(typescript@5.1.6)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.1.6)
- '@typescript-eslint/utils': 7.9.0(eslint@8.57.0)(typescript@5.1.6)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.1.6)
- optionalDependencies:
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.57.1
+ tsutils: 3.21.0(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
'@typescript-eslint/types@5.62.0': {}
- '@typescript-eslint/types@7.9.0': {}
-
- '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)':
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.4(supports-color@8.1.1)
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.6.2
- tsutils: 3.21.0(typescript@4.9.5)
- optionalDependencies:
- typescript: 4.9.5
- transitivePeerDependencies:
- - supports-color
+ '@typescript-eslint/types@7.7.1': {}
'@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.2
+ semver: 7.6.3
tsutils: 3.21.0(typescript@5.1.6)
- optionalDependencies:
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@7.9.0(typescript@5.1.6)':
+ '@typescript-eslint/typescript-estree@7.7.1(typescript@5.1.6)':
dependencies:
- '@typescript-eslint/types': 7.9.0
- '@typescript-eslint/visitor-keys': 7.9.0
- debug: 4.3.4(supports-color@8.1.1)
+ '@typescript-eslint/types': 7.7.1
+ '@typescript-eslint/visitor-keys': 7.7.1
+ debug: 4.3.7(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
- minimatch: 9.0.4
- semver: 7.6.2
+ minimatch: 9.0.5
+ semver: 7.6.3
ts-api-utils: 1.3.0(typescript@5.1.6)
- optionalDependencies:
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@4.9.5)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.27.0)(typescript@5.1.6)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.27.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@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.57.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
+ eslint: 8.27.0
eslint-scope: 5.1.1
- semver: 7.6.2
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.1.6)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.1.6)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-scope: 5.1.1
- semver: 7.6.2
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.9.0(eslint@8.57.0)(typescript@5.1.6)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@typescript-eslint/scope-manager': 7.9.0
- '@typescript-eslint/types': 7.9.0
- '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.1.6)
- eslint: 8.57.0
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
@@ -16491,9 +17639,9 @@ snapshots:
'@typescript-eslint/types': 5.62.0
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@7.9.0':
+ '@typescript-eslint/visitor-keys@7.7.1':
dependencies:
- '@typescript-eslint/types': 7.9.0
+ '@typescript-eslint/types': 7.7.1
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
@@ -16502,7 +17650,7 @@ snapshots:
dependencies:
'@vitest/spy': 0.34.7
'@vitest/utils': 0.34.7
- chai: 4.4.1
+ chai: 4.5.0
'@vitest/spy@0.34.7':
dependencies:
@@ -16514,25 +17662,51 @@ snapshots:
loupe: 2.3.7
pretty-format: 29.7.0
+ '@webassemblyjs/ast@1.11.1':
+ dependencies:
+ '@webassemblyjs/helper-numbers': 1.11.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.1
+
'@webassemblyjs/ast@1.12.1':
dependencies:
'@webassemblyjs/helper-numbers': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/floating-point-hex-parser@1.11.1': {}
+
'@webassemblyjs/floating-point-hex-parser@1.11.6': {}
+ '@webassemblyjs/helper-api-error@1.11.1': {}
+
'@webassemblyjs/helper-api-error@1.11.6': {}
+ '@webassemblyjs/helper-buffer@1.11.1': {}
+
'@webassemblyjs/helper-buffer@1.12.1': {}
+ '@webassemblyjs/helper-numbers@1.11.1':
+ dependencies:
+ '@webassemblyjs/floating-point-hex-parser': 1.11.1
+ '@webassemblyjs/helper-api-error': 1.11.1
+ '@xtuc/long': 4.2.2
+
'@webassemblyjs/helper-numbers@1.11.6':
dependencies:
'@webassemblyjs/floating-point-hex-parser': 1.11.6
'@webassemblyjs/helper-api-error': 1.11.6
'@xtuc/long': 4.2.2
+ '@webassemblyjs/helper-wasm-bytecode@1.11.1': {}
+
'@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
+ '@webassemblyjs/helper-wasm-section@1.11.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/helper-buffer': 1.11.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.1
+ '@webassemblyjs/wasm-gen': 1.11.1
+
'@webassemblyjs/helper-wasm-section@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -16540,16 +17714,37 @@ snapshots:
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/ieee754@1.11.1':
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+
'@webassemblyjs/ieee754@1.11.6':
dependencies:
'@xtuc/ieee754': 1.2.0
+ '@webassemblyjs/leb128@1.11.1':
+ dependencies:
+ '@xtuc/long': 4.2.2
+
'@webassemblyjs/leb128@1.11.6':
dependencies:
'@xtuc/long': 4.2.2
+ '@webassemblyjs/utf8@1.11.1': {}
+
'@webassemblyjs/utf8@1.11.6': {}
+ '@webassemblyjs/wasm-edit@1.11.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/helper-buffer': 1.11.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.1
+ '@webassemblyjs/helper-wasm-section': 1.11.1
+ '@webassemblyjs/wasm-gen': 1.11.1
+ '@webassemblyjs/wasm-opt': 1.11.1
+ '@webassemblyjs/wasm-parser': 1.11.1
+ '@webassemblyjs/wast-printer': 1.11.1
+
'@webassemblyjs/wasm-edit@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -16561,6 +17756,14 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.12.1
'@webassemblyjs/wast-printer': 1.12.1
+ '@webassemblyjs/wasm-gen@1.11.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.1
+ '@webassemblyjs/ieee754': 1.11.1
+ '@webassemblyjs/leb128': 1.11.1
+ '@webassemblyjs/utf8': 1.11.1
+
'@webassemblyjs/wasm-gen@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -16569,6 +17772,13 @@ snapshots:
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/wasm-opt@1.11.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/helper-buffer': 1.11.1
+ '@webassemblyjs/wasm-gen': 1.11.1
+ '@webassemblyjs/wasm-parser': 1.11.1
+
'@webassemblyjs/wasm-opt@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -16576,6 +17786,15 @@ snapshots:
'@webassemblyjs/wasm-gen': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wasm-parser@1.11.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/helper-api-error': 1.11.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.1
+ '@webassemblyjs/ieee754': 1.11.1
+ '@webassemblyjs/leb128': 1.11.1
+ '@webassemblyjs/utf8': 1.11.1
+
'@webassemblyjs/wasm-parser@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -16585,6 +17804,11 @@ snapshots:
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/wast-printer@1.11.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.11.1
+ '@xtuc/long': 4.2.2
+
'@webassemblyjs/wast-printer@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -16597,7 +17821,7 @@ snapshots:
'@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)':
dependencies:
esbuild: 0.18.20
- tslib: 2.6.2
+ tslib: 2.7.0
'@yarnpkg/fslib@2.10.3':
dependencies:
@@ -16606,7 +17830,7 @@ snapshots:
'@yarnpkg/libzip@2.3.0':
dependencies:
- '@types/emscripten': 1.39.12
+ '@types/emscripten': 1.39.13
tslib: 1.14.1
abab@2.0.6: {}
@@ -16627,25 +17851,31 @@ snapshots:
acorn: 7.4.1
acorn-walk: 7.2.0
- acorn-import-assertions@1.9.0(acorn@8.11.3):
+ acorn-import-assertions@1.9.0(acorn@8.12.1):
+ dependencies:
+ acorn: 8.12.1
+
+ acorn-import-attributes@1.9.5(acorn@8.12.1):
dependencies:
- acorn: 8.11.3
+ acorn: 8.12.1
acorn-jsx@5.3.2(acorn@7.4.1):
dependencies:
acorn: 7.4.1
- acorn-jsx@5.3.2(acorn@8.11.3):
+ acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
- acorn: 8.11.3
+ acorn: 8.12.1
acorn-walk@7.2.0: {}
- acorn-walk@8.3.2: {}
+ acorn-walk@8.3.4:
+ dependencies:
+ acorn: 8.12.1
acorn@7.4.1: {}
- acorn@8.11.3: {}
+ acorn@8.12.1: {}
address@1.2.2: {}
@@ -16658,7 +17888,7 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -16667,37 +17897,25 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
- ajv-draft-04@1.0.0(ajv@8.13.0):
- optionalDependencies:
- ajv: 8.13.0
-
ajv-draft-04@1.0.0(ajv@8.17.1):
- optionalDependencies:
- ajv: 8.17.1
-
- ajv-errors@3.0.0(ajv@8.13.0):
dependencies:
- ajv: 8.13.0
+ ajv: 8.17.1
ajv-errors@3.0.0(ajv@8.17.1):
dependencies:
ajv: 8.17.1
- ajv-formats@2.1.1(ajv@8.13.0):
- optionalDependencies:
- ajv: 8.13.0
-
ajv-formats@2.1.1(ajv@8.17.1):
- optionalDependencies:
+ dependencies:
ajv: 8.17.1
ajv-keywords@3.5.2(ajv@6.12.6):
dependencies:
ajv: 6.12.6
- ajv-keywords@5.1.0(ajv@8.13.0):
+ ajv-keywords@5.1.0(ajv@8.17.1):
dependencies:
- ajv: 8.13.0
+ ajv: 8.17.1
fast-deep-equal: 3.1.3
ajv@5.5.2:
@@ -16721,13 +17939,6 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- ajv@8.13.0:
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
-
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
@@ -16738,7 +17949,7 @@ snapshots:
alterschema@1.1.3:
dependencies:
'@hyperjump/json-schema': 0.23.5
- json-e: 4.7.0
+ json-e: 4.7.1
lodash: 4.17.21
object-hash: 3.0.0
transitivePeerDependencies:
@@ -16752,13 +17963,15 @@ snapshots:
ansi-html-community@0.0.8: {}
+ ansi-html@0.0.9: {}
+
ansi-red@0.1.1:
dependencies:
ansi-wrap: 0.1.0
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
+ ansi-regex@6.1.0: {}
ansi-styles@3.2.1:
dependencies:
@@ -16797,7 +18010,7 @@ snapshots:
aria-hidden@1.2.4:
dependencies:
- tslib: 2.6.2
+ tslib: 2.7.0
aria-query@5.1.3:
dependencies:
@@ -16807,6 +18020,8 @@ snapshots:
dependencies:
dequal: 2.0.3
+ aria-query@5.3.2: {}
+
array-buffer-byte-length@1.0.1:
dependencies:
call-bind: 1.0.7
@@ -16814,8 +18029,6 @@ snapshots:
array-flatten@1.1.1: {}
- array-ify@1.0.0: {}
-
array-includes@3.1.8:
dependencies:
call-bind: 1.0.7
@@ -16869,14 +18082,7 @@ snapshots:
es-object-atoms: 1.0.0
is-string: 1.0.7
- array.prototype.toreversed@1.1.2:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
-
- array.prototype.tosorted@1.1.3:
+ array.prototype.tosorted@1.1.4:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
@@ -16905,6 +18111,13 @@ snapshots:
assert-plus@1.0.0: {}
+ assert@2.0.0:
+ dependencies:
+ es6-object-assign: 1.1.0
+ is-nan: 1.3.2
+ object-is: 1.1.6
+ util: 0.12.5
+
assert@2.1.0:
dependencies:
call-bind: 1.0.7
@@ -16919,15 +18132,15 @@ snapshots:
ast-types@0.16.1:
dependencies:
- tslib: 2.6.2
+ tslib: 2.7.0
astral-regex@2.0.0: {}
- astring@1.8.6: {}
+ astring@1.9.0: {}
async-limiter@1.0.1: {}
- async@3.2.5: {}
+ async@3.2.6: {}
asynckit@0.4.0: {}
@@ -16939,11 +18152,11 @@ snapshots:
autoprefixer@10.4.14(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001618
+ browserslist: 4.24.0
+ caniuse-lite: 1.0.30001663
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.0.1
+ picocolors: 1.1.0
postcss: 8.4.31
postcss-value-parser: 4.2.0
@@ -16957,51 +18170,58 @@ snapshots:
aws4@1.13.2: {}
- axe-core@4.7.0: {}
+ axe-core@4.10.0: {}
- axobject-query@3.2.1:
- dependencies:
- dequal: 2.0.3
+ axobject-query@4.1.0: {}
- babel-core@7.0.0-bridge.0(@babel/core@7.24.5):
+ babel-core@7.0.0-bridge.0(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
- babel-jest@27.5.1(@babel/core@7.24.5):
+ babel-jest@27.5.1(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 27.5.1(@babel/core@7.24.5)
+ babel-preset-jest: 27.5.1(@babel/core@7.25.2)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ babel-loader@8.2.3(@babel/core@7.17.4)(webpack@5.75.0):
+ dependencies:
+ '@babel/core': 7.17.4
+ find-cache-dir: 3.3.2
+ loader-utils: 1.4.2
+ make-dir: 3.1.0
+ schema-utils: 2.7.1
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
+
+ babel-loader@8.4.1(@babel/core@7.25.2)(webpack@5.95.0):
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
- babel-loader@9.1.3(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ babel-loader@9.2.1(@babel/core@7.25.2)(webpack@5.75.0):
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
babel-plugin-add-react-displayname@0.0.5: {}
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.8
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -17011,52 +18231,76 @@ snapshots:
babel-plugin-jest-hoist@27.5.1:
dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.5
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.5
+ '@types/babel__traverse': 7.20.6
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
cosmiconfig: 7.1.0
resolve: 1.22.8
- babel-plugin-named-asset-import@0.3.8(@babel/core@7.24.5):
+ babel-plugin-named-asset-import@0.3.8(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.12.9):
dependencies:
- '@babel/compat-data': 7.24.4
+ '@babel/compat-data': 7.25.4
'@babel/core': 7.12.9
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.12.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.5):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.17.4):
+ dependencies:
+ '@babel/compat-data': 7.25.4
+ '@babel/core': 7.17.4
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.17.4)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.5
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
+ '@babel/compat-data': 7.25.4
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.12.9):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.12.9):
dependencies:
'@babel/core': 7.12.9
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.12.9)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.1
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ core-js-compat: 3.38.1
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.17.4):
+ dependencies:
+ '@babel/core': 7.17.4
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.17.4)
+ core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.5):
+ babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.17.4):
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
- core-js-compat: 3.37.1
+ '@babel/core': 7.17.4
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.17.4)
transitivePeerDependencies:
- supports-color
@@ -17067,58 +18311,63 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.5):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
babel-plugin-source-map-support@2.2.0:
dependencies:
- '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-module-imports': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
babel-plugin-transform-react-remove-prop-types@0.4.24: {}
- babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.5):
- dependencies:
- '@babel/core': 7.24.5
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5)
-
- babel-preset-jest@27.5.1(@babel/core@7.24.5):
- dependencies:
- '@babel/core': 7.24.5
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.2):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
+
+ babel-preset-jest@27.5.1(@babel/core@7.25.2):
+ dependencies:
+ '@babel/core': 7.25.2
babel-plugin-jest-hoist: 27.5.1
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2)
babel-preset-react-app@10.0.1:
dependencies:
- '@babel/core': 7.24.5
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.24.5)
- '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5)
- '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.5)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5)
- '@babel/runtime': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.2)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-runtime': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ '@babel/runtime': 7.25.6
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
@@ -17168,7 +18417,7 @@ snapshots:
bluebird@3.7.2: {}
- body-parser@1.20.2:
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -17178,7 +18427,7 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
+ qs: 6.13.0
raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
@@ -17205,9 +18454,9 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.2:
+ braces@3.0.3:
dependencies:
- fill-range: 7.0.1
+ fill-range: 7.1.1
breakword@1.0.6:
dependencies:
@@ -17225,12 +18474,12 @@ snapshots:
dependencies:
pako: 1.0.11
- browserslist@4.23.0:
+ browserslist@4.24.0:
dependencies:
- caniuse-lite: 1.0.30001618
- electron-to-chromium: 1.4.769
- node-releases: 2.0.14
- update-browserslist-db: 1.0.16(browserslist@4.23.0)
+ caniuse-lite: 1.0.30001663
+ electron-to-chromium: 1.5.28
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.0(browserslist@4.24.0)
bser@2.1.1:
dependencies:
@@ -17254,7 +18503,7 @@ snapshots:
builtin-status-codes@3.0.0: {}
- bundle-require@4.1.0(esbuild@0.19.12):
+ bundle-require@4.2.1(esbuild@0.19.12):
dependencies:
esbuild: 0.19.12
load-tsconfig: 0.2.5
@@ -17286,7 +18535,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.2
+ tslib: 2.7.0
camelcase-css@2.0.1: {}
@@ -17302,17 +18551,17 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001618
+ browserslist: 4.24.0
+ caniuse-lite: 1.0.30001663
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001618: {}
+ caniuse-lite@1.0.30001663: {}
capital-case@1.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
upper-case-first: 2.0.2
case-sensitive-paths-webpack-plugin@2.4.0: {}
@@ -17321,15 +18570,15 @@ snapshots:
ccount@2.0.1: {}
- chai@4.4.1:
+ chai@4.5.0:
dependencies:
assertion-error: 1.1.0
check-error: 1.0.3
- deep-eql: 4.1.3
+ deep-eql: 4.1.4
get-func-name: 2.0.2
loupe: 2.3.7
pathval: 1.1.1
- type-detect: 4.0.8
+ type-detect: 4.1.0
chalk@2.4.2:
dependencies:
@@ -17360,7 +18609,7 @@ snapshots:
path-case: 3.0.4
sentence-case: 3.0.4
snake-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
char-regex@1.0.2: {}
@@ -17381,7 +18630,7 @@ snapshots:
chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
- braces: 3.0.2
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
@@ -17394,7 +18643,7 @@ snapshots:
chownr@2.0.0: {}
- chrome-trace-event@1.0.3: {}
+ chrome-trace-event@1.0.4: {}
ci-info@3.9.0: {}
@@ -17402,11 +18651,11 @@ snapshots:
dependencies:
consola: 3.2.3
- cjs-module-lexer@1.3.1: {}
+ cjs-module-lexer@1.4.1: {}
classcat@5.0.5: {}
- classnames@2.5.1: {}
+ classnames@2.3.2: {}
clean-css@5.3.3:
dependencies:
@@ -17473,10 +18722,10 @@ snapshots:
codemirror@6.0.1(@lezer/common@1.2.1):
dependencies:
- '@codemirror/autocomplete': 6.16.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)
- '@codemirror/commands': 6.5.0
- '@codemirror/language': 6.10.1
- '@codemirror/lint': 6.7.1
+ '@codemirror/autocomplete': 6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)
+ '@codemirror/commands': 6.6.2
+ '@codemirror/language': 6.10.3
+ '@codemirror/lint': 6.8.2
'@codemirror/search': 6.5.6
'@codemirror/state': 6.4.1
'@codemirror/view': 6.26.3
@@ -17527,14 +18776,9 @@ snapshots:
commondir@1.0.1: {}
- compare-func@2.0.0:
- dependencies:
- array-ify: 1.0.0
- dot-prop: 5.3.0
-
compressible@2.0.18:
dependencies:
- mime-db: 1.52.0
+ mime-db: 1.53.0
compression@1.7.4:
dependencies:
@@ -17573,6 +18817,8 @@ snapshots:
tree-kill: 1.2.2
yargs: 17.7.2
+ confbox@0.1.7: {}
+
config-chain@1.1.13:
dependencies:
ini: 1.3.8
@@ -17587,7 +18833,7 @@ snapshots:
constant-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
upper-case: 2.0.2
constants-browserify@1.0.0: {}
@@ -17598,12 +18844,6 @@ snapshots:
content-type@1.0.5: {}
- conventional-changelog-conventionalcommits@5.0.0:
- dependencies:
- compare-func: 2.0.0
- lodash: 4.17.21
- q: 1.5.1
-
convert-source-map@1.9.0: {}
convert-source-map@2.0.0: {}
@@ -17612,28 +18852,18 @@ snapshots:
cookie@0.6.0: {}
- core-js-compat@3.37.1:
+ core-js-compat@3.38.1:
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
- core-js-pure@3.37.1: {}
+ core-js-pure@3.38.1: {}
- core-js@3.37.1: {}
+ core-js@3.38.1: {}
core-util-is@1.0.2: {}
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@1.0.9(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(cosmiconfig@7.1.0)(typescript@4.9.5):
- dependencies:
- '@types/node': 18.19.33
- cosmiconfig: 7.1.0
- ts-node: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)
- typescript: 4.9.5
- transitivePeerDependencies:
- - '@swc/core'
- - '@swc/wasm'
-
cosmiconfig@6.0.0:
dependencies:
'@types/parse-json': 4.0.2
@@ -17681,7 +18911,7 @@ snapshots:
css-blank-pseudo@3.0.3(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
css-declaration-sorter@6.4.1(postcss@8.4.31):
dependencies:
@@ -17690,32 +18920,42 @@ snapshots:
css-has-pseudo@3.0.4(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
- css-loader@6.11.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ css-loader@6.11.0(webpack@5.75.0):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.38)
- postcss-modules-scope: 3.2.0(postcss@8.4.38)
- postcss-modules-values: 4.0.0(postcss@8.4.38)
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
+ postcss-modules-scope: 3.2.0(postcss@8.4.47)
+ postcss-modules-values: 4.0.0(postcss@8.4.47)
postcss-value-parser: 4.2.0
- semver: 7.6.2
- optionalDependencies:
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ semver: 7.6.3
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
+
+ css-loader@6.11.0(webpack@5.95.0):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
+ postcss-modules-scope: 3.2.0(postcss@8.4.47)
+ postcss-modules-values: 4.0.0(postcss@8.4.47)
+ postcss-value-parser: 4.2.0
+ semver: 7.6.3
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
- css-minimizer-webpack-plugin@3.4.1(esbuild@0.18.20)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ css-minimizer-webpack-plugin@3.4.1(esbuild@0.18.20)(webpack@5.95.0):
dependencies:
cssnano: 5.1.15(postcss@8.4.31)
+ esbuild: 0.18.20
jest-worker: 27.5.1
postcss: 8.4.31
schema-utils: 4.2.0
serialize-javascript: 6.0.2
source-map: 0.6.1
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
- esbuild: 0.18.20
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
css-prefers-color-scheme@6.0.3(postcss@8.4.31):
dependencies:
@@ -17829,7 +19069,7 @@ snapshots:
csv-stringify: 5.6.5
stream-transform: 2.1.3
- cypress@13.14.2:
+ cypress@13.10.0:
dependencies:
'@cypress/request': 3.0.5
'@cypress/xvfb': 1.2.4(supports-color@8.1.1)
@@ -17847,7 +19087,7 @@ snapshots:
commander: 6.2.1
common-tags: 1.8.2
dayjs: 1.11.13
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
enquirer: 2.4.1
eventemitter2: 6.4.7
execa: 4.1.0
@@ -17868,7 +19108,7 @@ snapshots:
process: 0.11.10
proxy-from-env: 1.0.0
request-progress: 3.0.0
- semver: 7.6.2
+ semver: 7.6.3
supports-color: 8.1.1
tmp: 0.2.3
untildify: 4.0.0
@@ -17942,7 +19182,7 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
dayjs@1.11.13: {}
@@ -17953,13 +19193,15 @@ snapshots:
debug@3.2.7(supports-color@8.1.1):
dependencies:
ms: 2.1.3
- optionalDependencies:
supports-color: 8.1.1
- debug@4.3.4(supports-color@8.1.1):
+ debug@4.3.4:
dependencies:
ms: 2.1.2
- optionalDependencies:
+
+ debug@4.3.7(supports-color@8.1.1):
+ dependencies:
+ ms: 2.1.3
supports-color: 8.1.1
decamelize-keys@1.1.1:
@@ -17977,9 +19219,9 @@ snapshots:
dedent@0.7.0: {}
- deep-eql@4.1.3:
+ deep-eql@4.1.4:
dependencies:
- type-detect: 4.0.8
+ type-detect: 4.1.0
deep-equal@2.2.3:
dependencies:
@@ -18080,7 +19322,7 @@ snapshots:
detect-port@1.6.1:
dependencies:
address: 1.2.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -18147,7 +19389,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- dompurify@2.5.3: {}
+ dompurify@2.5.6: {}
domutils@1.7.0:
dependencies:
@@ -18163,11 +19405,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
-
- dot-prop@5.3.0:
- dependencies:
- is-obj: 2.0.0
+ tslib: 2.7.0
dotenv-expand@10.0.0: {}
@@ -18175,8 +19413,6 @@ snapshots:
dotenv@10.0.0: {}
- dotenv@16.0.3: {}
-
dotenv@16.4.5: {}
driver.js@1.3.1: {}
@@ -18202,15 +19438,15 @@ snapshots:
'@one-ini/wasm': 0.1.1
commander: 10.0.1
minimatch: 9.0.1
- semver: 7.6.2
+ semver: 7.6.3
ee-first@1.1.1: {}
ejs@3.1.10:
dependencies:
- jake: 10.9.1
+ jake: 10.9.2
- electron-to-chromium@1.4.769: {}
+ electron-to-chromium@1.5.28: {}
emittery@0.10.2: {}
@@ -18224,6 +19460,8 @@ snapshots:
encodeurl@1.0.2: {}
+ encodeurl@2.0.0: {}
+
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
@@ -18234,7 +19472,7 @@ snapshots:
fast-json-parse: 1.0.3
objectorarray: 1.0.5
- enhanced-resolve@5.16.1:
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -18248,7 +19486,7 @@ snapshots:
entities@2.2.0: {}
- envinfo@7.13.0: {}
+ envinfo@7.14.0: {}
error-ex@1.3.2:
dependencies:
@@ -18291,7 +19529,7 @@ snapshots:
is-string: 1.0.7
is-typed-array: 1.1.13
is-weakref: 1.0.2
- object-inspect: 1.13.1
+ object-inspect: 1.13.2
object-keys: 1.1.1
object.assign: 4.1.5
regexp.prototype.flags: 1.5.2
@@ -18355,7 +19593,9 @@ snapshots:
iterator.prototype: 1.1.2
safe-array-concat: 1.1.2
- es-module-lexer@1.5.2: {}
+ es-module-lexer@0.9.3: {}
+
+ es-module-lexer@1.5.4: {}
es-object-atoms@1.0.0:
dependencies:
@@ -18377,11 +19617,13 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
+ es6-object-assign@1.1.0: {}
+
esbuild-plugin-alias@0.2.1: {}
- esbuild-register@3.5.0(esbuild@0.18.20):
+ esbuild-register@3.6.0(esbuild@0.18.20):
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
esbuild: 0.18.20
transitivePeerDependencies:
- supports-color
@@ -18437,7 +19679,7 @@ snapshots:
'@esbuild/win32-ia32': 0.19.12
'@esbuild/win32-x64': 0.19.12
- escalade@3.1.2: {}
+ escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -18466,73 +19708,45 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-next@13.4.12(eslint@8.57.0)(typescript@5.1.6):
+ eslint-config-next@13.4.12(eslint@8.57.1)(typescript@5.1.6):
dependencies:
'@next/eslint-plugin-next': 13.4.12
- '@rushstack/eslint-patch': 1.10.2
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
- eslint-plugin-react: 7.34.1(eslint@8.57.0)
- eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.0)
- optionalDependencies:
- typescript: 5.1.6
- transitivePeerDependencies:
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-config-prettier@8.10.0(eslint@8.57.0):
- dependencies:
- eslint: 8.57.0
-
- eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(eslint@8.57.0)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)))(typescript@4.9.5):
- dependencies:
- '@babel/core': 7.24.5
- '@babel/eslint-parser': 7.24.5(@babel/core@7.24.5)(eslint@8.57.0)
- '@rushstack/eslint-patch': 1.10.2
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- babel-preset-react-app: 10.0.1
- confusing-browser-globals: 1.0.11
- eslint: 8.57.0
- eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(eslint@8.57.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)
- eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)))(typescript@4.9.5)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
- eslint-plugin-react: 7.28.0(eslint@8.57.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
- eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@4.9.5)
- optionalDependencies:
- typescript: 4.9.5
+ '@rushstack/eslint-patch': 1.10.4
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ eslint: 8.57.1
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1)
+ eslint-plugin-import: 2.30.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1)
+ eslint-plugin-react: 7.36.1(eslint@8.57.1)
+ eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1)
+ typescript: 5.1.6
transitivePeerDependencies:
- - '@babel/plugin-syntax-flow'
- - '@babel/plugin-transform-react-jsx'
- - eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- - jest
+ - eslint-plugin-import-x
- supports-color
- eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(eslint@8.57.0)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))(typescript@5.1.6):
+ eslint-config-prettier@8.3.0(eslint@8.57.1):
+ dependencies:
+ eslint: 8.57.1
+
+ eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.24.7)(@babel/plugin-transform-react-jsx@7.25.2)(eslint@8.57.1)(jest@27.5.1)(typescript@5.1.6):
dependencies:
- '@babel/core': 7.24.5
- '@babel/eslint-parser': 7.24.5(@babel/core@7.24.5)(eslint@8.57.0)
- '@rushstack/eslint-patch': 1.10.2
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(typescript@5.1.6)
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
+ '@babel/core': 7.25.2
+ '@babel/eslint-parser': 7.25.1(@babel/core@7.25.2)(eslint@8.57.1)
+ '@rushstack/eslint-patch': 1.10.4
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.1)(typescript@5.1.6)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
- eslint: 8.57.0
- eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(eslint@8.57.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)
- eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))(typescript@5.1.6)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
- eslint-plugin-react: 7.28.0(eslint@8.57.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
- eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.1.6)
- optionalDependencies:
+ eslint: 8.57.1
+ eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.24.7)(@babel/plugin-transform-react-jsx@7.25.2)(eslint@8.57.1)
+ eslint-plugin-import: 2.30.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.1)(jest@27.5.1)(typescript@5.1.6)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1)
+ eslint-plugin-react: 7.28.0(eslint@8.57.1)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
+ eslint-plugin-testing-library: 5.11.1(eslint@8.57.1)(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
@@ -18542,29 +19756,30 @@ snapshots:
- jest
- supports-color
- eslint-config-turbo@1.13.3(eslint@8.57.0):
+ eslint-config-turbo@1.9.3(eslint@8.57.1):
dependencies:
- eslint: 8.57.0
- eslint-plugin-turbo: 1.13.3(eslint@8.57.0)
+ eslint: 8.57.1
+ eslint-plugin-turbo: 1.9.3(eslint@8.57.1)
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7(supports-color@8.1.1)
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1):
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
- enhanced-resolve: 5.16.1
- eslint: 8.57.0
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)
+ '@nolyfill/is-core-module': 1.0.39
+ debug: 4.3.7(supports-color@8.1.1)
+ enhanced-resolve: 5.17.1
+ eslint: 8.57.1
+ eslint-module-utils: 2.11.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-import: 2.30.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
fast-glob: 3.3.2
- get-tsconfig: 4.7.5
- is-core-module: 2.13.1
+ get-tsconfig: 4.8.1
+ is-bun-module: 1.2.1
is-glob: 4.0.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -18572,85 +19787,38 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
- dependencies:
- debug: 3.2.7(supports-color@8.1.1)
- optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- transitivePeerDependencies:
- - supports-color
-
- eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0):
+ eslint-module-utils@2.11.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
dependencies:
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
debug: 3.2.7(supports-color@8.1.1)
- optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
- transitivePeerDependencies:
- - supports-color
-
- eslint-module-utils@2.8.1(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
- dependencies:
- debug: 3.2.7(supports-color@8.1.1)
- optionalDependencies:
- '@typescript-eslint/parser': 7.9.0(eslint@8.57.0)(typescript@5.1.6)
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(eslint@8.57.0):
+ eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.24.7)(@babel/plugin-transform-react-jsx@7.25.2)(eslint@8.57.1):
dependencies:
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5)
- eslint: 8.57.0
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.17.4)
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.17.4)
+ eslint: 8.57.1
lodash: 4.17.21
string-natural-compare: 3.0.1
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0):
- dependencies:
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
- array.prototype.flat: 1.3.2
- array.prototype.flatmap: 1.3.2
- debug: 3.2.7(supports-color@8.1.1)
- doctrine: 2.1.0
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
- hasown: 2.0.2
- is-core-module: 2.13.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.0
- semver: 6.3.1
- tsconfig-paths: 3.15.0
- optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.1):
dependencies:
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@8.1.1)
doctrine: 2.1.0
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0)
+ eslint-module-utils: 2.11.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
hasown: 2.0.2
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
@@ -18658,26 +19826,26 @@ snapshots:
object.values: 1.2.0
semver: 6.3.1
tsconfig-paths: 3.15.0
- optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0):
+ eslint-plugin-import@2.30.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
dependencies:
+ '@rtsao/scc': 1.1.0
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@8.1.1)
doctrine: 2.1.0
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ eslint-module-utils: 2.11.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
hasown: 2.0.2
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
@@ -18685,69 +19853,73 @@ snapshots:
object.values: 1.2.0
semver: 6.3.1
tsconfig-paths: 3.15.0
- optionalDependencies:
- '@typescript-eslint/parser': 7.9.0(eslint@8.57.0)(typescript@5.1.6)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)))(typescript@4.9.5):
+ eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.1)(jest@27.5.1)(typescript@5.1.6):
dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- eslint: 8.57.0
- optionalDependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)
- jest: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))(typescript@5.1.6):
- dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- eslint: 8.57.0
- optionalDependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.1.6))(eslint@8.57.0)(typescript@5.1.6)
- jest: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.1)(typescript@5.1.6)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ eslint: 8.57.1
+ jest: 27.5.1
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0):
+ eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.1):
dependencies:
- '@babel/runtime': 7.24.5
- aria-query: 5.3.0
+ aria-query: 5.1.3
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.7.0
- axobject-query: 3.2.1
+ axe-core: 4.10.0
+ axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 8.57.0
+ eslint: 8.57.1
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
minimatch: 3.1.2
- object.entries: 1.1.8
object.fromentries: 2.0.8
+ safe-regex-test: 1.0.3
+ string.prototype.includes: 2.0.0
+
+ eslint-plugin-react-hooks@4.6.2(eslint@8.57.1):
+ dependencies:
+ eslint: 8.57.1
- eslint-plugin-react-hooks@4.6.2(eslint@8.57.0):
+ eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1):
dependencies:
- eslint: 8.57.0
+ eslint: 8.57.1
- eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705(eslint@8.57.0):
+ eslint-plugin-react@7.28.0(eslint@8.27.0):
dependencies:
- eslint: 8.57.0
+ array-includes: 3.1.8
+ array.prototype.flatmap: 1.3.2
+ doctrine: 2.1.0
+ eslint: 8.27.0
+ estraverse: 5.3.0
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.hasown: 1.1.4
+ object.values: 1.2.0
+ prop-types: 15.8.1
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.11
- eslint-plugin-react@7.28.0(eslint@8.57.0):
+ eslint-plugin-react@7.28.0(eslint@8.57.1):
dependencies:
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
doctrine: 2.1.0
- eslint: 8.57.0
+ eslint: 8.57.1
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
@@ -18760,29 +19932,29 @@ snapshots:
semver: 6.3.1
string.prototype.matchall: 4.0.11
- eslint-plugin-react@7.34.1(eslint@8.57.0):
+ eslint-plugin-react@7.36.1(eslint@8.57.1):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
- array.prototype.toreversed: 1.1.2
- array.prototype.tosorted: 1.1.3
+ array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 8.57.0
+ eslint: 8.57.1
estraverse: 5.3.0
+ hasown: 2.0.2
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
object.entries: 1.1.8
object.fromentries: 2.0.8
- object.hasown: 1.1.4
object.values: 1.2.0
prop-types: 15.8.1
resolve: 2.0.0-next.5
semver: 6.3.1
string.prototype.matchall: 4.0.11
+ string.prototype.repeat: 1.0.0
- eslint-plugin-security@1.7.1:
+ eslint-plugin-security@1.5.0:
dependencies:
safe-regex: 2.1.1
@@ -18790,45 +19962,40 @@ snapshots:
dependencies:
safe-regex: 2.1.1
- eslint-plugin-sonarjs@0.16.0(eslint@8.57.0):
+ eslint-plugin-sonarjs@0.16.0(eslint@8.57.1):
+ dependencies:
+ eslint: 8.57.1
+
+ eslint-plugin-sonarjs@0.25.1(eslint@8.27.0):
dependencies:
- eslint: 8.57.0
+ eslint: 8.27.0
- eslint-plugin-sonarjs@0.25.1(eslint@8.57.0):
+ eslint-plugin-sonarjs@0.25.1(eslint@8.57.1):
dependencies:
- eslint: 8.57.0
+ eslint: 8.57.1
- eslint-plugin-storybook@0.8.0(eslint@8.57.0)(typescript@5.1.6):
+ eslint-plugin-storybook@0.8.0(eslint@8.57.1)(typescript@5.1.6):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- eslint: 8.57.0
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ eslint: 8.57.1
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@4.9.5):
- dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
- eslint: 8.57.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.1.6):
+ eslint-plugin-testing-library@5.11.1(eslint@8.57.1)(typescript@5.1.6):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.1.6)
- eslint: 8.57.0
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-turbo@1.13.3(eslint@8.57.0):
+ eslint-plugin-turbo@1.9.3(eslint@8.57.1):
dependencies:
- dotenv: 16.0.3
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-scope@5.1.1:
dependencies:
@@ -18840,40 +20007,89 @@ snapshots:
esrecurse: 4.3.0
estraverse: 5.3.0
+ eslint-utils@3.0.0(eslint@8.27.0):
+ dependencies:
+ eslint: 8.27.0
+ eslint-visitor-keys: 2.1.0
+
eslint-visitor-keys@2.1.0: {}
eslint-visitor-keys@3.4.3: {}
- eslint-webpack-plugin@3.2.0(eslint@8.57.0)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ eslint-webpack-plugin@3.2.0(eslint@8.57.1)(webpack@5.95.0):
dependencies:
- '@types/eslint': 8.56.10
- eslint: 8.57.0
+ '@types/eslint': 8.56.12
+ eslint: 8.57.1
jest-worker: 28.1.3
- micromatch: 4.0.5
+ micromatch: 4.0.8
normalize-path: 3.0.0
schema-utils: 4.2.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
- eslint@8.57.0:
+ eslint@8.27.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@eslint-community/regexpp': 4.10.0
- '@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.57.0
+ '@eslint/eslintrc': 1.4.1
'@humanwhocodes/config-array': 0.11.14
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.3
+ debug: 4.3.7(supports-color@8.1.1)
+ doctrine: 3.0.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 7.2.2
+ eslint-utils: 3.0.0(eslint@8.27.0)
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ esquery: 1.6.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ globals: 13.24.0
+ grapheme-splitter: 1.0.4
+ ignore: 5.3.2
+ import-fresh: 3.3.0
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ is-path-inside: 3.0.3
+ js-sdsl: 4.4.2
+ js-yaml: 4.1.0
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.4
+ regexpp: 3.2.0
+ strip-ansi: 6.0.1
+ strip-json-comments: 3.1.1
+ text-table: 0.2.0
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint@8.57.1:
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.11.1
+ '@eslint/eslintrc': 2.1.4
+ '@eslint/js': 8.57.1
+ '@humanwhocodes/config-array': 0.13.0
+ '@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
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- esquery: 1.5.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
@@ -18881,7 +20097,7 @@ snapshots:
glob-parent: 6.0.2
globals: 13.24.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
@@ -18899,15 +20115,15 @@ snapshots:
espree@9.6.1:
dependencies:
- acorn: 8.11.3
- acorn-jsx: 5.3.2(acorn@8.11.3)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
eslint-visitor-keys: 3.4.3
esprima@1.2.2: {}
esprima@4.0.1: {}
- esquery@1.5.0:
+ esquery@1.6.0:
dependencies:
estraverse: 5.3.0
@@ -18994,34 +20210,34 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- express@4.19.2:
+ express@4.21.0:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.2
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0
+ finalhandler: 1.3.1
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.10
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.13.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.2
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -19055,7 +20271,7 @@ snapshots:
extract-zip@2.0.1(supports-color@8.1.1):
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -19077,7 +20293,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
fast-json-parse@1.0.3: {}
@@ -19117,11 +20333,11 @@ snapshots:
dependencies:
flat-cache: 3.2.0
- file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ file-loader@6.2.0(webpack@5.95.0):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
file-system-cache@2.3.0:
dependencies:
@@ -19150,14 +20366,14 @@ snapshots:
repeat-element: 1.1.4
repeat-string: 1.6.1
- fill-range@7.0.1:
+ fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.2.0:
+ finalhandler@1.3.1:
dependencies:
debug: 2.6.9
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -19204,7 +20420,7 @@ snapshots:
find-yarn-workspace-root2@1.2.16:
dependencies:
- micromatch: 4.0.5
+ micromatch: 4.0.8
pkg-dir: 4.2.0
flat-cache@3.2.0:
@@ -19213,13 +20429,11 @@ snapshots:
keyv: 4.5.4
rimraf: 3.0.2
- flat@5.0.2: {}
-
flatted@3.3.1: {}
- flow-parser@0.236.0: {}
+ flow-parser@0.246.0: {}
- follow-redirects@1.15.6: {}
+ follow-redirects@1.15.9: {}
for-each@0.3.3:
dependencies:
@@ -19231,56 +20445,35 @@ snapshots:
foreachasync@3.0.0: {}
- foreground-child@3.1.1:
+ foreground-child@3.3.0:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
forever-agent@0.6.1: {}
- fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.1)(typescript@5.1.6)(webpack@5.95.0):
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.24.7
'@types/json-schema': 7.0.15
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 6.0.0
deepmerge: 4.3.1
+ eslint: 8.57.1
fs-extra: 9.1.0
glob: 7.2.3
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.6.2
- tapable: 1.1.3
- typescript: 4.9.5
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
- eslint: 8.57.0
-
- fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
- dependencies:
- '@babel/code-frame': 7.24.2
- '@types/json-schema': 7.0.15
- chalk: 4.1.2
- chokidar: 3.6.0
- cosmiconfig: 6.0.0
- deepmerge: 4.3.1
- fs-extra: 9.1.0
- glob: 7.2.3
- memfs: 3.5.3
- minimatch: 3.1.2
- schema-utils: 2.7.0
- semver: 7.6.2
+ semver: 7.6.3
tapable: 1.1.3
typescript: 5.1.6
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
- eslint: 8.57.0
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
- fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.75.0):
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.24.7
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.1.0
@@ -19290,10 +20483,10 @@ snapshots:
minimatch: 3.1.2
node-abort-controller: 3.1.1
schema-utils: 3.3.0
- semver: 7.6.2
+ semver: 7.6.3
tapable: 2.2.1
typescript: 5.1.6
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
form-data@3.0.1:
dependencies:
@@ -19413,7 +20606,7 @@ snapshots:
get-stream@5.2.0:
dependencies:
- pump: 3.0.0
+ pump: 3.0.2
get-stream@6.0.1: {}
@@ -19425,13 +20618,13 @@ snapshots:
es-errors: 1.3.0
get-intrinsic: 1.2.4
- get-tsconfig@4.7.5:
+ get-tsconfig@4.8.1:
dependencies:
resolve-pkg-maps: 1.0.0
getos@3.2.1:
dependencies:
- async: 3.2.5
+ async: 3.2.6
getpass@0.1.7:
dependencies:
@@ -19443,8 +20636,8 @@ snapshots:
consola: 3.2.3
defu: 6.1.4
node-fetch-native: 1.6.4
- nypm: 0.3.8
- ohash: 1.1.3
+ nypm: 0.3.11
+ ohash: 1.1.4
pathe: 1.1.2
tar: 6.2.1
@@ -19460,12 +20653,13 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.3.15:
+ glob@10.4.5:
dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.4
- minipass: 7.1.1
+ foreground-child: 3.3.0
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.0
path-scurry: 1.11.1
glob@7.1.7:
@@ -19516,7 +20710,7 @@ snapshots:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
@@ -19570,7 +20764,7 @@ snapshots:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.17.4
+ uglify-js: 3.19.3
hard-rejection@2.1.0: {}
@@ -19603,7 +20797,7 @@ snapshots:
header-case@2.0.4:
dependencies:
capital-case: 1.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
highlight.js@10.7.3: {}
@@ -19634,19 +20828,27 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.31.0
+ terser: 5.33.0
html-tags@3.3.1: {}
- html-webpack-plugin@5.6.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ html-webpack-plugin@5.6.0(webpack@5.75.0):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- optionalDependencies:
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
+
+ html-webpack-plugin@5.6.0(webpack@5.95.0):
+ dependencies:
+ '@types/html-minifier-terser': 6.1.0
+ html-minifier-terser: 6.1.0
+ lodash: 4.17.21
+ pretty-error: 4.0.0
+ tapable: 2.2.1
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
htmlparser2@6.1.0:
dependencies:
@@ -19678,26 +20880,25 @@ snapshots:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
http-proxy-middleware@2.0.6(@types/express@4.17.21):
dependencies:
- '@types/http-proxy': 1.17.14
+ '@types/express': 4.17.21
+ '@types/http-proxy': 1.17.15
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
- micromatch: 4.0.5
- optionalDependencies:
- '@types/express': 4.17.21
+ micromatch: 4.0.8
transitivePeerDependencies:
- debug
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.9
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -19713,14 +20914,14 @@ snapshots:
https-proxy-agent@4.0.0:
dependencies:
agent-base: 5.1.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -19740,9 +20941,9 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.4.38):
+ icss-utils@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
idb@7.1.1: {}
@@ -19752,7 +20953,7 @@ snapshots:
ieee754@1.2.1: {}
- ignore@5.3.1: {}
+ ignore@5.3.2: {}
immer@9.0.21: {}
@@ -19761,7 +20962,7 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-local@3.1.0:
+ import-local@3.2.0:
dependencies:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
@@ -19793,8 +20994,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- ip@2.0.1: {}
-
ipaddr.js@1.9.1: {}
ipaddr.js@2.2.0: {}
@@ -19834,13 +21033,17 @@ snapshots:
is-buffer@2.0.5: {}
+ is-bun-module@1.2.1:
+ dependencies:
+ semver: 7.6.3
+
is-callable@1.2.7: {}
is-ci@3.0.1:
dependencies:
ci-info: 3.9.0
- is-core-module@2.13.1:
+ is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
@@ -19914,8 +21117,6 @@ snapshots:
is-obj@1.0.1: {}
- is-obj@2.0.0: {}
-
is-path-cwd@2.2.0: {}
is-path-inside@3.0.3: {}
@@ -20007,7 +21208,7 @@ snapshots:
isomorphic-dompurify@0.13.0:
dependencies:
'@types/dompurify': 2.4.0
- dompurify: 2.5.3
+ dompurify: 2.5.6
jsdom: 16.7.0
transitivePeerDependencies:
- bufferutil
@@ -20021,8 +21222,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.24.5
- '@babel/parser': 7.24.5
+ '@babel/core': 7.17.4
+ '@babel/parser': 7.25.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -20037,7 +21238,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -20056,15 +21257,15 @@ snapshots:
reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
- jackspeak@2.3.6:
+ jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- jake@10.9.1:
+ jake@10.9.2:
dependencies:
- async: 3.2.5
+ async: 3.2.6
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -20080,7 +21281,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -20099,37 +21300,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jest-cli@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)):
- dependencies:
- '@jest/core': 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- '@jest/test-result': 27.5.1
- '@jest/types': 27.5.1
- chalk: 4.1.2
- exit: 0.1.2
- graceful-fs: 4.2.11
- import-local: 3.1.0
- jest-config: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- jest-util: 27.5.1
- jest-validate: 27.5.1
- prompts: 2.4.2
- yargs: 16.2.0
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - ts-node
- - utf-8-validate
-
- jest-cli@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)):
+ jest-cli@27.5.1:
dependencies:
- '@jest/core': 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ '@jest/core': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- import-local: 3.1.0
- jest-config: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ import-local: 3.2.0
+ jest-config: 27.5.1
jest-util: 27.5.1
jest-validate: 27.5.1
prompts: 2.4.2
@@ -20141,46 +21321,12 @@ snapshots:
- ts-node
- utf-8-validate
- jest-config@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)):
- dependencies:
- '@babel/core': 7.24.5
- '@jest/test-sequencer': 27.5.1
- '@jest/types': 27.5.1
- babel-jest: 27.5.1(@babel/core@7.24.5)
- chalk: 4.1.2
- ci-info: 3.9.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 27.5.1
- jest-environment-jsdom: 27.5.1
- jest-environment-node: 27.5.1
- jest-get-type: 27.5.1
- jest-jasmine2: 27.5.1
- jest-regex-util: 27.5.1
- jest-resolve: 27.5.1
- jest-runner: 27.5.1
- jest-util: 27.5.1
- jest-validate: 27.5.1
- micromatch: 4.0.5
- parse-json: 5.2.0
- pretty-format: 27.5.1
- slash: 3.0.0
- strip-json-comments: 3.1.1
- optionalDependencies:
- ts-node: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - utf-8-validate
-
- jest-config@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)):
+ jest-config@27.5.1:
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.25.2
'@jest/test-sequencer': 27.5.1
'@jest/types': 27.5.1
- babel-jest: 27.5.1(@babel/core@7.24.5)
+ babel-jest: 27.5.1(@babel/core@7.25.2)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -20196,13 +21342,11 @@ snapshots:
jest-runner: 27.5.1
jest-util: 27.5.1
jest-validate: 27.5.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 27.5.1
slash: 3.0.0
strip-json-comments: 3.1.1
- optionalDependencies:
- ts-node: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -20240,7 +21384,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
jest-mock: 27.5.1
jest-util: 27.5.1
jsdom: 16.7.0
@@ -20255,7 +21399,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -20267,7 +21411,7 @@ snapshots:
dependencies:
'@jest/types': 27.5.1
'@types/graceful-fs': 4.1.9
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -20275,7 +21419,7 @@ snapshots:
jest-serializer: 27.5.1
jest-util: 27.5.1
jest-worker: 27.5.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
@@ -20291,7 +21435,7 @@ snapshots:
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
@@ -20302,7 +21446,7 @@ snapshots:
'@jest/source-map': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
chalk: 4.1.2
co: 4.6.0
expect: 27.5.1
@@ -20339,36 +21483,36 @@ snapshots:
jest-message-util@27.5.1:
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.24.7
'@jest/types': 27.5.1
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.5
+ micromatch: 4.0.8
pretty-format: 27.5.1
slash: 3.0.0
stack-utils: 2.0.6
jest-message-util@28.1.3:
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.24.7
'@jest/types': 28.1.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.5
+ micromatch: 4.0.8
pretty-format: 28.1.3
slash: 3.0.0
stack-utils: 2.0.6
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.24.7
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.5
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.6
@@ -20379,7 +21523,7 @@ snapshots:
'@types/node': 20.4.6
jest-pnp-resolver@1.2.3(jest-resolve@27.5.1):
- optionalDependencies:
+ dependencies:
jest-resolve: 27.5.1
jest-regex-util@27.5.1: {}
@@ -20416,7 +21560,7 @@ snapshots:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
chalk: 4.1.2
emittery: 0.8.1
graceful-fs: 4.2.11
@@ -20448,7 +21592,7 @@ snapshots:
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
chalk: 4.1.2
- cjs-module-lexer: 1.3.1
+ cjs-module-lexer: 1.4.1
collect-v8-coverage: 1.0.2
execa: 5.1.1
glob: 7.2.3
@@ -20467,21 +21611,21 @@ snapshots:
jest-serializer@27.5.1:
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
graceful-fs: 4.2.11
jest-snapshot@27.5.1:
dependencies:
- '@babel/core': 7.24.5
- '@babel/generator': 7.24.5
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/generator': 7.25.6
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/babel__traverse': 7.20.5
+ '@types/babel__traverse': 7.20.6
'@types/prettier': 2.7.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2)
chalk: 4.1.2
expect: 27.5.1
graceful-fs: 4.2.11
@@ -20493,14 +21637,14 @@ snapshots:
jest-util: 27.5.1
natural-compare: 1.4.0
pretty-format: 27.5.1
- semver: 7.6.2
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
jest-util@27.5.1:
dependencies:
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -20509,7 +21653,7 @@ snapshots:
jest-util@28.1.3:
dependencies:
'@jest/types': 28.1.3
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -20533,22 +21677,11 @@ snapshots:
leven: 3.1.0
pretty-format: 27.5.1
- jest-watch-typeahead@1.1.0(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))):
- dependencies:
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- jest: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- jest-regex-util: 28.0.2
- jest-watcher: 28.1.3
- slash: 4.0.0
- string-length: 5.0.1
- strip-ansi: 7.1.0
-
- jest-watch-typeahead@1.1.0(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))):
+ jest-watch-typeahead@1.1.0(jest@27.5.1):
dependencies:
ansi-escapes: 4.3.2
chalk: 4.1.2
- jest: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ jest: 27.5.1
jest-regex-util: 28.0.2
jest-watcher: 28.1.3
slash: 4.0.0
@@ -20559,7 +21692,7 @@ snapshots:
dependencies:
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
ansi-escapes: 4.3.2
chalk: 4.1.2
jest-util: 27.5.1
@@ -20569,7 +21702,7 @@ snapshots:
dependencies:
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.10.2
@@ -20578,7 +21711,7 @@ snapshots:
jest-worker@26.6.2:
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
merge-stream: 2.0.0
supports-color: 7.2.0
@@ -20590,34 +21723,22 @@ snapshots:
jest-worker@28.1.3:
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
merge-stream: 2.0.0
supports-color: 8.1.1
jest-worker@29.7.0:
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)):
- dependencies:
- '@jest/core': 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- import-local: 3.1.0
- jest-cli: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - ts-node
- - utf-8-validate
-
- jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)):
+ jest@27.5.1:
dependencies:
- '@jest/core': 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
- import-local: 3.1.0
- jest-cli: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ '@jest/core': 27.5.1
+ import-local: 3.2.0
+ jest-cli: 27.5.1
transitivePeerDependencies:
- bufferutil
- canvas
@@ -20625,17 +21746,17 @@ snapshots:
- ts-node
- utf-8-validate
- jiti@1.21.0: {}
+ jiti@1.21.6: {}
joycon@3.1.1: {}
- js-base64@3.7.7: {}
+ js-base64@3.7.3: {}
js-beautify@1.15.1:
dependencies:
config-chain: 1.1.13
editorconfig: 1.0.4
- glob: 10.3.15
+ glob: 10.4.5
js-cookie: 3.0.5
nopt: 7.2.1
@@ -20643,6 +21764,8 @@ snapshots:
js-file-download@0.4.12: {}
+ js-sdsl@4.4.2: {}
+
js-tokens@4.0.0: {}
js-yaml@3.14.1:
@@ -20656,37 +21779,36 @@ snapshots:
jsbn@0.1.1: {}
- jscodeshift@0.15.2(@babel/preset-env@7.24.5(@babel/core@7.24.5)):
- dependencies:
- '@babel/core': 7.24.5
- '@babel/parser': 7.24.5
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.5)
- '@babel/preset-flow': 7.24.1(@babel/core@7.24.5)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5)
- '@babel/register': 7.23.7(@babel/core@7.24.5)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.5)
+ jscodeshift@0.15.2(@babel/preset-env@7.25.4):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/parser': 7.25.6
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-flow': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.25.2)
+ '@babel/register': 7.24.6(@babel/core@7.25.2)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.25.2)
chalk: 4.1.2
- flow-parser: 0.236.0
+ flow-parser: 0.246.0
graceful-fs: 4.2.11
- micromatch: 4.0.5
+ micromatch: 4.0.8
neo-async: 2.6.2
node-dir: 0.1.17
- recast: 0.23.7
+ recast: 0.23.9
temp: 0.8.4
write-file-atomic: 2.4.3
- optionalDependencies:
- '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
jsdom@16.7.0:
dependencies:
abab: 2.0.6
- acorn: 8.11.3
+ acorn: 8.12.1
acorn-globals: 6.0.0
cssom: 0.4.4
cssstyle: 2.3.0
@@ -20699,7 +21821,7 @@ snapshots:
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.10
+ nwsapi: 2.2.12
parse5: 6.0.1
saxes: 5.0.1
symbol-tree: 3.2.4
@@ -20710,14 +21832,14 @@ snapshots:
whatwg-encoding: 1.0.5
whatwg-mimetype: 2.3.0
whatwg-url: 8.7.0
- ws: 7.5.9
+ ws: 7.5.10
xml-name-validator: 3.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- jsep@1.3.8: {}
+ jsep@1.3.9: {}
jsesc@0.5.0: {}
@@ -20725,7 +21847,7 @@ snapshots:
json-buffer@3.0.1: {}
- json-e@4.7.0:
+ json-e@4.7.1:
dependencies:
json-stable-stringify-without-jsonify: 1.0.1
@@ -20764,7 +21886,7 @@ snapshots:
jsonc-parser@2.2.1: {}
- jsonc-parser@3.2.1: {}
+ jsonc-parser@3.3.1: {}
jsonfile@1.0.1: {}
@@ -20827,15 +21949,15 @@ snapshots:
klona@2.0.6: {}
- language-subtag-registry@0.3.22: {}
+ language-subtag-registry@0.3.23: {}
language-tags@1.0.9:
dependencies:
- language-subtag-registry: 0.3.22
+ language-subtag-registry: 0.3.23
- launch-editor@2.6.1:
+ launch-editor@2.9.1:
dependencies:
- picocolors: 1.0.1
+ picocolors: 1.1.0
shell-quote: 1.8.1
lazy-ass@1.6.0: {}
@@ -20864,7 +21986,7 @@ snapshots:
lilconfig@2.1.0: {}
- lilconfig@3.1.1: {}
+ lilconfig@3.1.2: {}
lines-and-columns@1.2.4: {}
@@ -20883,14 +22005,13 @@ snapshots:
dependencies:
cli-truncate: 2.1.0
colorette: 2.0.20
+ enquirer: 2.4.1
log-update: 4.0.0
p-map: 4.0.0
rfdc: 1.4.1
rxjs: 7.8.1
through: 2.3.8
wrap-ansi: 7.0.0
- optionalDependencies:
- enquirer: 2.4.1
load-tsconfig@0.2.5: {}
@@ -20903,13 +22024,19 @@ snapshots:
loader-runner@4.3.0: {}
+ loader-utils@1.4.2:
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 1.0.2
+
loader-utils@2.0.4:
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
json5: 2.2.3
- loader-utils@3.2.1: {}
+ loader-utils@3.3.1: {}
locate-path@3.0.0:
dependencies:
@@ -20989,9 +22116,9 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.7.0
- lru-cache@10.2.2: {}
+ lru-cache@10.4.3: {}
lru-cache@4.1.5:
dependencies:
@@ -21008,9 +22135,9 @@ snapshots:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.30.10:
+ magic-string@0.30.11:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
make-dir@2.1.0:
dependencies:
@@ -21023,7 +22150,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.6.2
+ semver: 7.6.3
make-error@1.3.6: {}
@@ -21049,7 +22176,7 @@ snapshots:
markdown-table@3.0.3: {}
- markdown-to-jsx@7.4.7(react@18.2.0):
+ markdown-to-jsx@7.5.0(react@18.2.0):
dependencies:
react: 18.2.0
@@ -21086,7 +22213,7 @@ snapshots:
mdast-util-from-markdown@1.3.1:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -21152,7 +22279,7 @@ snapshots:
mdast-util-to-markdown@1.5.0:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
longest-streak: 3.1.0
mdast-util-phrasing: 3.0.1
mdast-util-to-string: 3.2.0
@@ -21196,7 +22323,7 @@ snapshots:
type-fest: 0.13.1
yargs-parser: 18.1.3
- merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
merge-stream@2.0.0: {}
@@ -21376,7 +22503,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -21395,13 +22522,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromatch@4.0.5:
+ micromatch@4.0.8:
dependencies:
- braces: 3.0.2
+ braces: 3.0.3
picomatch: 2.3.1
mime-db@1.52.0: {}
+ mime-db@1.53.0: {}
+
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
@@ -21416,11 +22545,11 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.9.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ mini-css-extract-plugin@2.9.1(webpack@5.95.0):
dependencies:
schema-utils: 4.2.0
tapable: 2.2.1
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
minimalistic-assert@1.0.1: {}
@@ -21436,7 +22565,7 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.4:
+ minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -21454,7 +22583,7 @@ snapshots:
minipass@5.0.0: {}
- minipass@7.1.1: {}
+ minipass@7.1.2: {}
minizlib@2.1.2:
dependencies:
@@ -21478,9 +22607,16 @@ snapshots:
mkdirp@1.0.4: {}
+ mlly@1.7.1:
+ dependencies:
+ acorn: 8.12.1
+ pathe: 1.1.2
+ pkg-types: 1.2.0
+ ufo: 1.5.4
+
monaco-editor@0.34.1: {}
- monaco-marker-data-provider@1.2.2:
+ monaco-marker-data-provider@1.2.3:
dependencies:
monaco-types: 0.1.0
@@ -21493,16 +22629,16 @@ snapshots:
monaco-yaml@4.0.2(monaco-editor@0.34.1):
dependencies:
'@types/json-schema': 7.0.15
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.3.1
monaco-editor: 0.34.1
- monaco-marker-data-provider: 1.2.2
+ monaco-marker-data-provider: 1.2.3
monaco-worker-manager: 2.0.1(monaco-editor@0.34.1)
path-browserify: 1.0.1
prettier: 2.8.8
- vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-textdocument: 1.0.12
vscode-languageserver-types: 3.17.5
vscode-uri: 3.0.8
- yaml: 2.4.2
+ yaml: 2.5.1
moo@0.5.2: {}
@@ -21537,17 +22673,17 @@ snapshots:
neo-async@2.6.2: {}
- next@14.2.3(@babel/core@7.12.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ next@14.2.3(@babel/core@7.25.2)(react-dom@18.2.0)(react@18.2.0):
dependencies:
'@next/env': 14.2.3
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001618
+ caniuse-lite: 1.0.30001663
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(@babel/core@7.12.9)(react@18.2.0)
+ styled-jsx: 5.1.1(@babel/core@7.25.2)(react@18.2.0)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.3
'@next/swc-darwin-x64': 14.2.3
@@ -21564,10 +22700,10 @@ snapshots:
nimma@0.2.2:
dependencies:
- '@jsep-plugin/regex': 1.0.3(jsep@1.3.8)
- '@jsep-plugin/ternary': 1.1.3(jsep@1.3.8)
- astring: 1.8.6
- jsep: 1.3.8
+ '@jsep-plugin/regex': 1.0.3(jsep@1.3.9)
+ '@jsep-plugin/ternary': 1.1.3(jsep@1.3.9)
+ astring: 1.9.0
+ jsep: 1.3.9
optionalDependencies:
jsonpath-plus: 6.0.1
lodash.topath: 4.5.2
@@ -21575,7 +22711,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.2
+ tslib: 2.7.0
node-abort-controller@3.1.1: {}
@@ -21597,7 +22733,7 @@ snapshots:
node-int64@0.4.0: {}
- node-releases@2.0.14: {}
+ node-releases@2.0.18: {}
nopt@7.2.1:
dependencies:
@@ -21632,21 +22768,22 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nwsapi@2.2.10: {}
+ nwsapi@2.2.12: {}
- nypm@0.3.8:
+ nypm@0.3.11:
dependencies:
citty: 0.1.6
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- ufo: 1.5.3
+ pkg-types: 1.2.0
+ ufo: 1.5.4
object-assign@4.1.1: {}
object-hash@3.0.0: {}
- object-inspect@1.13.1: {}
+ object-inspect@1.13.2: {}
object-is@1.1.6:
dependencies:
@@ -21711,7 +22848,7 @@ snapshots:
obuf@1.1.2: {}
- ohash@1.1.3: {}
+ ohash@1.1.4: {}
on-finished@2.4.1:
dependencies:
@@ -21798,7 +22935,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@3.0.0:
dependencies:
@@ -21829,6 +22966,8 @@ snapshots:
p-try@2.2.0: {}
+ package-json-from-dist@1.0.0: {}
+
pako@0.2.9: {}
pako@1.0.11: {}
@@ -21836,7 +22975,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
parent-module@1.0.1:
dependencies:
@@ -21844,7 +22983,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.24.7
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -21856,14 +22995,14 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
path-browserify@1.0.1: {}
path-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
path-equal@1.2.5: {}
@@ -21883,10 +23022,10 @@ snapshots:
path-scurry@1.11.1:
dependencies:
- lru-cache: 10.2.2
- minipass: 7.1.1
+ lru-cache: 10.4.3
+ minipass: 7.1.2
- path-to-regexp@0.1.7: {}
+ path-to-regexp@0.1.10: {}
path-type@4.0.0: {}
@@ -21906,7 +23045,7 @@ snapshots:
picocolors@0.2.1: {}
- picocolors@1.0.1: {}
+ picocolors@1.1.0: {}
picomatch@2.3.1: {}
@@ -21932,6 +23071,12 @@ snapshots:
dependencies:
find-up: 6.3.0
+ pkg-types@1.2.0:
+ dependencies:
+ confbox: 0.1.7
+ mlly: 1.7.1
+ pathe: 1.1.2
+
pkg-up@3.1.0:
dependencies:
find-up: 3.0.0
@@ -21944,7 +23089,7 @@ snapshots:
polished@4.3.1:
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
pony-cause@1.1.1: {}
@@ -21953,17 +23098,17 @@ snapshots:
postcss-attribute-case-insensitive@5.0.2(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
- postcss-browser-comments@4.0.0(browserslist@4.23.0)(postcss@8.4.31):
+ postcss-browser-comments@4.0.0(browserslist@4.24.0)(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
postcss: 8.4.31
postcss-calc@8.2.4(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
postcss-clamp@4.1.0(postcss@8.4.31):
@@ -21988,7 +23133,7 @@ snapshots:
postcss-colormin@5.3.1(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.31
@@ -21996,7 +23141,7 @@ snapshots:
postcss-convert-values@5.1.3(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
postcss: 8.4.31
postcss-value-parser: 4.2.0
@@ -22013,12 +23158,12 @@ snapshots:
postcss-custom-selectors@6.0.3(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-dir-pseudo-class@6.0.5(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-discard-comments@5.1.2(postcss@8.4.31):
dependencies:
@@ -22054,12 +23199,12 @@ snapshots:
postcss-focus-visible@6.0.4(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-focus-within@5.0.4(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-font-variant@5.0.0(postcss@8.4.31):
dependencies:
@@ -22096,37 +23241,20 @@ snapshots:
postcss: 8.4.31
postcss-value-parser: 4.2.0
- postcss-load-config@4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)):
- dependencies:
- lilconfig: 3.1.1
- yaml: 2.4.2
- optionalDependencies:
- postcss: 8.4.31
- ts-node: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)
-
- postcss-load-config@4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@4.9.5)):
+ postcss-load-config@4.0.2(postcss@8.4.31)(ts-node@10.9.1):
dependencies:
- lilconfig: 3.1.1
- yaml: 2.4.2
- optionalDependencies:
- postcss: 8.4.31
- ts-node: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@4.9.5)
-
- postcss-load-config@4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)):
- dependencies:
- lilconfig: 3.1.1
- yaml: 2.4.2
- optionalDependencies:
+ lilconfig: 3.1.2
postcss: 8.4.31
- ts-node: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)
+ ts-node: 10.9.1(@swc/core@1.7.28)(@types/node@20.4.6)(typescript@5.1.6)
+ yaml: 2.5.1
- postcss-loader@6.2.1(postcss@8.4.31)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ postcss-loader@6.2.1(postcss@8.4.31)(webpack@5.95.0):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
postcss: 8.4.31
- semver: 7.6.2
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ semver: 7.6.3
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
postcss-logical@5.0.4(postcss@8.4.31):
dependencies:
@@ -22144,11 +23272,11 @@ snapshots:
postcss-merge-rules@5.1.4(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
caniuse-api: 3.0.0
cssnano-utils: 3.1.0(postcss@8.4.31)
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-minify-font-values@5.1.0(postcss@8.4.31):
dependencies:
@@ -22164,7 +23292,7 @@ snapshots:
postcss-minify-params@5.1.4(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
cssnano-utils: 3.1.0(postcss@8.4.31)
postcss: 8.4.31
postcss-value-parser: 4.2.0
@@ -22172,39 +23300,39 @@ snapshots:
postcss-minify-selectors@5.2.1(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
- postcss-modules-extract-imports@3.1.0(postcss@8.4.38):
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-modules-local-by-default@4.0.5(postcss@8.4.38):
+ postcss-modules-local-by-default@4.0.5(postcss@8.4.47):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.0(postcss@8.4.38):
+ postcss-modules-scope@3.2.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- postcss-modules-values@4.0.0(postcss@8.4.38):
+ postcss-modules-values@4.0.0(postcss@8.4.47):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
- postcss-nested@6.0.1(postcss@8.4.31):
+ postcss-nested@6.2.0(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-nesting@10.2.0(postcss@8.4.31):
dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-normalize-charset@5.1.0(postcss@8.4.31):
dependencies:
@@ -22237,7 +23365,7 @@ snapshots:
postcss-normalize-unicode@5.1.1(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
postcss: 8.4.31
postcss-value-parser: 4.2.0
@@ -22252,12 +23380,12 @@ snapshots:
postcss: 8.4.31
postcss-value-parser: 4.2.0
- postcss-normalize@10.0.1(browserslist@4.23.0)(postcss@8.4.31):
+ postcss-normalize@10.0.1(browserslist@4.24.0)(postcss@8.4.31):
dependencies:
'@csstools/normalize.css': 12.1.1
- browserslist: 4.23.0
+ browserslist: 4.24.0
postcss: 8.4.31
- postcss-browser-comments: 4.0.0(browserslist@4.23.0)(postcss@8.4.31)
+ postcss-browser-comments: 4.0.0(browserslist@4.24.0)(postcss@8.4.31)
sanitize.css: 13.0.0
postcss-opacity-percentage@1.1.3(postcss@8.4.31):
@@ -22301,7 +23429,7 @@ snapshots:
'@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.31)
'@csstools/postcss-unset-value': 1.0.2(postcss@8.4.31)
autoprefixer: 10.4.14(postcss@8.4.31)
- browserslist: 4.23.0
+ browserslist: 4.24.0
css-blank-pseudo: 3.0.3(postcss@8.4.31)
css-has-pseudo: 3.0.4(postcss@8.4.31)
css-prefers-color-scheme: 6.0.3(postcss@8.4.31)
@@ -22340,11 +23468,11 @@ snapshots:
postcss-pseudo-class-any-link@7.1.6(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-reduce-initial@5.1.2(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
caniuse-api: 3.0.0
postcss: 8.4.31
@@ -22360,14 +23488,14 @@ snapshots:
postcss-selector-not@6.0.1(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-selector-parser@6.0.10:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-selector-parser@6.0.16:
+ postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
@@ -22381,7 +23509,7 @@ snapshots:
postcss-unique-selectors@5.1.1(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
postcss-value-parser@4.2.0: {}
@@ -22393,21 +23521,21 @@ snapshots:
postcss@8.4.31:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.0
+ source-map-js: 1.2.1
- postcss@8.4.38:
+ postcss@8.4.47:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.0
+ source-map-js: 1.2.1
- preferred-pm@3.1.3:
+ preferred-pm@3.1.4:
dependencies:
find-up: 5.0.0
find-yarn-workspace-root2: 1.2.16
path-exists: 4.0.0
- which-pm: 2.0.0
+ which-pm: 2.2.0
prelude-ls@1.1.2: {}
@@ -22466,7 +23594,7 @@ snapshots:
proto-list@1.2.4: {}
- protobufjs@7.3.0:
+ protobufjs@7.4.0:
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -22478,9 +23606,11 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 18.19.33
+ '@types/node': 20.4.6
long: 5.2.3
+ protocol-buffers-schema@3.6.0: {}
+
proxy-addr@2.0.7:
dependencies:
forwarded: 0.2.0
@@ -22501,7 +23631,7 @@ snapshots:
end-of-stream: 1.4.4
once: 1.4.0
- pump@3.0.0:
+ pump@3.0.2:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
@@ -22512,6 +23642,8 @@ snapshots:
inherits: 2.0.4
pump: 2.0.1
+ punycode@1.3.2: {}
+
punycode@1.4.1: {}
punycode@2.3.1: {}
@@ -22519,7 +23651,7 @@ snapshots:
puppeteer-core@2.1.1:
dependencies:
'@types/mime-types': 2.1.4
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
extract-zip: 1.7.0
https-proxy-agent: 4.0.0
mime: 2.6.0
@@ -22527,7 +23659,7 @@ snapshots:
progress: 2.0.3
proxy-from-env: 1.1.0
rimraf: 2.7.1
- ws: 6.2.2
+ ws: 6.2.3
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -22536,7 +23668,7 @@ snapshots:
puppeteer@14.4.1:
dependencies:
cross-fetch: 3.1.5
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4
devtools-protocol: 0.0.1001819
extract-zip: 2.0.1(supports-color@8.1.1)
https-proxy-agent: 5.0.1
@@ -22555,18 +23687,12 @@ snapshots:
q@1.5.1: {}
- qs@6.11.0:
- dependencies:
- side-channel: 1.0.6
-
- qs@6.12.1:
- dependencies:
- side-channel: 1.0.6
-
qs@6.13.0:
dependencies:
side-channel: 1.0.6
+ querystring@0.2.0: {}
+
querystringify@2.2.0: {}
queue-microtask@1.2.3: {}
@@ -22605,78 +23731,38 @@ snapshots:
iconv-lite: 0.4.24
unpipe: 1.0.0
- raw-loader@4.0.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.3.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
-
react-app-polyfill@3.0.0:
dependencies:
- core-js: 3.37.1
+ core-js: 3.38.1
object-assign: 4.1.1
promise: 8.3.0
raf: 3.4.1
regenerator-runtime: 0.13.11
whatwg-fetch: 3.6.20
- react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-colorful@5.6.1(react-dom@18.2.0)(react@18.2.0):
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-dev-utils@12.0.1(eslint@8.57.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
- dependencies:
- '@babel/code-frame': 7.24.2
- address: 1.2.2
- browserslist: 4.23.0
- chalk: 4.1.2
- cross-spawn: 7.0.3
- detect-port-alt: 1.1.6
- escape-string-regexp: 4.0.0
- filesize: 8.0.7
- find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- global-modules: 2.0.0
- globby: 11.1.0
- gzip-size: 6.0.0
- immer: 9.0.21
- is-root: 2.1.0
- loader-utils: 3.2.1
- open: 8.4.2
- pkg-up: 3.1.0
- prompts: 2.4.2
- react-error-overlay: 6.0.11
- recursive-readdir: 2.2.3
- shell-quote: 1.8.1
- strip-ansi: 6.0.1
- text-table: 0.2.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
- typescript: 4.9.5
- transitivePeerDependencies:
- - eslint
- - supports-color
- - vue-template-compiler
-
- react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ react-dev-utils@12.0.1(eslint@8.57.1)(typescript@5.1.6)(webpack@5.95.0):
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.24.7
address: 1.2.2
- browserslist: 4.23.0
+ browserslist: 4.24.0
chalk: 4.1.2
cross-spawn: 7.0.3
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.1)(typescript@5.1.6)(webpack@5.95.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
immer: 9.0.21
is-root: 2.1.0
- loader-utils: 3.2.1
+ loader-utils: 3.3.1
open: 8.4.2
pkg-up: 3.1.0
prompts: 2.4.2
@@ -22685,25 +23771,24 @@ snapshots:
shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
typescript: 5.1.6
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
transitivePeerDependencies:
- eslint
- supports-color
- vue-template-compiler
- react-docgen-typescript-plugin@1.0.6(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ react-docgen-typescript-plugin@1.0.5(typescript@5.1.6)(webpack@5.75.0):
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
endent: 2.1.0
find-cache-dir: 3.3.2
flat-cache: 3.2.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
react-docgen-typescript: 2.2.2(typescript@5.1.6)
- tslib: 2.6.2
+ tslib: 2.7.0
typescript: 5.1.6
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
transitivePeerDependencies:
- supports-color
@@ -22713,11 +23798,11 @@ snapshots:
react-docgen@7.0.3:
dependencies:
- '@babel/core': 7.24.5
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.5
+ '@types/babel__traverse': 7.20.6
'@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
@@ -22739,7 +23824,7 @@ snapshots:
react: 18.2.0
scheduler: 0.23.2
- react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-element-to-jsx-string@15.0.0(react-dom@18.2.0)(react@18.2.0):
dependencies:
'@base2/pretty-print-object': 1.0.1
is-plain-object: 5.0.0
@@ -22749,7 +23834,7 @@ snapshots:
react-error-overlay@6.0.11: {}
- react-hot-toast@2.4.0(csstype@3.1.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-hot-toast@2.4.0(csstype@3.1.3)(react-dom@18.2.0)(react@18.2.0):
dependencies:
goober: 2.1.14(csstype@3.1.3)
react: 18.2.0
@@ -22757,7 +23842,7 @@ snapshots:
transitivePeerDependencies:
- csstype
- react-icons@4.12.0(react@18.2.0):
+ react-icons@4.8.0(react@18.2.0):
dependencies:
react: 18.2.0
@@ -22779,163 +23864,74 @@ snapshots:
react-remove-scroll-bar@2.3.6(@types/react@18.2.18)(react@18.2.0):
dependencies:
+ '@types/react': 18.2.18
react: 18.2.0
react-style-singleton: 2.2.1(@types/react@18.2.18)(react@18.2.0)
- tslib: 2.6.2
- optionalDependencies:
- '@types/react': 18.2.18
+ tslib: 2.7.0
react-remove-scroll@2.5.5(@types/react@18.2.18)(react@18.2.0):
dependencies:
+ '@types/react': 18.2.18
react: 18.2.0
react-remove-scroll-bar: 2.3.6(@types/react@18.2.18)(react@18.2.0)
react-style-singleton: 2.2.1(@types/react@18.2.18)(react@18.2.0)
- tslib: 2.6.2
+ tslib: 2.7.0
use-callback-ref: 1.3.2(@types/react@18.2.18)(react@18.2.0)
use-sidecar: 1.1.2(@types/react@18.2.18)(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.18
-
- react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.1):
- dependencies:
- '@babel/core': 7.24.5
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.11.0)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- '@svgr/webpack': 5.5.0
- babel-jest: 27.5.1(@babel/core@7.24.5)
- babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- babel-plugin-named-asset-import: 0.3.8(@babel/core@7.24.5)
- babel-preset-react-app: 10.0.1
- bfj: 7.1.0
- browserslist: 4.23.0
- camelcase: 6.3.0
- case-sensitive-paths-webpack-plugin: 2.4.0
- css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- css-minimizer-webpack-plugin: 3.4.1(esbuild@0.18.20)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- dotenv: 10.0.0
- dotenv-expand: 5.1.0
- eslint: 8.57.0
- eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(eslint@8.57.0)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)))(typescript@4.9.5)
- eslint-webpack-plugin: 3.2.0(eslint@8.57.0)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- file-loader: 6.2.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- fs-extra: 10.1.0
- html-webpack-plugin: 5.6.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- identity-obj-proxy: 3.0.0
- jest: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- jest-resolve: 27.5.1
- jest-watch-typeahead: 1.1.0(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)))
- mini-css-extract-plugin: 2.9.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- postcss: 8.4.31
- postcss-flexbugs-fixes: 5.0.2(postcss@8.4.31)
- postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- postcss-normalize: 10.0.1(browserslist@4.23.0)(postcss@8.4.31)
- postcss-preset-env: 7.8.3(postcss@8.4.31)
- prompts: 2.4.2
- react: 18.2.0
- react-app-polyfill: 3.0.0
- react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- react-refresh: 0.11.0
- resolve: 1.22.8
- resolve-url-loader: 4.0.0
- sass-loader: 12.6.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- semver: 7.6.2
- source-map-loader: 3.0.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- tailwindcss: 3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- webpack-manifest-plugin: 4.1.1(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- workbox-webpack-plugin: 6.6.0(@types/babel__core@7.20.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- optionalDependencies:
- fsevents: 2.3.3
- typescript: 4.9.5
- transitivePeerDependencies:
- - '@babel/plugin-syntax-flow'
- - '@babel/plugin-transform-react-jsx'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@types/babel__core'
- - '@types/webpack'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - node-notifier
- - node-sass
- - rework
- - rework-visit
- - sass
- - sass-embedded
- - sockjs-client
- - supports-color
- - ts-node
- - type-fest
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
- react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))(type-fest@2.19.0)(typescript@5.1.6)(webpack-hot-middleware@2.26.1):
+ react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.7)(@babel/plugin-transform-react-jsx@7.25.2)(@swc/core@1.7.28)(esbuild@0.18.20)(eslint@8.57.1)(react@18.2.0)(typescript@5.1.6):
dependencies:
- '@babel/core': 7.24.5
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.11.0)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ '@babel/core': 7.25.2
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.11.0)(webpack-dev-server@4.15.2)(webpack@5.95.0)
'@svgr/webpack': 5.5.0
- babel-jest: 27.5.1(@babel/core@7.24.5)
- babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- babel-plugin-named-asset-import: 0.3.8(@babel/core@7.24.5)
+ babel-jest: 27.5.1(@babel/core@7.25.2)
+ babel-loader: 8.4.1(@babel/core@7.25.2)(webpack@5.95.0)
+ babel-plugin-named-asset-import: 0.3.8(@babel/core@7.25.2)
babel-preset-react-app: 10.0.1
bfj: 7.1.0
- browserslist: 4.23.0
+ browserslist: 4.24.0
camelcase: 6.3.0
case-sensitive-paths-webpack-plugin: 2.4.0
- css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- css-minimizer-webpack-plugin: 3.4.1(esbuild@0.18.20)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ css-loader: 6.11.0(webpack@5.95.0)
+ css-minimizer-webpack-plugin: 3.4.1(esbuild@0.18.20)(webpack@5.95.0)
dotenv: 10.0.0
dotenv-expand: 5.1.0
- eslint: 8.57.0
- eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(eslint@8.57.0)(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))(typescript@5.1.6)
- eslint-webpack-plugin: 3.2.0(eslint@8.57.0)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- file-loader: 6.2.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ eslint: 8.57.1
+ eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.24.7)(@babel/plugin-transform-react-jsx@7.25.2)(eslint@8.57.1)(jest@27.5.1)(typescript@5.1.6)
+ eslint-webpack-plugin: 3.2.0(eslint@8.57.1)(webpack@5.95.0)
+ file-loader: 6.2.0(webpack@5.95.0)
fs-extra: 10.1.0
- html-webpack-plugin: 5.6.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ html-webpack-plugin: 5.6.0(webpack@5.95.0)
identity-obj-proxy: 3.0.0
- jest: 27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
+ jest: 27.5.1
jest-resolve: 27.5.1
- jest-watch-typeahead: 1.1.0(jest@27.5.1(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)))
- mini-css-extract-plugin: 2.9.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ jest-watch-typeahead: 1.1.0(jest@27.5.1)
+ mini-css-extract-plugin: 2.9.1(webpack@5.95.0)
postcss: 8.4.31
postcss-flexbugs-fixes: 5.0.2(postcss@8.4.31)
- postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- postcss-normalize: 10.0.1(browserslist@4.23.0)(postcss@8.4.31)
+ postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.95.0)
+ postcss-normalize: 10.0.1(browserslist@4.24.0)(postcss@8.4.31)
postcss-preset-env: 7.8.3(postcss@8.4.31)
prompts: 2.4.2
react: 18.2.0
react-app-polyfill: 3.0.0
- react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ react-dev-utils: 12.0.1(eslint@8.57.1)(typescript@5.1.6)(webpack@5.95.0)
react-refresh: 0.11.0
resolve: 1.22.8
resolve-url-loader: 4.0.0
- sass-loader: 12.6.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- semver: 7.6.2
- source-map-loader: 3.0.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- tailwindcss: 3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
- terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- webpack-manifest-plugin: 4.1.1(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- workbox-webpack-plugin: 6.6.0(@types/babel__core@7.20.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
+ sass-loader: 12.6.0(webpack@5.95.0)
+ semver: 7.6.3
+ source-map-loader: 3.0.2(webpack@5.95.0)
+ style-loader: 3.3.4(webpack@5.95.0)
+ tailwindcss: 3.4.13
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.28)(esbuild@0.18.20)(webpack@5.95.0)
+ typescript: 5.1.6
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
+ webpack-dev-server: 4.15.2(webpack@5.95.0)
+ webpack-manifest-plugin: 4.1.1(webpack@5.95.0)
+ workbox-webpack-plugin: 6.6.0(webpack@5.95.0)
optionalDependencies:
fsevents: 2.3.3
- typescript: 5.1.6
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -22972,12 +23968,11 @@ snapshots:
react-style-singleton@2.2.1(@types/react@18.2.18)(react@18.2.0):
dependencies:
+ '@types/react': 18.2.18
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
- tslib: 2.6.2
- optionalDependencies:
- '@types/react': 18.2.18
+ tslib: 2.7.0
react@17.0.2:
dependencies:
@@ -22988,14 +23983,12 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- reactflow@11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ reactflow@11.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
dependencies:
- '@reactflow/background': 11.3.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@reactflow/controls': 11.2.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@reactflow/core': 11.11.3(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@reactflow/minimap': 11.7.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@reactflow/node-resizer': 2.2.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@reactflow/node-toolbar': 1.3.13(@types/react@18.2.18)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@reactflow/background': 11.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@reactflow/controls': 11.0.4(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@reactflow/core': 11.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
+ '@reactflow/minimap': 11.1.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
@@ -23046,13 +24039,13 @@ snapshots:
dependencies:
picomatch: 2.3.1
- recast@0.23.7:
+ recast@0.23.9:
dependencies:
ast-types: 0.16.1
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.6.2
+ tslib: 2.7.0
recursive-readdir@2.2.3:
dependencies:
@@ -23071,9 +24064,9 @@ snapshots:
es-errors: 1.3.0
get-intrinsic: 1.2.4
globalthis: 1.0.4
- which-builtin-type: 1.1.3
+ which-builtin-type: 1.1.4
- regenerate-unicode-properties@10.1.1:
+ regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
@@ -23085,7 +24078,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
regex-parser@2.3.0: {}
@@ -23098,14 +24091,16 @@ snapshots:
es-errors: 1.3.0
set-function-name: 2.0.2
+ regexpp@3.2.0: {}
+
regexpu-core@5.3.2:
dependencies:
'@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.1
+ regenerate-unicode-properties: 10.2.0
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
+ unicode-match-property-value-ecmascript: 2.2.0
regjsparser@0.9.1:
dependencies:
@@ -23195,13 +24190,13 @@ snapshots:
resolve@1.22.8:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -23232,36 +24227,36 @@ snapshots:
rollup-plugin-terser@7.0.2(rollup@2.79.1):
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.24.7
jest-worker: 26.6.2
rollup: 2.79.1
serialize-javascript: 4.0.0
- terser: 5.31.0
+ terser: 5.33.0
rollup@2.79.1:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.17.2:
+ rollup@4.22.4:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.17.2
- '@rollup/rollup-android-arm64': 4.17.2
- '@rollup/rollup-darwin-arm64': 4.17.2
- '@rollup/rollup-darwin-x64': 4.17.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.17.2
- '@rollup/rollup-linux-arm-musleabihf': 4.17.2
- '@rollup/rollup-linux-arm64-gnu': 4.17.2
- '@rollup/rollup-linux-arm64-musl': 4.17.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2
- '@rollup/rollup-linux-riscv64-gnu': 4.17.2
- '@rollup/rollup-linux-s390x-gnu': 4.17.2
- '@rollup/rollup-linux-x64-gnu': 4.17.2
- '@rollup/rollup-linux-x64-musl': 4.17.2
- '@rollup/rollup-win32-arm64-msvc': 4.17.2
- '@rollup/rollup-win32-ia32-msvc': 4.17.2
- '@rollup/rollup-win32-x64-msvc': 4.17.2
+ '@rollup/rollup-android-arm-eabi': 4.22.4
+ '@rollup/rollup-android-arm64': 4.22.4
+ '@rollup/rollup-darwin-arm64': 4.22.4
+ '@rollup/rollup-darwin-x64': 4.22.4
+ '@rollup/rollup-linux-arm-gnueabihf': 4.22.4
+ '@rollup/rollup-linux-arm-musleabihf': 4.22.4
+ '@rollup/rollup-linux-arm64-gnu': 4.22.4
+ '@rollup/rollup-linux-arm64-musl': 4.22.4
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4
+ '@rollup/rollup-linux-riscv64-gnu': 4.22.4
+ '@rollup/rollup-linux-s390x-gnu': 4.22.4
+ '@rollup/rollup-linux-x64-gnu': 4.22.4
+ '@rollup/rollup-linux-x64-musl': 4.22.4
+ '@rollup/rollup-win32-arm64-msvc': 4.22.4
+ '@rollup/rollup-win32-ia32-msvc': 4.22.4
+ '@rollup/rollup-win32-x64-msvc': 4.22.4
fsevents: 2.3.3
run-parallel@1.2.0:
@@ -23270,7 +24265,7 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.6.2
+ tslib: 2.7.0
sade@1.8.1:
dependencies:
@@ -23299,17 +24294,17 @@ snapshots:
safe-stable-stringify@1.1.1: {}
- safe-stable-stringify@2.4.3: {}
+ safe-stable-stringify@2.5.0: {}
safer-buffer@2.1.2: {}
sanitize.css@13.0.0: {}
- sass-loader@12.6.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ sass-loader@12.6.0(webpack@5.95.0):
dependencies:
klona: 2.0.6
neo-async: 2.6.2
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
sax@1.2.4: {}
@@ -23347,9 +24342,9 @@ snapshots:
schema-utils@4.2.0:
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.13.0
- ajv-formats: 2.1.1(ajv@8.13.0)
- ajv-keywords: 5.1.0(ajv@8.13.0)
+ ajv: 8.17.1
+ ajv-formats: 2.1.1(ajv@8.17.1)
+ ajv-keywords: 5.1.0(ajv@8.17.1)
select-hose@2.0.0: {}
@@ -23362,9 +24357,9 @@ snapshots:
semver@6.3.1: {}
- semver@7.6.2: {}
+ semver@7.6.3: {}
- send@0.18.0:
+ send@0.19.0:
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -23385,7 +24380,7 @@ snapshots:
sentence-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
upper-case-first: 2.0.2
serialize-javascript@4.0.0:
@@ -23408,12 +24403,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serve-static@1.15.0:
+ serve-static@1.16.2:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 0.19.0
transitivePeerDependencies:
- supports-color
@@ -23466,7 +24461,7 @@ snapshots:
call-bind: 1.0.7
es-errors: 1.3.0
get-intrinsic: 1.2.4
- object-inspect: 1.13.1
+ object-inspect: 1.13.2
signal-exit@3.0.7: {}
@@ -23474,7 +24469,7 @@ snapshots:
simple-eval@1.0.0:
dependencies:
- jsep: 1.3.8
+ jsep: 1.3.9
sisteransi@1.0.5: {}
@@ -23506,7 +24501,7 @@ snapshots:
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.7.0
sockjs@0.3.24:
dependencies:
@@ -23516,14 +24511,14 @@ snapshots:
source-list-map@2.0.1: {}
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
- source-map-loader@3.0.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ source-map-loader@3.0.2(webpack@5.95.0):
dependencies:
abab: 2.0.6
iconv-lite: 0.6.3
- source-map-js: 1.2.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ source-map-js: 1.2.1
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
source-map-support@0.5.21:
dependencies:
@@ -23554,20 +24549,20 @@ snapshots:
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.17
+ spdx-license-ids: 3.0.20
spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.17
+ spdx-license-ids: 3.0.20
- spdx-license-ids@3.0.17: {}
+ spdx-license-ids@3.0.20: {}
spdy-transport@3.0.0:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -23578,7 +24573,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -23624,9 +24619,9 @@ snapshots:
store2@2.14.3: {}
- storybook@7.6.19:
+ storybook@7.6.20:
dependencies:
- '@storybook/cli': 7.6.19
+ '@storybook/cli': 7.6.20
transitivePeerDependencies:
- bufferutil
- encoding
@@ -23677,6 +24672,11 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
+ string.prototype.includes@2.0.0:
+ dependencies:
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+
string.prototype.matchall@4.0.11:
dependencies:
call-bind: 1.0.7
@@ -23692,6 +24692,11 @@ snapshots:
set-function-name: 2.0.2
side-channel: 1.0.6
+ string.prototype.repeat@1.0.0:
+ dependencies:
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+
string.prototype.trim@1.2.9:
dependencies:
call-bind: 1.0.7
@@ -23731,7 +24736,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom@3.0.0: {}
@@ -23759,30 +24764,33 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- style-loader@3.3.4(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ style-loader@3.3.4(webpack@5.75.0):
dependencies:
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
+
+ style-loader@3.3.4(webpack@5.95.0):
+ dependencies:
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
style-mod@4.1.2: {}
- styled-jsx@5.1.1(@babel/core@7.12.9)(react@18.2.0):
+ styled-jsx@5.1.1(@babel/core@7.25.2)(react@18.2.0):
dependencies:
+ '@babel/core': 7.25.2
client-only: 0.0.1
react: 18.2.0
- optionalDependencies:
- '@babel/core': 7.12.9
stylehacks@5.1.1(postcss@8.4.31):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
postcss: 8.4.31
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
sucrase@3.35.0:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.3.15
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -23832,14 +24840,14 @@ snapshots:
css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
stable: 0.1.8
- swc-loader@0.2.6(@swc/core@1.5.7(@swc/helpers@0.5.5))(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ swc-loader@0.2.6(@swc/core@1.7.28)(webpack@5.75.0):
dependencies:
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
+ '@swc/core': 1.7.28
'@swc/counter': 0.1.3
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
symbol-tree@3.2.4: {}
@@ -23853,9 +24861,9 @@ snapshots:
tailwind-merge@2.3.0:
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.25.6
- tailwindcss@3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5)):
+ tailwindcss@3.3.3(ts-node@10.9.1):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -23865,24 +24873,24 @@ snapshots:
fast-glob: 3.3.2
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.21.0
+ jiti: 1.21.6
lilconfig: 2.1.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
postcss: 8.4.31
postcss-import: 15.1.0(postcss@8.4.31)
postcss-js: 4.0.1(postcss@8.4.31)
- postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5))
- postcss-nested: 6.0.1(postcss@8.4.31)
- postcss-selector-parser: 6.0.16
+ postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.1)
+ postcss-nested: 6.2.0(postcss@8.4.31)
+ postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- tailwindcss@3.3.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)):
+ tailwindcss@3.4.13:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -23892,24 +24900,24 @@ snapshots:
fast-glob: 3.3.2
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.21.0
+ jiti: 1.21.6
lilconfig: 2.1.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
postcss: 8.4.31
postcss-import: 15.1.0(postcss@8.4.31)
postcss-js: 4.0.1(postcss@8.4.31)
- postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
- postcss-nested: 6.0.1(postcss@8.4.31)
- postcss-selector-parser: 6.0.16
+ postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.1)
+ postcss-nested: 6.2.0(postcss@8.4.31)
+ postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6)):
+ tailwindcss@3.4.3:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -23919,18 +24927,18 @@ snapshots:
fast-glob: 3.3.2
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.21.0
+ jiti: 1.21.6
lilconfig: 2.1.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
postcss: 8.4.31
postcss-import: 15.1.0(postcss@8.4.31)
postcss-js: 4.0.1(postcss@8.4.31)
- postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6))
- postcss-nested: 6.0.1(postcss@8.4.31)
- postcss-selector-parser: 6.0.16
+ postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.1)
+ postcss-nested: 6.2.0(postcss@8.4.31)
+ postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
@@ -23944,7 +24952,7 @@ snapshots:
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
- pump: 3.0.0
+ pump: 3.0.2
tar-stream: 2.2.0
tar-stream@2.2.0:
@@ -23996,33 +25004,42 @@ snapshots:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- terser-webpack-plugin@5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.7.28)(esbuild@0.18.20)(webpack@5.75.0):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
+ '@swc/core': 1.7.28
+ esbuild: 0.18.20
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.31.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
- optionalDependencies:
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
+ terser: 5.33.0
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
+
+ terser-webpack-plugin@5.3.10(@swc/core@1.7.28)(esbuild@0.18.20)(webpack@5.95.0):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ '@swc/core': 1.7.28
esbuild: 0.18.20
+ jest-worker: 27.5.1
+ schema-utils: 3.3.0
+ serialize-javascript: 6.0.2
+ terser: 5.33.0
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
- terser-webpack-plugin@5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.5))(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))):
+ terser-webpack-plugin@5.3.10(@swc/core@1.7.28)(webpack@5.75.0):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
+ '@swc/core': 1.7.28
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.31.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))
- optionalDependencies:
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
+ terser: 5.33.0
+ webpack: 5.75.0(@swc/core@1.7.28)
- terser@5.31.0:
+ terser@5.33.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.11.3
+ acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
@@ -24083,7 +25100,7 @@ snapshots:
dependencies:
is-number: 7.0.0
- tocbot@4.27.20: {}
+ tocbot@4.29.0: {}
toidentifier@1.0.1: {}
@@ -24126,66 +25143,26 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-loader@9.5.1(typescript@5.1.6)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ ts-loader@9.4.3(typescript@5.1.6)(webpack@5.75.0):
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.16.1
- micromatch: 4.0.5
- semver: 7.6.2
- source-map: 0.7.4
+ enhanced-resolve: 5.17.1
+ micromatch: 4.0.8
+ semver: 7.6.3
typescript: 5.1.6
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
-
- ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@16.18.97)(typescript@4.9.5):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 16.18.97
- acorn: 8.11.3
- acorn-walk: 8.3.2
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 4.9.5
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
-
- ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@18.19.33)(typescript@4.9.5):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 18.19.33
- acorn: 8.11.3
- acorn-walk: 8.3.2
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 4.9.5
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
- ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@4.9.5):
+ ts-node@10.9.1(@swc/core@1.7.28)(@types/node@16.18.109)(typescript@4.9.5):
dependencies:
'@cspotcode/source-map-support': 0.8.1
+ '@swc/core': 1.7.28
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.4.6
- acorn: 8.11.3
- acorn-walk: 8.3.2
+ '@types/node': 16.18.109
+ acorn: 8.12.1
+ acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
@@ -24193,20 +25170,18 @@ snapshots:
typescript: 4.9.5
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
- optional: true
- ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@5.1.6):
+ ts-node@10.9.1(@swc/core@1.7.28)(@types/node@20.4.6)(typescript@5.1.6):
dependencies:
'@cspotcode/source-map-support': 0.8.1
+ '@swc/core': 1.7.28
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 20.4.6
- acorn: 8.11.3
- acorn-walk: 8.3.2
+ acorn: 8.12.1
+ acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
@@ -24214,11 +25189,9 @@ snapshots:
typescript: 5.1.6
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
ts-pnp@1.2.0(typescript@5.1.6):
- optionalDependencies:
+ dependencies:
typescript: 5.1.6
tsconfig-paths@3.15.0:
@@ -24230,36 +25203,50 @@ snapshots:
tslib@1.14.1: {}
- tslib@2.6.2: {}
+ tslib@2.7.0: {}
- tsup@8.0.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@4.9.5))(typescript@4.9.5):
+ tsup@8.0.2(postcss@8.4.31)(typescript@4.9.4):
dependencies:
- bundle-require: 4.1.0(esbuild@0.19.12)
+ bundle-require: 4.2.1(esbuild@0.19.12)
cac: 6.7.14
chokidar: 3.6.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
esbuild: 0.19.12
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@20.4.6)(typescript@4.9.5))
+ postcss: 8.4.31
+ postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.1)
resolve-from: 5.0.0
- rollup: 4.17.2
+ rollup: 4.22.4
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tree-kill: 1.2.2
- optionalDependencies:
- '@swc/core': 1.5.7(@swc/helpers@0.5.5)
- postcss: 8.4.31
- typescript: 4.9.5
+ typescript: 4.9.4
transitivePeerDependencies:
- supports-color
- ts-node
- tsutils@3.21.0(typescript@4.9.5):
+ tsup@8.0.2(typescript@5.1.6):
dependencies:
- tslib: 1.14.1
- typescript: 4.9.5
+ bundle-require: 4.2.1(esbuild@0.19.12)
+ cac: 6.7.14
+ chokidar: 3.6.0
+ debug: 4.3.7(supports-color@8.1.1)
+ esbuild: 0.19.12
+ execa: 5.1.1
+ globby: 11.1.0
+ joycon: 3.1.1
+ postcss-load-config: 4.0.2(postcss@8.4.31)(ts-node@10.9.1)
+ resolve-from: 5.0.0
+ rollup: 4.22.4
+ source-map: 0.8.0-beta.0
+ sucrase: 3.35.0
+ tree-kill: 1.2.2
+ typescript: 5.1.6
+ transitivePeerDependencies:
+ - supports-color
+ - ts-node
tsutils@3.21.0(typescript@5.1.6):
dependencies:
@@ -24280,32 +25267,32 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- turbo-darwin-64@1.13.3:
+ turbo-darwin-64@1.12.4:
optional: true
- turbo-darwin-arm64@1.13.3:
+ turbo-darwin-arm64@1.12.4:
optional: true
- turbo-linux-64@1.13.3:
+ turbo-linux-64@1.12.4:
optional: true
- turbo-linux-arm64@1.13.3:
+ turbo-linux-arm64@1.12.4:
optional: true
- turbo-windows-64@1.13.3:
+ turbo-windows-64@1.12.4:
optional: true
- turbo-windows-arm64@1.13.3:
+ turbo-windows-arm64@1.12.4:
optional: true
- turbo@1.13.3:
+ turbo@1.12.4:
optionalDependencies:
- turbo-darwin-64: 1.13.3
- turbo-darwin-arm64: 1.13.3
- turbo-linux-64: 1.13.3
- turbo-linux-arm64: 1.13.3
- turbo-windows-64: 1.13.3
- turbo-windows-arm64: 1.13.3
+ turbo-darwin-64: 1.12.4
+ turbo-darwin-arm64: 1.12.4
+ turbo-linux-64: 1.12.4
+ turbo-linux-arm64: 1.12.4
+ turbo-windows-64: 1.12.4
+ turbo-windows-arm64: 1.12.4
tweetnacl@0.14.5: {}
@@ -24319,6 +25306,8 @@ snapshots:
type-detect@4.0.8: {}
+ type-detect@4.1.0: {}
+
type-fest@0.13.1: {}
type-fest@0.16.0: {}
@@ -24376,43 +25365,45 @@ snapshots:
typedarray@0.0.6: {}
- typescript-json-schema@0.57.0(@swc/core@1.5.7(@swc/helpers@0.5.5)):
+ typescript-json-schema@0.57.0(@swc/core@1.7.28):
dependencies:
'@types/json-schema': 7.0.15
- '@types/node': 16.18.97
+ '@types/node': 16.18.109
glob: 7.2.3
path-equal: 1.2.5
- safe-stable-stringify: 2.4.3
- ts-node: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@16.18.97)(typescript@4.9.5)
+ safe-stable-stringify: 2.5.0
+ ts-node: 10.9.1(@swc/core@1.7.28)(@types/node@16.18.109)(typescript@4.9.5)
typescript: 4.9.5
yargs: 17.7.2
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
- typescript-json-schema@0.58.1(@swc/core@1.5.7(@swc/helpers@0.5.5)):
+ typescript-json-schema@0.58.1(@swc/core@1.7.28):
dependencies:
'@types/json-schema': 7.0.15
- '@types/node': 16.18.97
+ '@types/node': 16.18.109
glob: 7.2.3
path-equal: 1.2.5
- safe-stable-stringify: 2.4.3
- ts-node: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.5))(@types/node@16.18.97)(typescript@4.9.5)
+ safe-stable-stringify: 2.5.0
+ ts-node: 10.9.1(@swc/core@1.7.28)(@types/node@16.18.109)(typescript@4.9.5)
typescript: 4.9.5
yargs: 17.7.2
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
+ typescript@4.9.4: {}
+
typescript@4.9.5: {}
typescript@5.1.6: {}
uc.micro@1.0.6: {}
- ufo@1.5.3: {}
+ ufo@1.5.4: {}
- uglify-js@3.17.4:
+ uglify-js@3.19.3:
optional: true
unbox-primitive@1.0.2:
@@ -24431,20 +25422,20 @@ snapshots:
undici-types@5.26.5: {}
- unicode-canonical-property-names-ecmascript@2.0.0: {}
+ unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-canonical-property-names-ecmascript: 2.0.1
unicode-property-aliases-ecmascript: 2.1.0
- unicode-match-property-value-ecmascript@2.1.0: {}
+ unicode-match-property-value-ecmascript@2.2.0: {}
unicode-property-aliases-ecmascript@2.1.0: {}
unified@10.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
@@ -24460,31 +25451,31 @@ snapshots:
unist-util-is@5.2.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position@3.0.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-visit-parents@3.1.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
unist-util-visit-parents@5.1.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit@2.0.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
unist-util-visit-parents: 3.1.1
unist-util-visit@4.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
@@ -24496,12 +25487,10 @@ snapshots:
unpipe@1.0.0: {}
- unplugin@1.10.1:
+ unplugin@1.14.1:
dependencies:
- acorn: 8.11.3
- chokidar: 3.6.0
- webpack-sources: 3.2.3
- webpack-virtual-modules: 0.6.1
+ acorn: 8.12.1
+ webpack-virtual-modules: 0.6.2
unquote@1.1.1: {}
@@ -24509,19 +25498,19 @@ snapshots:
upath@1.2.0: {}
- update-browserslist-db@1.0.16(browserslist@4.23.0):
+ update-browserslist-db@1.1.0(browserslist@4.24.0):
dependencies:
- browserslist: 4.23.0
- escalade: 3.1.2
- picocolors: 1.0.1
+ browserslist: 4.24.0
+ escalade: 3.2.0
+ picocolors: 1.1.0
upper-case-first@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.7.0
upper-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.7.0
uri-js@4.4.1:
dependencies:
@@ -24534,33 +25523,37 @@ snapshots:
querystringify: 2.2.0
requires-port: 1.0.0
- url@0.11.3:
+ url@0.11.0:
+ dependencies:
+ punycode: 1.3.2
+ querystring: 0.2.0
+
+ url@0.11.4:
dependencies:
punycode: 1.4.1
- qs: 6.12.1
+ qs: 6.13.0
urlpattern-polyfill@8.0.2: {}
use-callback-ref@1.3.2(@types/react@18.2.18)(react@18.2.0):
dependencies:
- react: 18.2.0
- tslib: 2.6.2
- optionalDependencies:
'@types/react': 18.2.18
+ react: 18.2.0
+ tslib: 2.7.0
- use-resize-observer@8.0.0(react-dom@17.0.2(react@18.2.0))(react@18.2.0):
+ use-resize-observer@8.0.0(react-dom@17.0.2)(react@18.2.0):
dependencies:
'@juggle/resize-observer': 3.4.0
react: 18.2.0
react-dom: 17.0.2(react@18.2.0)
- use-resize-observer@8.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ use-resize-observer@8.0.0(react-dom@18.2.0)(react@18.2.0):
dependencies:
'@juggle/resize-observer': 3.4.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- use-resize-observer@9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ use-resize-observer@9.1.0(react-dom@18.2.0)(react@18.2.0):
dependencies:
'@juggle/resize-observer': 3.4.0
react: 18.2.0
@@ -24568,11 +25561,10 @@ snapshots:
use-sidecar@1.1.2(@types/react@18.2.18)(react@18.2.0):
dependencies:
+ '@types/react': 18.2.18
detect-node-es: 1.1.0
react: 18.2.0
- tslib: 2.6.2
- optionalDependencies:
- '@types/react': 18.2.18
+ tslib: 2.7.0
use-sync-external-store@1.2.0(react@18.2.0):
dependencies:
@@ -24635,17 +25627,17 @@ snapshots:
vfile-message@3.1.4:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position: 3.0.3
vfile@5.3.7:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
- vscode-languageserver-textdocument@1.0.11: {}
+ vscode-languageserver-textdocument@1.0.12: {}
vscode-languageserver-types@3.17.5: {}
@@ -24669,7 +25661,7 @@ snapshots:
dependencies:
makeerror: 1.0.12
- watchpack@2.4.1:
+ watchpack@2.4.2:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -24684,7 +25676,7 @@ snapshots:
web-vitals@2.1.4: {}
- web-vitals@3.5.2: {}
+ web-vitals@3.1.0: {}
webapi-parser@0.5.0:
dependencies:
@@ -24698,26 +25690,25 @@ snapshots:
webidl-conversions@6.1.0: {}
- webpack-dev-middleware@5.3.4(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ webpack-dev-middleware@5.3.4(webpack@5.95.0):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
- webpack-dev-middleware@6.1.3(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ webpack-dev-middleware@6.1.3(webpack@5.75.0):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- optionalDependencies:
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.75.0(@swc/core@1.7.28)(esbuild@0.18.20)
- webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ webpack-dev-server@4.15.2(webpack@5.95.0):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -24725,7 +25716,7 @@ snapshots:
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
- '@types/ws': 8.5.10
+ '@types/ws': 8.5.12
ansi-html-community: 0.0.8
bonjour-service: 1.2.1
chokidar: 3.6.0
@@ -24733,12 +25724,12 @@ snapshots:
compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.19.2
+ express: 4.21.0
graceful-fs: 4.2.11
html-entities: 2.5.2
http-proxy-middleware: 2.0.6(@types/express@4.17.21)
ipaddr.js: 2.2.0
- launch-editor: 2.6.1
+ launch-editor: 2.9.1
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
@@ -24747,10 +25738,9 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 5.3.4(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- ws: 8.17.0
- optionalDependencies:
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
+ webpack-dev-middleware: 5.3.4(webpack@5.95.0)
+ ws: 8.18.0
transitivePeerDependencies:
- bufferutil
- debug
@@ -24763,18 +25753,12 @@ snapshots:
html-entities: 2.5.2
strip-ansi: 6.0.1
- webpack-manifest-plugin@4.1.1(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ webpack-manifest-plugin@4.1.1(webpack@5.95.0):
dependencies:
tapable: 2.2.1
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
webpack-sources: 2.3.1
- webpack-merge@5.10.0:
- dependencies:
- clone-deep: 4.0.1
- flat: 5.0.2
- wildcard: 2.0.1
-
webpack-sources@1.4.3:
dependencies:
source-list-map: 2.0.1
@@ -24789,21 +25773,21 @@ snapshots:
webpack-virtual-modules@0.5.0: {}
- webpack-virtual-modules@0.6.1: {}
+ webpack-virtual-modules@0.6.2: {}
- webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5)):
+ webpack@5.75.0(@swc/core@1.7.28):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.11.3
- acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.1
- es-module-lexer: 1.5.2
+ '@types/estree': 0.0.51
+ '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/wasm-edit': 1.11.1
+ '@webassemblyjs/wasm-parser': 1.11.1
+ acorn: 8.12.1
+ acorn-import-assertions: 1.9.0(acorn@8.12.1)
+ browserslist: 4.24.0
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 0.9.3
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -24814,27 +25798,57 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.5))(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5)))
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.28)(webpack@5.75.0)
+ watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20):
+ webpack@5.75.0(@swc/core@1.7.28)(esbuild@0.18.20):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.5
+ '@types/estree': 0.0.51
+ '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/wasm-edit': 1.11.1
+ '@webassemblyjs/wasm-parser': 1.11.1
+ acorn: 8.12.1
+ acorn-import-assertions: 1.9.0(acorn@8.12.1)
+ browserslist: 4.24.0
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 0.9.3
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.0
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 3.3.0
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.28)(esbuild@0.18.20)(webpack@5.75.0)
+ watchpack: 2.4.2
+ webpack-sources: 3.2.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+
+ webpack@5.95.0(@swc/core@1.7.28)(esbuild@0.18.20):
+ dependencies:
+ '@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.11.3
- acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.1
- es-module-lexer: 1.5.2
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
+ browserslist: 4.24.0
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 1.5.4
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -24845,8 +25859,8 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20))
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.28)(esbuild@0.18.20)(webpack@5.95.0)
+ watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
@@ -24894,7 +25908,7 @@ snapshots:
is-string: 1.0.7
is-symbol: 1.0.4
- which-builtin-type@1.1.3:
+ which-builtin-type@1.1.4:
dependencies:
function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
@@ -24918,7 +25932,7 @@ snapshots:
which-module@2.0.1: {}
- which-pm@2.0.0:
+ which-pm@2.2.0:
dependencies:
load-yaml-file: 0.2.0
path-exists: 4.0.0
@@ -24939,8 +25953,6 @@ snapshots:
dependencies:
isexe: 2.0.0
- wildcard@2.0.1: {}
-
word-wrap@1.2.5: {}
wordwrap@1.0.0: {}
@@ -24954,17 +25966,17 @@ snapshots:
dependencies:
workbox-core: 6.6.0
- workbox-build@6.6.0(@types/babel__core@7.20.5):
+ workbox-build@6.6.0:
dependencies:
- '@apideck/better-ajv-errors': 0.3.6(ajv@8.13.0)
- '@babel/core': 7.24.5
- '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/runtime': 7.24.5
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.5)(@types/babel__core@7.20.5)(rollup@2.79.1)
+ '@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
+ '@babel/core': 7.25.2
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/runtime': 7.25.6
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.25.2)(rollup@2.79.1)
'@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.1)
'@surma/rollup-plugin-off-main-thread': 2.2.3
- ajv: 8.13.0
+ ajv: 8.17.1
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
fs-extra: 9.1.0
@@ -25053,14 +26065,14 @@ snapshots:
workbox-sw@6.6.0: {}
- workbox-webpack-plugin@6.6.0(@types/babel__core@7.20.5)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)):
+ workbox-webpack-plugin@6.6.0(webpack@5.95.0):
dependencies:
fast-json-stable-stringify: 2.1.0
pretty-bytes: 5.6.0
upath: 1.2.0
- webpack: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.5))(esbuild@0.18.20)
+ webpack: 5.95.0(@swc/core@1.7.28)(esbuild@0.18.20)
webpack-sources: 1.4.3
- workbox-build: 6.6.0(@types/babel__core@7.20.5)
+ workbox-build: 6.6.0
transitivePeerDependencies:
- '@types/babel__core'
- supports-color
@@ -25108,13 +26120,13 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- ws@6.2.2:
+ ws@6.2.3:
dependencies:
async-limiter: 1.0.1
- ws@7.5.9: {}
+ ws@7.5.10: {}
- ws@8.17.0: {}
+ ws@8.18.0: {}
ws@8.7.0: {}
@@ -25138,7 +26150,7 @@ snapshots:
yaml@1.10.2: {}
- yaml@2.4.2: {}
+ yaml@2.5.1: {}
yargs-parser@18.1.3:
dependencies:
@@ -25166,7 +26178,7 @@ snapshots:
yargs@16.2.0:
dependencies:
cliui: 7.0.4
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -25176,7 +26188,7 @@ snapshots:
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -25192,14 +26204,12 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
- zustand@4.5.2(@types/react@18.2.18)(immer@9.0.21)(react@18.2.0):
+ zustand@4.5.2(@types/react@18.2.18)(react@18.2.0):
dependencies:
- use-sync-external-store: 1.2.0(react@18.2.0)
- optionalDependencies:
'@types/react': 18.2.18
- immer: 9.0.21
react: 18.2.0
+ use-sync-external-store: 1.2.0(react@18.2.0)
zwitch@2.0.4: {}