@lumx/vue 4.17.1-alpha.1 → 4.17.1-alpha.2
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/components/combobox/Combobox.test.stories.d.ts +11 -9
- package/index.js +591 -590
- package/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -15,12 +15,13 @@ export declare const MouseHoverDoesNotActivateOption: {
|
|
|
15
15
|
value: string;
|
|
16
16
|
};
|
|
17
17
|
decorators: ((story: any, context: any) => any)[];
|
|
18
|
-
render: ({ value, onChange, onSelect, }: {
|
|
18
|
+
render: ({ value, onChange, onSelect, selectionMode, }: {
|
|
19
19
|
value: string;
|
|
20
20
|
onChange: (v: string) => void;
|
|
21
21
|
onSelect?: (option: {
|
|
22
22
|
value: string;
|
|
23
|
-
}) =>
|
|
23
|
+
}) => void;
|
|
24
|
+
selectionMode?: "fill" | "keep" | "clear";
|
|
24
25
|
}) => import("vue/jsx-runtime").JSX.Element;
|
|
25
26
|
};
|
|
26
27
|
export declare const ClickAwayClosesPopup: {
|
|
@@ -37,12 +38,13 @@ export declare const MouseHoverThenKeyboardNav: {
|
|
|
37
38
|
value: string;
|
|
38
39
|
};
|
|
39
40
|
decorators: ((story: any, context: any) => any)[];
|
|
40
|
-
render: ({ value, onChange, onSelect, }: {
|
|
41
|
+
render: ({ value, onChange, onSelect, selectionMode, }: {
|
|
41
42
|
value: string;
|
|
42
43
|
onChange: (v: string) => void;
|
|
43
44
|
onSelect?: (option: {
|
|
44
45
|
value: string;
|
|
45
|
-
}) =>
|
|
46
|
+
}) => void;
|
|
47
|
+
selectionMode?: "fill" | "keep" | "clear";
|
|
46
48
|
}) => import("vue/jsx-runtime").JSX.Element;
|
|
47
49
|
};
|
|
48
50
|
export declare const OptionMoreInfoKeyboardHighlight: {
|
|
@@ -106,7 +108,7 @@ export declare const ButtonTypeaheadFromClosed: {
|
|
|
106
108
|
value: string;
|
|
107
109
|
onSelect: (option: {
|
|
108
110
|
value: string;
|
|
109
|
-
}) =>
|
|
111
|
+
}) => void;
|
|
110
112
|
}) => import("vue/jsx-runtime").JSX.Element;
|
|
111
113
|
};
|
|
112
114
|
export declare const ButtonTypeaheadWhileOpen: {
|
|
@@ -119,7 +121,7 @@ export declare const ButtonTypeaheadWhileOpen: {
|
|
|
119
121
|
value: string;
|
|
120
122
|
onSelect: (option: {
|
|
121
123
|
value: string;
|
|
122
|
-
}) =>
|
|
124
|
+
}) => void;
|
|
123
125
|
}) => import("vue/jsx-runtime").JSX.Element;
|
|
124
126
|
};
|
|
125
127
|
export declare const ButtonEndFromClosed: {
|
|
@@ -132,7 +134,7 @@ export declare const ButtonEndFromClosed: {
|
|
|
132
134
|
value: string;
|
|
133
135
|
onSelect: (option: {
|
|
134
136
|
value: string;
|
|
135
|
-
}) =>
|
|
137
|
+
}) => void;
|
|
136
138
|
}) => import("vue/jsx-runtime").JSX.Element;
|
|
137
139
|
};
|
|
138
140
|
export declare const ButtonHomeFromClosed: {
|
|
@@ -145,7 +147,7 @@ export declare const ButtonHomeFromClosed: {
|
|
|
145
147
|
value: string;
|
|
146
148
|
onSelect: (option: {
|
|
147
149
|
value: string;
|
|
148
|
-
}) =>
|
|
150
|
+
}) => void;
|
|
149
151
|
}) => import("vue/jsx-runtime").JSX.Element;
|
|
150
152
|
};
|
|
151
153
|
export declare const ButtonArrowDownFromClosed: {
|
|
@@ -158,6 +160,6 @@ export declare const ButtonArrowDownFromClosed: {
|
|
|
158
160
|
value: string;
|
|
159
161
|
onSelect: (option: {
|
|
160
162
|
value: string;
|
|
161
|
-
}) =>
|
|
163
|
+
}) => void;
|
|
162
164
|
}) => import("vue/jsx-runtime").JSX.Element;
|
|
163
165
|
};
|