+
{!hideLayers && (
{
- const mapRef = React.useRef(null);
- const [unmountMap, setunmountMap] = React.useState(false);
//to prevent map re-initialization
+ const [unmountMap, setUnmountMap] = React.useState(false);
React.useLayoutEffect(() => {
- setunmountMap(false);
+ setUnmountMap(false);
return () => {
- setunmountMap(true);
+ setUnmountMap(true);
};
}, []);
- function highlightFeature(e: { target: any }) {
+ const mapRef = React.useRef(null);
+
+ const handleMouseOver = React.useCallback((e: { target: any }) => {
var layer = e.target;
layer.setStyle({
- weight: 3,
- color: selectedLayer?.includes('dark') ? '#ddd' : '#333',
- dashArray: '',
- fillOpacity: fillOpacity ? fillOpacity : 0.7,
+ fillColor: mapDataFn(
+ Number(layer.feature.properties[mapProperty]),
+ 'hover'
+ ),
});
- mouseover && mouseover(e.target);
- }
+ mouseover && mouseover(layer);
+ }, []);
- const resetHighlight = (e: { target: any }) => {
- e.target.setStyle(style(e.target.feature));
- mouseout && mouseout(e.target);
- };
+ const handleMouseOut = React.useCallback((e: { target: any }) => {
+ var layer = e.target;
+
+ layer.setStyle(style(layer.feature));
+ mouseout && mouseout(layer);
+ }, []);
+
+ function handleClick(e: { target: any }) {
+ var layer = e.target;
+
+ layer.setStyle({
+ fillColor: mapDataFn(
+ Number(layer.feature.properties[mapProperty]),
+ 'selected'
+ ),
+ });
- function zoomToFeature(e: { target: any }) {
if (zoomOnClick) {
const map = mapRef.current;
- map.fitBounds(e.target.getBounds());
+ map.fitBounds(layer.getBounds());
}
- click && click(e.target);
+ click && click(layer);
}
const onEachFeature = (
- feature: any,
+ _: any,
layer: { on: (arg0: { mouseover: any; mouseout: any; click: any }) => void }
) => {
layer.on({
- mouseover: highlightFeature,
- mouseout: resetHighlight,
- click: zoomToFeature,
+ mouseover: handleMouseOver,
+ mouseout: handleMouseOut,
+ click: handleClick,
});
};
const style: any = (feature: { properties: { [x: string]: number } }) => {
return {
- fillColor: mapDataFn
- ? mapDataFn(Number(feature.properties[mapProperty]))
- : '#fff',
+ fillColor: mapDataFn(Number(feature.properties[mapProperty]), 'default'),
weight: 1,
opacity: 1,
- color: selectedLayer?.includes('dark') ? '#eee' : '#444',
- dashArray: '2',
+ color: selectedLayer?.includes('dark')
+ ? '#eee'
+ : 'var(--mapareadistrict-border)',
fillOpacity: fillOpacity ? fillOpacity : 0.5,
};
};
@@ -174,8 +193,15 @@ const Map = ({
url={`https://cartodb-basemaps-{s}.global.ssl.fastly.net/${selectedLayer}/{z}/{x}/{y}.png`}
/>
{features && (
-
+ <>
+
+ >
)}
+ {!hideScale && }
);
} else {
@@ -222,14 +248,13 @@ const LayerSelector = ({
Change Layer
-
+
+
+
);
};
+
+export default React.memo(LeafletChoropleth);
diff --git a/packages/opub-viz/src/components/LeafletChoropleth/index.ts b/packages/opub-viz/src/components/LeafletChoropleth/index.ts
index 4db055e1..82017595 100644
--- a/packages/opub-viz/src/components/LeafletChoropleth/index.ts
+++ b/packages/opub-viz/src/components/LeafletChoropleth/index.ts
@@ -1 +1 @@
-export { LeafletChoropleth } from './LeafletChoropleth';
+export { default as LeafletChoropleth } from './LeafletChoropleth';
diff --git a/packages/opub-viz/src/components/ui/popover.tsx b/packages/opub-viz/src/components/ui/popover.tsx
index e41596de..dad6b92b 100644
--- a/packages/opub-viz/src/components/ui/popover.tsx
+++ b/packages/opub-viz/src/components/ui/popover.tsx
@@ -18,7 +18,7 @@ const PopoverContent = React.forwardRef<
align={align}
sideOffset={sideOffset}
className={cn(
- 'z-50 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2',
+ 'z-max rounded-1 border-1 bg-surfaceDefault p-4 shadow-elementPopover outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2',
className
)}
{...props}
diff --git a/packages/opub-viz/styles/base.css b/packages/opub-viz/styles/base.css
index 94a97292..61e046ba 100644
--- a/packages/opub-viz/styles/base.css
+++ b/packages/opub-viz/styles/base.css
@@ -1,3 +1,5 @@
+@import './tokens/_variables.css';
+
@tailwind base;
@tailwind components;
@tailwind utilities;
diff --git a/packages/opub-viz/styles/tokens/_variables.css b/packages/opub-viz/styles/tokens/_variables.css
new file mode 100644
index 00000000..e5ea60c1
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/_variables.css
@@ -0,0 +1,371 @@
+:root {
+ --lightmode-indigo-solid-1: #fdfdfe;
+ --lightmode-indigo-solid-2: #f8faff;
+ --lightmode-indigo-solid-3: #f0f4ff;
+ --lightmode-indigo-solid-4: #e6edfe;
+ --lightmode-indigo-solid-5: #d9e2fc;
+ --lightmode-indigo-solid-6: #c6d4f9;
+ --lightmode-indigo-solid-7: #aec0f5;
+ --lightmode-indigo-solid-8: #8da4ef;
+ --lightmode-indigo-solid-9: #3e63dd;
+ --lightmode-indigo-solid-10: #3a5ccc;
+ --lightmode-indigo-solid-11: #3451b2;
+ --lightmode-indigo-solid-12: #101d46;
+ --lightmode-blue-solid-1: #fbfdff;
+ --lightmode-blue-solid-2: #f5faff;
+ --lightmode-blue-solid-3: #edf6ff;
+ --lightmode-blue-solid-4: #e1f0ff;
+ --lightmode-blue-solid-5: #cee7fe;
+ --lightmode-blue-solid-6: #b7d9f8;
+ --lightmode-blue-solid-7: #96c7f2;
+ --lightmode-blue-solid-8: #5eb0ef;
+ --lightmode-blue-solid-9: #0091ff;
+ --lightmode-blue-solid-10: #0081f1;
+ --lightmode-blue-solid-11: #006adc;
+ --lightmode-blue-solid-12: #00254d;
+ --lightmode-violet-solid-1: #fdfcfe;
+ --lightmode-violet-solid-2: #fbfaff;
+ --lightmode-violet-solid-3: #f5f2ff;
+ --lightmode-violet-solid-4: #ede9fe;
+ --lightmode-violet-solid-5: #e4defc;
+ --lightmode-violet-solid-6: #d7cff9;
+ --lightmode-violet-solid-7: #c4b8f3;
+ --lightmode-violet-solid-8: #aa99ec;
+ --lightmode-violet-solid-9: #6e56cf;
+ --lightmode-violet-solid-10: #644fc1;
+ --lightmode-violet-solid-11: #5746af;
+ --lightmode-violet-solid-12: #20134b;
+ --lightmode-gray-slate-solid-1: #fbfcfd;
+ --lightmode-gray-slate-solid-2: #f8f9fa;
+ --lightmode-gray-slate-solid-3: #f1f3f5;
+ --lightmode-gray-slate-solid-4: #eceef0;
+ --lightmode-gray-slate-solid-5: #e6e8eb;
+ --lightmode-gray-slate-solid-6: #dfe3e6;
+ --lightmode-gray-slate-solid-7: #d7dbdf;
+ --lightmode-gray-slate-solid-8: #c1c8cd;
+ --lightmode-gray-slate-solid-9: #889096;
+ --lightmode-gray-slate-solid-10: #7e868c;
+ --lightmode-gray-slate-solid-11: #687076;
+ --lightmode-gray-slate-solid-12: #11181c;
+ --lightmode-red-solid-1: #fffcfc;
+ --lightmode-red-solid-2: #fff8f8;
+ --lightmode-red-solid-3: #ffefef;
+ --lightmode-red-solid-4: #ffe5e5;
+ --lightmode-red-solid-5: #fdd8d8;
+ --lightmode-red-solid-6: #f9c6c6;
+ --lightmode-red-solid-7: #f3aeaf;
+ --lightmode-red-solid-8: #eb9091;
+ --lightmode-red-solid-9: #e5484d;
+ --lightmode-red-solid-10: #dc3d43;
+ --lightmode-red-solid-11: #cd2b31;
+ --lightmode-red-solid-12: #381316;
+ --lightmode-green-solid-1: #fbfefc;
+ --lightmode-green-solid-2: #f2fcf5;
+ --lightmode-green-solid-3: #e9f9ee;
+ --lightmode-green-solid-4: #ddf3e4;
+ --lightmode-green-solid-5: #ccebd7;
+ --lightmode-green-solid-6: #b4dfc4;
+ --lightmode-green-solid-7: #92ceac;
+ --lightmode-green-solid-8: #5bb98c;
+ --lightmode-green-solid-9: #30a46c;
+ --lightmode-green-solid-10: #299764;
+ --lightmode-green-solid-11: #18794e;
+ --lightmode-green-solid-12: #153226;
+ --lightmode-amber-solid-1: #fefdfb;
+ --lightmode-amber-solid-2: #fff9ed;
+ --lightmode-amber-solid-3: #fff4d5;
+ --lightmode-amber-solid-4: #ffecbc;
+ --lightmode-amber-solid-5: #ffe3a2;
+ --lightmode-amber-solid-6: #ffd386;
+ --lightmode-amber-solid-7: #f3ba63;
+ --lightmode-amber-solid-8: #ee9d2b;
+ --lightmode-amber-solid-9: #ffb224;
+ --lightmode-amber-solid-10: #ffa01c;
+ --lightmode-amber-solid-11: #ad5700;
+ --lightmode-amber-solid-12: #4e2009;
+ --lightmode-pure-white: #ffffff;
+ --lightmode-pure-black: #000000;
+ --text-default: var(--lightmode-gray-slate-solid-12);
+ --text-subdued: #3e4346;
+ --text-disabled: var(--lightmode-gray-slate-solid-9);
+ --text-critical: var(--lightmode-red-solid-11);
+ --text-warning: var(--lightmode-amber-solid-11);
+ --text-success: var(--lightmode-green-solid-11);
+ --text-highlight: var(--lightmode-violet-solid-11);
+ --text-interactive: var(--lightmode-blue-solid-11);
+ --text-onbg-disabled: var(--lightmode-gray-slate-solid-6);
+ --text-onbg-default: var(--lightmode-pure-white);
+ --border-default: var(--lightmode-gray-slate-solid-8);
+ --border-subdued: var(--lightmode-gray-slate-solid-7);
+ --border-disabled: var(--lightmode-gray-slate-solid-6);
+ --border-critical-default: var(--lightmode-red-solid-8);
+ --border-critical-disabled: var(--lightmode-red-solid-7);
+ --border-critical-subdued: var(--lightmode-red-solid-6);
+ --border-success-default: var(--lightmode-green-solid-8);
+ --border-success-subdued: var(--lightmode-green-solid-7);
+ --border-warning-default: var(--lightmode-amber-solid-8);
+ --border-warning-subdued: var(--lightmode-amber-solid-7);
+ --border-highlight-default: var(--lightmode-violet-solid-8);
+ --border-highlight-subdued: var(--lightmode-violet-solid-7);
+ --border-interactive-default: var(--lightmode-blue-solid-8);
+ --border-interactive-focused: var(--lightmode-blue-solid-7);
+ --icon-default: var(--lightmode-gray-slate-solid-11);
+ --icon-subdued: var(--lightmode-gray-slate-solid-10);
+ --icon-disabled: var(--lightmode-gray-slate-solid-9);
+ --icon-critical: var(--lightmode-red-solid-10);
+ --action-primary-basic-default: var(--lightmode-violet-solid-9);
+ --icon-warning: var(--lightmode-amber-solid-10);
+ --action-primary-basic-hovered: var(--lightmode-violet-solid-10);
+ --icon-success: var(--lightmode-green-solid-10);
+ --action-primary-basic-pressed: var(--lightmode-violet-solid-11);
+ --icon-highlight: var(--lightmode-violet-solid-10);
+ --icon-interactive: var(--lightmode-indigo-solid-11);
+ --action-primary-basic-depressed: var(--lightmode-violet-solid-12);
+ --action-primary-disabled: var(--lightmode-gray-slate-solid-9);
+ --action-primary-critical-default: var(--lightmode-red-solid-9);
+ --action-primary-success-default: var(--lightmode-green-solid-9);
+ --action-primary-critical-hovered: var(--lightmode-red-solid-10);
+ --action-secondary-critical-pressed: var(--lightmode-red-solid-5);
+ --action-secondary-critical-hovered: var(--lightmode-red-solid-4);
+ --action-secondary-critical-depressed: var(--lightmode-red-solid-6);
+ --action-secondary-critical-default: var(--lightmode-red-solid-3);
+ --action-primary-interactive-default: var(--lightmode-blue-solid-9);
+ --action-primary-interactive-hovered: var(--lightmode-blue-solid-10);
+ --action-primary-interactive-pressed: var(--lightmode-blue-solid-11);
+ --action-primary-interactive-depressed: var(--lightmode-blue-solid-12);
+ --action-primary-success-hovered: var(--lightmode-green-solid-10);
+ --action-secondary-basic-default: var(--lightmode-violet-solid-3);
+ --action-primary-critical-pressed: var(--lightmode-red-solid-11);
+ --action-primary-critical-depressed: var(--lightmode-red-solid-12);
+ --action-secondary-disabled: var(--lightmode-gray-slate-solid-3);
+ --action-primary-success-pressed: var(--lightmode-green-solid-11);
+ --action-secondary-interactive-depressed: var(--lightmode-blue-solid-6);
+ --action-secondary-success-depressed: var(--lightmode-green-solid-6);
+ --action-secondary-success-pressed: var(--lightmode-green-solid-5);
+ --action-primary-success-depressed: var(--lightmode-green-solid-12);
+ --action-secondary-interactive-hovered: var(--lightmode-blue-solid-4);
+ --action-secondary-neutral-default: var(--lightmode-gray-slate-solid-1);
+ --action-secondary-interactive-pressed: var(--lightmode-blue-solid-5);
+ --action-secondary-success-hovered: var(--lightmode-green-solid-4);
+ --action-secondary-success-default: var(--lightmode-green-solid-3);
+ --action-secondary-interactive-default: var(--lightmode-blue-solid-3);
+ --action-secondary-neutral-hovered: var(--lightmode-gray-slate-solid-2);
+ --action-secondary-neutral-pressed: var(--lightmode-gray-slate-solid-5);
+ --action-secondary-basic-depressed: var(--lightmode-violet-solid-6);
+ --action-secondary-basic-hovered: var(--lightmode-violet-solid-4);
+ --action-secondary-basic-pressed: var(--lightmode-violet-solid-5);
+ --action-secondary-neutral-depressed: var(--lightmode-gray-slate-solid-6);
+ --action-tertiary-basic-hover: var(--lightmode-violet-alpha-2);
+ --lightmode-indigo-alpha-1: #05058203;
+ --action-tertiary-interactive-hover: var(--lightmode-blue-alpha-2);
+ --lightmode-indigo-alpha-2: #054cff08;
+ --action-tertiary-success-hover: var(--lightmode-green-alpha-2);
+ --action-tertiary-critical-hover: var(--lightmode-red-alpha-2);
+ --lightmode-indigo-alpha-3: #0144ff0f;
+ --lightmode-indigo-alpha-4: #0247f51a;
+ --lightmode-indigo-alpha-5: #023ceb26;
+ --lightmode-indigo-alpha-6: #013de438;
+ --lightmode-indigo-alpha-7: #0038e052;
+ --lightmode-indigo-alpha-8: #0134db73;
+ --lightmode-indigo-alpha-9: #0031d2c2;
+ --background-subdued: var(--lightmode-indigo-solid-2);
+ --background-dark: var(--lightmode-indigo-solid-12);
+ --background-default: var(--lightmode-indigo-solid-3);
+ --surface-default: var(--lightmode-pure-white);
+ --lightmode-indigo-alpha-10: #002cbdc4;
+ --surface-subdued: var(--lightmode-gray-slate-solid-2);
+ --lightmode-indigo-alpha-11: #00259ecc;
+ --surface-selected: var(--lightmode-blue-solid-2);
+ --lightmode-indigo-alpha-12: #000e3af0;
+ --surface-warning: var(--lightmode-amber-solid-2);
+ --surface-critical: var(--lightmode-red-solid-2);
+ --lightmode-blue-alpha-1: #0582ff05;
+ --lightmode-blue-alpha-2: #0582ff0a;
+ --surface-success: var(--lightmode-green-solid-2);
+ --surface-highlight-subdued: var(--lightmode-violet-solid-2);
+ --lightmode-blue-alpha-3: #0280ff12;
+ --lightmode-blue-alpha-4: #0180ff1f;
+ --surface-interactive: var(--lightmode-blue-solid-2);
+ --surface-highlight-default: var(--lightmode-violet-solid-4);
+ --lightmode-blue-alpha-5: #0180ef30;
+ --surface-highlight-hovered: var(--lightmode-violet-solid-6);
+ --lightmode-blue-alpha-6: #0177e647;
+ --lightmode-blue-alpha-7: #0077df69;
+ --lightmode-blue-alpha-8: #0082e6a1;
+ --lightmode-blue-alpha-9: #0091fffa;
+ --lightmode-blue-alpha-10: #0080f1fa;
+ --lightmode-blue-alpha-11: #0066dbfa;
+ --lightmode-blue-alpha-12: #002149fa;
+ --lightmode-violet-alpha-1: #5805ab03;
+ --lightmode-violet-alpha-2: #3705ff05;
+ --lightmode-violet-alpha-3: #3c00ff0d;
+ --lightmode-violet-alpha-4: #2e02f417;
+ --lightmode-violet-alpha-5: #2f01e821;
+ --lightmode-violet-alpha-6: #2a01df30;
+ --lightmode-violet-alpha-7: #2b01d447;
+ --lightmode-violet-alpha-8: #2a00d066;
+ --lightmode-violet-alpha-9: #2500b6a8;
+ --lightmode-violet-alpha-10: #1f00a5b0;
+ --lightmode-violet-alpha-11: #180091ba;
+ --lightmode-violet-alpha-12: #0e003ded;
+ --lightmode-gray-slate-alpha-1: #05448205;
+ --lightmode-gray-slate-alpha-2: #05294d08;
+ --lightmode-gray-slate-alpha-3: #0025490d;
+ --lightmode-gray-slate-alpha-4: #021c3714;
+ --lightmode-gray-slate-alpha-5: #0217351a;
+ --lightmode-gray-slate-alpha-6: #01213921;
+ --lightmode-gray-slate-alpha-7: #001a3329;
+ --lightmode-gray-slate-alpha-8: #011e323d;
+ --lightmode-gray-slate-alpha-9: #00111e78;
+ --lightmode-gray-slate-alpha-10: #00101b82;
+ --lightmode-gray-slate-alpha-11: #000e1896;
+ --lightmode-gray-slate-alpha-12: #00080ced;
+ --lightmode-green-alpha-1: #05c04305;
+ --lightmode-green-alpha-2: #00c43b0d;
+ --lightmode-green-alpha-3: #02ba3c17;
+ --lightmode-green-alpha-4: #01a63521;
+ --lightmode-green-alpha-5: #009b3633;
+ --lightmode-green-alpha-6: #0193364a;
+ --lightmode-green-alpha-7: #008c3d6e;
+ --lightmode-green-alpha-8: #00934ca3;
+ --lightmode-green-alpha-9: #008f4acf;
+ --lightmode-green-alpha-10: #008346d6;
+ --lightmode-green-alpha-11: #006b3be8;
+ --lightmode-green-alpha-12: #002012eb;
+ --lightmode-amber-alpha-1: #c0820505;
+ --lightmode-amber-alpha-2: #ffab0212;
+ --lightmode-amber-alpha-3: #ffbb012b;
+ --lightmode-amber-alpha-4: #ffb70042;
+ --lightmode-amber-alpha-5: #ffb3005e;
+ --lightmode-amber-alpha-6: #ffa20178;
+ --lightmode-amber-alpha-7: #ec8d009c;
+ --lightmode-amber-alpha-8: #ea8900d4;
+ --lightmode-amber-alpha-9: #ffa600db;
+ --lightmode-amber-alpha-10: #ff9500e3;
+ --lightmode-amber-alpha-11: #ab5300fa;
+ --lightmode-amber-alpha-12: #481800f5;
+ --lightmode-red-alpha-1: #ff050503;
+ --lightmode-red-alpha-2: #ff050508;
+ --lightmode-red-alpha-3: #ff01010f;
+ --lightmode-red-alpha-4: #ff00001a;
+ --lightmode-red-alpha-5: #f2000026;
+ --lightmode-red-alpha-6: #e4010138;
+ --lightmode-red-alpha-7: #d9000452;
+ --lightmode-red-alpha-8: #d1000470;
+ --lightmode-red-alpha-9: #db0007b8;
+ --lightmode-red-alpha-10: #d10007c2;
+ --lightmode-red-alpha-11: #c30007d4;
+ --lightmode-red-alpha-12: #280003ed;
+ --mapareadistrict-default: var(--surface-highlight-default);
+ --mapareadistrict-hover: var(--action-secondary-success-hovered);
+ --mapareadistrict-selected: var(--action-primary-basic-default);
+ --mapareadistrict-disabled: var(--action-primary-disabled);
+ --mapareadistrict-border: var(--lightmode-gray-slate-solid-9);
+ --border-focus: #ffffff03;
+
+ --space-0: 0px;
+ --space-025: 1px;
+ --space-05: 2px;
+ --space-1: 4px;
+ --space-2: 8px;
+ --space-3: 12px;
+ --space-4: 16px;
+ --space-5: 20px;
+ --space-6: 24px;
+ --space-8: 32px;
+ --space-10: 40px;
+ --space-12: 48px;
+ --space-16: 64px;
+ --space-20: 80px;
+ --space-24: 96px;
+ --space-32: 128px;
+
+ --border-radius-0: var(--space-0);
+ --border-radius-05: var(--space-05);
+ --border-radius-1: var(--space-1);
+ --border-radius-2: var(--space-2);
+ --border-radius-3: var(--space-3);
+ --border-radius-4: var(--space-4);
+ --border-radius-5: var(--space-5);
+ --border-radius-6: var(--space-6);
+ --border-radius-full: 9999px;
+ --border-width-1: var(--space-025);
+ --border-width-2: var(--space-05);
+ --border-width-4: var(--space-1);
+
+ --shadow-modal: 0px 26px 80px 0px rgba(0, 0, 0, 0.2),
+ 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
+ --shadow-layer: 0px 31px 41px 0px rgba(32, 42, 53, 0.2),
+ 0px 2px 16px 0px rgba(32, 42, 54, 0.08);
+ --shadow-inset-basic: inset -1px 0px 0px 0px rgba(228, 229, 231, 1);
+ --shadow-inset-button: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.2);
+ --shadow-button-pressed: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
+ --shadow-button-default: 0px 1px 0px 0px rgba(0, 0, 0, 0.05);
+ --shadow-basic-deep: 0px 2px 16px 0px rgba(33, 43, 54, 0.08),
+ 0px 0px 0px 1px rgba(6, 44, 82, 0.1);
+ --shadow-basic-faint: 0px 1px 0px 0px rgba(22, 29, 37, 0.05);
+ --shadow-basic-transparent: 0px 0px 0px 0px rgba(0, 0, 0, 0);
+ --shadow-basic-xs: 0px 0px 2px 0px rgba(31, 33, 36, 0.24);
+ --shadow-basic-sm: 0px 1px 1px 0px rgba(31, 33, 36, 0.1);
+ --shadow-basic-md: 0px 1px 6px 0px rgba(31, 33, 36, 0.05),
+ 0px 2px 4px 0px rgba(31, 33, 36, 0.1);
+ --shadow-basic-lg: 0px 2px 6px 0px rgba(31, 33, 36, 0.05),
+ 0px 4px 12px 0px rgba(31, 33, 36, 0.2);
+ --shadow-basic-xl: 0px 12px 18px -2px rgba(31, 33, 36, 0.15),
+ 0px 4px 18px -2px rgba(31, 33, 36, 0.08);
+ --shadow-basic-2xl: 0px 32px 56px -2px rgba(31, 33, 36, 0.16),
+ 0px 32px 32px 0px rgba(31, 33, 36, 0.15);
+ --shadow-element-popover: 0px 8px 20px -4px rgba(23, 24, 24, 0.12),
+ 0px 3px 6px -3px rgba(23, 24, 24, 0.08);
+ --shadow-element-card: 0px 1px 2px 0px rgba(0, 0, 0, 0.15),
+ 0px 0px 5px 0px rgba(23, 24, 24, 0.05);
+ --shadow-element-topnav: 0px 2px 2px -1px rgba(0, 0, 0, 0.15);
+ --shadow-element-focus: 0px 0px 0px 2px rgba(0, 145, 255, 1);
+
+ --z-1: 100;
+ --z-2: 400;
+ --z-3: 513;
+ --z-4: 514;
+ --z-5: 515;
+ --z-6: 516;
+ --z-7: 517;
+ --z-8: 518;
+ --z-9: 519;
+ --z-10: 520;
+ --z-max: 99999;
+
+ --duration-0: 0ms;
+ --duration-100: 100ms;
+ --duration-150: 150ms;
+ --duration-200: 200ms;
+ --duration-250: 250ms;
+ --duration-300: 300ms;
+ --duration-350: 350ms;
+ --duration-400: 400ms;
+ --duration-450: 450ms;
+ --duration-500: 500ms;
+ --duration-5000: 5000ms;
+
+ --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
+ --linear: cubic-bezier(0, 0, 1, 1);
+ --ease-in: cubic-bezier(0.42, 0, 1, 1);
+ --ease-out: cubic-bezier(0, 0, 0.58, 1);
+ --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
+
+ --font-size-75: 0.75rem;
+ --font-size-100: 0.875rem;
+ --font-size-200: 1rem;
+ --font-size-300: 1.25rem;
+ --font-size-400: 1.5rem;
+ --font-size-500: 1.75rem;
+ --font-size-600: 2rem;
+ --font-size-700: 2.5rem;
+
+ --font-line-height-1: 16px;
+ --font-line-height-2: 20px;
+ --font-line-height-3: 24px;
+ --font-line-height-4: 28px;
+ --font-line-height-5: 32px;
+ --font-line-height-6: 40px;
+ --font-line-height-7: 48px;
+}
diff --git a/packages/opub-viz/styles/tokens/_variables_dark.css b/packages/opub-viz/styles/tokens/_variables_dark.css
new file mode 100644
index 00000000..54da2e9f
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/_variables_dark.css
@@ -0,0 +1,48 @@
+@media (prefers-color-scheme: dark) {
+ html {
+ color-scheme: dark;
+ }
+
+ :root {
+ --background: #202123ff;
+ --background-hovered: #474849;
+ --background-pressed: #555a5e;
+ --background-selected: #2d2d33;
+ --background-invert: #f6f6f7ff;
+
+ --text: #b0b0bc;
+ --text-strong: #e7e7f1;
+ --text-subdued: #85858e;
+ /* --interactive: #8bb2ff; */
+ --interactive-hovered: #2c6ecbff;
+
+ --surface: #161619;
+ --surface-hovered: #2d2d33;
+ --surface-pressed: #474849;
+ --surface-selected: #474849;
+
+ --surface-attention: #454500;
+ --surface-information: #02382d;
+ --surface-warning: #4c250f;
+ --surface-subdued: #1e1e23;
+
+ --surface-selected: #202124;
+ --surface-critical-subdued: #201e1e;
+
+ --surface-neutral: #202123;
+ --surface-neutral-hovered: #474849;
+ --surface-neutral-pressed: #555a5e;
+ --surface-neutral-disabled: #555a5e;
+
+ --card-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.12);
+ --card-shadow-hover: 0 4px 7px hsla(0, 0%, 100%, 0.1),
+ inset 0 0 0 1px hsla(0, 0%, 100%, 0.12);
+
+ --backdrop: rgba(0, 0, 0, 0.5);
+
+ --icon: #eeeeee;
+ --icon-subdued: #dddddd;
+ --icon-hovered: #ffffff;
+ --icon-pressed: #dddddd;
+ }
+}
diff --git a/packages/opub-viz/styles/tokens/tailwind/border-radius.js b/packages/opub-viz/styles/tokens/tailwind/border-radius.js
new file mode 100644
index 00000000..fa5e5856
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/border-radius.js
@@ -0,0 +1,11 @@
+module.exports = {
+ "0": "var(--space-0)",
+ "05": "var(--space-05)",
+ "1": "var(--space-1)",
+ "2": "var(--space-2)",
+ "3": "var(--space-3)",
+ "4": "var(--space-4)",
+ "5": "var(--space-5)",
+ "6": "var(--space-6)",
+ "full": "9999px",
+}
diff --git a/packages/opub-viz/styles/tokens/tailwind/border-width.js b/packages/opub-viz/styles/tokens/tailwind/border-width.js
new file mode 100644
index 00000000..018a18b8
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/border-width.js
@@ -0,0 +1,5 @@
+module.exports = {
+ "1": "var(--space-025)",
+ "2": "var(--space-05)",
+ "4": "var(--space-1)",
+}
diff --git a/packages/opub-viz/styles/tokens/tailwind/box-shadow.js b/packages/opub-viz/styles/tokens/tailwind/box-shadow.js
new file mode 100644
index 00000000..32413699
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/box-shadow.js
@@ -0,0 +1,21 @@
+module.exports = {
+ "shadowModal": "var(--shadow-modal)",
+ "shadowLayer": "var(--shadow-layer)",
+ "insetBasic": "var(--shadow-inset-basic)",
+ "insetButton": "var(--shadow-inset-button)",
+ "buttonPressed": "var(--shadow-button-pressed)",
+ "buttonDefault": "var(--shadow-button-default)",
+ "basicDeep": "var(--shadow-basic-deep)",
+ "basicFaint": "var(--shadow-basic-faint)",
+ "basicTransparent": "var(--shadow-basic-transparent)",
+ "basicXs": "var(--shadow-basic-xs)",
+ "basicSm": "var(--shadow-basic-sm)",
+ "basicMd": "var(--shadow-basic-md)",
+ "basicLg": "var(--shadow-basic-lg)",
+ "basicXl": "var(--shadow-basic-xl)",
+ "basic2xl": "var(--shadow-basic-2xl)",
+ "elementPopover": "var(--shadow-element-popover)",
+ "elementCard": "var(--shadow-element-card)",
+ "elementTopNav": "var(--shadow-element-topnav)",
+ "elementFocus": "var(--shadow-element-focus)",
+}
diff --git a/packages/opub-viz/styles/tokens/tailwind/color.js b/packages/opub-viz/styles/tokens/tailwind/color.js
new file mode 100644
index 00000000..a716cfe7
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/color.js
@@ -0,0 +1,265 @@
+module.exports = {
+ lightmodeIndigoSolid1: '#FDFDFE',
+ lightmodeIndigoSolid2: '#F8FAFF',
+ lightmodeIndigoSolid3: '#F0F4FF',
+ lightmodeIndigoSolid4: '#E6EDFE',
+ lightmodeIndigoSolid5: '#D9E2FC',
+ lightmodeIndigoSolid6: '#C6D4F9',
+ lightmodeIndigoSolid7: '#AEC0F5',
+ lightmodeIndigoSolid8: '#8DA4EF',
+ lightmodeIndigoSolid9: '#3E63DD',
+ lightmodeIndigoSolid10: '#3A5CCC',
+ lightmodeIndigoSolid11: '#3451B2',
+ lightmodeIndigoSolid12: '#101D46',
+ lightmodeBlueSolid1: '#FBFDFF',
+ lightmodeBlueSolid2: '#F5FAFF',
+ lightmodeBlueSolid3: '#EDF6FF',
+ lightmodeBlueSolid4: '#E1F0FF',
+ lightmodeBlueSolid5: '#CEE7FE',
+ lightmodeBlueSolid6: '#B7D9F8',
+ lightmodeBlueSolid7: '#96C7F2',
+ lightmodeBlueSolid8: '#5EB0EF',
+ lightmodeBlueSolid9: '#0091FF',
+ lightmodeBlueSolid10: '#0081F1',
+ lightmodeBlueSolid11: '#006ADC',
+ lightmodeBlueSolid12: '#00254D',
+ lightmodeVioletSolid1: '#FDFCFE',
+ lightmodeVioletSolid2: '#FBFAFF',
+ lightmodeVioletSolid3: '#F5F2FF',
+ lightmodeVioletSolid4: '#EDE9FE',
+ lightmodeVioletSolid5: '#E4DEFC',
+ lightmodeVioletSolid6: '#D7CFF9',
+ lightmodeVioletSolid7: '#C4B8F3',
+ lightmodeVioletSolid8: '#AA99EC',
+ lightmodeVioletSolid9: '#6E56CF',
+ lightmodeVioletSolid10: '#644FC1',
+ lightmodeVioletSolid11: '#5746AF',
+ lightmodeVioletSolid12: '#20134B',
+ lightmodeGraySlateSolid1: '#FBFCFD',
+ lightmodeGraySlateSolid2: '#F8F9FA',
+ lightmodeGraySlateSolid3: '#F1F3F5',
+ lightmodeGraySlateSolid4: '#ECEEF0',
+ lightmodeGraySlateSolid5: '#E6E8EB',
+ lightmodeGraySlateSolid6: '#DFE3E6',
+ lightmodeGraySlateSolid7: '#D7DBDF',
+ lightmodeGraySlateSolid8: '#C1C8CD',
+ lightmodeGraySlateSolid9: '#889096',
+ lightmodeGraySlateSolid10: '#7E868C',
+ lightmodeGraySlateSolid11: '#687076',
+ lightmodeGraySlateSolid12: '#11181C',
+ lightmodeRedSolid1: '#FFFCFC',
+ lightmodeRedSolid2: '#FFF8F8',
+ lightmodeRedSolid3: '#FFEFEF',
+ lightmodeRedSolid4: '#FFE5E5',
+ lightmodeRedSolid5: '#FDD8D8',
+ lightmodeRedSolid6: '#F9C6C6',
+ lightmodeRedSolid7: '#F3AEAF',
+ lightmodeRedSolid8: '#EB9091',
+ lightmodeRedSolid9: '#E5484D',
+ lightmodeRedSolid10: '#DC3D43',
+ lightmodeRedSolid11: '#CD2B31',
+ lightmodeRedSolid12: '#381316',
+ lightmodeGreenSolid1: '#FBFEFC',
+ lightmodeGreenSolid2: '#F2FCF5',
+ lightmodeGreenSolid3: '#E9F9EE',
+ lightmodeGreenSolid4: '#DDF3E4',
+ lightmodeGreenSolid5: '#CCEBD7',
+ lightmodeGreenSolid6: '#B4DFC4',
+ lightmodeGreenSolid7: '#92CEAC',
+ lightmodeGreenSolid8: '#5BB98C',
+ lightmodeGreenSolid9: '#30A46C',
+ lightmodeGreenSolid10: '#299764',
+ lightmodeGreenSolid11: '#18794E',
+ lightmodeGreenSolid12: '#153226',
+ lightmodeAmberSolid1: '#FEFDFB',
+ lightmodeAmberSolid2: '#FFF9ED',
+ lightmodeAmberSolid3: '#FFF4D5',
+ lightmodeAmberSolid4: '#FFECBC',
+ lightmodeAmberSolid5: '#FFE3A2',
+ lightmodeAmberSolid6: '#FFD386',
+ lightmodeAmberSolid7: '#F3BA63',
+ lightmodeAmberSolid8: '#EE9D2B',
+ lightmodeAmberSolid9: '#FFB224',
+ lightmodeAmberSolid10: '#FFA01C',
+ lightmodeAmberSolid11: '#AD5700',
+ lightmodeAmberSolid12: '#4E2009',
+ lightmodePureWhite: '#FFFFFF',
+ lightmodePureBlack: '#000000',
+ textDefault: 'var(--lightmode-gray-slate-solid-12)',
+ textSubdued: '#3E4346',
+ textDisabled: 'var(--lightmode-gray-slate-solid-9)',
+ textCritical: 'var(--lightmode-red-solid-11)',
+ textWarning: 'var(--lightmode-amber-solid-11)',
+ textSuccess: 'var(--lightmode-green-solid-11)',
+ textHighlight: 'var(--lightmode-violet-solid-11)',
+ textInteractive: 'var(--lightmode-blue-solid-11)',
+ textOnBGDisabled: 'var(--lightmode-gray-slate-solid-6)',
+ textOnBGDefault: 'var(--lightmode-pure-white)',
+ borderDefault: 'var(--lightmode-gray-slate-solid-8)',
+ borderSubdued: 'var(--lightmode-gray-slate-solid-7)',
+ borderDisabled: 'var(--lightmode-gray-slate-solid-6)',
+ borderCriticalDefault: 'var(--lightmode-red-solid-8)',
+ borderCriticalDisabled: 'var(--lightmode-red-solid-7)',
+ borderCriticalSubdued: 'var(--lightmode-red-solid-6)',
+ borderSuccessDefault: 'var(--lightmode-green-solid-8)',
+ borderSuccessSubdued: 'var(--lightmode-green-solid-7)',
+ borderWarningDefault: 'var(--lightmode-amber-solid-8)',
+ borderWarningSubdued: 'var(--lightmode-amber-solid-7)',
+ borderHighlightDefault: 'var(--lightmode-violet-solid-8)',
+ borderHighlightSubdued: 'var(--lightmode-violet-solid-7)',
+ borderInteractiveDefault: 'var(--lightmode-blue-solid-8)',
+ borderInteractiveFocused: 'var(--lightmode-blue-solid-7)',
+ iconDefault: 'var(--lightmode-gray-slate-solid-11)',
+ iconSubdued: 'var(--lightmode-gray-slate-solid-10)',
+ iconDisabled: 'var(--lightmode-gray-slate-solid-9)',
+ iconCritical: 'var(--lightmode-red-solid-10)',
+ actionPrimaryBasicDefault: 'var(--lightmode-violet-solid-9)',
+ iconWarning: 'var(--lightmode-amber-solid-10)',
+ actionPrimaryBasicHovered: 'var(--lightmode-violet-solid-10)',
+ iconSuccess: 'var(--lightmode-green-solid-10)',
+ actionPrimaryBasicPressed: 'var(--lightmode-violet-solid-11)',
+ iconHighlight: 'var(--lightmode-violet-solid-10)',
+ iconInteractive: 'var(--lightmode-indigo-solid-11)',
+ actionPrimaryBasicDepressed: 'var(--lightmode-violet-solid-12)',
+ actionPrimaryDisabled: 'var(--lightmode-gray-slate-solid-9)',
+ actionPrimaryCriticalDefault: 'var(--lightmode-red-solid-9)',
+ actionPrimarySuccessDefault: 'var(--lightmode-green-solid-9)',
+ actionPrimaryCriticalHovered: 'var(--lightmode-red-solid-10)',
+ actionSecondaryCriticalPressed: 'var(--lightmode-red-solid-5)',
+ actionSecondaryCriticalHovered: 'var(--lightmode-red-solid-4)',
+ actionSecondaryCriticalDepressed: 'var(--lightmode-red-solid-6)',
+ actionSecondaryCriticalDefault: 'var(--lightmode-red-solid-3)',
+ actionPrimaryInteractiveDefault: 'var(--lightmode-blue-solid-9)',
+ actionPrimaryInteractiveHovered: 'var(--lightmode-blue-solid-10)',
+ actionPrimaryInteractivePressed: 'var(--lightmode-blue-solid-11)',
+ actionPrimaryInteractiveDepressed: 'var(--lightmode-blue-solid-12)',
+ actionPrimarySuccessHovered: 'var(--lightmode-green-solid-10)',
+ actionSecondaryBasicDefault: 'var(--lightmode-violet-solid-3)',
+ actionPrimaryCriticalPressed: 'var(--lightmode-red-solid-11)',
+ actionPrimaryCriticalDepressed: 'var(--lightmode-red-solid-12)',
+ actionSecondaryDisabled: 'var(--lightmode-gray-slate-solid-3)',
+ actionPrimarySuccessPressed: 'var(--lightmode-green-solid-11)',
+ actionSecondaryInteractiveDepressed: 'var(--lightmode-blue-solid-6)',
+ actionSecondarySuccessDepressed: 'var(--lightmode-green-solid-6)',
+ actionSecondarySuccessPressed: 'var(--lightmode-green-solid-5)',
+ actionPrimarySuccessDepressed: 'var(--lightmode-green-solid-12)',
+ actionSecondaryInteractiveHovered: 'var(--lightmode-blue-solid-4)',
+ actionSecondaryNeutralDefault: 'var(--lightmode-gray-slate-solid-1)',
+ actionSecondaryInteractivePressed: 'var(--lightmode-blue-solid-5)',
+ actionSecondarySuccessHovered: 'var(--lightmode-green-solid-4)',
+ actionSecondarySuccessDefault: 'var(--lightmode-green-solid-3)',
+ actionSecondaryInteractiveDefault: 'var(--lightmode-blue-solid-3)',
+ actionSecondaryNeutralHovered: 'var(--lightmode-gray-slate-solid-2)',
+ actionSecondaryNeutralPressed: 'var(--lightmode-gray-slate-solid-5)',
+ actionSecondaryBasicDepressed: 'var(--lightmode-violet-solid-6)',
+ actionSecondaryBasicHovered: 'var(--lightmode-violet-solid-4)',
+ actionSecondaryBasicPressed: 'var(--lightmode-violet-solid-5)',
+ actionSecondaryNeutralDepressed: 'var(--lightmode-gray-slate-solid-6)',
+ actionTertiaryBasicHover: 'var(--lightmode-violet-alpha-2)',
+ lightmodeIndigoAlpha1: '#05058203',
+ actionTertiaryInteractiveHover: 'var(--lightmode-blue-alpha-2)',
+ lightmodeIndigoAlpha2: '#054CFF08',
+ actionTertiarySuccessHover: 'var(--lightmode-green-alpha-2)',
+ actionTertiaryCriticalHover: 'var(--lightmode-red-alpha-2)',
+ lightmodeIndigoAlpha3: '#0144FF0F',
+ lightmodeIndigoAlpha4: '#0247F51A',
+ lightmodeIndigoAlpha5: '#023CEB26',
+ lightmodeIndigoAlpha6: '#013DE438',
+ lightmodeIndigoAlpha7: '#0038E052',
+ lightmodeIndigoAlpha8: '#0134DB73',
+ lightmodeIndigoAlpha9: '#0031D2C2',
+ backgroundSubdued: 'var(--lightmode-indigo-solid-2)',
+ backgroundDark: 'var(--lightmode-indigo-solid-12)',
+ backgroundDefault: 'var(--lightmode-indigo-solid-3)',
+ surfaceDefault: 'var(--lightmode-pure-white)',
+ lightmodeIndigoAlpha10: '#002CBDC4',
+ surfaceSubdued: 'var(--lightmode-gray-slate-solid-2)',
+ lightmodeIndigoAlpha11: '#00259ECC',
+ surfaceSelected: 'var(--lightmode-blue-solid-2)',
+ lightmodeIndigoAlpha12: '#000E3AF0',
+ surfaceWarning: 'var(--lightmode-amber-solid-2)',
+ surfaceCritical: 'var(--lightmode-red-solid-2)',
+ lightmodeBlueAlpha1: '#0582FF05',
+ lightmodeBlueAlpha2: '#0582FF0A',
+ surfaceSuccess: 'var(--lightmode-green-solid-2)',
+ surfaceHighlightSubdued: 'var(--lightmode-violet-solid-2)',
+ lightmodeBlueAlpha3: '#0280FF12',
+ lightmodeBlueAlpha4: '#0180FF1F',
+ surfaceInteractive: 'var(--lightmode-blue-solid-2)',
+ surfaceHighlightDefault: 'var(--lightmode-violet-solid-4)',
+ lightmodeBlueAlpha5: '#0180EF30',
+ surfaceHighlightHovered: 'var(--lightmode-violet-solid-6)',
+ lightmodeBlueAlpha6: '#0177E647',
+ lightmodeBlueAlpha7: '#0077DF69',
+ lightmodeBlueAlpha8: '#0082E6A1',
+ lightmodeBlueAlpha9: '#0091FFFA',
+ lightmodeBlueAlpha10: '#0080F1FA',
+ lightmodeBlueAlpha11: '#0066DBFA',
+ lightmodeBlueAlpha12: '#002149FA',
+ lightmodeVioletAlpha1: '#5805AB03',
+ lightmodeVioletAlpha2: '#3705FF05',
+ lightmodeVioletAlpha3: '#3C00FF0D',
+ lightmodeVioletAlpha4: '#2E02F417',
+ lightmodeVioletAlpha5: '#2F01E821',
+ lightmodeVioletAlpha6: '#2A01DF30',
+ lightmodeVioletAlpha7: '#2B01D447',
+ lightmodeVioletAlpha8: '#2A00D066',
+ lightmodeVioletAlpha9: '#2500B6A8',
+ lightmodeVioletAlpha10: '#1F00A5B0',
+ lightmodeVioletAlpha11: '#180091BA',
+ lightmodeVioletAlpha12: '#0E003DED',
+ lightmodeGraySlateAlpha1: '#05448205',
+ lightmodeGraySlateAlpha2: '#05294D08',
+ lightmodeGraySlateAlpha3: '#0025490D',
+ lightmodeGraySlateAlpha4: '#021C3714',
+ lightmodeGraySlateAlpha5: '#0217351A',
+ lightmodeGraySlateAlpha6: '#01213921',
+ lightmodeGraySlateAlpha7: '#001A3329',
+ lightmodeGraySlateAlpha8: '#011E323D',
+ lightmodeGraySlateAlpha9: '#00111E78',
+ lightmodeGraySlateAlpha10: '#00101B82',
+ lightmodeGraySlateAlpha11: '#000E1896',
+ lightmodeGraySlateAlpha12: '#00080CED',
+ lightmodeGreenAlpha1: '#05C04305',
+ lightmodeGreenAlpha2: '#00C43B0D',
+ lightmodeGreenAlpha3: '#02BA3C17',
+ lightmodeGreenAlpha4: '#01A63521',
+ lightmodeGreenAlpha5: '#009B3633',
+ lightmodeGreenAlpha6: '#0193364A',
+ lightmodeGreenAlpha7: '#008C3D6E',
+ lightmodeGreenAlpha8: '#00934CA3',
+ lightmodeGreenAlpha9: '#008F4ACF',
+ lightmodeGreenAlpha10: '#008346D6',
+ lightmodeGreenAlpha11: '#006B3BE8',
+ lightmodeGreenAlpha12: '#002012EB',
+ lightmodeAmberAlpha1: '#C0820505',
+ lightmodeAmberAlpha2: '#FFAB0212',
+ lightmodeAmberAlpha3: '#FFBB012B',
+ lightmodeAmberAlpha4: '#FFB70042',
+ lightmodeAmberAlpha5: '#FFB3005E',
+ lightmodeAmberAlpha6: '#FFA20178',
+ lightmodeAmberAlpha7: '#EC8D009C',
+ lightmodeAmberAlpha8: '#EA8900D4',
+ lightmodeAmberAlpha9: '#FFA600DB',
+ lightmodeAmberAlpha10: '#FF9500E3',
+ lightmodeAmberAlpha11: '#AB5300FA',
+ lightmodeAmberAlpha12: '#481800F5',
+ lightmodeRedAlpha1: '#FF050503',
+ lightmodeRedAlpha2: '#FF050508',
+ lightmodeRedAlpha3: '#FF01010F',
+ lightmodeRedAlpha4: '#FF00001A',
+ lightmodeRedAlpha5: '#F2000026',
+ lightmodeRedAlpha6: '#E4010138',
+ lightmodeRedAlpha7: '#D9000452',
+ lightmodeRedAlpha8: '#D1000470',
+ lightmodeRedAlpha9: '#DB0007B8',
+ lightmodeRedAlpha10: '#D10007C2',
+ lightmodeRedAlpha11: '#C30007D4',
+ lightmodeRedAlpha12: '#280003ED',
+ mapareadistrictDefault: 'var(--surface-highlight-default)',
+ mapareadistrictHover: 'var(--action-secondary-success-hovered)',
+ mapareadistrictSelected: 'var(--action-primary-basic-default)',
+ mapareadistrictDisabled: 'var(--action-primary-disabled)',
+ mapareadistrictBorder: 'var(--lightmode-gray-slate-solid-9)',
+ borderFocus: '#FFFFFF03',
+};
diff --git a/packages/opub-viz/styles/tokens/tailwind/duration.js b/packages/opub-viz/styles/tokens/tailwind/duration.js
new file mode 100644
index 00000000..ee478106
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/duration.js
@@ -0,0 +1,13 @@
+module.exports = {
+ 0: 'var(--duration-0)',
+ 100: 'var(--duration-100)',
+ 150: 'var(--duration-150)',
+ 200: 'var(--duration-200)',
+ 250: 'var(--duration-250)',
+ 300: 'var(--duration-300)',
+ 350: 'var(--duration-350)',
+ 400: 'var(--duration-400)',
+ 450: 'var(--duration-450)',
+ 500: 'var(--duration-500)',
+ 5000: 'var(--duration-5000)',
+};
diff --git a/packages/opub-viz/styles/tokens/tailwind/ease-function.js b/packages/opub-viz/styles/tokens/tailwind/ease-function.js
new file mode 100644
index 00000000..75445c09
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/ease-function.js
@@ -0,0 +1,7 @@
+module.exports = {
+ ease: 'var(--ease)',
+ linear: 'var(--linear)',
+ 'ease-in': 'var(--ease-in)',
+ 'ease-out': 'var(--ease-out)',
+ 'ease-in-out': 'var(--ease-in-out)',
+};
diff --git a/packages/opub-viz/styles/tokens/tailwind/font-family.js b/packages/opub-viz/styles/tokens/tailwind/font-family.js
new file mode 100644
index 00000000..7fea5209
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/font-family.js
@@ -0,0 +1,4 @@
+module.exports = {
+ primary: 'var(--font-family-primary)',
+ mono: 'var(--font-family-mono)',
+};
diff --git a/packages/opub-viz/styles/tokens/tailwind/font-size.js b/packages/opub-viz/styles/tokens/tailwind/font-size.js
new file mode 100644
index 00000000..bebb8b65
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/font-size.js
@@ -0,0 +1,10 @@
+module.exports = {
+ 75: 'var(--font-size-75)',
+ 100: 'var(--font-size-100)',
+ 200: 'var(--font-size-200)',
+ 300: 'var(--font-size-300)',
+ 400: 'var(--font-size-400)',
+ 500: 'var(--font-size-500)',
+ 600: 'var(--font-size-600)',
+ 700: 'var(--font-size-700)',
+};
diff --git a/packages/opub-viz/styles/tokens/tailwind/font-weight.js b/packages/opub-viz/styles/tokens/tailwind/font-weight.js
new file mode 100644
index 00000000..b46bd26b
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/font-weight.js
@@ -0,0 +1,6 @@
+module.exports = {
+ Regular: 'var(--font-weight-regular)',
+ Medium: 'var(--font-weight-medium)',
+ Bold: 'var(--font-weight-bold)',
+ 'Extra-Bold': 'var(--font-weight-extra-bold)',
+};
diff --git a/packages/opub-viz/styles/tokens/tailwind/line-height.js b/packages/opub-viz/styles/tokens/tailwind/line-height.js
new file mode 100644
index 00000000..ef65b16a
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/line-height.js
@@ -0,0 +1,9 @@
+module.exports = {
+ 1: 'var(--font-line-height-1)',
+ 2: 'var(--font-line-height-2)',
+ 3: 'var(--font-line-height-3)',
+ 4: 'var(--font-line-height-4)',
+ 5: 'var(--font-line-height-5)',
+ 6: 'var(--font-line-height-6)',
+ 7: 'var(--font-line-height-7)',
+};
diff --git a/packages/opub-viz/styles/tokens/tailwind/space.js b/packages/opub-viz/styles/tokens/tailwind/space.js
new file mode 100644
index 00000000..2219de0a
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/space.js
@@ -0,0 +1,18 @@
+module.exports = {
+ "0": "0px",
+ "025": "1px",
+ "05": "2px",
+ "1": "4px",
+ "2": "8px",
+ "3": "12px",
+ "4": "16px",
+ "5": "20px",
+ "6": "24px",
+ "8": "32px",
+ "10": "40px",
+ "12": "48px",
+ "16": "64px",
+ "20": "80px",
+ "24": "96px",
+ "32": "128px",
+}
diff --git a/packages/opub-viz/styles/tokens/tailwind/z-index.js b/packages/opub-viz/styles/tokens/tailwind/z-index.js
new file mode 100644
index 00000000..b0bb0bfd
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tailwind/z-index.js
@@ -0,0 +1,13 @@
+module.exports = {
+ 1: 'var(--z-1)',
+ 2: 'var(--z-2)',
+ 3: 'var(--z-3)',
+ 4: 'var(--z-4)',
+ 5: 'var(--z-5)',
+ 6: 'var(--z-6)',
+ 7: 'var(--z-7)',
+ 8: 'var(--z-8)',
+ 9: 'var(--z-9)',
+ 10: 'var(--z-10)',
+ max: 'var(--z-max)',
+};
diff --git a/packages/opub-viz/styles/tokens/tokens.json b/packages/opub-viz/styles/tokens/tokens.json
new file mode 100644
index 00000000..296b8933
--- /dev/null
+++ b/packages/opub-viz/styles/tokens/tokens.json
@@ -0,0 +1,3009 @@
+{
+ "collections": [
+ {
+ "name": "Colors",
+ "modes": [
+ {
+ "name": "Mode 1",
+ "variables": [
+ {
+ "name": "lightmode/indigo/solid/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FDFDFE"
+ },
+ {
+ "name": "lightmode/indigo/solid/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F8FAFF"
+ },
+ {
+ "name": "lightmode/indigo/solid/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F0F4FF"
+ },
+ {
+ "name": "lightmode/indigo/solid/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#E6EDFE"
+ },
+ {
+ "name": "lightmode/indigo/solid/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#D9E2FC"
+ },
+ {
+ "name": "lightmode/indigo/solid/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#C6D4F9"
+ },
+ {
+ "name": "lightmode/indigo/solid/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#AEC0F5"
+ },
+ {
+ "name": "lightmode/indigo/solid/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#8DA4EF"
+ },
+ {
+ "name": "lightmode/indigo/solid/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#3E63DD"
+ },
+ {
+ "name": "lightmode/indigo/solid/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#3A5CCC"
+ },
+ {
+ "name": "lightmode/indigo/solid/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#3451B2"
+ },
+ {
+ "name": "lightmode/indigo/solid/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#101D46"
+ },
+ {
+ "name": "lightmode/blue/solid/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FBFDFF"
+ },
+ {
+ "name": "lightmode/blue/solid/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F5FAFF"
+ },
+ {
+ "name": "lightmode/blue/solid/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#EDF6FF"
+ },
+ {
+ "name": "lightmode/blue/solid/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#E1F0FF"
+ },
+ {
+ "name": "lightmode/blue/solid/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#CEE7FE"
+ },
+ {
+ "name": "lightmode/blue/solid/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#B7D9F8"
+ },
+ {
+ "name": "lightmode/blue/solid/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#96C7F2"
+ },
+ {
+ "name": "lightmode/blue/solid/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#5EB0EF"
+ },
+ {
+ "name": "lightmode/blue/solid/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0091FF"
+ },
+ {
+ "name": "lightmode/blue/solid/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0081F1"
+ },
+ {
+ "name": "lightmode/blue/solid/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#006ADC"
+ },
+ {
+ "name": "lightmode/blue/solid/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#00254D"
+ },
+ {
+ "name": "lightmode/violet/solid/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FDFCFE"
+ },
+ {
+ "name": "lightmode/violet/solid/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FBFAFF"
+ },
+ {
+ "name": "lightmode/violet/solid/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F5F2FF"
+ },
+ {
+ "name": "lightmode/violet/solid/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#EDE9FE"
+ },
+ {
+ "name": "lightmode/violet/solid/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#E4DEFC"
+ },
+ {
+ "name": "lightmode/violet/solid/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#D7CFF9"
+ },
+ {
+ "name": "lightmode/violet/solid/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#C4B8F3"
+ },
+ {
+ "name": "lightmode/violet/solid/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#AA99EC"
+ },
+ {
+ "name": "lightmode/violet/solid/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#6E56CF"
+ },
+ {
+ "name": "lightmode/violet/solid/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#644FC1"
+ },
+ {
+ "name": "lightmode/violet/solid/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#5746AF"
+ },
+ {
+ "name": "lightmode/violet/solid/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#20134B"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FBFCFD"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F8F9FA"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F1F3F5"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#ECEEF0"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#E6E8EB"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#DFE3E6"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#D7DBDF"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#C1C8CD"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#889096"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#7E868C"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#687076"
+ },
+ {
+ "name": "lightmode/gray/slate/solid/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#11181C"
+ },
+ {
+ "name": "lightmode/red/solid/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFFCFC"
+ },
+ {
+ "name": "lightmode/red/solid/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFF8F8"
+ },
+ {
+ "name": "lightmode/red/solid/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFEFEF"
+ },
+ {
+ "name": "lightmode/red/solid/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFE5E5"
+ },
+ {
+ "name": "lightmode/red/solid/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FDD8D8"
+ },
+ {
+ "name": "lightmode/red/solid/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F9C6C6"
+ },
+ {
+ "name": "lightmode/red/solid/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F3AEAF"
+ },
+ {
+ "name": "lightmode/red/solid/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#EB9091"
+ },
+ {
+ "name": "lightmode/red/solid/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#E5484D"
+ },
+ {
+ "name": "lightmode/red/solid/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#DC3D43"
+ },
+ {
+ "name": "lightmode/red/solid/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#CD2B31"
+ },
+ {
+ "name": "lightmode/red/solid/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#381316"
+ },
+ {
+ "name": "lightmode/green/solid/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FBFEFC"
+ },
+ {
+ "name": "lightmode/green/solid/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F2FCF5"
+ },
+ {
+ "name": "lightmode/green/solid/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#E9F9EE"
+ },
+ {
+ "name": "lightmode/green/solid/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#DDF3E4"
+ },
+ {
+ "name": "lightmode/green/solid/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#CCEBD7"
+ },
+ {
+ "name": "lightmode/green/solid/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#B4DFC4"
+ },
+ {
+ "name": "lightmode/green/solid/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#92CEAC"
+ },
+ {
+ "name": "lightmode/green/solid/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#5BB98C"
+ },
+ {
+ "name": "lightmode/green/solid/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#30A46C"
+ },
+ {
+ "name": "lightmode/green/solid/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#299764"
+ },
+ {
+ "name": "lightmode/green/solid/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#18794E"
+ },
+ {
+ "name": "lightmode/green/solid/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#153226"
+ },
+ {
+ "name": "lightmode/amber/solid/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FEFDFB"
+ },
+ {
+ "name": "lightmode/amber/solid/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFF9ED"
+ },
+ {
+ "name": "lightmode/amber/solid/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFF4D5"
+ },
+ {
+ "name": "lightmode/amber/solid/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFECBC"
+ },
+ {
+ "name": "lightmode/amber/solid/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFE3A2"
+ },
+ {
+ "name": "lightmode/amber/solid/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFD386"
+ },
+ {
+ "name": "lightmode/amber/solid/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F3BA63"
+ },
+ {
+ "name": "lightmode/amber/solid/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#EE9D2B"
+ },
+ {
+ "name": "lightmode/amber/solid/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFB224"
+ },
+ {
+ "name": "lightmode/amber/solid/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFA01C"
+ },
+ {
+ "name": "lightmode/amber/solid/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#AD5700"
+ },
+ {
+ "name": "lightmode/amber/solid/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#4E2009"
+ },
+ {
+ "name": "lightmode/Pure/White",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFFFFF"
+ },
+ {
+ "name": "lightmode/Pure/Black",
+ "type": "color",
+ "isAlias": false,
+ "value": "#000000"
+ },
+ {
+ "name": "Text/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/12"
+ }
+ },
+ {
+ "name": "Text/Subdued",
+ "type": "color",
+ "isAlias": false,
+ "value": "#3E4346"
+ },
+ {
+ "name": "Text/Disabled",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/9"
+ }
+ },
+ {
+ "name": "Text/Critical",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/11"
+ }
+ },
+ {
+ "name": "Text/Warning",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/amber/solid/11"
+ }
+ },
+ {
+ "name": "Text/Success",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/11"
+ }
+ },
+ {
+ "name": "Text/Highlight",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/11"
+ }
+ },
+ {
+ "name": "Text/Interactive",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/11"
+ }
+ },
+ {
+ "name": "Text/OnBG/Disabled",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/6"
+ }
+ },
+ {
+ "name": "Text/OnBG/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/Pure/White"
+ }
+ },
+ {
+ "name": "Border/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/8"
+ }
+ },
+ {
+ "name": "Border/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/7"
+ }
+ },
+ {
+ "name": "Border/Disabled",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/6"
+ }
+ },
+ {
+ "name": "Border/Critical/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/8"
+ }
+ },
+ {
+ "name": "Border/Critical/Disabled",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/7"
+ }
+ },
+ {
+ "name": "Border/Critical/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/6"
+ }
+ },
+ {
+ "name": "Border/Success/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/8"
+ }
+ },
+ {
+ "name": "Border/Success/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/7"
+ }
+ },
+ {
+ "name": "Border/Warning/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/amber/solid/8"
+ }
+ },
+ {
+ "name": "Border/Warning/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/amber/solid/7"
+ }
+ },
+ {
+ "name": "Border/Highlight/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/8"
+ }
+ },
+ {
+ "name": "Border/Highlight/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/7"
+ }
+ },
+ {
+ "name": "Border/Interactive/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/8"
+ }
+ },
+ {
+ "name": "Border/Interactive/Focused",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/7"
+ }
+ },
+ {
+ "name": "Icon/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/11"
+ }
+ },
+ {
+ "name": "Icon/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/10"
+ }
+ },
+ {
+ "name": "Icon/Disabled",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/9"
+ }
+ },
+ {
+ "name": "Icon/Critical",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/10"
+ }
+ },
+ {
+ "name": "Icon/Warning",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/amber/solid/10"
+ }
+ },
+ {
+ "name": "Action/Primary/Basic/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/9"
+ }
+ },
+ {
+ "name": "Action/Primary/Basic/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/10"
+ }
+ },
+ {
+ "name": "Icon/Success",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/10"
+ }
+ },
+ {
+ "name": "Action/Primary/Basic/Pressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/11"
+ }
+ },
+ {
+ "name": "Icon/Highlight",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/10"
+ }
+ },
+ {
+ "name": "Action/Primary/Basic/Depressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/12"
+ }
+ },
+ {
+ "name": "Icon/Interactive",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/indigo/solid/11"
+ }
+ },
+ {
+ "name": "Action/Primary/Disabled",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/9"
+ }
+ },
+ {
+ "name": "Action/Primary/Critical/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/9"
+ }
+ },
+ {
+ "name": "Action/Primary/Critical/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/10"
+ }
+ },
+ {
+ "name": "Action/Primary/Success/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/9"
+ }
+ },
+ {
+ "name": "Action/Secondary/Critical/Pressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/5"
+ }
+ },
+ {
+ "name": "Action/Secondary/Critical/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/4"
+ }
+ },
+ {
+ "name": "Action/Secondary/Critical/Depressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/6"
+ }
+ },
+ {
+ "name": "Action/Primary/Interactive/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/9"
+ }
+ },
+ {
+ "name": "Action/Secondary/Critical/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/3"
+ }
+ },
+ {
+ "name": "Action/Primary/Interactive/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/10"
+ }
+ },
+ {
+ "name": "Action/Primary/Interactive/Pressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/11"
+ }
+ },
+ {
+ "name": "Action/Primary/Interactive/Depressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/12"
+ }
+ },
+ {
+ "name": "Action/Secondary/Basic/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/3"
+ }
+ },
+ {
+ "name": "Action/Primary/Critical/Pressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/11"
+ }
+ },
+ {
+ "name": "Action/Primary/Success/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/10"
+ }
+ },
+ {
+ "name": "Action/Primary/Critical/Depressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/12"
+ }
+ },
+ {
+ "name": "Action/Secondary/Disabled",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/3"
+ }
+ },
+ {
+ "name": "Action/Primary/Success/Pressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/11"
+ }
+ },
+ {
+ "name": "Action/Secondary/Interactive/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/4"
+ }
+ },
+ {
+ "name": "Action/Secondary/Success/Pressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/5"
+ }
+ },
+ {
+ "name": "Action/Secondary/Success/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/4"
+ }
+ },
+ {
+ "name": "Action/Secondary/Interactive/Depressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/6"
+ }
+ },
+ {
+ "name": "Action/Primary/Success/Depressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/12"
+ }
+ },
+ {
+ "name": "Action/Secondary/Interactive/Pressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/5"
+ }
+ },
+ {
+ "name": "Action/Secondary/Success/Depressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/6"
+ }
+ },
+ {
+ "name": "Action/Secondary/Success/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/3"
+ }
+ },
+ {
+ "name": "Action/Secondary/Interactive/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/3"
+ }
+ },
+ {
+ "name": "Action/Secondary/Basic/Pressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/5"
+ }
+ },
+ {
+ "name": "Action/Secondary/Basic/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/4"
+ }
+ },
+ {
+ "name": "Action/Secondary/Basic/Depressed",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/6"
+ }
+ },
+ {
+ "name": "lightmode/indigo/alpha/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#05058203"
+ },
+ {
+ "name": "lightmode/indigo/alpha/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#054CFF08"
+ },
+ {
+ "name": "lightmode/indigo/alpha/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0144FF0F"
+ },
+ {
+ "name": "lightmode/indigo/alpha/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0247F51A"
+ },
+ {
+ "name": "lightmode/indigo/alpha/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#023CEB26"
+ },
+ {
+ "name": "lightmode/indigo/alpha/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#013DE438"
+ },
+ {
+ "name": "lightmode/indigo/alpha/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0038E052"
+ },
+ {
+ "name": "lightmode/indigo/alpha/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0134DB73"
+ },
+ {
+ "name": "lightmode/indigo/alpha/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0031D2C2"
+ },
+ {
+ "name": "Background/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/indigo/solid/2"
+ }
+ },
+ {
+ "name": "Background/Dark",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/indigo/solid/12"
+ }
+ },
+ {
+ "name": "Background/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/indigo/solid/3"
+ }
+ },
+ {
+ "name": "Surface/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/Pure/White"
+ }
+ },
+ {
+ "name": "Surface/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/2"
+ }
+ },
+ {
+ "name": "lightmode/indigo/alpha/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#002CBDC4"
+ },
+ {
+ "name": "lightmode/indigo/alpha/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#00259ECC"
+ },
+ {
+ "name": "Surface/Selected",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/2"
+ }
+ },
+ {
+ "name": "Surface/Warning",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/amber/solid/2"
+ }
+ },
+ {
+ "name": "lightmode/indigo/alpha/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#000E3AF0"
+ },
+ {
+ "name": "Surface/Critical",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/red/solid/2"
+ }
+ },
+ {
+ "name": "lightmode/blue/alpha/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0582FF05"
+ },
+ {
+ "name": "Surface/Success",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/green/solid/2"
+ }
+ },
+ {
+ "name": "lightmode/blue/alpha/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0582FF0A"
+ },
+ {
+ "name": "lightmode/blue/alpha/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0280FF12"
+ },
+ {
+ "name": "Surface/Highlight/Subdued",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/2"
+ }
+ },
+ {
+ "name": "lightmode/blue/alpha/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0180FF1F"
+ },
+ {
+ "name": "Surface/Interactive",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/blue/solid/2"
+ }
+ },
+ {
+ "name": "lightmode/blue/alpha/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0180EF30"
+ },
+ {
+ "name": "Surface/Highlight/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/4"
+ }
+ },
+ {
+ "name": "lightmode/blue/alpha/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0177E647"
+ },
+ {
+ "name": "Surface/Highlight/Hovered",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/violet/solid/6"
+ }
+ },
+ {
+ "name": "lightmode/blue/alpha/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0077DF69"
+ },
+ {
+ "name": "lightmode/blue/alpha/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0082E6A1"
+ },
+ {
+ "name": "lightmode/blue/alpha/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0091FFFA"
+ },
+ {
+ "name": "lightmode/blue/alpha/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0080F1FA"
+ },
+ {
+ "name": "lightmode/blue/alpha/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0066DBFA"
+ },
+ {
+ "name": "lightmode/blue/alpha/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#002149FA"
+ },
+ {
+ "name": "lightmode/violet/alpha/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#5805AB03"
+ },
+ {
+ "name": "lightmode/violet/alpha/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#3705FF05"
+ },
+ {
+ "name": "lightmode/violet/alpha/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#3C00FF0D"
+ },
+ {
+ "name": "lightmode/violet/alpha/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#2E02F417"
+ },
+ {
+ "name": "lightmode/violet/alpha/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#2F01E821"
+ },
+ {
+ "name": "lightmode/violet/alpha/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#2A01DF30"
+ },
+ {
+ "name": "lightmode/violet/alpha/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#2B01D447"
+ },
+ {
+ "name": "lightmode/violet/alpha/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#2A00D066"
+ },
+ {
+ "name": "lightmode/violet/alpha/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#2500B6A8"
+ },
+ {
+ "name": "lightmode/violet/alpha/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#1F00A5B0"
+ },
+ {
+ "name": "lightmode/violet/alpha/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#180091BA"
+ },
+ {
+ "name": "lightmode/violet/alpha/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0E003DED"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#05448205"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#05294D08"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0025490D"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#021C3714"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0217351A"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#01213921"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#001A3329"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#011E323D"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#00111E78"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#00101B82"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#000E1896"
+ },
+ {
+ "name": "lightmode/gray/slate/alpha/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#00080CED"
+ },
+ {
+ "name": "lightmode/green/alpha/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#05C04305"
+ },
+ {
+ "name": "lightmode/green/alpha/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#00C43B0D"
+ },
+ {
+ "name": "lightmode/green/alpha/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#02BA3C17"
+ },
+ {
+ "name": "lightmode/green/alpha/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#01A63521"
+ },
+ {
+ "name": "lightmode/green/alpha/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#009B3633"
+ },
+ {
+ "name": "lightmode/green/alpha/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#0193364A"
+ },
+ {
+ "name": "lightmode/green/alpha/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#008C3D6E"
+ },
+ {
+ "name": "lightmode/green/alpha/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#00934CA3"
+ },
+ {
+ "name": "lightmode/green/alpha/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#008F4ACF"
+ },
+ {
+ "name": "lightmode/green/alpha/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#008346D6"
+ },
+ {
+ "name": "lightmode/green/alpha/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#006B3BE8"
+ },
+ {
+ "name": "lightmode/green/alpha/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#002012EB"
+ },
+ {
+ "name": "lightmode/amber/alpha/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#C0820505"
+ },
+ {
+ "name": "lightmode/amber/alpha/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFAB0212"
+ },
+ {
+ "name": "lightmode/amber/alpha/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFBB012B"
+ },
+ {
+ "name": "lightmode/amber/alpha/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFB70042"
+ },
+ {
+ "name": "lightmode/amber/alpha/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFB3005E"
+ },
+ {
+ "name": "lightmode/amber/alpha/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFA20178"
+ },
+ {
+ "name": "lightmode/amber/alpha/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#EC8D009C"
+ },
+ {
+ "name": "lightmode/amber/alpha/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#EA8900D4"
+ },
+ {
+ "name": "lightmode/amber/alpha/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFA600DB"
+ },
+ {
+ "name": "lightmode/amber/alpha/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FF9500E3"
+ },
+ {
+ "name": "lightmode/amber/alpha/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#AB5300FA"
+ },
+ {
+ "name": "lightmode/amber/alpha/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#481800F5"
+ },
+ {
+ "name": "lightmode/red/alpha/1",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FF050503"
+ },
+ {
+ "name": "lightmode/red/alpha/2",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FF050508"
+ },
+ {
+ "name": "lightmode/red/alpha/3",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FF01010F"
+ },
+ {
+ "name": "lightmode/red/alpha/4",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FF00001A"
+ },
+ {
+ "name": "lightmode/red/alpha/5",
+ "type": "color",
+ "isAlias": false,
+ "value": "#F2000026"
+ },
+ {
+ "name": "lightmode/red/alpha/6",
+ "type": "color",
+ "isAlias": false,
+ "value": "#E4010138"
+ },
+ {
+ "name": "lightmode/red/alpha/7",
+ "type": "color",
+ "isAlias": false,
+ "value": "#D9000452"
+ },
+ {
+ "name": "lightmode/red/alpha/8",
+ "type": "color",
+ "isAlias": false,
+ "value": "#D1000470"
+ },
+ {
+ "name": "lightmode/red/alpha/9",
+ "type": "color",
+ "isAlias": false,
+ "value": "#DB0007B8"
+ },
+ {
+ "name": "lightmode/red/alpha/10",
+ "type": "color",
+ "isAlias": false,
+ "value": "#D10007C2"
+ },
+ {
+ "name": "lightmode/red/alpha/11",
+ "type": "color",
+ "isAlias": false,
+ "value": "#C30007D4"
+ },
+ {
+ "name": "lightmode/red/alpha/12",
+ "type": "color",
+ "isAlias": false,
+ "value": "#280003ED"
+ },
+ {
+ "name": "MapAreaDistrict/Default",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "Surface/Highlight/Default"
+ }
+ },
+ {
+ "name": "MapAreaDistrict/Hover",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "Action/Secondary/Success/Hovered"
+ }
+ },
+ {
+ "name": "MapAreaDistrict/Selected",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "Action/Primary/Basic/Default"
+ }
+ },
+ {
+ "name": "MapAreaDistrict/Disabled",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "Action/Primary/Disabled"
+ }
+ },
+ {
+ "name": "MapAreaDistrict/Border",
+ "type": "color",
+ "isAlias": true,
+ "value": {
+ "collection": "Colors",
+ "name": "lightmode/gray/slate/solid/9"
+ }
+ },
+ {
+ "name": "Border/Focus",
+ "type": "color",
+ "isAlias": false,
+ "value": "#FFFFFF03"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Spacing / Numericals",
+ "modes": [
+ {
+ "name": "Mode 1",
+ "variables": [
+ {
+ "name": "space/0",
+ "type": "number",
+ "isAlias": false,
+ "value": 0
+ },
+ {
+ "name": "space/025",
+ "type": "number",
+ "isAlias": false,
+ "value": 1
+ },
+ {
+ "name": "space/05",
+ "type": "number",
+ "isAlias": false,
+ "value": 2
+ },
+ {
+ "name": "space/1",
+ "type": "number",
+ "isAlias": false,
+ "value": 4
+ },
+ {
+ "name": "space/2",
+ "type": "number",
+ "isAlias": false,
+ "value": 8
+ },
+ {
+ "name": "space/3",
+ "type": "number",
+ "isAlias": false,
+ "value": 12
+ },
+ {
+ "name": "space/4",
+ "type": "number",
+ "isAlias": false,
+ "value": 16
+ },
+ {
+ "name": "space/5",
+ "type": "number",
+ "isAlias": false,
+ "value": 20
+ },
+ {
+ "name": "space/6",
+ "type": "number",
+ "isAlias": false,
+ "value": 24
+ },
+ {
+ "name": "space/8",
+ "type": "number",
+ "isAlias": false,
+ "value": 32
+ },
+ {
+ "name": "space/10",
+ "type": "number",
+ "isAlias": false,
+ "value": 40
+ },
+ {
+ "name": "space/12",
+ "type": "number",
+ "isAlias": false,
+ "value": 48
+ },
+ {
+ "name": "space/16",
+ "type": "number",
+ "isAlias": false,
+ "value": 64
+ },
+ {
+ "name": "space/20",
+ "type": "number",
+ "isAlias": false,
+ "value": 80
+ },
+ {
+ "name": "space/24",
+ "type": "number",
+ "isAlias": false,
+ "value": 96
+ },
+ {
+ "name": "space/32",
+ "type": "number",
+ "isAlias": false,
+ "value": 128
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Borders",
+ "modes": [
+ {
+ "name": "Mode 1",
+ "variables": [
+ {
+ "name": "border/radius/0",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/0"
+ }
+ },
+ {
+ "name": "border/radius/05",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/05"
+ }
+ },
+ {
+ "name": "border/radius/1",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/1"
+ }
+ },
+ {
+ "name": "border/radius/2",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/2"
+ }
+ },
+ {
+ "name": "border/radius/3",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/3"
+ }
+ },
+ {
+ "name": "border/radius/4",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/4"
+ }
+ },
+ {
+ "name": "border/radius/5",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/5"
+ }
+ },
+ {
+ "name": "border/radius/6",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/6"
+ }
+ },
+ {
+ "name": "border/radius/full",
+ "type": "number",
+ "isAlias": false,
+ "value": 9999
+ },
+ {
+ "name": "border/width/1",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/025"
+ }
+ },
+ {
+ "name": "border/width/2",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/05"
+ }
+ },
+ {
+ "name": "border/width/4",
+ "type": "number",
+ "isAlias": true,
+ "value": {
+ "collection": "Spacing / Numericals",
+ "name": "space/1"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Typography",
+ "modes": [
+ {
+ "name": "Style",
+ "variables": [
+ {
+ "name": "Desktop Heading/4xl-Bold",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 40,
+ "fontFamily": "Inter",
+ "fontWeight": "Bold",
+ "lineHeight": 48,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/3xl-Bold",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 32,
+ "fontFamily": "Inter",
+ "fontWeight": "Bold",
+ "lineHeight": 40,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/2xl-Semibold",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 28,
+ "fontFamily": "Inter",
+ "fontWeight": "Semi Bold",
+ "lineHeight": 32,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/xl-Semibold",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 24,
+ "fontFamily": "Inter",
+ "fontWeight": "Semi Bold",
+ "lineHeight": 28,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/Lg-Semibold",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 20,
+ "fontFamily": "Inter",
+ "fontWeight": "Semi Bold",
+ "lineHeight": 26,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/Md-Semibold",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 16,
+ "fontFamily": "Inter",
+ "fontWeight": "Semi Bold",
+ "lineHeight": 24,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/Sm-Medium",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 14,
+ "fontFamily": "Inter",
+ "fontWeight": "Medium",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/Xs-Medium",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 12,
+ "fontFamily": "Inter",
+ "fontWeight": "Medium",
+ "lineHeight": 16,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/Sm Caps",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 14,
+ "fontFamily": "Inter",
+ "fontWeight": "Medium",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 2,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "UPPER",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/Lg-Medium",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 20,
+ "fontFamily": "Inter",
+ "fontWeight": "Medium",
+ "lineHeight": 24,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Desktop Heading/Lg-Regular",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 20,
+ "fontFamily": "Inter",
+ "fontWeight": "Regular",
+ "lineHeight": 24,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Medium/Regular",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 14,
+ "fontFamily": "Inter",
+ "fontWeight": "Regular",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Medium/Medium",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 14,
+ "fontFamily": "Inter",
+ "fontWeight": "Medium",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Medium/Semibold",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 14,
+ "fontFamily": "Inter",
+ "fontWeight": "Semi Bold",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Medium/Underline-Reg",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 14,
+ "fontFamily": "Inter",
+ "fontWeight": "Regular",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "UNDERLINE"
+ }
+ },
+ {
+ "name": "Body/Large/Regular",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 16,
+ "fontFamily": "Inter",
+ "fontWeight": "Regular",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Large/Medium",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 16,
+ "fontFamily": "Inter",
+ "fontWeight": "Medium",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Large/Underline-Reg",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 16,
+ "fontFamily": "Inter",
+ "fontWeight": "Regular",
+ "lineHeight": 20,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "UNDERLINE"
+ }
+ },
+ {
+ "name": "Body/Small/Regular",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 12,
+ "fontFamily": "Inter",
+ "fontWeight": "Regular",
+ "lineHeight": 16,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Small/Medium",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 12,
+ "fontFamily": "Inter",
+ "fontWeight": "Medium",
+ "lineHeight": 16,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Small/Semibold",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 12,
+ "fontFamily": "Inter",
+ "fontWeight": "Semi Bold",
+ "lineHeight": 16,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PERCENT",
+ "textCase": "ORIGINAL",
+ "textDecoration": "NONE"
+ }
+ },
+ {
+ "name": "Body/Small/bodySm- underline",
+ "type": "typography",
+ "isAlias": false,
+ "value": {
+ "fontSize": 12,
+ "fontFamily": "Inter",
+ "fontWeight": "Regular",
+ "lineHeight": 16,
+ "lineHeightUnit": "PIXELS",
+ "letterSpacing": 0,
+ "letterSpacingUnit": "PIXELS",
+ "textCase": "ORIGINAL",
+ "textDecoration": "UNDERLINE"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Effects",
+ "modes": [
+ {
+ "name": "Style",
+ "variables": [
+ {
+ "name": "shadow/modal",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 0,
+ "b": 0,
+ "a": 0.2
+ },
+ "offset": {
+ "x": 0,
+ "y": 26
+ },
+ "radius": 80,
+ "spread": 0
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 0,
+ "b": 0,
+ "a": 0.2
+ },
+ "offset": {
+ "x": 0,
+ "y": 0
+ },
+ "radius": 1,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/layer",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 32,
+ "g": 42,
+ "b": 53,
+ "a": 0.2
+ },
+ "offset": {
+ "x": 0,
+ "y": 31
+ },
+ "radius": 41,
+ "spread": 0
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 32,
+ "g": 42,
+ "b": 54,
+ "a": 0.08
+ },
+ "offset": {
+ "x": 0,
+ "y": 2
+ },
+ "radius": 16,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/inset/basic",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "INNER_SHADOW",
+ "color": {
+ "r": 228,
+ "g": 229,
+ "b": 231,
+ "a": 1
+ },
+ "offset": {
+ "x": -1,
+ "y": 0
+ },
+ "radius": 0,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/inset/button",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "INNER_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 0,
+ "b": 0,
+ "a": 0.2
+ },
+ "offset": {
+ "x": 0,
+ "y": -1
+ },
+ "radius": 0,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/button/pressed",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "INNER_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 0,
+ "b": 0,
+ "a": 0.15
+ },
+ "offset": {
+ "x": 0,
+ "y": 1
+ },
+ "radius": 0,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/button/default",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 0,
+ "b": 0,
+ "a": 0.05
+ },
+ "offset": {
+ "x": 0,
+ "y": 1
+ },
+ "radius": 0,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/deep",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 33,
+ "g": 43,
+ "b": 54,
+ "a": 0.08
+ },
+ "offset": {
+ "x": 0,
+ "y": 2
+ },
+ "radius": 16,
+ "spread": 0
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 6,
+ "g": 44,
+ "b": 82,
+ "a": 0.1
+ },
+ "offset": {
+ "x": 0,
+ "y": 0
+ },
+ "radius": 0,
+ "spread": 1
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/faint",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 22,
+ "g": 29,
+ "b": 37,
+ "a": 0.05
+ },
+ "offset": {
+ "x": 0,
+ "y": 1
+ },
+ "radius": 0,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/transparent",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 0,
+ "b": 0,
+ "a": 0
+ },
+ "offset": {
+ "x": 0,
+ "y": 0
+ },
+ "radius": 0,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/xs",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.24
+ },
+ "offset": {
+ "x": 0,
+ "y": 0
+ },
+ "radius": 2,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/sm",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.1
+ },
+ "offset": {
+ "x": 0,
+ "y": 1
+ },
+ "radius": 1,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/md",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.05
+ },
+ "offset": {
+ "x": 0,
+ "y": 1
+ },
+ "radius": 6,
+ "spread": 0
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.1
+ },
+ "offset": {
+ "x": 0,
+ "y": 2
+ },
+ "radius": 4,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/lg",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.05
+ },
+ "offset": {
+ "x": 0,
+ "y": 2
+ },
+ "radius": 6,
+ "spread": 0
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.2
+ },
+ "offset": {
+ "x": 0,
+ "y": 4
+ },
+ "radius": 12,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/xl",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.15
+ },
+ "offset": {
+ "x": 0,
+ "y": 12
+ },
+ "radius": 18,
+ "spread": -2
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.08
+ },
+ "offset": {
+ "x": 0,
+ "y": 4
+ },
+ "radius": 18,
+ "spread": -2
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/basic/2xl",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.16
+ },
+ "offset": {
+ "x": 0,
+ "y": 32
+ },
+ "radius": 56,
+ "spread": -2
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 31,
+ "g": 33,
+ "b": 36,
+ "a": 0.15
+ },
+ "offset": {
+ "x": 0,
+ "y": 32
+ },
+ "radius": 32,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/element/popover",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 23,
+ "g": 24,
+ "b": 24,
+ "a": 0.12
+ },
+ "offset": {
+ "x": 0,
+ "y": 8
+ },
+ "radius": 20,
+ "spread": -4
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 23,
+ "g": 24,
+ "b": 24,
+ "a": 0.08
+ },
+ "offset": {
+ "x": 0,
+ "y": 3
+ },
+ "radius": 6,
+ "spread": -3
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/element/card",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 0,
+ "b": 0,
+ "a": 0.15
+ },
+ "offset": {
+ "x": 0,
+ "y": 1
+ },
+ "radius": 2,
+ "spread": 0
+ },
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 23,
+ "g": 24,
+ "b": 24,
+ "a": 0.05
+ },
+ "offset": {
+ "x": 0,
+ "y": 0
+ },
+ "radius": 5,
+ "spread": 0
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/element/topNav",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 0,
+ "b": 0,
+ "a": 0.15
+ },
+ "offset": {
+ "x": 0,
+ "y": 2
+ },
+ "radius": 2,
+ "spread": -1
+ }
+ ]
+ }
+ },
+ {
+ "name": "shadow/element/focus",
+ "type": "effect",
+ "isAlias": false,
+ "value": {
+ "effects": [
+ {
+ "type": "DROP_SHADOW",
+ "color": {
+ "r": 0,
+ "g": 145,
+ "b": 255,
+ "a": 1
+ },
+ "offset": {
+ "x": 0,
+ "y": 0
+ },
+ "radius": 0,
+ "spread": 2
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Grids",
+ "modes": [
+ {
+ "name": "Style",
+ "variables": [
+ {
+ "name": "Basic 12 Col",
+ "type": "grid",
+ "isAlias": false,
+ "value": {
+ "layoutGrids": [
+ {
+ "pattern": "COLUMNS",
+ "color": {
+ "r": 255,
+ "g": 0,
+ "b": 0,
+ "a": 0.1
+ },
+ "alignment": "STRETCH",
+ "gutterSize": 16,
+ "offset": 40,
+ "count": 12
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/packages/opub-viz/tailwind.config.js b/packages/opub-viz/tailwind.config.js
index 0377ea1d..cdf00145 100644
--- a/packages/opub-viz/tailwind.config.js
+++ b/packages/opub-viz/tailwind.config.js
@@ -1,76 +1,102 @@
/** @type {import('tailwindcss').Config} */
+const borderRadius = require('./styles/tokens/tailwind/border-radius');
+const borderWidth = require('./styles/tokens/tailwind/border-width');
+const boxShadow = require('./styles/tokens/tailwind/box-shadow');
+const colors = require('./styles/tokens/tailwind/color');
+const fontFamily = require('./styles/tokens/tailwind/font-family');
+const fontSize = require('./styles/tokens/tailwind/font-size');
+const fontWeight = require('./styles/tokens/tailwind/font-weight');
+const lineHeight = require('./styles/tokens/tailwind/line-height');
+const space = require('./styles/tokens/tailwind/space');
+const transitionTimingFunction = require('./styles/tokens/tailwind/ease-function');
+const transitionDuration = require('./styles/tokens/tailwind/duration');
+const zIndex = require('./styles/tokens/tailwind/z-index');
+
module.exports = {
- darkMode: ["class"],
+ darkMode: ['class', '[data-mode="dark"]'],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
- ],
+ ],
theme: {
+ colors,
+ space,
+ borderRadius,
+ borderWidth,
+ fontSize,
+ lineHeight,
+ boxShadow,
+ zIndex,
+ transitionTimingFunction,
+ transitionDuration,
+ fontFamily,
+ fontWeight,
+
container: {
center: true,
- padding: "2rem",
+ padding: '2rem',
screens: {
- "2xl": "1400px",
+ '2xl': '1400px',
},
},
extend: {
colors: {
- border: "hsl(var(--border))",
- input: "hsl(var(--input))",
- ring: "hsl(var(--ring))",
- background: "hsl(var(--background))",
- foreground: "hsl(var(--foreground))",
+ border: 'hsl(var(--border))',
+ input: 'hsl(var(--input))',
+ ring: 'hsl(var(--ring))',
+ background: 'hsl(var(--background))',
+ foreground: 'hsl(var(--foreground))',
primary: {
- DEFAULT: "hsl(var(--primary))",
- foreground: "hsl(var(--primary-foreground))",
+ DEFAULT: 'hsl(var(--primary))',
+ foreground: 'hsl(var(--primary-foreground))',
},
secondary: {
- DEFAULT: "hsl(var(--secondary))",
- foreground: "hsl(var(--secondary-foreground))",
+ DEFAULT: 'hsl(var(--secondary))',
+ foreground: 'hsl(var(--secondary-foreground))',
},
destructive: {
- DEFAULT: "hsl(var(--destructive))",
- foreground: "hsl(var(--destructive-foreground))",
+ DEFAULT: 'hsl(var(--destructive))',
+ foreground: 'hsl(var(--destructive-foreground))',
},
muted: {
- DEFAULT: "hsl(var(--muted))",
- foreground: "hsl(var(--muted-foreground))",
+ DEFAULT: 'hsl(var(--muted))',
+ foreground: 'hsl(var(--muted-foreground))',
},
accent: {
- DEFAULT: "hsl(var(--accent))",
- foreground: "hsl(var(--accent-foreground))",
+ DEFAULT: 'hsl(var(--accent))',
+ foreground: 'hsl(var(--accent-foreground))',
},
popover: {
- DEFAULT: "hsl(var(--popover))",
- foreground: "hsl(var(--popover-foreground))",
+ DEFAULT: 'hsl(var(--popover))',
+ foreground: 'hsl(var(--popover-foreground))',
},
card: {
- DEFAULT: "hsl(var(--card))",
- foreground: "hsl(var(--card-foreground))",
+ DEFAULT: 'hsl(var(--card))',
+ foreground: 'hsl(var(--card-foreground))',
},
},
borderRadius: {
- lg: "var(--radius)",
- md: "calc(var(--radius) - 2px)",
- sm: "calc(var(--radius) - 4px)",
+ lg: 'var(--radius)',
+ md: 'calc(var(--radius) - 2px)',
+ sm: 'calc(var(--radius) - 4px)',
},
keyframes: {
- "accordion-down": {
+ 'accordion-down': {
from: { height: 0 },
- to: { height: "var(--radix-accordion-content-height)" },
+ to: { height: 'var(--radix-accordion-content-height)' },
},
- "accordion-up": {
- from: { height: "var(--radix-accordion-content-height)" },
+ 'accordion-up': {
+ from: { height: 'var(--radix-accordion-content-height)' },
to: { height: 0 },
},
},
animation: {
- "accordion-down": "accordion-down 0.2s ease-out",
- "accordion-up": "accordion-up 0.2s ease-out",
+ 'accordion-down': 'accordion-down 0.2s ease-out',
+ 'accordion-up': 'accordion-up 0.2s ease-out',
},
},
},
- plugins: [require("tailwindcss-animate")],
-}
\ No newline at end of file
+ plugins: [require('tailwindcss-animate')],
+};
diff --git a/yarn.lock b/yarn.lock
index 713fcd71..bf8bd8b6 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -62,13 +62,6 @@
dependencies:
default-browser-id "3.0.0"
-"@aw-web-design/x-default-browser@1.4.88":
- version "1.4.88"
- resolved "https://registry.yarnpkg.com/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz#33d869cb2a537cd6d2a8369d4dc8ea4988d4be89"
- integrity sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==
- dependencies:
- default-browser-id "3.0.0"
-
"@babel/code-frame@7.12.11":
version "7.12.11"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
@@ -76,7 +69,7 @@
dependencies:
"@babel/highlight" "^7.10.4"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.21.4", "@babel/code-frame@^7.22.13":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13":
version "7.22.13"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e"
integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==
@@ -84,12 +77,12 @@
"@babel/highlight" "^7.22.13"
chalk "^2.4.2"
-"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5", "@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9":
+"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9":
version "7.22.20"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0"
integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==
-"@babel/core@^7.11.6", "@babel/core@^7.12.10", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.17.7", "@babel/core@^7.20.12", "@babel/core@^7.20.2", "@babel/core@^7.21.3", "@babel/core@^7.22.9", "@babel/core@^7.7.5":
+"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.17.7", "@babel/core@^7.20.12", "@babel/core@^7.21.3", "@babel/core@^7.22.9", "@babel/core@^7.7.5":
version "7.22.20"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.20.tgz#e3d0eed84c049e2a2ae0a64d27b6a37edec385b7"
integrity sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==
@@ -110,28 +103,7 @@
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/core@~7.21.0":
- version "7.21.8"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4"
- integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==
- dependencies:
- "@ampproject/remapping" "^2.2.0"
- "@babel/code-frame" "^7.21.4"
- "@babel/generator" "^7.21.5"
- "@babel/helper-compilation-targets" "^7.21.5"
- "@babel/helper-module-transforms" "^7.21.5"
- "@babel/helpers" "^7.21.5"
- "@babel/parser" "^7.21.8"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.21.5"
- "@babel/types" "^7.21.5"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.2.2"
- semver "^6.3.0"
-
-"@babel/generator@^7.12.11", "@babel/generator@^7.14.0", "@babel/generator@^7.17.7", "@babel/generator@^7.18.13", "@babel/generator@^7.21.5", "@babel/generator@^7.22.15", "@babel/generator@^7.22.9":
+"@babel/generator@^7.12.11", "@babel/generator@^7.14.0", "@babel/generator@^7.17.7", "@babel/generator@^7.18.13", "@babel/generator@^7.22.15", "@babel/generator@^7.22.9":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.15.tgz#1564189c7ec94cb8f77b5e8a90c4d200d21b2339"
integrity sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==
@@ -141,17 +113,7 @@
"@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
-"@babel/generator@~7.21.1":
- version "7.21.9"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.9.tgz#3a1b706e07d836e204aee0650e8ee878d3aaa241"
- integrity sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg==
- dependencies:
- "@babel/types" "^7.21.5"
- "@jridgewell/gen-mapping" "^0.3.2"
- "@jridgewell/trace-mapping" "^0.3.17"
- jsesc "^2.5.1"
-
-"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5":
+"@babel/helper-annotate-as-pure@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
@@ -165,7 +127,7 @@
dependencies:
"@babel/types" "^7.22.15"
-"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6":
+"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52"
integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==
@@ -176,7 +138,7 @@
lru-cache "^5.1.1"
semver "^6.3.1"
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0", "@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.22.5":
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.22.5":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4"
integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==
@@ -200,18 +162,6 @@
regexpu-core "^5.3.1"
semver "^6.3.1"
-"@babel/helper-define-polyfill-provider@^0.3.3":
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a"
- integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==
- dependencies:
- "@babel/helper-compilation-targets" "^7.17.7"
- "@babel/helper-plugin-utils" "^7.16.7"
- debug "^4.1.1"
- lodash.debounce "^4.0.8"
- resolve "^1.14.2"
- semver "^6.1.2"
-
"@babel/helper-define-polyfill-provider@^0.4.2":
version "0.4.2"
resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7"
@@ -223,12 +173,12 @@
lodash.debounce "^4.0.8"
resolve "^1.14.2"
-"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5", "@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5":
+"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5":
version "7.22.20"
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
-"@babel/helper-function-name@^7.21.0", "@babel/helper-function-name@^7.22.5":
+"@babel/helper-function-name@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be"
integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==
@@ -236,7 +186,7 @@
"@babel/template" "^7.22.5"
"@babel/types" "^7.22.5"
-"@babel/helper-hoist-variables@^7.18.6", "@babel/helper-hoist-variables@^7.22.5":
+"@babel/helper-hoist-variables@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
@@ -257,7 +207,7 @@
dependencies:
"@babel/types" "^7.22.15"
-"@babel/helper-module-transforms@^7.21.5", "@babel/helper-module-transforms@^7.22.15", "@babel/helper-module-transforms@^7.22.20", "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9":
+"@babel/helper-module-transforms@^7.22.15", "@babel/helper-module-transforms@^7.22.20", "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9":
version "7.22.20"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz#da9edc14794babbe7386df438f3768067132f59e"
integrity sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==
@@ -275,12 +225,12 @@
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
-"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9":
+"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9":
version "7.22.20"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0"
integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==
@@ -312,24 +262,24 @@
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-split-export-declaration@^7.18.6", "@babel/helper-split-export-declaration@^7.22.6":
+"@babel/helper-split-export-declaration@^7.22.6":
version "7.22.6"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-string-parser@^7.21.5", "@babel/helper-string-parser@^7.22.5":
+"@babel/helper-string-parser@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
-"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.22.19", "@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.22.5":
+"@babel/helper-validator-identifier@^7.22.19", "@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.22.5":
version "7.22.20"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
-"@babel/helper-validator-option@^7.21.0", "@babel/helper-validator-option@^7.22.15":
+"@babel/helper-validator-option@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040"
integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==
@@ -343,7 +293,7 @@
"@babel/template" "^7.22.15"
"@babel/types" "^7.22.19"
-"@babel/helpers@^7.21.5", "@babel/helpers@^7.22.15":
+"@babel/helpers@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.15.tgz#f09c3df31e86e3ea0b7ff7556d85cdebd47ea6f1"
integrity sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==
@@ -361,24 +311,19 @@
chalk "^2.4.2"
js-tokens "^4.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.8", "@babel/parser@^7.17.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8", "@babel/parser@^7.22.15", "@babel/parser@^7.22.16", "@babel/parser@^7.22.7":
+"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.8", "@babel/parser@^7.17.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.22.16", "@babel/parser@^7.22.7":
version "7.22.16"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95"
integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==
-"@babel/parser@~7.21.2":
- version "7.21.9"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.9.tgz#ab18ea3b85b4bc33ba98a8d4c2032c557d23cf14"
- integrity sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==
-
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15":
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962"
integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15":
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz#2aeb91d337d4e1a1e7ce85b76a37f5301781200f"
integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==
@@ -387,17 +332,7 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/plugin-transform-optional-chaining" "^7.22.15"
-"@babel/plugin-proposal-async-generator-functions@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326"
- integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==
- dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-remap-async-to-generator" "^7.18.9"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
-
-"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.6":
+"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
@@ -405,48 +340,7 @@
"@babel/helper-create-class-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-proposal-class-static-block@^7.21.0":
- version "7.21.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d"
- integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.21.0"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
-
-"@babel/plugin-proposal-dynamic-import@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94"
- integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
-
-"@babel/plugin-proposal-export-namespace-from@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203"
- integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-
-"@babel/plugin-proposal-json-strings@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b"
- integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
-
-"@babel/plugin-proposal-logical-assignment-operators@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83"
- integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==
- dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
@@ -454,15 +348,7 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-"@babel/plugin-proposal-numeric-separator@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75"
- integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-
-"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.20.7":
+"@babel/plugin-proposal-object-rest-spread@^7.0.0":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a"
integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
@@ -473,15 +359,7 @@
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.20.7"
-"@babel/plugin-proposal-optional-catch-binding@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb"
- integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-
-"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.21.0":
+"@babel/plugin-proposal-optional-chaining@^7.13.12":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
@@ -490,37 +368,11 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
-"@babel/plugin-proposal-private-methods@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea"
- integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
-
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
version "7.21.0-placeholder-for-preset-env.2"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
-"@babel/plugin-proposal-private-property-in-object@^7.21.0":
- version "7.21.11"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz#69d597086b6760c4126525cfa154f34631ff272c"
- integrity sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-create-class-features-plugin" "^7.21.0"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
-
-"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
- integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
-
"@babel/plugin-syntax-async-generators@^7.8.4":
version "7.8.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
@@ -669,7 +521,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.21.5", "@babel/plugin-transform-arrow-functions@^7.22.5":
+"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
@@ -686,7 +538,7 @@
"@babel/helper-remap-async-to-generator" "^7.22.9"
"@babel/plugin-syntax-async-generators" "^7.8.4"
-"@babel/plugin-transform-async-to-generator@^7.20.7", "@babel/plugin-transform-async-to-generator@^7.22.5":
+"@babel/plugin-transform-async-to-generator@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
@@ -695,14 +547,14 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-remap-async-to-generator" "^7.22.5"
-"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.18.6", "@babel/plugin-transform-block-scoped-functions@^7.22.5":
+"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.21.0", "@babel/plugin-transform-block-scoping@^7.22.15":
+"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.15.tgz#494eb82b87b5f8b1d8f6f28ea74078ec0a10a841"
integrity sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==
@@ -726,7 +578,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
-"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.21.0", "@babel/plugin-transform-classes@^7.22.15":
+"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b"
integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==
@@ -741,7 +593,7 @@
"@babel/helper-split-export-declaration" "^7.22.6"
globals "^11.1.0"
-"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.21.5", "@babel/plugin-transform-computed-properties@^7.22.5":
+"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
@@ -749,14 +601,14 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/template" "^7.22.5"
-"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.21.3", "@babel/plugin-transform-destructuring@^7.22.15":
+"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.15.tgz#e7404ea5bb3387073b9754be654eecb578324694"
integrity sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
+"@babel/plugin-transform-dotall-regex@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165"
integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==
@@ -764,7 +616,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-duplicate-keys@^7.18.9", "@babel/plugin-transform-duplicate-keys@^7.22.5":
+"@babel/plugin-transform-duplicate-keys@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285"
integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==
@@ -779,7 +631,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
-"@babel/plugin-transform-exponentiation-operator@^7.18.6", "@babel/plugin-transform-exponentiation-operator@^7.22.5":
+"@babel/plugin-transform-exponentiation-operator@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
@@ -803,14 +655,14 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-flow" "^7.22.5"
-"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.21.5", "@babel/plugin-transform-for-of@^7.22.15":
+"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29"
integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.18.9", "@babel/plugin-transform-function-name@^7.22.5":
+"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
@@ -827,7 +679,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-json-strings" "^7.8.3"
-"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.18.9", "@babel/plugin-transform-literals@^7.22.5":
+"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
@@ -842,14 +694,14 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.18.6", "@babel/plugin-transform-member-expression-literals@^7.22.5":
+"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-modules-amd@^7.20.11", "@babel/plugin-transform-modules-amd@^7.22.5":
+"@babel/plugin-transform-modules-amd@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526"
integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==
@@ -857,7 +709,7 @@
"@babel/helper-module-transforms" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.21.5", "@babel/plugin-transform-modules-commonjs@^7.22.15":
+"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.15.tgz#b11810117ed4ee7691b29bd29fd9f3f98276034f"
integrity sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==
@@ -866,7 +718,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-simple-access" "^7.22.5"
-"@babel/plugin-transform-modules-systemjs@^7.20.11", "@babel/plugin-transform-modules-systemjs@^7.22.11":
+"@babel/plugin-transform-modules-systemjs@^7.22.11":
version "7.22.11"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.11.tgz#3386be5875d316493b517207e8f1931d93154bb1"
integrity sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==
@@ -876,7 +728,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-validator-identifier" "^7.22.5"
-"@babel/plugin-transform-modules-umd@^7.18.6", "@babel/plugin-transform-modules-umd@^7.22.5":
+"@babel/plugin-transform-modules-umd@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98"
integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==
@@ -884,7 +736,7 @@
"@babel/helper-module-transforms" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.20.5", "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5":
+"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f"
integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==
@@ -892,7 +744,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-new-target@^7.18.6", "@babel/plugin-transform-new-target@^7.22.5":
+"@babel/plugin-transform-new-target@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d"
integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==
@@ -926,7 +778,7 @@
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.22.15"
-"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.18.6", "@babel/plugin-transform-object-super@^7.22.5":
+"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
@@ -951,7 +803,7 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
-"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3", "@babel/plugin-transform-parameters@^7.22.15":
+"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114"
integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==
@@ -976,7 +828,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
-"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.18.6", "@babel/plugin-transform-property-literals@^7.22.5":
+"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
@@ -1018,7 +870,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.19.0", "@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5":
+"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz#7e6266d88705d7c49f11c98db8b9464531289cd6"
integrity sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==
@@ -1037,7 +889,7 @@
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-regenerator@^7.21.5", "@babel/plugin-transform-regenerator@^7.22.10":
+"@babel/plugin-transform-regenerator@^7.22.10":
version "7.22.10"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca"
integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==
@@ -1045,21 +897,21 @@
"@babel/helper-plugin-utils" "^7.22.5"
regenerator-transform "^0.15.2"
-"@babel/plugin-transform-reserved-words@^7.18.6", "@babel/plugin-transform-reserved-words@^7.22.5":
+"@babel/plugin-transform-reserved-words@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb"
integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.18.6", "@babel/plugin-transform-shorthand-properties@^7.22.5":
+"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.20.7", "@babel/plugin-transform-spread@^7.22.5":
+"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
@@ -1067,21 +919,21 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
-"@babel/plugin-transform-sticky-regex@^7.18.6", "@babel/plugin-transform-sticky-regex@^7.22.5":
+"@babel/plugin-transform-sticky-regex@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.18.9", "@babel/plugin-transform-template-literals@^7.22.5":
+"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-typeof-symbol@^7.18.9", "@babel/plugin-transform-typeof-symbol@^7.22.5":
+"@babel/plugin-transform-typeof-symbol@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34"
integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==
@@ -1098,7 +950,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-typescript" "^7.22.5"
-"@babel/plugin-transform-unicode-escapes@^7.21.5", "@babel/plugin-transform-unicode-escapes@^7.22.10":
+"@babel/plugin-transform-unicode-escapes@^7.22.10":
version "7.22.10"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9"
integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==
@@ -1113,7 +965,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-unicode-regex@^7.18.6", "@babel/plugin-transform-unicode-regex@^7.22.5":
+"@babel/plugin-transform-unicode-regex@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
@@ -1215,88 +1067,6 @@
core-js-compat "^3.31.0"
semver "^6.3.1"
-"@babel/preset-env@~7.21.0":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.21.5.tgz#db2089d99efd2297716f018aeead815ac3decffb"
- integrity sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==
- dependencies:
- "@babel/compat-data" "^7.21.5"
- "@babel/helper-compilation-targets" "^7.21.5"
- "@babel/helper-plugin-utils" "^7.21.5"
- "@babel/helper-validator-option" "^7.21.0"
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.20.7"
- "@babel/plugin-proposal-async-generator-functions" "^7.20.7"
- "@babel/plugin-proposal-class-properties" "^7.18.6"
- "@babel/plugin-proposal-class-static-block" "^7.21.0"
- "@babel/plugin-proposal-dynamic-import" "^7.18.6"
- "@babel/plugin-proposal-export-namespace-from" "^7.18.9"
- "@babel/plugin-proposal-json-strings" "^7.18.6"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.20.7"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
- "@babel/plugin-proposal-numeric-separator" "^7.18.6"
- "@babel/plugin-proposal-object-rest-spread" "^7.20.7"
- "@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
- "@babel/plugin-proposal-optional-chaining" "^7.21.0"
- "@babel/plugin-proposal-private-methods" "^7.18.6"
- "@babel/plugin-proposal-private-property-in-object" "^7.21.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/plugin-syntax-class-properties" "^7.12.13"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-import-assertions" "^7.20.0"
- "@babel/plugin-syntax-import-meta" "^7.10.4"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
- "@babel/plugin-syntax-top-level-await" "^7.14.5"
- "@babel/plugin-transform-arrow-functions" "^7.21.5"
- "@babel/plugin-transform-async-to-generator" "^7.20.7"
- "@babel/plugin-transform-block-scoped-functions" "^7.18.6"
- "@babel/plugin-transform-block-scoping" "^7.21.0"
- "@babel/plugin-transform-classes" "^7.21.0"
- "@babel/plugin-transform-computed-properties" "^7.21.5"
- "@babel/plugin-transform-destructuring" "^7.21.3"
- "@babel/plugin-transform-dotall-regex" "^7.18.6"
- "@babel/plugin-transform-duplicate-keys" "^7.18.9"
- "@babel/plugin-transform-exponentiation-operator" "^7.18.6"
- "@babel/plugin-transform-for-of" "^7.21.5"
- "@babel/plugin-transform-function-name" "^7.18.9"
- "@babel/plugin-transform-literals" "^7.18.9"
- "@babel/plugin-transform-member-expression-literals" "^7.18.6"
- "@babel/plugin-transform-modules-amd" "^7.20.11"
- "@babel/plugin-transform-modules-commonjs" "^7.21.5"
- "@babel/plugin-transform-modules-systemjs" "^7.20.11"
- "@babel/plugin-transform-modules-umd" "^7.18.6"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.20.5"
- "@babel/plugin-transform-new-target" "^7.18.6"
- "@babel/plugin-transform-object-super" "^7.18.6"
- "@babel/plugin-transform-parameters" "^7.21.3"
- "@babel/plugin-transform-property-literals" "^7.18.6"
- "@babel/plugin-transform-regenerator" "^7.21.5"
- "@babel/plugin-transform-reserved-words" "^7.18.6"
- "@babel/plugin-transform-shorthand-properties" "^7.18.6"
- "@babel/plugin-transform-spread" "^7.20.7"
- "@babel/plugin-transform-sticky-regex" "^7.18.6"
- "@babel/plugin-transform-template-literals" "^7.18.9"
- "@babel/plugin-transform-typeof-symbol" "^7.18.9"
- "@babel/plugin-transform-unicode-escapes" "^7.21.5"
- "@babel/plugin-transform-unicode-regex" "^7.18.6"
- "@babel/preset-modules" "^0.1.5"
- "@babel/types" "^7.21.5"
- babel-plugin-polyfill-corejs2 "^0.3.3"
- babel-plugin-polyfill-corejs3 "^0.6.0"
- babel-plugin-polyfill-regenerator "^0.4.1"
- core-js-compat "^3.25.1"
- semver "^6.3.0"
-
"@babel/preset-flow@^7.13.13":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.22.15.tgz#30318deb9b3ebd9f5738e96da03a531e0cd3165d"
@@ -1315,17 +1085,6 @@
"@babel/types" "^7.4.4"
esutils "^2.0.2"
-"@babel/preset-modules@^0.1.5":
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6.tgz#31bcdd8f19538437339d17af00d177d854d9d458"
- integrity sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
- "@babel/plugin-transform-dotall-regex" "^7.4.4"
- "@babel/types" "^7.4.4"
- esutils "^2.0.2"
-
"@babel/preset-react@^7.18.6":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.15.tgz#9a776892b648e13cc8ca2edf5ed1264eea6b6afc"
@@ -1381,7 +1140,7 @@
"@babel/parser" "^7.22.15"
"@babel/types" "^7.22.15"
-"@babel/traverse@^7.1.6", "@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.3", "@babel/traverse@^7.21.5", "@babel/traverse@^7.22.15", "@babel/traverse@^7.22.20", "@babel/traverse@^7.22.8":
+"@babel/traverse@^7.1.6", "@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.3", "@babel/traverse@^7.22.15", "@babel/traverse@^7.22.20", "@babel/traverse@^7.22.8":
version "7.22.20"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.20.tgz#db572d9cb5c79e02d83e5618b82f6991c07584c9"
integrity sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==
@@ -1397,22 +1156,6 @@
debug "^4.1.0"
globals "^11.1.0"
-"@babel/traverse@~7.21.2":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133"
- integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==
- dependencies:
- "@babel/code-frame" "^7.21.4"
- "@babel/generator" "^7.21.5"
- "@babel/helper-environment-visitor" "^7.21.5"
- "@babel/helper-function-name" "^7.21.0"
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.21.5"
- "@babel/types" "^7.21.5"
- debug "^4.1.0"
- globals "^11.1.0"
-
"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.18.13", "@babel/types@^7.2.0", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.21.5", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.4.4":
version "7.22.19"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.19.tgz#7425343253556916e440e662bb221a93ddb75684"
@@ -1422,15 +1165,6 @@
"@babel/helper-validator-identifier" "^7.22.19"
to-fast-properties "^2.0.0"
-"@babel/types@~7.21.2":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6"
- integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==
- dependencies:
- "@babel/helper-string-parser" "^7.21.5"
- "@babel/helper-validator-identifier" "^7.19.1"
- to-fast-properties "^2.0.0"
-
"@base2/pretty-print-object@1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz#371ba8be66d556812dc7fb169ebc3c08378f69d4"
@@ -4939,14 +4673,6 @@
estree-walker "^1.0.1"
picomatch "^2.2.2"
-"@rollup/pluginutils@^4.2.0":
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d"
- integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==
- dependencies:
- estree-walker "^2.0.1"
- picomatch "^2.2.2"
-
"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.2":
version "5.0.4"
resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.4.tgz#74f808f9053d33bafec0cc98e7b835c9667d32ba"
@@ -4976,28 +4702,6 @@
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-2.1.1.tgz#ceff6a28a5b4867c2dd4a1ba513de278ccbe8bb1"
integrity sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg==
-"@storybook/addon-actions@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-7.0.14.tgz#97329ac121220eab7a8f010d4d0e4cfa559ff159"
- integrity sha512-/gaKSc0hPZvTjnXG+Ohc8UZF3cCiCVyrdH1StxTfrAb7K3Jg+V1bK/dQ7XkC3IwbJSM/uqmYe5rdEpNXouymlQ==
- dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/core-events" "7.0.14"
- "@storybook/global" "^5.0.0"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/theming" "7.0.14"
- "@storybook/types" "7.0.14"
- dequal "^2.0.2"
- lodash "^4.17.21"
- polished "^4.2.2"
- prop-types "^15.7.2"
- react-inspector "^6.0.0"
- telejson "^7.0.3"
- ts-dedent "^2.0.0"
- uuid "^9.0.0"
-
"@storybook/addon-actions@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-7.3.2.tgz#36b8e15a851a12a6fff543d9785307ae02934a8f"
@@ -5020,7 +4724,29 @@
ts-dedent "^2.0.0"
uuid "^9.0.0"
-"@storybook/addon-actions@^7.0.14", "@storybook/addon-actions@^7.3.2":
+"@storybook/addon-actions@7.4.6", "@storybook/addon-actions@^7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-7.4.6.tgz#080bd1612a744cc3fc4a435a07a63d2d8c05f030"
+ integrity sha512-SsqZr3js5NinKPnC8AeNI7Ij+Q6fIl9tRdRmSulEgjksjOg7E5S1/Wsn5Bb2CCgj7MaX6VxGyC7s3XskQtDiIQ==
+ dependencies:
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/global" "^5.0.0"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/theming" "7.4.6"
+ "@storybook/types" "7.4.6"
+ dequal "^2.0.2"
+ lodash "^4.17.21"
+ polished "^4.2.2"
+ prop-types "^15.7.2"
+ react-inspector "^6.0.0"
+ telejson "^7.2.0"
+ ts-dedent "^2.0.0"
+ uuid "^9.0.0"
+
+"@storybook/addon-actions@^7.3.2":
version "7.4.3"
resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-7.4.3.tgz#b4e3de0067883f31c342e2b302dd295c49ced9d9"
integrity sha512-ROlhxTQxBtMvfUU8ZTZZ6M0ALbUuChm2Fkau9inZyLgaE/HJbjAUCU7TbHFQ7GgdqA3/Lnw0Soox8cmjI4QQWA==
@@ -5042,22 +4768,6 @@
ts-dedent "^2.0.0"
uuid "^9.0.0"
-"@storybook/addon-backgrounds@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.14.tgz#bd139c53b10173394c050cfc1430276d44531bc2"
- integrity sha512-0zuNcRKFK5GYok1SySh93k7r9n79F6e+zz+Y0YpD4b1zHSfqfDHsBc663RyvVBiixrNw20g5pB9U8u9A4sajxA==
- dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/core-events" "7.0.14"
- "@storybook/global" "^5.0.0"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/theming" "7.0.14"
- "@storybook/types" "7.0.14"
- memoizerific "^1.11.3"
- ts-dedent "^2.0.0"
-
"@storybook/addon-backgrounds@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-7.3.2.tgz#e2361b162c5aac1e71ee45b8c8607d3e8fe613be"
@@ -5074,6 +4784,22 @@
memoizerific "^1.11.3"
ts-dedent "^2.0.0"
+"@storybook/addon-backgrounds@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-7.4.6.tgz#315ac726e606259ce868b78c7b966cc9489b51ea"
+ integrity sha512-+LHTZB/ZYMAzkyD5ZxSriBsqmsrvIaW/Nnd/BeuXGbkrVKKqM0qAKiFZAfjc2WchA1piVNy0/1Rsf+kuYCEiJw==
+ dependencies:
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/global" "^5.0.0"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/theming" "7.4.6"
+ "@storybook/types" "7.4.6"
+ memoizerific "^1.11.3"
+ ts-dedent "^2.0.0"
+
"@storybook/addon-console@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@storybook/addon-console/-/addon-console-2.0.0.tgz#aaed50ab3b183a468ab272f9aefcb3ca6278728d"
@@ -5081,23 +4807,6 @@
dependencies:
"@storybook/global" "^5.0.0"
-"@storybook/addon-controls@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-7.0.14.tgz#d517d6dc9ae0fba9c8d024d284b85e4ad09d4606"
- integrity sha512-EVVpjctBbsVpIPXXTMz0Ax5pG2L7WTjBFZ7h9MzhfpwycSCYYg125O2YBvg3jq6/mgP6jVmmwv4o3VJoPbus8Q==
- dependencies:
- "@storybook/blocks" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/core-common" "7.0.14"
- "@storybook/manager-api" "7.0.14"
- "@storybook/node-logger" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/theming" "7.0.14"
- "@storybook/types" "7.0.14"
- lodash "^4.17.21"
- ts-dedent "^2.0.0"
-
"@storybook/addon-controls@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-7.3.2.tgz#4a8cf72cbbda9cc1fa0327652bfad1874e407e9c"
@@ -5116,31 +4825,22 @@
lodash "^4.17.21"
ts-dedent "^2.0.0"
-"@storybook/addon-docs@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-7.0.14.tgz#adcb38c5c4c01bdb7bc15f6bdc91fdbc54730826"
- integrity sha512-6fC+NVNvkWTVDOfCaxUxI4AVVSvQd0qxcUw7cO7ti/G/HKEPmC+hAT4rVVDBnj+XCNtAvEN+wt0mOFIBndN1iQ==
- dependencies:
- "@babel/core" "^7.20.2"
- "@babel/plugin-transform-react-jsx" "^7.19.0"
- "@jest/transform" "^29.3.1"
- "@mdx-js/react" "^2.1.5"
- "@storybook/blocks" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/csf-plugin" "7.0.14"
- "@storybook/csf-tools" "7.0.14"
- "@storybook/global" "^5.0.0"
- "@storybook/mdx2-csf" "^1.0.0"
- "@storybook/node-logger" "7.0.14"
- "@storybook/postinstall" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/react-dom-shim" "7.0.14"
- "@storybook/theming" "7.0.14"
- "@storybook/types" "7.0.14"
- fs-extra "^11.1.0"
- remark-external-links "^8.0.0"
- remark-slug "^6.0.0"
+"@storybook/addon-controls@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-7.4.6.tgz#b1db7a0faacb25b9a6f54c2dff2ba94d06619bd4"
+ integrity sha512-4lq3sycEUIsK8SUWDYc60QgF4vV9FZZ3lDr6M7j2W9bOnvGw49d2fbdlnq+bX1ZprZZ9VgglQpBAorQB3BXZRw==
+ dependencies:
+ "@storybook/blocks" "7.4.6"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/core-common" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/node-logger" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/theming" "7.4.6"
+ "@storybook/types" "7.4.6"
+ lodash "^4.17.21"
ts-dedent "^2.0.0"
"@storybook/addon-docs@7.3.2":
@@ -5168,24 +4868,29 @@
remark-slug "^6.0.0"
ts-dedent "^2.0.0"
-"@storybook/addon-essentials@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-7.0.14.tgz#56091c529feed1e00effe6b665ae82838f0e5a15"
- integrity sha512-mJxI94j8PA50n+a79//5E2YSTRo8X0syo02GQjkq2EJwKc9N/7cItZV02ir9iegczAEoqtWFk3khlv4Hx/pOPQ==
- dependencies:
- "@storybook/addon-actions" "7.0.14"
- "@storybook/addon-backgrounds" "7.0.14"
- "@storybook/addon-controls" "7.0.14"
- "@storybook/addon-docs" "7.0.14"
- "@storybook/addon-highlight" "7.0.14"
- "@storybook/addon-measure" "7.0.14"
- "@storybook/addon-outline" "7.0.14"
- "@storybook/addon-toolbars" "7.0.14"
- "@storybook/addon-viewport" "7.0.14"
- "@storybook/core-common" "7.0.14"
- "@storybook/manager-api" "7.0.14"
- "@storybook/node-logger" "7.0.14"
- "@storybook/preview-api" "7.0.14"
+"@storybook/addon-docs@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-7.4.6.tgz#f2cc635a77cfb3e2910d6ca813add9a16785595d"
+ integrity sha512-dLaub+XWFq4hChw+xfuF9yYg0Txp77FUawKoAigccfjWXx+OOhRV3XTuAcknpXkYq94GWynHgUFXosXT9kbDNA==
+ dependencies:
+ "@jest/transform" "^29.3.1"
+ "@mdx-js/react" "^2.1.5"
+ "@storybook/blocks" "7.4.6"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/csf-plugin" "7.4.6"
+ "@storybook/csf-tools" "7.4.6"
+ "@storybook/global" "^5.0.0"
+ "@storybook/mdx2-csf" "^1.0.0"
+ "@storybook/node-logger" "7.4.6"
+ "@storybook/postinstall" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/react-dom-shim" "7.4.6"
+ "@storybook/theming" "7.4.6"
+ "@storybook/types" "7.4.6"
+ fs-extra "^11.1.0"
+ remark-external-links "^8.0.0"
+ remark-slug "^6.0.0"
ts-dedent "^2.0.0"
"@storybook/addon-essentials@7.3.2":
@@ -5208,14 +4913,25 @@
"@storybook/preview-api" "7.3.2"
ts-dedent "^2.0.0"
-"@storybook/addon-highlight@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-highlight/-/addon-highlight-7.0.14.tgz#74c0d7577166633895c55a1c876d8af32e3eed68"
- integrity sha512-6lQmvqgC7OUcBFsmQxb35hhEuYVQ7j7jWU0quCqAkzsZ0z63rF1Ip+pSHvz9GYwly0kgocRuqPFVevRnrgaQnQ==
- dependencies:
- "@storybook/core-events" "7.0.14"
- "@storybook/global" "^5.0.0"
- "@storybook/preview-api" "7.0.14"
+"@storybook/addon-essentials@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-7.4.6.tgz#b9c83dbdae0ffd6f24fa9328b36488d563714260"
+ integrity sha512-dWodufrt71TK7ELkeIvVae/x4PzECUlbOm57Iqqt4yQCyR291CgvI4PjeB8un2HbpcXCGZ+N/Oj3YkytvzBi4A==
+ dependencies:
+ "@storybook/addon-actions" "7.4.6"
+ "@storybook/addon-backgrounds" "7.4.6"
+ "@storybook/addon-controls" "7.4.6"
+ "@storybook/addon-docs" "7.4.6"
+ "@storybook/addon-highlight" "7.4.6"
+ "@storybook/addon-measure" "7.4.6"
+ "@storybook/addon-outline" "7.4.6"
+ "@storybook/addon-toolbars" "7.4.6"
+ "@storybook/addon-viewport" "7.4.6"
+ "@storybook/core-common" "7.4.6"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/node-logger" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ ts-dedent "^2.0.0"
"@storybook/addon-highlight@7.3.2":
version "7.3.2"
@@ -5226,24 +4942,14 @@
"@storybook/global" "^5.0.0"
"@storybook/preview-api" "7.3.2"
-"@storybook/addon-interactions@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-interactions/-/addon-interactions-7.0.14.tgz#833278d73e794335a3120fca25b85a38f74071a1"
- integrity sha512-J/zopy1AAmLHYxgQxGe7P8Dkl0XTscG6DvZJ/oOr7GzjjMuercfg9dTqMxidHn1l8Oos8p9vJn3Up7yarm7QDA==
+"@storybook/addon-highlight@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-highlight/-/addon-highlight-7.4.6.tgz#ee688232fe260f1b926205ddc1ceb1e0781dcbaf"
+ integrity sha512-zCufxxD2KS5VwczxfkcBxe1oR/juTTn2H1Qm8kYvWCJQx3UxzX0+G9cwafbpV7eivqaufLweEwROkH+0KjAtkQ==
dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/core-common" "7.0.14"
- "@storybook/core-events" "7.0.14"
+ "@storybook/core-events" "7.4.6"
"@storybook/global" "^5.0.0"
- "@storybook/instrumenter" "7.0.14"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/theming" "7.0.14"
- "@storybook/types" "7.0.14"
- jest-mock "^27.0.6"
- polished "^4.2.2"
- ts-dedent "^2.2.0"
+ "@storybook/preview-api" "7.4.6"
"@storybook/addon-interactions@7.3.2":
version "7.3.2"
@@ -5264,21 +4970,24 @@
polished "^4.2.2"
ts-dedent "^2.2.0"
-"@storybook/addon-links@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-7.0.14.tgz#03b1ec001c87536b79fd171c46aca714329b71b5"
- integrity sha512-WAy5FxZSWc95k6aNgo+Uu54cNruSvT6rU2QQT7mZjdQCRFK+fO5eU5fZpybxDNpEj0SKbG9XVFxaer4doMzAkA==
+"@storybook/addon-interactions@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-interactions/-/addon-interactions-7.4.6.tgz#643659a6fd1a90e9fecaf6309276d29c3cee8af1"
+ integrity sha512-zVZYrEPZPhNrXBuPqM7HbQvr6jwsje1sbCYj3wnp83U5wjciuqrngqHIlaSZ30zOWSfRVyzbyqL+JQZKA58BNA==
dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/core-events" "7.0.14"
- "@storybook/csf" "^0.1.0"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/core-common" "7.4.6"
+ "@storybook/core-events" "7.4.6"
"@storybook/global" "^5.0.0"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/router" "7.0.14"
- "@storybook/types" "7.0.14"
- prop-types "^15.7.2"
- ts-dedent "^2.0.0"
+ "@storybook/instrumenter" "7.4.6"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/theming" "7.4.6"
+ "@storybook/types" "7.4.6"
+ jest-mock "^27.0.6"
+ polished "^4.2.2"
+ ts-dedent "^2.2.0"
"@storybook/addon-links@7.3.2":
version "7.3.2"
@@ -5296,18 +5005,21 @@
prop-types "^15.7.2"
ts-dedent "^2.0.0"
-"@storybook/addon-measure@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-measure/-/addon-measure-7.0.14.tgz#28d64dde191542e47ea5e9eb296d0737066d4c73"
- integrity sha512-IQKna2ceadqs72Q6yk0Eksct2mQ/RXwpU6tK/vd912+NHQzOKxgswqxHNDUnl6Xtgwijt/vJNken720Rhn6L/Q==
+"@storybook/addon-links@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-7.4.6.tgz#6bf1730b8f44d85a0b601d268fd6fb0726bbc360"
+ integrity sha512-BPygElZKX+CPI9Se6GJNk1dYc5oxuhA+vHigO1tBqhiM6VkHyFP3cvezJNQvpNYhkUnu3cxnZXb3UJnlRbPY3g==
dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/core-events" "7.0.14"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/csf" "^0.1.0"
"@storybook/global" "^5.0.0"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/types" "7.0.14"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/router" "7.4.6"
+ "@storybook/types" "7.4.6"
+ prop-types "^15.7.2"
+ ts-dedent "^2.0.0"
"@storybook/addon-measure@7.3.2":
version "7.3.2"
@@ -5323,19 +5035,19 @@
"@storybook/types" "7.3.2"
tiny-invariant "^1.3.1"
-"@storybook/addon-outline@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-outline/-/addon-outline-7.0.14.tgz#bd4c76ea0035d147318c2a8b638b11a802824bc1"
- integrity sha512-vgBa0AESYVrWEH94NsNSwIS/dVlnwemk4xijbxkvrWhqk1weQIeFQHK5SKGNUuXu+8I/8reyQQb2Ic7B9fgsow==
+"@storybook/addon-measure@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-measure/-/addon-measure-7.4.6.tgz#12cb5ffab78c922809178c0ee8574b264ff2de5d"
+ integrity sha512-nCymMLaHnxv8TE3yEM1A9Tulb1NuRXRNmtsdHTkjv7P1aWCxZo8A/GZaottKe/GLT8jSRjZ+dnpYWrbAhw6wTQ==
dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/core-events" "7.0.14"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/core-events" "7.4.6"
"@storybook/global" "^5.0.0"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/types" "7.0.14"
- ts-dedent "^2.0.0"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/types" "7.4.6"
+ tiny-invariant "^1.3.1"
"@storybook/addon-outline@7.3.2":
version "7.3.2"
@@ -5351,6 +5063,20 @@
"@storybook/types" "7.3.2"
ts-dedent "^2.0.0"
+"@storybook/addon-outline@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-outline/-/addon-outline-7.4.6.tgz#d375046bb6858ea9ec09fdaf03d5802a543b2a30"
+ integrity sha512-errNUblRVDLpuEaHQPr/nsrnsUkD2ARmXawkRvizgDWLIDMDJYjTON3MUCaVx3x+hlZ3I6X//G5TVcma8tCc8A==
+ dependencies:
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/global" "^5.0.0"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/types" "7.4.6"
+ ts-dedent "^2.0.0"
+
"@storybook/addon-styling@^1.3.6":
version "1.3.7"
resolved "https://registry.yarnpkg.com/@storybook/addon-styling/-/addon-styling-1.3.7.tgz#a440fafcbf2899fac28c3c778bec9f3c6fc02dd9"
@@ -5375,17 +5101,6 @@
sass-loader "^13.2.2"
style-loader "^3.3.2"
-"@storybook/addon-toolbars@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-7.0.14.tgz#5f39dd9047ce08be0406ed087f05610ee8dd1150"
- integrity sha512-IujroQra+0iKq6gdErZy5vyjtVrSmWqa41J1dZ/0xnOlDgI/j4mH8+DC3m0qBavbrJ8zbvAH6eki/WVSVeNrcQ==
- dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/theming" "7.0.14"
-
"@storybook/addon-toolbars@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-7.3.2.tgz#68637495ce2a850db3affb61b210a086a21d20e1"
@@ -5397,20 +5112,16 @@
"@storybook/preview-api" "7.3.2"
"@storybook/theming" "7.3.2"
-"@storybook/addon-viewport@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-7.0.14.tgz#26cc1cb8ac81fa8c35a888dc9845e170895bdbbc"
- integrity sha512-NQ3MxJNOzHVdh3OeGVBSEv0+uAagmoqgF3f9jl7P+kdt/1GQa0csYg9cI86L5//7/14MI4AWUeeqsPWJjLigqQ==
+"@storybook/addon-toolbars@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-7.4.6.tgz#04d270bb45f6cea45cecce084f7713c7dda047f9"
+ integrity sha512-L9m2FBcKeteGq7qIYsMJr0LEfiH7Wdrv5IDcldZTn68eZUJTh1p4GdJZcOmzX1P5IFRr76hpu03iWsNlWQjpbQ==
dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/core-events" "7.0.14"
- "@storybook/global" "^5.0.0"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/theming" "7.0.14"
- memoizerific "^1.11.3"
- prop-types "^15.7.2"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/theming" "7.4.6"
"@storybook/addon-viewport@7.3.2":
version "7.3.2"
@@ -5427,14 +5138,20 @@
memoizerific "^1.11.3"
prop-types "^15.7.2"
-"@storybook/addons@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-7.0.14.tgz#4cac751cda3c495b9633df3342caef3576409a51"
- integrity sha512-r/bBBMaJTFC/f/AAZR9NPiTGsb+ScllhzrvBEA7nfAOFg0Vv4m6h2fsysSM+htT7mFwp9gjqB8fFPeJZjS+UKA==
+"@storybook/addon-viewport@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-7.4.6.tgz#ff6fbe9b67310d16cd7b4a38dbc445a8fede6373"
+ integrity sha512-INDtk54j7bi7NgxMfd2ATmbA0J7nAd6X8itMkLIyPuPJtx8bYHPDORyemDOd0AojgmAdTOAyUtDYdI/PFeo4Cw==
dependencies:
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/types" "7.0.14"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/global" "^5.0.0"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/theming" "7.4.6"
+ memoizerific "^1.11.3"
+ prop-types "^15.7.2"
"@storybook/addons@7.3.2":
version "7.3.2"
@@ -5445,6 +5162,15 @@
"@storybook/preview-api" "7.3.2"
"@storybook/types" "7.3.2"
+"@storybook/addons@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-7.4.6.tgz#cca556ca30aa34652f9bbab30467a538df5b10fe"
+ integrity sha512-c+4awrtwNlJayFdgLkEXa5H2Gj+KNlxuN+Z5oDAdZBLqXI8g0gn7eYO2F/eCSIDWdd/+zcU2uq57XPFKc8veHQ==
+ dependencies:
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/types" "7.4.6"
+
"@storybook/api@^7.0.12":
version "7.4.3"
resolved "https://registry.yarnpkg.com/@storybook/api/-/api-7.4.3.tgz#109f50c5eef756a980d87c6570018a22620f5901"
@@ -5453,22 +5179,22 @@
"@storybook/client-logger" "7.4.3"
"@storybook/manager-api" "7.4.3"
-"@storybook/blocks@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-7.0.14.tgz#93c2c807737a246dde862adfdf9106c2d40008b7"
- integrity sha512-VwuyzS4q+Os+WrXUQMnXH+1ufXsOzu5lh7Ufp8fa7y0LMnYitsXvwm1RyEvwsePvVTyKm2vJ7zrLxAe+D5m/xA==
+"@storybook/blocks@7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-7.3.2.tgz#3fcc55848cdd972311d4d5b15282156ec8005204"
+ integrity sha512-j/PRnvGLn0Y3VAu/t6RrU7pjenb7II7Cl/SnFW8LzjMBKXBrkFaq8BRbglzDAUtGdAa9HmJBosogenoZ9iWoBw==
dependencies:
- "@storybook/channels" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/components" "7.0.14"
- "@storybook/core-events" "7.0.14"
+ "@storybook/channels" "7.3.2"
+ "@storybook/client-logger" "7.3.2"
+ "@storybook/components" "7.3.2"
+ "@storybook/core-events" "7.3.2"
"@storybook/csf" "^0.1.0"
- "@storybook/docs-tools" "7.0.14"
+ "@storybook/docs-tools" "7.3.2"
"@storybook/global" "^5.0.0"
- "@storybook/manager-api" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/theming" "7.0.14"
- "@storybook/types" "7.0.14"
+ "@storybook/manager-api" "7.3.2"
+ "@storybook/preview-api" "7.3.2"
+ "@storybook/theming" "7.3.2"
+ "@storybook/types" "7.3.2"
"@types/lodash" "^4.14.167"
color-convert "^2.0.1"
dequal "^2.0.2"
@@ -5478,25 +5204,26 @@
polished "^4.2.2"
react-colorful "^5.1.2"
telejson "^7.0.3"
+ tocbot "^4.20.1"
ts-dedent "^2.0.0"
util-deprecate "^1.0.2"
-"@storybook/blocks@7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-7.3.2.tgz#3fcc55848cdd972311d4d5b15282156ec8005204"
- integrity sha512-j/PRnvGLn0Y3VAu/t6RrU7pjenb7II7Cl/SnFW8LzjMBKXBrkFaq8BRbglzDAUtGdAa9HmJBosogenoZ9iWoBw==
+"@storybook/blocks@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-7.4.6.tgz#03134130fa20d6c36c6985008bc2c38892c5b8f5"
+ integrity sha512-HxBSAeOiTZW2jbHQlo1upRWFgoMsaAyKijUFf5MwwMNIesXCuuTGZDJ3xTABwAVLK2qC9Ektfbo0CZCiPVuDRQ==
dependencies:
- "@storybook/channels" "7.3.2"
- "@storybook/client-logger" "7.3.2"
- "@storybook/components" "7.3.2"
- "@storybook/core-events" "7.3.2"
+ "@storybook/channels" "7.4.6"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/components" "7.4.6"
+ "@storybook/core-events" "7.4.6"
"@storybook/csf" "^0.1.0"
- "@storybook/docs-tools" "7.3.2"
+ "@storybook/docs-tools" "7.4.6"
"@storybook/global" "^5.0.0"
- "@storybook/manager-api" "7.3.2"
- "@storybook/preview-api" "7.3.2"
- "@storybook/theming" "7.3.2"
- "@storybook/types" "7.3.2"
+ "@storybook/manager-api" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/theming" "7.4.6"
+ "@storybook/types" "7.4.6"
"@types/lodash" "^4.14.167"
color-convert "^2.0.1"
dequal "^2.0.2"
@@ -5505,26 +5232,26 @@
memoizerific "^1.11.3"
polished "^4.2.2"
react-colorful "^5.1.2"
- telejson "^7.0.3"
+ telejson "^7.2.0"
tocbot "^4.20.1"
ts-dedent "^2.0.0"
util-deprecate "^1.0.2"
-"@storybook/builder-manager@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/builder-manager/-/builder-manager-7.0.14.tgz#c30ebdd5e83c559e8c3c40b2e625ac6a19a43262"
- integrity sha512-Dkqd/sHCbsK8uzpko2g0iu7FyYFFTIWrg1zPD6qe+mKcHM+/fmFF4FgMHC1GkWNr8Q8G6m81UBsCadkCI5jpVg==
+"@storybook/builder-manager@7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@storybook/builder-manager/-/builder-manager-7.3.2.tgz#6a6c98143007f14e553fc9a106033fe721cfa8a4"
+ integrity sha512-M0zdzpnZSg6Gd/QiIbOJkVoifAADpMT85NOC5zuAg3h3o29hedVBAigv/CE2nSbuwZtqPifjxs1AUh7wgtmj8A==
dependencies:
"@fal-works/esbuild-plugin-global-externals" "^2.1.2"
- "@storybook/core-common" "7.0.14"
- "@storybook/manager" "7.0.14"
- "@storybook/node-logger" "7.0.14"
+ "@storybook/core-common" "7.3.2"
+ "@storybook/manager" "7.3.2"
+ "@storybook/node-logger" "7.3.2"
"@types/ejs" "^3.1.1"
"@types/find-cache-dir" "^3.2.1"
"@yarnpkg/esbuild-plugin-pnp" "^3.0.0-rc.10"
browser-assert "^1.2.1"
ejs "^3.1.8"
- esbuild "^0.17.0"
+ esbuild "^0.18.0"
esbuild-plugin-alias "^0.2.1"
express "^4.17.3"
find-cache-dir "^3.0.0"
@@ -5532,15 +5259,15 @@
process "^0.11.10"
util "^0.12.4"
-"@storybook/builder-manager@7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@storybook/builder-manager/-/builder-manager-7.3.2.tgz#6a6c98143007f14e553fc9a106033fe721cfa8a4"
- integrity sha512-M0zdzpnZSg6Gd/QiIbOJkVoifAADpMT85NOC5zuAg3h3o29hedVBAigv/CE2nSbuwZtqPifjxs1AUh7wgtmj8A==
+"@storybook/builder-manager@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/builder-manager/-/builder-manager-7.4.6.tgz#942a1a5e0a8b5956bd30867841fa1c542eb3d0bf"
+ integrity sha512-zylZCD2rmyLOOFBFmUgtJg6UNUKmRNgXiig1XApzS2TkIbTZP827DsVEUl0ey/lskCe0uArkrEBR6ICba8p/Rw==
dependencies:
"@fal-works/esbuild-plugin-global-externals" "^2.1.2"
- "@storybook/core-common" "7.3.2"
- "@storybook/manager" "7.3.2"
- "@storybook/node-logger" "7.3.2"
+ "@storybook/core-common" "7.4.6"
+ "@storybook/manager" "7.4.6"
+ "@storybook/node-logger" "7.4.6"
"@types/ejs" "^3.1.1"
"@types/find-cache-dir" "^3.2.1"
"@yarnpkg/esbuild-plugin-pnp" "^3.0.0-rc.10"
@@ -5554,32 +5281,6 @@
process "^0.11.10"
util "^0.12.4"
-"@storybook/builder-vite@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/builder-vite/-/builder-vite-7.0.14.tgz#c55014b7fd7002fdb8c8c4957f5b5c1c9012868d"
- integrity sha512-dbBATognEDh9Ry2lQm8HxIVBru7tpKKeK1nNG/mzVksG26fy14GX+4vUkWEzu0dRTmC+EEH9ePClglQEdXoIXg==
- dependencies:
- "@storybook/channel-postmessage" "7.0.14"
- "@storybook/channel-websocket" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/core-common" "7.0.14"
- "@storybook/csf-plugin" "7.0.14"
- "@storybook/mdx2-csf" "^1.0.0"
- "@storybook/node-logger" "7.0.14"
- "@storybook/preview" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/types" "7.0.14"
- browser-assert "^1.2.1"
- es-module-lexer "^0.9.3"
- express "^4.17.3"
- fs-extra "^11.1.0"
- glob "^8.1.0"
- glob-promise "^6.0.2"
- magic-string "^0.27.0"
- remark-external-links "^8.0.0"
- remark-slug "^6.0.0"
- rollup "^2.25.0 || ^3.3.0"
-
"@storybook/builder-vite@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/builder-vite/-/builder-vite-7.3.2.tgz#c46cd3fe0bead18e8be1bd40fe886d63913e520c"
@@ -5605,32 +5306,30 @@
remark-slug "^6.0.0"
rollup "^2.25.0 || ^3.3.0"
-"@storybook/channel-postmessage@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-7.0.14.tgz#813f34b7e32d9f22ae4aa3eff2df588d2e549b2f"
- integrity sha512-LYgxjOg6FTuow/H9UfcL825Bf1ScJGnhMjImmI5GIkHSHKMKlYVQhRuN7WU5IUX6O5rOHV9hwkraaTZTWkFIzQ==
+"@storybook/builder-vite@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/builder-vite/-/builder-vite-7.4.6.tgz#b5aabb74c1e394b5e56be699408f0538eb483b1f"
+ integrity sha512-xV9STYK+TkqWWTf2ydm6jx+7P70fjD2UPd1XTUw08uKszIjhuuxk+bG/OF5R1E25mPunAKXm6kBFh351AKejBg==
dependencies:
- "@storybook/channels" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/core-events" "7.0.14"
- "@storybook/global" "^5.0.0"
- qs "^6.10.0"
- telejson "^7.0.3"
-
-"@storybook/channel-websocket@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/channel-websocket/-/channel-websocket-7.0.14.tgz#8ffdcaeeaf39b51c78843ff4d6203edf5314cdfd"
- integrity sha512-j610zCVWkNDTROOBVgwvrKoPXVWsbfdoMegIXgg+h9jWGWMXRPohtxeauhHICxms3dEYHngH9VI4XVzMmSCXtA==
- dependencies:
- "@storybook/channels" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/global" "^5.0.0"
- telejson "^7.0.3"
-
-"@storybook/channels@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-7.0.14.tgz#53f60f82d5eab597276a28e69875118ed5c81cdc"
- integrity sha512-LVoFy2TRJz5lbIFfaQ6Hapn0XmtXV/kkBbD/kQ9E8KTMfbWlZApGVaCnzGKR7/eiwft38smT9mmyWOfg3CfQbg==
+ "@storybook/channels" "7.4.6"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/core-common" "7.4.6"
+ "@storybook/csf-plugin" "7.4.6"
+ "@storybook/mdx2-csf" "^1.0.0"
+ "@storybook/node-logger" "7.4.6"
+ "@storybook/preview" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/types" "7.4.6"
+ "@types/find-cache-dir" "^3.2.1"
+ browser-assert "^1.2.1"
+ es-module-lexer "^0.9.3"
+ express "^4.17.3"
+ find-cache-dir "^3.0.0"
+ fs-extra "^11.1.0"
+ magic-string "^0.30.0"
+ remark-external-links "^8.0.0"
+ remark-slug "^6.0.0"
+ rollup "^2.25.0 || ^3.3.0"
"@storybook/channels@7.3.2":
version "7.3.2"
@@ -5656,23 +5355,37 @@
telejson "^7.2.0"
tiny-invariant "^1.3.1"
-"@storybook/cli@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-7.0.14.tgz#c18b5f62bb08cd8f2609ff6faebadecb8b7c674e"
- integrity sha512-x6KP/3i5LPIk/lSPqC7Nx8ikwkSFSPYP51TlWi/ldoCiPmS63MLnRvaDK+zxhy++fk4r9OWKTETptRjw0i6GSg==
+"@storybook/channels@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-7.4.6.tgz#cadd16b91db08005c2b9e4938d3e1d1290d27a40"
+ integrity sha512-yPv/sfo2c18fM3fvG0i1xse63vG8l33Al/OU0k/dtovltPu001/HVa1QgBgsb/QrEfZtvGjGhmtdVeYb39fv3A==
dependencies:
- "@babel/core" "^7.20.2"
- "@babel/preset-env" "^7.20.2"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/global" "^5.0.0"
+ qs "^6.10.0"
+ telejson "^7.2.0"
+ tiny-invariant "^1.3.1"
+
+"@storybook/cli@7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-7.3.2.tgz#5f8bc0ea8afbf15763098520dfd529803690c7bc"
+ integrity sha512-RnqE/6KSelL9TQ44uCIU5xvUhY9zXM2Upanr0hao72x44rvlGQbV262pHdkVIYsn0wi8QzYtnoxQPLSqUfUDfA==
+ dependencies:
+ "@babel/core" "^7.22.9"
+ "@babel/preset-env" "^7.22.9"
+ "@babel/types" "^7.22.5"
"@ndelangen/get-tarball" "^3.0.7"
- "@storybook/codemod" "7.0.14"
- "@storybook/core-common" "7.0.14"
- "@storybook/core-server" "7.0.14"
- "@storybook/csf-tools" "7.0.14"
- "@storybook/node-logger" "7.0.14"
- "@storybook/telemetry" "7.0.14"
- "@storybook/types" "7.0.14"
+ "@storybook/codemod" "7.3.2"
+ "@storybook/core-common" "7.3.2"
+ "@storybook/core-server" "7.3.2"
+ "@storybook/csf-tools" "7.3.2"
+ "@storybook/node-logger" "7.3.2"
+ "@storybook/telemetry" "7.3.2"
+ "@storybook/types" "7.3.2"
"@types/semver" "^7.3.4"
- boxen "^5.1.2"
+ "@yarnpkg/fslib" "2.10.3"
+ "@yarnpkg/libzip" "2.3.0"
chalk "^4.1.0"
commander "^6.2.1"
cross-spawn "^7.0.3"
@@ -5694,29 +5407,29 @@
puppeteer-core "^2.1.1"
read-pkg-up "^7.0.1"
semver "^7.3.7"
- shelljs "^0.8.5"
- simple-update-notifier "^1.0.0"
+ simple-update-notifier "^2.0.0"
strip-json-comments "^3.0.1"
tempy "^1.0.1"
ts-dedent "^2.0.0"
util-deprecate "^1.0.2"
-"@storybook/cli@7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-7.3.2.tgz#5f8bc0ea8afbf15763098520dfd529803690c7bc"
- integrity sha512-RnqE/6KSelL9TQ44uCIU5xvUhY9zXM2Upanr0hao72x44rvlGQbV262pHdkVIYsn0wi8QzYtnoxQPLSqUfUDfA==
+"@storybook/cli@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-7.4.6.tgz#c322fcfdacf839a55a9c2aaa592a820fdaa1422c"
+ integrity sha512-rRwaH8pOL+FHz/pJMEkNpMH2xvZvWsrl7obBYw26NQiHmiVSAkfHJicndSN1mwc+p5w+9iXthrgzbLtSAOSvkA==
dependencies:
"@babel/core" "^7.22.9"
"@babel/preset-env" "^7.22.9"
"@babel/types" "^7.22.5"
"@ndelangen/get-tarball" "^3.0.7"
- "@storybook/codemod" "7.3.2"
- "@storybook/core-common" "7.3.2"
- "@storybook/core-server" "7.3.2"
- "@storybook/csf-tools" "7.3.2"
- "@storybook/node-logger" "7.3.2"
- "@storybook/telemetry" "7.3.2"
- "@storybook/types" "7.3.2"
+ "@storybook/codemod" "7.4.6"
+ "@storybook/core-common" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/core-server" "7.4.6"
+ "@storybook/csf-tools" "7.4.6"
+ "@storybook/node-logger" "7.4.6"
+ "@storybook/telemetry" "7.4.6"
+ "@storybook/types" "7.4.6"
"@types/semver" "^7.3.4"
"@yarnpkg/fslib" "2.10.3"
"@yarnpkg/libzip" "2.3.0"
@@ -5747,13 +5460,6 @@
ts-dedent "^2.0.0"
util-deprecate "^1.0.2"
-"@storybook/client-logger@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-7.0.14.tgz#81a4bb738c4cc3b5d3d8c680039918ba9e07b2db"
- integrity sha512-LRsToB8B3iee2nS4OpCnyFhLD5zW16eIbrVGPC5vRQEoepbNAS1/F9D7gnRMYSYiCY3KMk0x3C58a/JVLyK5VA==
- dependencies:
- "@storybook/global" "^5.0.0"
-
"@storybook/client-logger@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-7.3.2.tgz#8c04d07cc3fdce124fa95aafc5413fea0c202345"
@@ -5761,31 +5467,19 @@
dependencies:
"@storybook/global" "^5.0.0"
-"@storybook/client-logger@7.4.3", "@storybook/client-logger@^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0":
+"@storybook/client-logger@7.4.3":
version "7.4.3"
resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-7.4.3.tgz#38359893cf60ee3f40a276ba410d8ac779627356"
integrity sha512-Nhngo9X4HjN00aRhgIVGWbwkWPe0Fz8PySuxnd8nAxSsz7KpdLFyYo2TbZZ3TX51FG5Fxcb0G5OHuunItP7EWQ==
dependencies:
"@storybook/global" "^5.0.0"
-"@storybook/codemod@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/codemod/-/codemod-7.0.14.tgz#5272d081973228c21f93175c7b74c0e2b793bd50"
- integrity sha512-Lw1wJA0wGLnSE10hcBVOtbLVzdgR8uKoOWa1vIpioIBiWyv3/is/D5cEBz8557fCfgCosooJNIdj5emmyHUsgQ==
+"@storybook/client-logger@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-7.4.6.tgz#3346f3ae51abb3ce61bf1a7d083d32f27b8f718f"
+ integrity sha512-XDw31ZziU//86PKuMRnmc+L/G0VopaGKENQOGEpvAXCU9IZASwGKlKAtcyosjrpi+ZiUXlMgUXCpXM7x3b1Ehw==
dependencies:
- "@babel/core" "~7.21.0"
- "@babel/preset-env" "~7.21.0"
- "@babel/types" "~7.21.2"
- "@storybook/csf" "^0.1.0"
- "@storybook/csf-tools" "7.0.14"
- "@storybook/node-logger" "7.0.14"
- "@storybook/types" "7.0.14"
- cross-spawn "^7.0.3"
- globby "^11.0.2"
- jscodeshift "^0.14.0"
- lodash "^4.17.21"
- prettier "^2.8.0"
- recast "^0.23.1"
+ "@storybook/global" "^5.0.0"
"@storybook/codemod@7.3.2":
version "7.3.2"
@@ -5807,19 +5501,25 @@
prettier "^2.8.0"
recast "^0.23.1"
-"@storybook/components@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/components/-/components-7.0.14.tgz#75dca6e29c8027174e7ca2b4e6ecb2f5d17509a8"
- integrity sha512-Yqw4K43vHiUXTALnT85MKpggNKbdSQZk9HxiOCa8kkOmDV6qwyjSpG3sumpWN9eDZxrh7ZPwnzyD5rydHHRPYg==
+"@storybook/codemod@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/codemod/-/codemod-7.4.6.tgz#b884304c246de6de22faa94e76cd38f129bd827e"
+ integrity sha512-lxmwEpwksCaAq96APN2YlooSDfKjJ1vKzN5Ni2EqQzf2TEXl7XQjLacHd7OOaII1kfsy+D5gNG4N5wBo7Ub30g==
dependencies:
- "@storybook/client-logger" "7.0.14"
+ "@babel/core" "^7.22.9"
+ "@babel/preset-env" "^7.22.9"
+ "@babel/types" "^7.22.5"
"@storybook/csf" "^0.1.0"
- "@storybook/global" "^5.0.0"
- "@storybook/theming" "7.0.14"
- "@storybook/types" "7.0.14"
- memoizerific "^1.11.3"
- use-resize-observer "^9.1.0"
- util-deprecate "^1.0.2"
+ "@storybook/csf-tools" "7.4.6"
+ "@storybook/node-logger" "7.4.6"
+ "@storybook/types" "7.4.6"
+ "@types/cross-spawn" "^6.0.2"
+ cross-spawn "^7.0.3"
+ globby "^11.0.2"
+ jscodeshift "^0.14.0"
+ lodash "^4.17.21"
+ prettier "^2.8.0"
+ recast "^0.23.1"
"@storybook/components@7.3.2":
version "7.3.2"
@@ -5854,13 +5554,21 @@
use-resize-observer "^9.1.0"
util-deprecate "^1.0.2"
-"@storybook/core-client@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/core-client/-/core-client-7.0.14.tgz#32296b220304dc3bfbb9ffcd15d0b4b3b853069e"
- integrity sha512-l+5CgekjYH0eWbzjvAREBU9uqbAPwT8ZF9uOF5THne+S/t9SgQx+pxRfluMSOkjD78rSwVcLw+mYxCLU0oX9Jw==
+"@storybook/components@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/components/-/components-7.4.6.tgz#e804407bd3a047e9f6026edfbbe188244661b55a"
+ integrity sha512-nIRBhewAgrJJVafyCzuaLx1l+YOfvvD5dOZ0JxZsxJsefOdw1jFpUqUZ5fIpQ2moyvrR0mAUFw378rBfMdHz5Q==
dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/preview-api" "7.0.14"
+ "@radix-ui/react-select" "^1.2.2"
+ "@radix-ui/react-toolbar" "^1.0.4"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/csf" "^0.1.0"
+ "@storybook/global" "^5.0.0"
+ "@storybook/theming" "7.4.6"
+ "@storybook/types" "7.4.6"
+ memoizerific "^1.11.3"
+ use-resize-observer "^9.1.0"
+ util-deprecate "^1.0.2"
"@storybook/core-client@7.3.2":
version "7.3.2"
@@ -5870,38 +5578,50 @@
"@storybook/client-logger" "7.3.2"
"@storybook/preview-api" "7.3.2"
-"@storybook/core-common@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-7.0.14.tgz#f79f26640ed92bf48d809912de38c362625f2f23"
- integrity sha512-FBMQhyxk5VzdkJe80Es4euTTUJeDeAHCaj3AmK5Tpj4iFXir+d91f1VyGn2IS1DnSVJZMNWquJ+5l8CCMBbyjg==
+"@storybook/core-client@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/core-client/-/core-client-7.4.6.tgz#880ab2a431133912d0b76f2273cefe95b287d8ca"
+ integrity sha512-tfgxAHeCvMcs6DsVgtb4hQSDaCHeAPJOsoyhb47eDQfk4OmxzriM0qWucJV5DePSMi+KutX/rN2u0JxfOuN68g==
+ dependencies:
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+
+"@storybook/core-common@7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-7.3.2.tgz#82816a6d7a9b7d07a229d287d6a8b16aa41ec10a"
+ integrity sha512-W+X7JXV0UmHuUl9xSF/xzz1+P7VM8xHt7ORfp8yrtJRwLHURqHvFFQC+NUHBKno1Ydtt/Uch7QNOWUlQKmiWEw==
dependencies:
- "@storybook/node-logger" "7.0.14"
- "@storybook/types" "7.0.14"
+ "@storybook/node-logger" "7.3.2"
+ "@storybook/types" "7.3.2"
+ "@types/find-cache-dir" "^3.2.1"
"@types/node" "^16.0.0"
+ "@types/node-fetch" "^2.6.4"
"@types/pretty-hrtime" "^1.0.0"
chalk "^4.1.0"
- esbuild "^0.17.0"
+ esbuild "^0.18.0"
esbuild-register "^3.4.0"
- file-system-cache "^2.0.0"
+ file-system-cache "2.3.0"
+ find-cache-dir "^3.0.0"
find-up "^5.0.0"
fs-extra "^11.1.0"
- glob "^8.1.0"
- glob-promise "^6.0.2"
+ glob "^10.0.0"
handlebars "^4.7.7"
lazy-universal-dotenv "^4.0.0"
+ node-fetch "^2.0.0"
picomatch "^2.3.0"
pkg-dir "^5.0.0"
pretty-hrtime "^1.0.3"
resolve-from "^5.0.0"
ts-dedent "^2.0.0"
-"@storybook/core-common@7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-7.3.2.tgz#82816a6d7a9b7d07a229d287d6a8b16aa41ec10a"
- integrity sha512-W+X7JXV0UmHuUl9xSF/xzz1+P7VM8xHt7ORfp8yrtJRwLHURqHvFFQC+NUHBKno1Ydtt/Uch7QNOWUlQKmiWEw==
+"@storybook/core-common@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-7.4.6.tgz#8cb3fd94c4c7c5d307fb1606dcb0e06fc8672410"
+ integrity sha512-05MJFmOM86qvTLtgDskokIFz9txe0Lbhq4L3by1FtF0GwgH+p+W6I94KI7c6ANER+kVZkXQZhiRzwBFnVTW+Cg==
dependencies:
- "@storybook/node-logger" "7.3.2"
- "@storybook/types" "7.3.2"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/node-logger" "7.4.6"
+ "@storybook/types" "7.4.6"
"@types/find-cache-dir" "^3.2.1"
"@types/node" "^16.0.0"
"@types/node-fetch" "^2.6.4"
@@ -5952,11 +5672,6 @@
resolve-from "^5.0.0"
ts-dedent "^2.0.0"
-"@storybook/core-events@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-7.0.14.tgz#b7a8df042e4bf59b5b1d3395e197bfb57d81a4e3"
- integrity sha512-zHqeRLyL2PasZljLgclDox4cZ/2wN3KZmJJT6VI6VovHe4mr82Jb9PTsuwVwznDyf12em6C9YULgtoCXh5N9Sw==
-
"@storybook/core-events@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-7.3.2.tgz#9d18df7ceb6901225218e538a3d1d720a2f49b46"
@@ -5969,32 +5684,38 @@
dependencies:
ts-dedent "^2.0.0"
-"@storybook/core-server@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-7.0.14.tgz#e43653d4a8faf64be72efc1bc2594138a7b00540"
- integrity sha512-wQXrn9wx5WTtlkNtER3BDyPf1vml2icQhMpYC+xgs2+Rxgoxl02e6Eup9abuMNfKFQnXJ+8MAfLdLjpYNDsDRg==
+"@storybook/core-events@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-7.4.6.tgz#f0b652c623c1afebda42d1702d631cecc1c137bf"
+ integrity sha512-r5vrE+32lwrJh1NGFr1a0mWjvxo7q8FXYShylcwRWpacmL5NTtLkrXOoJSeGvJ4yKNYkvxQFtOPId4lzDxa32w==
dependencies:
- "@aw-web-design/x-default-browser" "1.4.88"
+ ts-dedent "^2.0.0"
+
+"@storybook/core-server@7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-7.3.2.tgz#b5abc90c7ed3900531b79a63c8f4059e4702f7d4"
+ integrity sha512-TLMEptmfqYLu4bayRV5m8T3R50uR07Fwja1n/8CCmZOGWjnr5kXMFRkD7+hj7wm82yoidfd23bmVcRU9mlG+tg==
+ dependencies:
+ "@aw-web-design/x-default-browser" "1.4.126"
"@discoveryjs/json-ext" "^0.5.3"
- "@storybook/builder-manager" "7.0.14"
- "@storybook/core-common" "7.0.14"
- "@storybook/core-events" "7.0.14"
+ "@storybook/builder-manager" "7.3.2"
+ "@storybook/channels" "7.3.2"
+ "@storybook/core-common" "7.3.2"
+ "@storybook/core-events" "7.3.2"
"@storybook/csf" "^0.1.0"
- "@storybook/csf-tools" "7.0.14"
+ "@storybook/csf-tools" "7.3.2"
"@storybook/docs-mdx" "^0.1.0"
"@storybook/global" "^5.0.0"
- "@storybook/manager" "7.0.14"
- "@storybook/node-logger" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/telemetry" "7.0.14"
- "@storybook/types" "7.0.14"
+ "@storybook/manager" "7.3.2"
+ "@storybook/node-logger" "7.3.2"
+ "@storybook/preview-api" "7.3.2"
+ "@storybook/telemetry" "7.3.2"
+ "@storybook/types" "7.3.2"
"@types/detect-port" "^1.3.0"
"@types/node" "^16.0.0"
- "@types/node-fetch" "^2.5.7"
"@types/pretty-hrtime" "^1.0.0"
"@types/semver" "^7.3.4"
- better-opn "^2.1.1"
- boxen "^5.1.2"
+ better-opn "^3.0.2"
chalk "^4.1.0"
cli-table3 "^0.6.1"
compression "^1.7.4"
@@ -6004,7 +5725,6 @@
globby "^11.0.2"
ip "^2.0.0"
lodash "^4.17.21"
- node-fetch "^2.6.7"
open "^8.4.0"
pretty-hrtime "^1.0.3"
prompts "^2.4.0"
@@ -6012,31 +5732,33 @@
semver "^7.3.7"
serve-favicon "^2.5.0"
telejson "^7.0.3"
+ tiny-invariant "^1.3.1"
ts-dedent "^2.0.0"
+ util "^0.12.4"
util-deprecate "^1.0.2"
watchpack "^2.2.0"
ws "^8.2.3"
-"@storybook/core-server@7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-7.3.2.tgz#b5abc90c7ed3900531b79a63c8f4059e4702f7d4"
- integrity sha512-TLMEptmfqYLu4bayRV5m8T3R50uR07Fwja1n/8CCmZOGWjnr5kXMFRkD7+hj7wm82yoidfd23bmVcRU9mlG+tg==
+"@storybook/core-server@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-7.4.6.tgz#82a3834d9a063ff01a126f7c1724c8997bdd1555"
+ integrity sha512-jqmRTGCJ1W0WReImivkisPVaLFT5sjtLnFoAk0feHp6QS5j7EYOPN7CYzliyQmARWTLUEXOVaFf3VD6nJZQhJQ==
dependencies:
"@aw-web-design/x-default-browser" "1.4.126"
"@discoveryjs/json-ext" "^0.5.3"
- "@storybook/builder-manager" "7.3.2"
- "@storybook/channels" "7.3.2"
- "@storybook/core-common" "7.3.2"
- "@storybook/core-events" "7.3.2"
+ "@storybook/builder-manager" "7.4.6"
+ "@storybook/channels" "7.4.6"
+ "@storybook/core-common" "7.4.6"
+ "@storybook/core-events" "7.4.6"
"@storybook/csf" "^0.1.0"
- "@storybook/csf-tools" "7.3.2"
+ "@storybook/csf-tools" "7.4.6"
"@storybook/docs-mdx" "^0.1.0"
"@storybook/global" "^5.0.0"
- "@storybook/manager" "7.3.2"
- "@storybook/node-logger" "7.3.2"
- "@storybook/preview-api" "7.3.2"
- "@storybook/telemetry" "7.3.2"
- "@storybook/types" "7.3.2"
+ "@storybook/manager" "7.4.6"
+ "@storybook/node-logger" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/telemetry" "7.4.6"
+ "@storybook/types" "7.4.6"
"@types/detect-port" "^1.3.0"
"@types/node" "^16.0.0"
"@types/pretty-hrtime" "^1.0.0"
@@ -6056,8 +5778,7 @@
prompts "^2.4.0"
read-pkg-up "^7.0.1"
semver "^7.3.7"
- serve-favicon "^2.5.0"
- telejson "^7.0.3"
+ telejson "^7.2.0"
tiny-invariant "^1.3.1"
ts-dedent "^2.0.0"
util "^0.12.4"
@@ -6065,14 +5786,6 @@
watchpack "^2.2.0"
ws "^8.2.3"
-"@storybook/csf-plugin@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/csf-plugin/-/csf-plugin-7.0.14.tgz#cbd41c7c307b982d70326ee28c8c8096b8567e19"
- integrity sha512-gAYFJfnQD/DwFm2SoVysIGwjrmZJLOxc/evsCTuW17ERmiU2kOdmluFh7FSfd+4UTg/mACk5wBJEnebx5AmYUA==
- dependencies:
- "@storybook/csf-tools" "7.0.14"
- unplugin "^0.10.2"
-
"@storybook/csf-plugin@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/csf-plugin/-/csf-plugin-7.3.2.tgz#c82db8531444bc9e229109f2bf54b42f6669107e"
@@ -6081,20 +5794,13 @@
"@storybook/csf-tools" "7.3.2"
unplugin "^1.3.1"
-"@storybook/csf-tools@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/csf-tools/-/csf-tools-7.0.14.tgz#de0376a83644325fdc4fcdbf2ab4dae69823f83a"
- integrity sha512-jFbRdg8x2dxl+CvSiLOlkJ1xiLljYRwcMWkrk+bEsMCzyfzPHiPjNQCOQe0MXByvUEgnCbKVz57X4UaVpVbCGw==
+"@storybook/csf-plugin@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/csf-plugin/-/csf-plugin-7.4.6.tgz#63b4498c9be329ba9cdd53bb8cbe66ef225230ec"
+ integrity sha512-yi7Qa4NSqKOyiJTWCxlB0ih2ijXq6oY5qZKW6MuMMBP14xJNRGLbH5KabpfXgN2T7YECcOWG1uWaGj2veJb1KA==
dependencies:
- "@babel/generator" "~7.21.1"
- "@babel/parser" "~7.21.2"
- "@babel/traverse" "~7.21.2"
- "@babel/types" "~7.21.2"
- "@storybook/csf" "^0.1.0"
- "@storybook/types" "7.0.14"
- fs-extra "^11.1.0"
- recast "^0.23.1"
- ts-dedent "^2.0.0"
+ "@storybook/csf-tools" "7.4.6"
+ unplugin "^1.3.1"
"@storybook/csf-tools@7.3.2":
version "7.3.2"
@@ -6111,6 +5817,21 @@
recast "^0.23.1"
ts-dedent "^2.0.0"
+"@storybook/csf-tools@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/csf-tools/-/csf-tools-7.4.6.tgz#3987e31d5975dcaa8f3dfa4f5e0fb5cd457cbae6"
+ integrity sha512-ocKpcIUtTBy6hlLY34RUFQyX403cWpB2gGfqvkHbpGe2BQj7EyV0zpWnjsfVxvw+M9OWlCdxHWDOPUgXM33ELw==
+ dependencies:
+ "@babel/generator" "^7.22.9"
+ "@babel/parser" "^7.22.7"
+ "@babel/traverse" "^7.22.8"
+ "@babel/types" "^7.22.5"
+ "@storybook/csf" "^0.1.0"
+ "@storybook/types" "7.4.6"
+ fs-extra "^11.1.0"
+ recast "^0.23.1"
+ ts-dedent "^2.0.0"
+
"@storybook/csf@^0.1.0":
version "0.1.1"
resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.1.1.tgz#abccc8c3e49aed0a6a7e87beb0d1c262b1921c06"
@@ -6120,21 +5841,8 @@
"@storybook/docs-mdx@^0.1.0":
version "0.1.0"
- resolved "https://registry.yarnpkg.com/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz#33ba0e39d1461caf048b57db354b2cc410705316"
- integrity sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==
-
-"@storybook/docs-tools@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/docs-tools/-/docs-tools-7.0.14.tgz#ed70303fc4f6d3d36b63427b94bc8c55e59a9e30"
- integrity sha512-0AMvBrwaQ7B3kOJSOHVe2VbV+ASFd353V+V4OWz5yZ7tBA+IJ7FaRmwZbZBEBe632JPTqNEiR0Ya86a4GZjqzA==
- dependencies:
- "@babel/core" "^7.12.10"
- "@storybook/core-common" "7.0.14"
- "@storybook/preview-api" "7.0.14"
- "@storybook/types" "7.0.14"
- "@types/doctrine" "^0.0.3"
- doctrine "^3.0.0"
- lodash "^4.17.21"
+ resolved "https://registry.yarnpkg.com/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz#33ba0e39d1461caf048b57db354b2cc410705316"
+ integrity sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==
"@storybook/docs-tools@7.3.2":
version "7.3.2"
@@ -6148,6 +5856,18 @@
doctrine "^3.0.0"
lodash "^4.17.21"
+"@storybook/docs-tools@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/docs-tools/-/docs-tools-7.4.6.tgz#cbba8dadd13adc7a9a3c792261ca875ff12ae451"
+ integrity sha512-nZj1L/8WwKWWJ41FW4MaKGajZUtrhnr9UwflRCkQJaWhAKmDfOb5M5TqI93uCOULpFPOm5wpoMBz2IHInQ2Lrg==
+ dependencies:
+ "@storybook/core-common" "7.4.6"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/types" "7.4.6"
+ "@types/doctrine" "^0.0.3"
+ doctrine "^3.0.0"
+ lodash "^4.17.21"
+
"@storybook/global@^5.0.0":
version "5.0.0"
resolved "https://registry.yarnpkg.com/@storybook/global/-/global-5.0.0.tgz#b793d34b94f572c1d7d9e0f44fac4e0dbc9572ed"
@@ -6158,17 +5878,6 @@
resolved "https://registry.yarnpkg.com/@storybook/icons/-/icons-1.1.7.tgz#19310095866ca610d9acd043c068472304de3547"
integrity sha512-X1h6Qr5w9oEveuX/861yaPbQgGuE3Btys5dPK29iFZyf5estht/eS23AeBCpwsa6IAgb+mZJkjfltG2nVqGNPQ==
-"@storybook/instrumenter@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/instrumenter/-/instrumenter-7.0.14.tgz#417eb4ea9e87d943197113a17a5f84ed9bc3f80a"
- integrity sha512-aVTCUwN69+e11xLt+WiOdl5pxQFtIV5IiDeBp7gmDndLCVXj4Jiu80YJcDyyNiyKQV4G79aejtS8Pz6Bht/LKQ==
- dependencies:
- "@storybook/channels" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/core-events" "7.0.14"
- "@storybook/global" "^5.0.0"
- "@storybook/preview-api" "7.0.14"
-
"@storybook/instrumenter@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/instrumenter/-/instrumenter-7.3.2.tgz#7d22dc4653d8de98de94ea4b3a0ad78449f1b8c6"
@@ -6180,37 +5889,16 @@
"@storybook/global" "^5.0.0"
"@storybook/preview-api" "7.3.2"
-"@storybook/instrumenter@^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0":
- version "7.4.3"
- resolved "https://registry.yarnpkg.com/@storybook/instrumenter/-/instrumenter-7.4.3.tgz#6cb0786b89b935ce19183fa7a10b0b7b4fb920c0"
- integrity sha512-XVctoUOFthTCea2+BKFKeUbhWrRY+1I8THgsZx67X3MQDt9bafwQdFR9jTGBeC31oNi1b7nmTuaox0lneNlghA==
- dependencies:
- "@storybook/channels" "7.4.3"
- "@storybook/client-logger" "7.4.3"
- "@storybook/core-events" "7.4.3"
- "@storybook/global" "^5.0.0"
- "@storybook/preview-api" "7.4.3"
-
-"@storybook/manager-api@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-7.0.14.tgz#6d4738650bc910711ee0e0745e5c744ca2a6bb1a"
- integrity sha512-Yq5gMc/jIijGYWF5zyO3fcmNXklKEnyA0ZB6HmsdAiAMeLI6aF5c4Mmq9Uc0jGhTTRQyMP/J23q1gfOcZSnH8g==
+"@storybook/instrumenter@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/instrumenter/-/instrumenter-7.4.6.tgz#7a941a31aeae6cc1864689288d66cb282368b602"
+ integrity sha512-K5atRoVFCl6HEgkSxIbwygpzgE/iROc7BrtJ3z3a7E70sanFr6Jxt6Egu6fz2QkL3ef4EWpXMnle2vhEfG29pA==
dependencies:
- "@storybook/channels" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/core-events" "7.0.14"
- "@storybook/csf" "^0.1.0"
+ "@storybook/channels" "7.4.6"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/core-events" "7.4.6"
"@storybook/global" "^5.0.0"
- "@storybook/router" "7.0.14"
- "@storybook/theming" "7.0.14"
- "@storybook/types" "7.0.14"
- dequal "^2.0.2"
- lodash "^4.17.21"
- memoizerific "^1.11.3"
- semver "^7.3.7"
- store2 "^2.14.2"
- telejson "^7.0.3"
- ts-dedent "^2.0.0"
+ "@storybook/preview-api" "7.4.6"
"@storybook/manager-api@7.3.2":
version "7.3.2"
@@ -6254,31 +5942,42 @@
telejson "^7.2.0"
ts-dedent "^2.0.0"
-"@storybook/manager@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/manager/-/manager-7.0.14.tgz#b15b78df632618a8712820b780b44a19e881e825"
- integrity sha512-+om5rBmRf3gR6Qs2FaCelQJMWcKqx9kuUreSf8FmJTGGvE5WazkrPz5+G6n44jXzUXSdmzQbqKFCxtT/rCU2Cg==
+"@storybook/manager-api@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-7.4.6.tgz#e74bd0a0a983d6b9b7f66dfe0d94d8465f5e7a34"
+ integrity sha512-inrm3DIbCp8wjXSN/wK6e6i2ysQ/IEmtC7IN0OJ7vdrp+USCooPT448SQTUmVctUGCFmOU3fxXByq8g77oIi7w==
+ dependencies:
+ "@storybook/channels" "7.4.6"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/csf" "^0.1.0"
+ "@storybook/global" "^5.0.0"
+ "@storybook/router" "7.4.6"
+ "@storybook/theming" "7.4.6"
+ "@storybook/types" "7.4.6"
+ dequal "^2.0.2"
+ lodash "^4.17.21"
+ memoizerific "^1.11.3"
+ semver "^7.3.7"
+ store2 "^2.14.2"
+ telejson "^7.2.0"
+ ts-dedent "^2.0.0"
"@storybook/manager@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/manager/-/manager-7.3.2.tgz#9554d24b220c8547a75e9cbd714eddfc2c4a5824"
integrity sha512-nA3XcnD36WUjgMCtID2M4DWYZh6MnabItXvKXGbNUkI8SVaIekc5nEgeplFyqutL11eKz3Es/FwwEP+mePbWfw==
+"@storybook/manager@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/manager/-/manager-7.4.6.tgz#96acb0ab60e05b74947d7895e04efa557fd8892f"
+ integrity sha512-kA1hUDxpn1i2SO9OinvLvVXDeL4xgJkModp+pbE8IXv4NJWReNq1ecMeQCzPLS3Sil2gnrullQ9uYXsnZ9bxxA==
+
"@storybook/mdx2-csf@^1.0.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz#97f6df04d0bf616991cc1005a073ac004a7281e5"
integrity sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==
-"@storybook/node-logger@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-7.0.14.tgz#f8f239ac78d2265dcce38173ce9d5cb69f6df1ce"
- integrity sha512-Qi4eCW4rzhnyGR+zLXmXPijwN2oGz8e2an8gD5Ceo5SgR7L7AlKfYlZtNL6KV9Xp1VMTuia0PiZhhkqkN1lqlQ==
- dependencies:
- "@types/npmlog" "^4.1.2"
- chalk "^4.1.0"
- npmlog "^5.0.1"
- pretty-hrtime "^1.0.3"
-
"@storybook/node-logger@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-7.3.2.tgz#c8fea7b87d63c7b50757646af990d7cf13f7c71e"
@@ -6289,36 +5988,20 @@
resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-7.4.3.tgz#9b0583d8927bb1e1ec8d6c4668810565ce2fb990"
integrity sha512-pL13PPMUttflTWKVeDIKxPIJtBRl50Fzck12/7uiNROtBIrSV9DZSgOjInAazjo4tl+7fDj9lgkGeMEz00E8aQ==
-"@storybook/postinstall@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/postinstall/-/postinstall-7.0.14.tgz#759fb7b0cad4bc532cbb317cd6472706f29505e5"
- integrity sha512-dJ5U6Th89MjBmBQFgnXM7TPvfIEKkCepsb7LaPMOW43lNOGerLdk3CtUaJy4FPe0B3Gq4CAFqEi5Or0crio7pA==
+"@storybook/node-logger@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-7.4.6.tgz#d92eb7e99cb8aefffe67eb63583a21398ce9a0ab"
+ integrity sha512-djZb310Q27GviDug1XBv0jOEDLCiwr4hhDE0aifCEKZpfNCi/EaP31nbWimFzZwxu4hE/YAPWExzScruR1zw9Q==
"@storybook/postinstall@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/postinstall/-/postinstall-7.3.2.tgz#1826abc87d69fc8e125cb7587f19074cb474650d"
integrity sha512-23/QUseeVaYjqexq4O1f1g/Fxq+pNGD+/wbXLPkdwNydutGwMZ3XAD8jcm+zeOmkbUPN8jQzKUXqO2OE/GgvHg==
-"@storybook/preview-api@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-7.0.14.tgz#55cc93b5fea9c140b241c8dbb7065f5c34606df0"
- integrity sha512-GhBzTGgNtiEjKZxSYYq+IDEOme6QidS2BAcLLSrQ+Ka4j1dGOF0ZtCn/TPOPRFe51j9x6A5kl6PFpZpFuzxQHA==
- dependencies:
- "@storybook/channel-postmessage" "7.0.14"
- "@storybook/channels" "7.0.14"
- "@storybook/client-logger" "7.0.14"
- "@storybook/core-events" "7.0.14"
- "@storybook/csf" "^0.1.0"
- "@storybook/global" "^5.0.0"
- "@storybook/types" "7.0.14"
- "@types/qs" "^6.9.5"
- dequal "^2.0.2"
- lodash "^4.17.21"
- memoizerific "^1.11.3"
- qs "^6.10.0"
- synchronous-promise "^2.0.15"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
+"@storybook/postinstall@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/postinstall/-/postinstall-7.4.6.tgz#2d5da361fc8baee1866c80b2244815a9e217b843"
+ integrity sha512-TqI5BucPAGRWrkh55BYiG2/gHLFtC0In4cuu0GsUzB/1jc4i51npLRorCwhmT7r7YliGl5F7JaP0Bni/qHN3Lg==
"@storybook/preview-api@7.3.2":
version "7.3.2"
@@ -6360,39 +6043,45 @@
ts-dedent "^2.0.0"
util-deprecate "^1.0.2"
-"@storybook/preview@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/preview/-/preview-7.0.14.tgz#0a995a684a39ce9e290acb36fcf2e27feba60a96"
- integrity sha512-4BfDwtwB4zRKsH+bKLHS5XEcm/EmKgfOaLhzCtDRH9dtGre4OjqU0IMxirdpp7HGNTa8lVgXIwU3F3aVx2Kgfg==
+"@storybook/preview-api@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-7.4.6.tgz#a42749ff867216b89849ada6ac0f49f4fa8f03a8"
+ integrity sha512-byUS/Opt3ytWD4cWz3sNEKw5Yks8MkQgRN+GDSyIomaEAQkLAM0rchPC0MYjwCeUSecV7IIQweNX5RbV4a34BA==
+ dependencies:
+ "@storybook/channels" "7.4.6"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/core-events" "7.4.6"
+ "@storybook/csf" "^0.1.0"
+ "@storybook/global" "^5.0.0"
+ "@storybook/types" "7.4.6"
+ "@types/qs" "^6.9.5"
+ dequal "^2.0.2"
+ lodash "^4.17.21"
+ memoizerific "^1.11.3"
+ qs "^6.10.0"
+ synchronous-promise "^2.0.15"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
"@storybook/preview@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/preview/-/preview-7.3.2.tgz#ba86f2bdf47df1f523023155735cc57969004438"
integrity sha512-UXgImhD7xa+nYgXRcNFQdTqQT1725mOzWbQUtYPMJXkHO+t251hQrEc81tMzSSPEgPrFY8wndpEqTt8glFm91g==
-"@storybook/react-dom-shim@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-7.0.14.tgz#482ecb06f40a047be295a1ea79dbf5281de890ae"
- integrity sha512-2cy2qJvRjV8YFJIrVdY79ZfSNoOOvQkTAECOvrfNu1DCfe+gTtxN2UJ+bOFKERHsnwBCK+0Cc40QCoTXVhdz2g==
+"@storybook/preview@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/preview/-/preview-7.4.6.tgz#b0d9f5a843d4c7aea8857f6bc5d7253cc04c7c4b"
+ integrity sha512-2RPXusJ4CTDrIipIKKvbotD7fP0+8VzoFjImunflIrzN9rni+2rq5eMjqlXAaB+77w064zIR4uDUzI9fxsMDeQ==
"@storybook/react-dom-shim@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-7.3.2.tgz#67d266ee56286479cd1c3b113451a7907516fdbe"
integrity sha512-63ysybmpl9UULmLu/aUwWwhjf5QEWTvnMW9r8Z3LF3sW8Z698ZsssdThzNWqw0zlwTlgnQA4ta2Df4/oVXR0+Q==
-"@storybook/react-vite@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/react-vite/-/react-vite-7.0.14.tgz#958f5c01c60e6f43ba5fcd88e1713e7ad8b6dd84"
- integrity sha512-9NgLCPPwMzgwfoftIpQI6/65+uOmgoESdnH3w0CfyPCSyDM70rOr3/Ld5oSdvmEpl2gKMc9KfuRW9Y/bVMB8IA==
- dependencies:
- "@joshwooding/vite-plugin-react-docgen-typescript" "0.2.1"
- "@rollup/pluginutils" "^4.2.0"
- "@storybook/builder-vite" "7.0.14"
- "@storybook/react" "7.0.14"
- "@vitejs/plugin-react" "^3.0.1"
- ast-types "^0.14.2"
- magic-string "^0.27.0"
- react-docgen "6.0.0-alpha.3"
+"@storybook/react-dom-shim@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-7.4.6.tgz#7f7e01dbb6abe104ae140e25b7ed98c347a5fb9f"
+ integrity sha512-DSq8l9FDocUF1ooVI+TF83pddj1LynE/Hv0/y8XZhc3IgJ/HkuOQuUmfz29ezgfAi9gFYUR8raTIBi3/xdoRmw==
"@storybook/react-vite@7.3.2":
version "7.3.2"
@@ -6408,18 +6097,32 @@
magic-string "^0.30.0"
react-docgen "6.0.0-alpha.3"
-"@storybook/react@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/react/-/react-7.0.14.tgz#381a005c92abd65ebcc6afa4599fef835c2cf846"
- integrity sha512-k3hcjeytV42H8S2SNyv+33NKkLFaORLXx1OoAXUibaKEEHTSbnel5dPNtfxVvcFuytQ6T874b+677xvoIC54iA==
+"@storybook/react-vite@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/react-vite/-/react-vite-7.4.6.tgz#c87393f5727e3b75693c0e3bc959eece12a32d96"
+ integrity sha512-jkjnrf3FxzR5wcmebXRPflrsM4WIDjWyW/NVFJwxi5PeIOk7fE7/QAPrm4NFRUu2Q7DeuH3oLKsw8bigvUI9RA==
+ dependencies:
+ "@joshwooding/vite-plugin-react-docgen-typescript" "0.2.1"
+ "@rollup/pluginutils" "^5.0.2"
+ "@storybook/builder-vite" "7.4.6"
+ "@storybook/react" "7.4.6"
+ "@vitejs/plugin-react" "^3.0.1"
+ ast-types "^0.14.2"
+ magic-string "^0.30.0"
+ react-docgen "6.0.0-alpha.3"
+
+"@storybook/react@7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@storybook/react/-/react-7.3.2.tgz#434e20910189d4f8517df1c98b1acf2496b31e97"
+ integrity sha512-VMXy+soLnEW+lN1sfkkMGkmk3gnS3KLfEk0JssSlj+jGA4cPpvO+P1uGNkN8MjdiU9VaWt0aZ7uRdwx0rrfFUw==
dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/core-client" "7.0.14"
- "@storybook/docs-tools" "7.0.14"
+ "@storybook/client-logger" "7.3.2"
+ "@storybook/core-client" "7.3.2"
+ "@storybook/docs-tools" "7.3.2"
"@storybook/global" "^5.0.0"
- "@storybook/preview-api" "7.0.14"
- "@storybook/react-dom-shim" "7.0.14"
- "@storybook/types" "7.0.14"
+ "@storybook/preview-api" "7.3.2"
+ "@storybook/react-dom-shim" "7.3.2"
+ "@storybook/types" "7.3.2"
"@types/escodegen" "^0.0.6"
"@types/estree" "^0.0.51"
"@types/node" "^16.0.0"
@@ -6432,28 +6135,28 @@
prop-types "^15.7.2"
react-element-to-jsx-string "^15.0.0"
ts-dedent "^2.0.0"
- type-fest "^2.19.0"
+ type-fest "~2.19"
util-deprecate "^1.0.2"
-"@storybook/react@7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@storybook/react/-/react-7.3.2.tgz#434e20910189d4f8517df1c98b1acf2496b31e97"
- integrity sha512-VMXy+soLnEW+lN1sfkkMGkmk3gnS3KLfEk0JssSlj+jGA4cPpvO+P1uGNkN8MjdiU9VaWt0aZ7uRdwx0rrfFUw==
+"@storybook/react@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/react/-/react-7.4.6.tgz#240a78547add8db69b5d2eeae3d6c45feb79559b"
+ integrity sha512-w0dVo64baFFPTGpUOWFqkKsu6pQincoymegSNgqaBd5DxEyMDRiRoTWSJHMKE9BwgE8SyWhRkP1ak1mkccSOhQ==
dependencies:
- "@storybook/client-logger" "7.3.2"
- "@storybook/core-client" "7.3.2"
- "@storybook/docs-tools" "7.3.2"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/core-client" "7.4.6"
+ "@storybook/docs-tools" "7.4.6"
"@storybook/global" "^5.0.0"
- "@storybook/preview-api" "7.3.2"
- "@storybook/react-dom-shim" "7.3.2"
- "@storybook/types" "7.3.2"
+ "@storybook/preview-api" "7.4.6"
+ "@storybook/react-dom-shim" "7.4.6"
+ "@storybook/types" "7.4.6"
"@types/escodegen" "^0.0.6"
"@types/estree" "^0.0.51"
"@types/node" "^16.0.0"
acorn "^7.4.1"
acorn-jsx "^5.3.1"
acorn-walk "^7.2.0"
- escodegen "^2.0.0"
+ escodegen "^2.1.0"
html-tags "^3.1.0"
lodash "^4.17.21"
prop-types "^15.7.2"
@@ -6462,15 +6165,6 @@
type-fest "~2.19"
util-deprecate "^1.0.2"
-"@storybook/router@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/router/-/router-7.0.14.tgz#196b5c86433f6fa9213f096ce6074edf76f5ad10"
- integrity sha512-0u78cMF+91W56I0V8YZp7BUWo2LVpK680YawRB2aENeg4mele/zxGmP4wiKNtQoo52Pyp7aowNRQ4yVvDElBIA==
- dependencies:
- "@storybook/client-logger" "7.0.14"
- memoizerific "^1.11.3"
- qs "^6.10.0"
-
"@storybook/router@7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@storybook/router/-/router-7.3.2.tgz#6f59996c67bd22c57947cf58337979e0730e1e5e"
@@ -6489,20 +6183,14 @@
memoizerific "^1.11.3"
qs "^6.10.0"
-"@storybook/telemetry@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/telemetry/-/telemetry-7.0.14.tgz#eb8b140fd1a147c03175bd3fdd0aef560da78ada"
- integrity sha512-hwMRwcFCc86/M6uwemQwlivUmGwouLwr6vS7u7pcxw29IW/WtLg9amZih3N+6P9IEzHsMZKeXsC7TOIP+eL4JA==
+"@storybook/router@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/router/-/router-7.4.6.tgz#54d3014af26f82d79eae7dc5b0e6a89509b11912"
+ integrity sha512-Vl1esrHkcHxDKqc+HY7+6JQpBPW3zYvGk0cQ2rxVMhWdLZTAz1hss9DqzN9tFnPyfn0a1Q77EpMySkUrvWKKNQ==
dependencies:
- "@storybook/client-logger" "7.0.14"
- "@storybook/core-common" "7.0.14"
- chalk "^4.1.0"
- detect-package-manager "^2.0.1"
- fetch-retry "^5.0.2"
- fs-extra "^11.1.0"
- isomorphic-unfetch "^3.1.0"
- nanoid "^3.3.1"
- read-pkg-up "^7.0.1"
+ "@storybook/client-logger" "7.4.6"
+ memoizerific "^1.11.3"
+ qs "^6.10.0"
"@storybook/telemetry@7.3.2":
version "7.3.2"
@@ -6518,16 +6206,19 @@
fs-extra "^11.1.0"
read-pkg-up "^7.0.1"
-"@storybook/testing-library@^0.1.0":
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/@storybook/testing-library/-/testing-library-0.1.0.tgz#1839639765a2de113416d0fa16f9d108dfa6af63"
- integrity sha512-g947f4LJZw3IluBhysMKLJXByAFiSxnGuooENqU+ZPt/GTrz1I9GDBlhmoTJahuFkVbwHvziAl/8riY2Re921g==
+"@storybook/telemetry@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/telemetry/-/telemetry-7.4.6.tgz#748c978a188c988d688a50635025c12e7e90f924"
+ integrity sha512-c8p/C1NIH8EMBviZkBCx8MMDk6rrITJ+b29DEp5MaWSRlklIVyhGiC4RPIRv6sxJwlD41PnqWVFtfu2j2eXLdQ==
dependencies:
- "@storybook/client-logger" "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0"
- "@storybook/instrumenter" "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0"
- "@testing-library/dom" "^8.3.0"
- "@testing-library/user-event" "^13.2.1"
- ts-dedent "^2.2.0"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/core-common" "7.4.6"
+ "@storybook/csf-tools" "7.4.6"
+ chalk "^4.1.0"
+ detect-package-manager "^2.0.1"
+ fetch-retry "^5.0.2"
+ fs-extra "^11.1.0"
+ read-pkg-up "^7.0.1"
"@storybook/testing-library@^0.2.0":
version "0.2.1"
@@ -6538,15 +6229,14 @@
"@testing-library/user-event" "~14.4.0"
ts-dedent "^2.2.0"
-"@storybook/theming@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-7.0.14.tgz#e52244057894f4f566ce50f776113eeda883c6af"
- integrity sha512-ijf9ttzLaDMy1ExhD+i8JioSlDYP1sONUYUrKqJd/PHiJyC3+gzPRzQlE8IT++E4TlP+G19DwFchw9vk1HN1SA==
+"@storybook/testing-library@^0.2.2":
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/@storybook/testing-library/-/testing-library-0.2.2.tgz#c8e089cc8d7354f6066fdb580fae3eedf568aa7c"
+ integrity sha512-L8sXFJUHmrlyU2BsWWZGuAjv39Jl1uAqUHdxmN42JY15M4+XCMjGlArdCCjDe1wpTSW6USYISA9axjZojgtvnw==
dependencies:
- "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0"
- "@storybook/client-logger" "7.0.14"
- "@storybook/global" "^5.0.0"
- memoizerific "^1.11.3"
+ "@testing-library/dom" "^9.0.0"
+ "@testing-library/user-event" "^14.4.0"
+ ts-dedent "^2.2.0"
"@storybook/theming@7.3.2":
version "7.3.2"
@@ -6558,7 +6248,7 @@
"@storybook/global" "^5.0.0"
memoizerific "^1.11.3"
-"@storybook/theming@7.4.3", "@storybook/theming@^7.0.12", "@storybook/theming@^7.0.14", "@storybook/theming@^7.3.2":
+"@storybook/theming@7.4.3", "@storybook/theming@^7.0.12", "@storybook/theming@^7.3.2":
version "7.4.3"
resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-7.4.3.tgz#c359fd78fdcd38dbbeb5658f8cb363869f1ba5cf"
integrity sha512-u5wLwWmhGcTmkcs6f2wDGv+w8wzwbNJat0WaIIbwdJfX7arH6nO5HkBhNxvl6FUFxX0tovp/e9ULzxVPc356jw==
@@ -6568,15 +6258,15 @@
"@storybook/global" "^5.0.0"
memoizerific "^1.11.3"
-"@storybook/types@7.0.14":
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/@storybook/types/-/types-7.0.14.tgz#273c8fc0cbde5b2996070f6ecdf7b2c017ec84d9"
- integrity sha512-P9fL9Ha8nQY2uSc/GaCj/N28g8T0soiNWpBzcd61mk58eiCi1jSP7B5hA+jjKhj1eviIBPhwv81ZwnwLWxCtsg==
+"@storybook/theming@7.4.6", "@storybook/theming@^7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-7.4.6.tgz#72f7e42a57347d84128cef9abfba5ac1a810118e"
+ integrity sha512-HW77iJ9ptCMqhoBOYFjRQw7VBap+38fkJGHP5KylEJCyYCgIAm2dEcQmtWpMVYFssSGcb6djfbtAMhYU4TL4Iw==
dependencies:
- "@storybook/channels" "7.0.14"
- "@types/babel__core" "^7.0.0"
- "@types/express" "^4.7.0"
- file-system-cache "^2.0.0"
+ "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0"
+ "@storybook/client-logger" "7.4.6"
+ "@storybook/global" "^5.0.0"
+ memoizerific "^1.11.3"
"@storybook/types@7.3.2":
version "7.3.2"
@@ -6598,6 +6288,16 @@
"@types/express" "^4.7.0"
file-system-cache "2.3.0"
+"@storybook/types@7.4.6":
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/@storybook/types/-/types-7.4.6.tgz#536f21b82e1f809052b4d09802f99a580e960175"
+ integrity sha512-6QLXtMVsFZFpzPkdGWsu/iuc8na9dnS67AMOBKm5qCLPwtUJOYkwhMdFRSSeJthLRpzV7JLAL8Kwvl7MFP3QSw==
+ dependencies:
+ "@storybook/channels" "7.4.6"
+ "@types/babel__core" "^7.0.0"
+ "@types/express" "^4.7.0"
+ file-system-cache "2.3.0"
+
"@svgr/babel-plugin-add-jsx-attribute@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-7.0.0.tgz#80856c1b7a3b7422d232f6e079f0beb90c4a13e9"
@@ -6771,7 +6471,7 @@
resolved "https://registry.yarnpkg.com/@tanstack/table-core/-/table-core-8.10.1.tgz#04bd980fad9f3205840449c6ed16553c35ed48c9"
integrity sha512-dvO7wz+WjnT+7KI6ZZ+GAe9tljIFResDaV/TfOhfpeTB0ud9pILsavuM22HAXG2NsVaIG2Zax2OaVIsNt0z7Og==
-"@testing-library/dom@^8.3.0", "@testing-library/dom@^8.5.0":
+"@testing-library/dom@^8.5.0":
version "8.20.1"
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.1.tgz#2e52a32e46fc88369eef7eef634ac2a192decd9f"
integrity sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==
@@ -6823,12 +6523,10 @@
"@testing-library/dom" "^8.5.0"
"@types/react-dom" "^18.0.0"
-"@testing-library/user-event@^13.2.1":
- version "13.5.0"
- resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-13.5.0.tgz#69d77007f1e124d55314a2b73fd204b333b13295"
- integrity sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==
- dependencies:
- "@babel/runtime" "^7.12.5"
+"@testing-library/user-event@^14.4.0":
+ version "14.5.1"
+ resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.5.1.tgz#27337d72046d5236b32fd977edee3f74c71d332f"
+ integrity sha512-UCcUKrUYGj7ClomOo2SpNVvx4/fkd/2BbIHDCle8A0ax+P3bU7yJwDBDrS6ZwdTMARWTGODX1hEsCcO+7beJjg==
"@testing-library/user-event@~14.4.0":
version "14.4.3"
@@ -7006,6 +6704,11 @@
resolved "https://registry.yarnpkg.com/@types/doctrine/-/doctrine-0.0.3.tgz#e892d293c92c9c1d3f9af72c15a554fbc7e0895a"
integrity sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==
+"@types/dom-to-image@^2.6.5":
+ version "2.6.5"
+ resolved "https://registry.yarnpkg.com/@types/dom-to-image/-/dom-to-image-2.6.5.tgz#689a7b6fc84f2b9435637e639515de32c2eadfbb"
+ integrity sha512-SMYQf4urvjHfSsaEMhIULyjfawUv2a92OfglcGF7dQdDHBjfnGPtWoxw6hmKMiwsdmowHn70mxLw+F5cA7Imyg==
+
"@types/ejs@^3.1.1":
version "3.1.2"
resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-3.1.2.tgz#75d277b030bc11b3be38c807e10071f45ebc78d9"
@@ -7068,14 +6771,6 @@
resolved "https://registry.yarnpkg.com/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz#7b959a4b9643a1e6a1a5fe49032693cc36773501"
integrity sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==
-"@types/fs-extra@11.0.1":
- version "11.0.1"
- resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-11.0.1.tgz#f542ec47810532a8a252127e6e105f487e0a6ea5"
- integrity sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==
- dependencies:
- "@types/jsonfile" "*"
- "@types/node" "*"
-
"@types/fs-extra@^8.0.1":
version "8.1.3"
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-8.1.3.tgz#4807768c0b0a5a5f4746d8fde2f7ab0137076eea"
@@ -7096,14 +6791,6 @@
"@types/minimatch" "*"
"@types/node" "*"
-"@types/glob@^8.0.0":
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.1.0.tgz#b63e70155391b0584dce44e7ea25190bbc38f2fc"
- integrity sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==
- dependencies:
- "@types/minimatch" "^5.1.2"
- "@types/node" "*"
-
"@types/graceful-fs@^4.1.3":
version "4.1.7"
resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.7.tgz#30443a2e64fd51113bc3e2ba0914d47109695e2a"
@@ -7189,13 +6876,6 @@
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
-"@types/jsonfile@*":
- version "6.1.2"
- resolved "https://registry.yarnpkg.com/@types/jsonfile/-/jsonfile-6.1.2.tgz#d3b8a3536c5bb272ebee0f784180e456b7691c8f"
- integrity sha512-8t92P+oeW4d/CRQfJaSqEwXujrhH4OEeHRjGU3v1Q8mUS8GPF3yiX26sw4svv6faL2HfBtGTe2xWIoVgN3dy9w==
- dependencies:
- "@types/node" "*"
-
"@types/katex@^0.14.0":
version "0.14.0"
resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.14.0.tgz#b84c0afc3218069a5ad64fe2a95321881021b5fe"
@@ -7259,7 +6939,7 @@
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"
integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==
-"@types/minimatch@*", "@types/minimatch@^5.1.2":
+"@types/minimatch@*":
version "5.1.2"
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca"
integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
@@ -7274,7 +6954,7 @@
resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197"
integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==
-"@types/node-fetch@^2.5.7", "@types/node-fetch@^2.6.4":
+"@types/node-fetch@^2.6.4":
version "2.6.5"
resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.5.tgz#972756a9a0fe354b2886bf3defe667ddb4f0d30a"
integrity sha512-OZsUlr2nxvkqUFLSaY2ZbA+P1q22q+KrlxWOn/38RX+u5kTkYL2mTujEpzUhGkS+K/QCYp9oagfXG39XOzyySg==
@@ -7307,11 +6987,6 @@
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301"
integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==
-"@types/npmlog@^4.1.2":
- version "4.1.4"
- resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.4.tgz#30eb872153c7ead3e8688c476054ddca004115f6"
- integrity sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==
-
"@types/nprogress@^0.2.0":
version "0.2.0"
resolved "https://registry.yarnpkg.com/@types/nprogress/-/nprogress-0.2.0.tgz#86c593682d4199212a0509cc3c4d562bbbd6e45f"
@@ -7345,13 +7020,6 @@
resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.8.tgz#f2a7de3c107b89b441e071d5472e6b726b4adf45"
integrity sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==
-"@types/ramda@0.29.3":
- version "0.29.3"
- resolved "https://registry.yarnpkg.com/@types/ramda/-/ramda-0.29.3.tgz#6e4d4066df900a3456cf402bcef9b78b6990a754"
- integrity sha512-Yh/RHkjN0ru6LVhSQtTkCRo6HXkfL9trot/2elzM/yXLJmbLm2v6kJc8yftTnwv1zvUob6TEtqI2cYjdqG3U0Q==
- dependencies:
- types-ramda "^0.29.4"
-
"@types/range-parser@*":
version "1.2.4"
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc"
@@ -7729,7 +7397,7 @@ acorn@^7.4.0, acorn@^7.4.1:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
-acorn@^8.0.0, acorn@^8.10.0, acorn@^8.4.1, acorn@^8.8.0, acorn@^8.8.1, acorn@^8.8.2, acorn@^8.9.0:
+acorn@^8.0.0, acorn@^8.10.0, acorn@^8.4.1, acorn@^8.8.1, acorn@^8.8.2, acorn@^8.9.0:
version "8.10.0"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
@@ -7799,13 +7467,6 @@ ajv@^8.0.1:
require-from-string "^2.0.2"
uri-js "^4.2.2"
-ansi-align@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59"
- integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==
- dependencies:
- string-width "^4.1.0"
-
ansi-colors@^4.1.1, ansi-colors@^4.1.3:
version "4.1.3"
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"
@@ -7882,24 +7543,11 @@ app-root-dir@^1.0.2:
resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118"
integrity sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==
-"aproba@^1.0.3 || ^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
- integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
-
arch@^2.1.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11"
integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==
-are-we-there-yet@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c"
- integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==
- dependencies:
- delegates "^1.0.0"
- readable-stream "^3.6.0"
-
arg@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/arg/-/arg-1.0.0.tgz#444d885a4e25b121640b55155ef7cd03975d6050"
@@ -8213,15 +7861,6 @@ babel-plugin-istanbul@^6.1.1:
istanbul-lib-instrument "^5.0.4"
test-exclude "^6.0.0"
-babel-plugin-polyfill-corejs2@^0.3.3:
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122"
- integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==
- dependencies:
- "@babel/compat-data" "^7.17.7"
- "@babel/helper-define-polyfill-provider" "^0.3.3"
- semver "^6.1.1"
-
babel-plugin-polyfill-corejs2@^0.4.5:
version "0.4.5"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c"
@@ -8231,14 +7870,6 @@ babel-plugin-polyfill-corejs2@^0.4.5:
"@babel/helper-define-polyfill-provider" "^0.4.2"
semver "^6.3.1"
-babel-plugin-polyfill-corejs3@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a"
- integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==
- dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.3"
- core-js-compat "^3.25.1"
-
babel-plugin-polyfill-corejs3@^0.8.3:
version "0.8.3"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52"
@@ -8247,13 +7878,6 @@ babel-plugin-polyfill-corejs3@^0.8.3:
"@babel/helper-define-polyfill-provider" "^0.4.2"
core-js-compat "^3.31.0"
-babel-plugin-polyfill-regenerator@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747"
- integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==
- dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.3"
-
babel-plugin-polyfill-regenerator@^0.5.2:
version "0.5.2"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326"
@@ -8314,13 +7938,6 @@ base64-js@^1.3.1:
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
-better-opn@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6"
- integrity sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==
- dependencies:
- open "^7.0.3"
-
better-opn@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-3.0.2.tgz#f96f35deaaf8f34144a4102651babcf00d1d8817"
@@ -8382,20 +7999,6 @@ boolbase@^1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
-boxen@^5.1.2:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50"
- integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==
- dependencies:
- ansi-align "^3.0.0"
- camelcase "^6.2.0"
- chalk "^4.1.0"
- cli-boxes "^2.2.1"
- string-width "^4.2.2"
- type-fest "^0.20.2"
- widest-line "^3.1.0"
- wrap-ansi "^7.0.0"
-
bplist-parser@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e"
@@ -8810,11 +8413,6 @@ clean-stack@^2.0.0:
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
-cli-boxes@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
- integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
-
cli-cursor@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
@@ -8967,11 +8565,6 @@ color-name@~1.1.4:
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-color-support@^1.1.2:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
- integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
-
color2k@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/color2k/-/color2k-2.0.2.tgz#ac2b4aea11c822a6bcb70c768b5a289f4fffcebb"
@@ -9096,11 +8689,6 @@ concat-with-sourcemaps@^1.1.0:
dependencies:
source-map "^0.6.1"
-console-control-strings@^1.0.0, console-control-strings@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
- integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==
-
constant-case@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1"
@@ -9142,7 +8730,7 @@ cookie@0.5.0:
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b"
integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
-core-js-compat@^3.25.1, core-js-compat@^3.31.0:
+core-js-compat@^3.31.0:
version "3.32.2"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.2.tgz#8047d1a8b3ac4e639f0d4f66d4431aa3b16e004c"
integrity sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ==
@@ -9902,11 +9490,6 @@ delayed-stream@~1.0.0:
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
-delegates@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
- integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==
-
depd@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
@@ -10033,6 +9616,11 @@ dom-serializer@^2.0.0:
domhandler "^5.0.2"
entities "^4.2.0"
+dom-to-image@^2.6.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/dom-to-image/-/dom-to-image-2.6.0.tgz#8a503608088c87b1c22f9034ae032e1898955867"
+ integrity sha512-Dt0QdaHmLpjURjU7Tnu3AgYSF2LuOmksSGsUcE6ItvJoCWTBEmiMXcqBdNSAm9+QbbwD7JMoVsuuKX6ZVQv1qA==
+
domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
@@ -10360,7 +9948,7 @@ esbuild-register@^3.4.0:
dependencies:
debug "^4.3.4"
-esbuild@^0.17.0, esbuild@^0.17.15, esbuild@^0.17.6:
+esbuild@^0.17.15, esbuild@^0.17.6:
version "0.17.19"
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.19.tgz#087a727e98299f0462a3d0bcdd9cd7ff100bd955"
integrity sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==
@@ -10446,7 +10034,7 @@ escape-string-regexp@^5.0.0:
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
-escodegen@^2.0.0:
+escodegen@^2.0.0, escodegen@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17"
integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==
@@ -10940,7 +10528,7 @@ estree-walker@^1.0.1:
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
-estree-walker@^2.0.1, estree-walker@^2.0.2:
+estree-walker@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
@@ -11225,16 +10813,6 @@ file-system-cache@2.3.0:
fs-extra "11.1.1"
ramda "0.29.0"
-file-system-cache@^2.0.0:
- version "2.4.4"
- resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-2.4.4.tgz#90eb72960e3d7b72d09768d4d4262c98f8d206b6"
- integrity sha512-vCYhn8pb5nlC3Gs2FFCOkmf4NEg2Ym3ulJwkmS9o6p9oRShGj6CwTMFvpgZihBlsh373NaM0XgAgDHXQIlS4LQ==
- dependencies:
- "@types/fs-extra" "11.0.1"
- "@types/ramda" "0.29.3"
- fs-extra "11.1.1"
- ramda "0.29.0"
-
filelist@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5"
@@ -11479,21 +11057,6 @@ functions-have-names@^1.2.3:
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
-gauge@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395"
- integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==
- dependencies:
- aproba "^1.0.3 || ^2.0.0"
- color-support "^1.1.2"
- console-control-strings "^1.0.0"
- has-unicode "^2.0.1"
- object-assign "^4.1.1"
- signal-exit "^3.0.0"
- string-width "^4.2.3"
- strip-ansi "^6.0.1"
- wide-align "^1.1.2"
-
generic-names@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-4.0.0.tgz#0bd8a2fd23fe8ea16cbd0a279acd69c06933d9a3"
@@ -11637,13 +11200,6 @@ glob-promise@^4.2.0:
dependencies:
"@types/glob" "^7.1.3"
-glob-promise@^6.0.2:
- version "6.0.5"
- resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-6.0.5.tgz#3d56331b324fd7d097b43ba9e9959e9c7e200e2c"
- integrity sha512-uUzvxo60yo/vMLXZHCNAlfdM5U5A07jCnUO8xTK44Z0Vc58poGDXhDx8ju1DmPdprOORh+4Lpog64hl+AJ5piA==
- dependencies:
- "@types/glob" "^8.0.0"
-
glob-to-regexp@^0.4.1:
version "0.4.1"
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
@@ -11684,7 +11240,7 @@ glob@^10.0.0:
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
path-scurry "^1.10.1"
-glob@^7.0.0, glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.2.0:
+glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.2.0:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -11696,7 +11252,7 @@ glob@^7.0.0, glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.2.0:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^8.0.3, glob@^8.1.0:
+glob@^8.0.3:
version "8.1.0"
resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
@@ -11948,11 +11504,6 @@ has-tostringtag@^1.0.0:
dependencies:
has-symbols "^1.0.2"
-has-unicode@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
- integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==
-
has@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
@@ -12387,11 +11938,6 @@ internmap@^1.0.0:
resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95"
integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==
-interpret@^1.0.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
- integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
-
intersection-observer@^0.12.2:
version "0.12.2"
resolved "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.12.2.tgz#4a45349cc0cd91916682b1f44c28d7ec737dc375"
@@ -12844,7 +12390,7 @@ is-windows@^1.0.0, is-windows@^1.0.1:
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-is-wsl@^2.1.1, is-wsl@^2.2.0:
+is-wsl@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
@@ -12871,14 +12417,6 @@ isobject@^3.0.1:
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
-isomorphic-unfetch@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f"
- integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==
- dependencies:
- node-fetch "^2.6.1"
- unfetch "^4.2.0"
-
isomorphic-ws@5.0.0, isomorphic-ws@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf"
@@ -14567,6 +14105,11 @@ minizlib@^2.1.1:
minipass "^3.0.0"
yallist "^4.0.0"
+mitt@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1"
+ integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==
+
mixme@^0.5.1:
version "0.5.9"
resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.5.9.tgz#a5a58e17354632179ff3ce5b0fc130899c8ba81c"
@@ -14638,7 +14181,7 @@ mz@^2.7.0:
object-assign "^4.0.1"
thenify-all "^1.0.0"
-nanoid@^3.3.1, nanoid@^3.3.4, nanoid@^3.3.6:
+nanoid@^3.3.4, nanoid@^3.3.6:
version "3.3.6"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
@@ -14700,6 +14243,13 @@ next-themes@^0.2.1:
resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.2.1.tgz#0c9f128e847979daf6c67f70b38e6b6567856e45"
integrity sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==
+next-usequerystate@^1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/next-usequerystate/-/next-usequerystate-1.8.1.tgz#fd31a4a91f6ff0cb20e5d385abd48659f487fbc8"
+ integrity sha512-3daSBGtsEwz6TWLLdiNWeU4KxLL1psytBfwzswJWJ1K7UEqwciypobXz90BZpgK/h/vT1hmii3PRCeu34K4yjw==
+ dependencies:
+ mitt "^3.0.1"
+
next@13.4.9:
version "13.4.9"
resolved "https://registry.yarnpkg.com/next/-/next-13.4.9.tgz#473de5997cb4c5d7a4fb195f566952a1cbffbeba"
@@ -14838,7 +14388,7 @@ node-fetch-native@^1.0.2:
resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.4.0.tgz#fbe8ac033cb6aa44bd106b5e4fd2b6277ba70fa1"
integrity sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==
-node-fetch@^2.0.0, node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.6.7, node-fetch@^2.x.x:
+node-fetch@^2.0.0, node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.x.x:
version "2.7.0"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
@@ -14933,16 +14483,6 @@ npm-to-yarn@^2.0.0:
resolved "https://registry.yarnpkg.com/npm-to-yarn/-/npm-to-yarn-2.1.0.tgz#ff4e18028d18eb844691f1ccb556be5f3ccfde34"
integrity sha512-2C1IgJLdJngq1bSER7K7CGFszRr9s2rijEwvENPEgI0eK9xlD3tNwDc0UJnRj7FIT2aydWm72jB88uVswAhXHA==
-npmlog@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0"
- integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==
- dependencies:
- are-we-there-yet "^2.0.0"
- console-control-strings "^1.1.0"
- gauge "^3.0.0"
- set-blocking "^2.0.0"
-
nprogress@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1"
@@ -15076,14 +14616,6 @@ onetime@^6.0.0:
dependencies:
mimic-fn "^4.0.0"
-open@^7.0.3:
- version "7.4.2"
- resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321"
- integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==
- dependencies:
- is-docker "^2.0.0"
- is-wsl "^2.1.1"
-
open@^8.0.4, open@^8.4.0:
version "8.4.2"
resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
@@ -16366,7 +15898,7 @@ readable-stream@^2.0.0, readable-stream@^2.2.2, readable-stream@~2.3.6:
string_decoder "~1.1.1"
util-deprecate "~1.0.1"
-readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0:
+readable-stream@^3.1.1, readable-stream@^3.4.0:
version "3.6.2"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
@@ -16408,13 +15940,6 @@ recast@^0.23.1:
source-map "~0.6.1"
tslib "^2.0.1"
-rechoir@^0.6.2:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
- integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==
- dependencies:
- resolve "^1.1.6"
-
redent@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
@@ -16674,7 +16199,7 @@ resolve-url-loader@^5.0.0:
postcss "^8.2.14"
source-map "0.6.1"
-resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.22.0, resolve@^1.22.1, resolve@^1.22.2, resolve@^1.22.4:
+resolve@^1.1.7, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.22.0, resolve@^1.22.1, resolve@^1.22.2, resolve@^1.22.4:
version "1.22.6"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362"
integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==
@@ -16970,7 +16495,7 @@ section-matter@^1.0.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
-semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0, semver@^6.3.1:
+semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
@@ -16982,11 +16507,6 @@ semver@^7.2.1, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3:
dependencies:
lru-cache "^6.0.0"
-semver@~7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
- integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
-
send@0.18.0:
version "0.18.0"
resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
@@ -17103,15 +16623,6 @@ shell-quote@^1.6.1, shell-quote@^1.7.3:
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
-shelljs@^0.8.5:
- version "0.8.5"
- resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c"
- integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==
- dependencies:
- glob "^7.0.0"
- interpret "^1.0.0"
- rechoir "^0.6.2"
-
shiki@^0.14.3:
version "0.14.4"
resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.4.tgz#2454969b466a5f75067d0f2fa0d7426d32881b20"
@@ -17151,13 +16662,6 @@ signedsource@^1.0.0:
resolved "https://registry.yarnpkg.com/signedsource/-/signedsource-1.0.0.tgz#1ddace4981798f93bd833973803d80d52e93ad6a"
integrity sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==
-simple-update-notifier@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz#67694c121de354af592b347cdba798463ed49c82"
- integrity sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==
- dependencies:
- semver "~7.0.0"
-
simple-update-notifier@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb"
@@ -17368,17 +16872,15 @@ store2@^2.14.2:
resolved "https://registry.yarnpkg.com/store2/-/store2-2.14.2.tgz#56138d200f9fe5f582ad63bc2704dbc0e4a45068"
integrity sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==
-storybook-addon-pseudo-states@^2.0.1, storybook-addon-pseudo-states@^2.1.1:
+storybook-addon-pseudo-states@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/storybook-addon-pseudo-states/-/storybook-addon-pseudo-states-2.1.1.tgz#9f9c37c234d9860937791c01488efc37bbda2127"
integrity sha512-f6x4ZDTNlG888KVFEvGpaxqUReCfTweHIOm01LF7vC0/T5c7NHxqdjZ1/1C+nTNjmYqxKwud6/IgG9ZVv1gRsA==
-storybook@7.0.14:
- version "7.0.14"
- resolved "https://registry.yarnpkg.com/storybook/-/storybook-7.0.14.tgz#d558a9a17513d4761608af3c63caf8b34991b162"
- integrity sha512-oVcaVF3U7SQ8jrxYvv32oiJFTfKxR5F+vJ6GkjB3ua5lQlbVuj26tJ2qmxp4ziLTcpj1o0V8lTeI5Phr2jmglw==
- dependencies:
- "@storybook/cli" "7.0.14"
+storybook-addon-pseudo-states@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/storybook-addon-pseudo-states/-/storybook-addon-pseudo-states-2.1.2.tgz#9a04b8b97abecba69a47eca37966e297d15f924f"
+ integrity sha512-AHv6q1JiQEUnMyZE3729iV6cNmBW7bueeytc4Lga4+8W1En8YNea5VjqAdrDNJhXVU0QEEIGtxkD3EoC9aVWLw==
storybook@7.3.2:
version "7.3.2"
@@ -17387,6 +16889,13 @@ storybook@7.3.2:
dependencies:
"@storybook/cli" "7.3.2"
+storybook@7.4.6:
+ version "7.4.6"
+ resolved "https://registry.yarnpkg.com/storybook/-/storybook-7.4.6.tgz#f688649af6c2cd1329dd120d8f61a930f76262d0"
+ integrity sha512-YkFSpnR47j5zz7yElA+2axLjXN7K7TxDGJRHHlqXmG5iQ0PXzmjrj2RxMDKFz4Ybp/QjEUoJ4rx//ESEY0Nb5A==
+ dependencies:
+ "@storybook/cli" "7.4.6"
+
stream-shift@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
@@ -17419,7 +16928,7 @@ string-hash@^1.1.1:
resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
integrity sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==
-"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3:
+"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -18033,11 +17542,6 @@ ts-node@^10.9.1:
v8-compile-cache-lib "^3.0.1"
yn "3.1.1"
-ts-toolbelt@^9.6.0:
- version "9.6.0"
- resolved "https://registry.yarnpkg.com/ts-toolbelt/-/ts-toolbelt-9.6.0.tgz#50a25426cfed500d4a09bd1b3afb6f28879edfd5"
- integrity sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==
-
tsconfck@^2.1.0:
version "2.1.2"
resolved "https://registry.yarnpkg.com/tsconfck/-/tsconfck-2.1.2.tgz#f667035874fa41d908c1fe4d765345fcb1df6e35"
@@ -18269,13 +17773,6 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
-types-ramda@^0.29.4:
- version "0.29.4"
- resolved "https://registry.yarnpkg.com/types-ramda/-/types-ramda-0.29.4.tgz#8d9b51df2e550a05cedab541cc75dcd72972c625"
- integrity sha512-XO/820iRsCDwqLjE8XE+b57cVGPyk1h+U9lBGpDWvbEky+NQChvHVwaKM05WnW1c5z3EVQh8NhXFmh2E/1YazQ==
- dependencies:
- ts-toolbelt "^9.6.0"
-
typescript@^4.7.4:
version "4.9.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
@@ -18316,11 +17813,6 @@ unc-path-regex@^0.1.2:
resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==
-unfetch@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be"
- integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==
-
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
@@ -18538,16 +18030,6 @@ unpipe@1.0.0, unpipe@~1.0.0:
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
-unplugin@^0.10.2:
- version "0.10.2"
- resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-0.10.2.tgz#0f7089c3666f592cc448d746e39e7f41e9afb01a"
- integrity sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==
- dependencies:
- acorn "^8.8.0"
- chokidar "^3.5.3"
- webpack-sources "^3.2.3"
- webpack-virtual-modules "^0.4.5"
-
unplugin@^1.3.1:
version "1.5.0"
resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.5.0.tgz#8938ae84defe62afc7757df9ca05d27160f6c20c"
@@ -18912,11 +18394,6 @@ webpack-sources@^3.2.3:
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde"
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
-webpack-virtual-modules@^0.4.5:
- version "0.4.6"
- resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45"
- integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==
-
webpack-virtual-modules@^0.5.0:
version "0.5.0"
resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz#362f14738a56dae107937ab98ea7062e8bdd3b6c"
@@ -19036,20 +18513,6 @@ why-is-node-running@^2.2.2:
siginfo "^2.0.0"
stackback "0.0.2"
-wide-align@^1.1.2:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3"
- integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
- dependencies:
- string-width "^1.0.2 || 2 || 3 || 4"
-
-widest-line@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
- integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==
- dependencies:
- string-width "^4.0.0"
-
wordwrap@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"