@sabrenski/spire-ui-vue 0.3.23 → 0.3.25
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.
|
@@ -132,6 +132,7 @@ declare const __VLS_component: import('vue').DefineComponent<DropdownMenuProps,
|
|
|
132
132
|
}>, {
|
|
133
133
|
variant: DropdownMenuVariant;
|
|
134
134
|
color: DropdownMenuColor;
|
|
135
|
+
maxHeight: string;
|
|
135
136
|
selectionMode: import('./types').DropdownSelectionMode;
|
|
136
137
|
hideSelectedIcon: boolean;
|
|
137
138
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -12,6 +12,7 @@ declare function __VLS_template(): {
|
|
|
12
12
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
13
|
declare const __VLS_component: import('vue').DefineComponent<DropdownSubmenuProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DropdownSubmenuProps> & Readonly<{}>, {
|
|
14
14
|
isDisabled: boolean;
|
|
15
|
+
maxHeight: string;
|
|
15
16
|
openDelay: number;
|
|
16
17
|
closeDelay: number;
|
|
17
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -30,6 +30,8 @@ export interface DropdownSubmenuProps {
|
|
|
30
30
|
openDelay?: number;
|
|
31
31
|
/** Delay before closing on mouse leave (ms) */
|
|
32
32
|
closeDelay?: number;
|
|
33
|
+
/** Maximum height of the submenu content area (e.g., '300px', '20rem') */
|
|
34
|
+
maxHeight?: string;
|
|
33
35
|
}
|
|
34
36
|
export interface DropdownProps {
|
|
35
37
|
/** Semantic type affecting ARIA roles */
|
|
@@ -64,6 +66,8 @@ export interface DropdownMenuProps {
|
|
|
64
66
|
hideSelectedIcon?: boolean;
|
|
65
67
|
/** Override parent closeOnSelect */
|
|
66
68
|
closeOnSelect?: boolean;
|
|
69
|
+
/** Maximum height of the menu content area (e.g., '300px', '20rem') */
|
|
70
|
+
maxHeight?: string;
|
|
67
71
|
}
|
|
68
72
|
export interface DropdownSectionProps {
|
|
69
73
|
/** Section title displayed above items */
|