@mirohq/design-system-dropdown-menu 4.5.0-new-focus-keyboard.0 → 5.0.0-v1.0
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/main.js +71 -59
- package/dist/main.js.map +1 -1
- package/dist/module.js +72 -60
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +33 -29
- package/package.json +10 -10
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
|
/**
|
|
@@ -504,20 +504,24 @@ interface PortalProps extends DropdownMenuPortalProps {
|
|
|
504
504
|
*/
|
|
505
505
|
container?: HTMLElement | null;
|
|
506
506
|
}
|
|
507
|
-
declare const Portal: react__default.
|
|
507
|
+
declare const Portal: (props: PortalProps) => react__default.ReactNode;
|
|
508
508
|
|
|
509
|
-
declare const
|
|
509
|
+
declare const StyledItemDescription: 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">>, {}, {}>;
|
|
510
|
+
type StyledItemDescriptionProps = StrictComponentProps<typeof StyledItemDescription>;
|
|
511
|
+
declare const ItemDescription: react__default.ForwardRefExoticComponent<Omit<StyledItemDescriptionProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
510
512
|
|
|
511
513
|
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
|
-
|
|
514
|
+
type StyledIconSlotProps = ComponentPropsWithRef<typeof StyledIconSlot>;
|
|
513
515
|
|
|
514
|
-
|
|
516
|
+
type IconSlotProps = {
|
|
515
517
|
children: react__default.ReactNode;
|
|
516
518
|
} & 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"> &
|
|
519
|
+
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"> & {
|
|
520
|
+
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;
|
|
521
|
+
}, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
518
522
|
|
|
519
523
|
declare const Hotkey: react__default.ForwardRefExoticComponent<Omit<react__default.HTMLAttributes<HTMLSpanElement> & {
|
|
520
|
-
css?: _mirohq_design_system_stitches.CSS
|
|
524
|
+
css?: _mirohq_design_system_stitches.CSS;
|
|
521
525
|
}, _mirohq_design_system_stitches.ForbiddenProps> & {
|
|
522
526
|
/**
|
|
523
527
|
* The content.
|
|
@@ -526,7 +530,7 @@ declare const Hotkey: react__default.ForwardRefExoticComponent<Omit<react__defau
|
|
|
526
530
|
} & react__default.RefAttributes<HTMLSpanElement>>;
|
|
527
531
|
|
|
528
532
|
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
|
-
|
|
533
|
+
type StyledIllustrationSlotProps = StrictComponentProps<typeof StyledIllustrationSlot>;
|
|
530
534
|
|
|
531
535
|
declare const IllustrationSlot: react__default.ForwardRefExoticComponent<Omit<StyledIllustrationSlotProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
532
536
|
|
|
@@ -567,7 +571,7 @@ interface DropdownMenuProps {
|
|
|
567
571
|
*/
|
|
568
572
|
children: react__default.ReactNode;
|
|
569
573
|
}
|
|
570
|
-
declare const DropdownMenu: react__default.
|
|
574
|
+
declare const DropdownMenu: ((props: DropdownMenuProps) => react__default.ReactNode) & Partials;
|
|
571
575
|
interface Partials {
|
|
572
576
|
CheckboxItem: typeof CheckboxItem;
|
|
573
577
|
Content: typeof Content;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-dropdown-menu",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-v1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@radix-ui/react-dropdown-menu": "^2.0.5",
|
|
31
31
|
"@react-aria/utils": "^3.13.0",
|
|
32
|
+
"@mirohq/design-system-base-hotkey": "^1.0.0-v1.0",
|
|
32
33
|
"@mirohq/design-system-base-icon": "^0.1.33",
|
|
33
|
-
"@mirohq/design-system-base-switch": "^0.1.
|
|
34
|
-
"@mirohq/design-system-base-tooltip": "^0.1.
|
|
34
|
+
"@mirohq/design-system-base-switch": "^0.1.59-v1.0",
|
|
35
|
+
"@mirohq/design-system-base-tooltip": "^0.1.1",
|
|
36
|
+
"@mirohq/design-system-icons": "^0.74.1-v1.0",
|
|
35
37
|
"@mirohq/design-system-primitive": "^1.1.2",
|
|
36
|
-
"@mirohq/design-system-scroll-area": "^0.4.
|
|
37
|
-
"@mirohq/design-system-stitches": "^2.6.
|
|
38
|
-
"@mirohq/design-system-
|
|
39
|
-
"@mirohq/design-system-base-hotkey": "^0.2.8-new-focus-keyboard.0",
|
|
40
|
-
"@mirohq/design-system-styles": "^1.2.31-new-focus-keyboard.0",
|
|
38
|
+
"@mirohq/design-system-scroll-area": "^0.4.26-v1.0",
|
|
39
|
+
"@mirohq/design-system-stitches": "^2.6.38-v1.0",
|
|
40
|
+
"@mirohq/design-system-styles": "^1.2.38-v1.0",
|
|
41
41
|
"@mirohq/design-system-types": "^0.10.0",
|
|
42
42
|
"@mirohq/design-system-use-layout-effect": "^0.2.1",
|
|
43
|
-
"@mirohq/design-system-use-aria-disabled": "^0.
|
|
43
|
+
"@mirohq/design-system-use-aria-disabled": "^0.3.1",
|
|
44
44
|
"@mirohq/design-system-use-previous": "^0.1.0",
|
|
45
|
-
"@mirohq/design-system-utils": "^0.15.
|
|
45
|
+
"@mirohq/design-system-utils": "^0.15.6"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "rollup -c ../../../rollup.config.js",
|