@mirohq/design-system-dropdown-menu 4.4.20 → 4.4.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +28 -26
- package/package.json +5 -5
package/dist/types.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ declare const StyledCheckboxItem: react.ForwardRefExoticComponent<Omit<Omit<_mir
|
|
|
15
15
|
}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuCheckboxItemProps & react.RefAttributes<HTMLDivElement>>, {
|
|
16
16
|
variant?: "solid-prominent" | "ghost" | undefined;
|
|
17
17
|
}, {}>;
|
|
18
|
-
|
|
18
|
+
type StyledCheckboxItemProps = StrictComponentProps<typeof StyledCheckboxItem>;
|
|
19
19
|
|
|
20
20
|
interface CheckboxItemProps extends Omit<StyledCheckboxItemProps, 'onChange'> {
|
|
21
21
|
/**
|
|
@@ -59,22 +59,22 @@ declare const StyledItemsContainer: react.ForwardRefExoticComponent<Omit<Omit<_m
|
|
|
59
59
|
}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<"div", {
|
|
60
60
|
containerSpacing?: "small" | "medium" | "large" | undefined;
|
|
61
61
|
}, {}>;
|
|
62
|
-
|
|
62
|
+
type StyledItemsContainerProps = StrictComponentProps<typeof StyledItemsContainer>;
|
|
63
63
|
declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuContentProps & react.RefAttributes<HTMLDivElement>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuContentProps & react.RefAttributes<HTMLDivElement>>, {}, {}>;
|
|
64
|
-
|
|
64
|
+
type StyledContentProps = StrictComponentProps<typeof StyledContent>;
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
type PointerDownOutsideEvent = CustomEvent<{
|
|
67
67
|
originalEvent: PointerEvent;
|
|
68
68
|
}>;
|
|
69
|
-
|
|
69
|
+
type FocusOutsideEvent = CustomEvent<{
|
|
70
70
|
originalEvent: FocusEvent;
|
|
71
71
|
}>;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
72
|
+
type Side = 'top' | 'right' | 'bottom' | 'left';
|
|
73
|
+
type Align = 'start' | 'center' | 'end';
|
|
74
|
+
type StickyBehavior = 'partial' | 'always';
|
|
75
|
+
type ContainerSpacing = ExtractValidKeys<StyledItemsContainerProps['containerSpacing']>;
|
|
76
|
+
type Overflow = 'auto' | 'visible';
|
|
77
|
+
type Direction = 'ltr' | 'rtl';
|
|
78
78
|
|
|
79
79
|
type types_PointerDownOutsideEvent = PointerDownOutsideEvent;
|
|
80
80
|
type types_FocusOutsideEvent = FocusOutsideEvent;
|
|
@@ -218,7 +218,7 @@ declare const StyledItem: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_desi
|
|
|
218
218
|
hasRightSlot?: boolean | "true" | undefined;
|
|
219
219
|
variant?: "subtle" | "danger" | undefined;
|
|
220
220
|
}, {}>;
|
|
221
|
-
|
|
221
|
+
type StyledItemProps = StrictComponentProps<typeof StyledItem>;
|
|
222
222
|
|
|
223
223
|
interface ItemProps extends StyledItemProps {
|
|
224
224
|
/**
|
|
@@ -246,13 +246,13 @@ interface ItemProps extends StyledItemProps {
|
|
|
246
246
|
}
|
|
247
247
|
declare const Item: react__default.ForwardRefExoticComponent<Omit<ItemProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
248
248
|
|
|
249
|
-
|
|
249
|
+
type ItemPropsWithAnchor = ItemProps & AnchorHTMLAttributes<typeof Item>;
|
|
250
250
|
interface LinkItemProps extends ItemPropsWithAnchor {
|
|
251
251
|
}
|
|
252
252
|
declare const LinkItem: react__default.ForwardRefExoticComponent<Omit<LinkItemProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
253
253
|
|
|
254
254
|
declare const StyledRadioGroup: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuRadioGroupProps & react.RefAttributes<HTMLDivElement>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuRadioGroupProps & react.RefAttributes<HTMLDivElement>>, {}, {}>;
|
|
255
|
-
|
|
255
|
+
type StyledRadioGroupProps = StrictComponentProps<typeof StyledRadioGroup>;
|
|
256
256
|
|
|
257
257
|
interface RadioGroupProps extends Omit<StyledRadioGroupProps, 'onChange'> {
|
|
258
258
|
/**
|
|
@@ -267,7 +267,7 @@ interface RadioGroupProps extends Omit<StyledRadioGroupProps, 'onChange'> {
|
|
|
267
267
|
declare const RadioGroup: react__default.ForwardRefExoticComponent<Omit<RadioGroupProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
268
268
|
|
|
269
269
|
declare const StyledRadioItem: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuRadioItemProps & react.RefAttributes<HTMLDivElement>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuRadioItemProps & react.RefAttributes<HTMLDivElement>>, {}, {}>;
|
|
270
|
-
|
|
270
|
+
type StyledRadioItemProps = StrictComponentProps<typeof StyledRadioItem>;
|
|
271
271
|
|
|
272
272
|
interface RadioItemProps extends StyledRadioItemProps {
|
|
273
273
|
/**
|
|
@@ -299,14 +299,14 @@ interface RadioItemProps extends StyledRadioItemProps {
|
|
|
299
299
|
declare const RadioItem: react__default.ForwardRefExoticComponent<Omit<RadioItemProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
300
300
|
|
|
301
301
|
declare const StyledSeparator: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuSeparatorProps & react.RefAttributes<HTMLDivElement>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuSeparatorProps & react.RefAttributes<HTMLDivElement>>, {}, {}>;
|
|
302
|
-
|
|
302
|
+
type StyledSeparatorProps = StrictComponentProps<typeof StyledSeparator>;
|
|
303
303
|
|
|
304
304
|
interface SeparatorProps extends StyledSeparatorProps {
|
|
305
305
|
}
|
|
306
306
|
declare const Separator: react__default.ForwardRefExoticComponent<Omit<SeparatorProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
307
307
|
|
|
308
308
|
declare const StyledSwitchItem: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuCheckboxItemProps & react.RefAttributes<HTMLDivElement>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuCheckboxItemProps & react.RefAttributes<HTMLDivElement>>, {}, {}>;
|
|
309
|
-
|
|
309
|
+
type StyledSwitchItemProps = StrictComponentProps<typeof StyledSwitchItem>;
|
|
310
310
|
|
|
311
311
|
interface SwitchItemProps extends Omit<StyledSwitchItemProps, 'onChange'> {
|
|
312
312
|
/**
|
|
@@ -345,14 +345,14 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_d
|
|
|
345
345
|
}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLButtonElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuTriggerProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
346
346
|
unstyled?: boolean | "true" | "false" | undefined;
|
|
347
347
|
}, {}>;
|
|
348
|
-
|
|
348
|
+
type StyledTriggerProps = StrictComponentProps<typeof StyledTrigger>;
|
|
349
349
|
|
|
350
350
|
interface TriggerProps extends StyledTriggerProps {
|
|
351
351
|
}
|
|
352
352
|
declare const Trigger: react__default.ForwardRefExoticComponent<Omit<TriggerProps, "ref"> & react__default.RefAttributes<HTMLButtonElement>>;
|
|
353
353
|
|
|
354
354
|
declare const StyledSubTrigger: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuSubTriggerProps & react.RefAttributes<HTMLDivElement>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuSubTriggerProps & react.RefAttributes<HTMLDivElement>>, {}, {}>;
|
|
355
|
-
|
|
355
|
+
type StyledSubTriggerProps = StrictComponentProps<typeof StyledSubTrigger>;
|
|
356
356
|
|
|
357
357
|
interface SubTriggerProps extends StyledSubTriggerProps {
|
|
358
358
|
/**
|
|
@@ -370,7 +370,7 @@ interface SubTriggerProps extends StyledSubTriggerProps {
|
|
|
370
370
|
declare const SubTrigger: react__default.ForwardRefExoticComponent<Omit<StyledSubTriggerProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
371
371
|
|
|
372
372
|
declare const StyledSubContent: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuSubContentProps & react.RefAttributes<HTMLDivElement>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuSubContentProps & react.RefAttributes<HTMLDivElement>>, {}, {}>;
|
|
373
|
-
|
|
373
|
+
type StyledSubContentProps = StrictComponentProps<typeof StyledSubContent>;
|
|
374
374
|
|
|
375
375
|
interface SubContentProps extends StyledSubContentProps {
|
|
376
376
|
/**
|
|
@@ -468,7 +468,7 @@ interface SubContentProps extends StyledSubContentProps {
|
|
|
468
468
|
declare const SubContent: react__default.ForwardRefExoticComponent<Omit<SubContentProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
469
469
|
|
|
470
470
|
declare const StyledSub: react.ForwardRefExoticComponent<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.FC<RadixDropdownMenu.DropdownMenuSubProps>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps & react.RefAttributes<never>> & _mirohq_design_system_stitches.StitchesInternals<react.FC<RadixDropdownMenu.DropdownMenuSubProps>, {}, {}>;
|
|
471
|
-
|
|
471
|
+
type StyledSubProps = StrictComponentProps<typeof StyledSub>;
|
|
472
472
|
|
|
473
473
|
interface SubProps extends StyledSubProps {
|
|
474
474
|
/**
|
|
@@ -509,15 +509,17 @@ declare const Portal: react__default.FC<PortalProps>;
|
|
|
509
509
|
declare const ItemDescription: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>, {}, {}>;
|
|
510
510
|
|
|
511
511
|
declare const StyledIconSlot: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<_mirohq_design_system_components_primitive.PrimitiveProps<"div">>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_components_primitive.PrimitiveProps<"div">>, {}, {}>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<_mirohq_design_system_components_primitive.PrimitiveProps<"div">>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_components_primitive.PrimitiveProps<"div">>, {}, {}>, {}, {}>;
|
|
512
|
-
|
|
512
|
+
type StyledIconSlotProps = ComponentPropsWithRef<typeof StyledIconSlot>;
|
|
513
513
|
|
|
514
|
-
|
|
514
|
+
type IconSlotProps = {
|
|
515
515
|
children: react__default.ReactNode;
|
|
516
516
|
} & StyledIconSlotProps;
|
|
517
|
-
declare const IconSlot: react__default.ForwardRefExoticComponent<Omit<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react__default.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react__default.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react__default.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react__default.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>, {}, {}>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react__default.RefAttributes<HTMLDivElement>, "ref"> &
|
|
517
|
+
declare const IconSlot: react__default.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react__default.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react__default.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react__default.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react__default.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>, {}, {}>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react__default.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
518
|
+
ref?: ((instance: HTMLDivElement | null) => void | react__default.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react__default.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react__default.RefObject<HTMLDivElement> | null | undefined;
|
|
519
|
+
}, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
518
520
|
|
|
519
521
|
declare const Hotkey: react__default.ForwardRefExoticComponent<Omit<react__default.HTMLAttributes<HTMLSpanElement> & {
|
|
520
|
-
css?: _mirohq_design_system_stitches.CSS
|
|
522
|
+
css?: _mirohq_design_system_stitches.CSS;
|
|
521
523
|
}, _mirohq_design_system_stitches.ForbiddenProps> & {
|
|
522
524
|
/**
|
|
523
525
|
* The content.
|
|
@@ -526,7 +528,7 @@ declare const Hotkey: react__default.ForwardRefExoticComponent<Omit<react__defau
|
|
|
526
528
|
} & react__default.RefAttributes<HTMLSpanElement>>;
|
|
527
529
|
|
|
528
530
|
declare const StyledIllustrationSlot: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<_mirohq_design_system_components_primitive.PrimitiveProps<"div">>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_components_primitive.PrimitiveProps<"div">>, {}, {}>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<_mirohq_design_system_components_primitive.PrimitiveProps<"div">>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_components_primitive.PrimitiveProps<"div">>, {}, {}>, {}, {}>;
|
|
529
|
-
|
|
531
|
+
type StyledIllustrationSlotProps = StrictComponentProps<typeof StyledIllustrationSlot>;
|
|
530
532
|
|
|
531
533
|
declare const IllustrationSlot: react__default.ForwardRefExoticComponent<Omit<StyledIllustrationSlotProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
532
534
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-dropdown-menu",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.22",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"@react-aria/utils": "^3.13.0",
|
|
32
32
|
"@mirohq/design-system-base-hotkey": "^0.2.7",
|
|
33
33
|
"@mirohq/design-system-base-icon": "^0.1.33",
|
|
34
|
+
"@mirohq/design-system-base-switch": "^0.1.51",
|
|
34
35
|
"@mirohq/design-system-base-tooltip": "^0.1.0",
|
|
35
|
-
"@mirohq/design-system-icons": "^0.
|
|
36
|
+
"@mirohq/design-system-icons": "^0.64.0",
|
|
36
37
|
"@mirohq/design-system-primitive": "^1.1.2",
|
|
37
38
|
"@mirohq/design-system-scroll-area": "^0.4.18",
|
|
38
39
|
"@mirohq/design-system-stitches": "^2.6.30",
|
|
39
|
-
"@mirohq/design-system-base-switch": "^0.1.51",
|
|
40
40
|
"@mirohq/design-system-styles": "^1.2.30",
|
|
41
|
-
"@mirohq/design-system-types": "^0.10.0",
|
|
42
|
-
"@mirohq/design-system-use-aria-disabled": "^0.2.1",
|
|
43
41
|
"@mirohq/design-system-use-layout-effect": "^0.2.1",
|
|
42
|
+
"@mirohq/design-system-use-aria-disabled": "^0.3.0",
|
|
43
|
+
"@mirohq/design-system-types": "^0.10.0",
|
|
44
44
|
"@mirohq/design-system-use-previous": "^0.1.0",
|
|
45
45
|
"@mirohq/design-system-utils": "^0.15.5"
|
|
46
46
|
},
|