@mirohq/design-system-dropdown-menu 4.1.9-combobox.1 → 4.1.9
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 +39 -66
- package/dist/main.js.map +1 -1
- package/dist/module.js +39 -66
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -6
- package/package.json +10 -10
package/dist/types.d.ts
CHANGED
|
@@ -64,7 +64,6 @@ declare type Align = 'start' | 'center' | 'end';
|
|
|
64
64
|
declare type StickyBehavior = 'partial' | 'always';
|
|
65
65
|
declare type ContainerSpacing = ExtractValidKeys<StyledContentProps['containerSpacing']>;
|
|
66
66
|
declare type Overflow = 'auto' | 'visible';
|
|
67
|
-
declare type Direction = 'ltr' | 'rtl';
|
|
68
67
|
|
|
69
68
|
type types_PointerDownOutsideEvent = PointerDownOutsideEvent;
|
|
70
69
|
type types_FocusOutsideEvent = FocusOutsideEvent;
|
|
@@ -73,7 +72,6 @@ type types_Align = Align;
|
|
|
73
72
|
type types_StickyBehavior = StickyBehavior;
|
|
74
73
|
type types_ContainerSpacing = ContainerSpacing;
|
|
75
74
|
type types_Overflow = Overflow;
|
|
76
|
-
type types_Direction = Direction;
|
|
77
75
|
declare namespace types {
|
|
78
76
|
export {
|
|
79
77
|
types_PointerDownOutsideEvent as PointerDownOutsideEvent,
|
|
@@ -83,7 +81,6 @@ declare namespace types {
|
|
|
83
81
|
types_StickyBehavior as StickyBehavior,
|
|
84
82
|
types_ContainerSpacing as ContainerSpacing,
|
|
85
83
|
types_Overflow as Overflow,
|
|
86
|
-
types_Direction as Direction,
|
|
87
84
|
};
|
|
88
85
|
}
|
|
89
86
|
|
|
@@ -189,7 +186,7 @@ interface ContentProps extends StyledContentProps {
|
|
|
189
186
|
*/
|
|
190
187
|
maxHeight?: CSSProperties['maxHeight'];
|
|
191
188
|
/**
|
|
192
|
-
* Setting overflow as "visible" means that the content can extend beyond
|
|
189
|
+
* Setting overflow as "visible" means that the content can extend beyond the
|
|
193
190
|
* its collision boundary without any clipping or scrolling being
|
|
194
191
|
* applied.
|
|
195
192
|
* When set to "auto," a scrollbar is added if the content exceeds its
|
|
@@ -445,7 +442,7 @@ interface SubContentProps extends StyledSubContentProps {
|
|
|
445
442
|
*/
|
|
446
443
|
maxHeight?: CSSProperties['maxHeight'];
|
|
447
444
|
/**
|
|
448
|
-
* Setting overflow as "visible" means that the content can extend beyond
|
|
445
|
+
* Setting overflow as "visible" means that the content can extend beyond the
|
|
449
446
|
* its collision boundary without any clipping or scrolling being
|
|
450
447
|
* applied.
|
|
451
448
|
* When set to "auto," a scrollbar is added if the content exceeds its
|
|
@@ -531,7 +528,7 @@ interface DropdownMenuProps {
|
|
|
531
528
|
* (left-to-right) reading mode.
|
|
532
529
|
* @default 'ltr'
|
|
533
530
|
*/
|
|
534
|
-
direction?:
|
|
531
|
+
direction?: 'ltr' | 'rtl';
|
|
535
532
|
/**
|
|
536
533
|
* The current dropdown open state.
|
|
537
534
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-dropdown-menu",
|
|
3
|
-
"version": "4.1.9
|
|
3
|
+
"version": "4.1.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -29,17 +29,17 @@
|
|
|
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": "^0.1.
|
|
33
|
-
"@mirohq/design-system-base-
|
|
34
|
-
"@mirohq/design-system-base-
|
|
35
|
-
"@mirohq/design-system-icons": "^0.43.1
|
|
32
|
+
"@mirohq/design-system-base-hotkey": "^0.1.10",
|
|
33
|
+
"@mirohq/design-system-base-switch": "^0.1.29",
|
|
34
|
+
"@mirohq/design-system-base-icon": "^0.1.30",
|
|
35
|
+
"@mirohq/design-system-icons": "^0.43.1",
|
|
36
36
|
"@mirohq/design-system-primitive": "^1.1.2",
|
|
37
|
-
"@mirohq/design-system-scroll-area": "^0.2.10
|
|
38
|
-
"@mirohq/design-system-stitches": "^2.6.
|
|
39
|
-
"@mirohq/design-system-
|
|
37
|
+
"@mirohq/design-system-scroll-area": "^0.2.10",
|
|
38
|
+
"@mirohq/design-system-stitches": "^2.6.9",
|
|
39
|
+
"@mirohq/design-system-types": "^0.9.0",
|
|
40
|
+
"@mirohq/design-system-styles": "^1.2.8",
|
|
40
41
|
"@mirohq/design-system-use-layout-effect": "^0.2.1",
|
|
41
|
-
"@mirohq/design-system-utils": "^0.15.3"
|
|
42
|
-
"@mirohq/design-system-types": "^0.9.0"
|
|
42
|
+
"@mirohq/design-system-utils": "^0.15.3"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "rollup -c ../../../rollup.config.js",
|