@scalar/components 0.14.21 → 0.14.23
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/components/ScalarCombobox/ScalarCombobox.stories.d.ts +29 -60
- package/dist/components/ScalarCombobox/ScalarCombobox.stories.d.ts.map +1 -1
- package/dist/components/ScalarCombobox/ScalarCombobox.vue.d.ts +21 -41
- package/dist/components/ScalarCombobox/ScalarCombobox.vue.d.ts.map +1 -1
- package/dist/components/ScalarCombobox/ScalarCombobox.vue.js +40 -27
- package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.test.d.ts +2 -0
- package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.test.d.ts.map +1 -0
- package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.vue.d.ts +252 -438
- package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.vue.d.ts.map +1 -1
- package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.vue.js +45 -32
- package/dist/components/ScalarCombobox/ScalarComboboxOption.test.d.ts +2 -0
- package/dist/components/ScalarCombobox/ScalarComboboxOption.test.d.ts.map +1 -0
- package/dist/components/ScalarCombobox/ScalarComboboxOption.vue.d.ts +5 -9
- package/dist/components/ScalarCombobox/ScalarComboboxOption.vue.d.ts.map +1 -1
- package/dist/components/ScalarCombobox/ScalarComboboxOption.vue.js +14 -28
- package/dist/components/ScalarCombobox/ScalarComboboxOptionGroup.test.d.ts +2 -0
- package/dist/components/ScalarCombobox/ScalarComboboxOptionGroup.test.d.ts.map +1 -0
- package/dist/components/ScalarCombobox/ScalarComboboxOptionGroup.vue.d.ts.map +1 -1
- package/dist/components/ScalarCombobox/ScalarComboboxOptionGroup.vue.js +5 -5
- package/dist/components/ScalarCombobox/ScalarComboboxOptions.test.d.ts +2 -0
- package/dist/components/ScalarCombobox/ScalarComboboxOptions.test.d.ts.map +1 -0
- package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue.d.ts +22 -29
- package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue.d.ts.map +1 -1
- package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue.js +2 -2
- package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue2.js +112 -92
- package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue3.js +2 -2
- package/dist/components/ScalarCombobox/ScalarComboboxPopover.test.d.ts +2 -0
- package/dist/components/ScalarCombobox/ScalarComboboxPopover.test.d.ts.map +1 -0
- package/dist/components/ScalarCombobox/types.d.ts +17 -6
- package/dist/components/ScalarCombobox/types.d.ts.map +1 -1
- package/dist/components/ScalarCombobox/types.js +3 -3
- package/dist/components/ScalarListbox/ScalarListbox.vue.js +25 -25
- package/dist/components/ScalarListbox/ScalarListboxCheckbox.vue.d.ts +1 -2
- package/dist/components/ScalarListbox/ScalarListboxCheckbox.vue.d.ts.map +1 -1
- package/dist/components/ScalarListbox/ScalarListboxCheckbox.vue.js +7 -7
- package/dist/components/ScalarListbox/ScalarListboxItem.vue.d.ts +2 -2
- package/dist/components/ScalarListbox/ScalarListboxItem.vue.d.ts.map +1 -1
- package/dist/components/ScalarListbox/ScalarListboxItem.vue.js +17 -17
- package/dist/components/ScalarListbox/index.d.ts +1 -1
- package/dist/components/ScalarListbox/index.d.ts.map +1 -1
- package/dist/components/ScalarListbox/types.d.ts +0 -1
- package/dist/components/ScalarListbox/types.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +6 -5
|
@@ -1,41 +1,17 @@
|
|
|
1
1
|
import type { ScalarFloatingOptions } from '../ScalarFloating';
|
|
2
|
-
import type { ComboboxSlots, Option, OptionGroup } from './types.js';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
} &
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
comboboxPopoverRef: ({
|
|
14
|
-
|
|
15
|
-
$data: {};
|
|
16
|
-
$props: {
|
|
17
|
-
readonly placement?: import("@floating-ui/utils").Placement | undefined;
|
|
18
|
-
readonly offset?: import("@floating-ui/vue").OffsetOptions | undefined;
|
|
19
|
-
readonly resize?: boolean | undefined;
|
|
20
|
-
readonly target?: (string | HTMLElement) | undefined;
|
|
21
|
-
readonly middleware?: import("@floating-ui/vue").Middleware[] | undefined;
|
|
22
|
-
readonly teleport?: (boolean | string) | undefined;
|
|
23
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
24
|
-
$attrs: {
|
|
25
|
-
[x: string]: unknown;
|
|
26
|
-
};
|
|
27
|
-
$refs: {
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
30
|
-
$slots: Readonly<{
|
|
31
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
32
|
-
}>;
|
|
33
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
34
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
35
|
-
$host: Element | null;
|
|
36
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
37
|
-
$el: any;
|
|
38
|
-
$options: import("vue").ComponentOptionsBase<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
2
|
+
import type { ComboboxSlots, Option, OptionGroup, OptionsOrGroups } from './types.js';
|
|
3
|
+
declare const _default: <O extends Option = Option, G extends OptionGroup<O> = OptionGroup<O>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
4
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
|
+
readonly "onUpdate:modelValue"?: ((value: O[]) => any) | undefined;
|
|
6
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & Partial<{}> & ({
|
|
7
|
+
modelValue?: O[];
|
|
8
|
+
} & {
|
|
9
|
+
options: OptionsOrGroups<O, G>;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
} & ScalarFloatingOptions)> & import("vue").PublicProps;
|
|
12
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
13
|
+
comboboxPopoverRef: import("vue").Ref<({
|
|
14
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
39
15
|
popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
40
16
|
as: {
|
|
41
17
|
type: (ObjectConstructor | StringConstructor)[];
|
|
@@ -101,27 +77,84 @@ declare function __VLS_template(): {
|
|
|
101
77
|
as: string | Record<string, any>;
|
|
102
78
|
disabled: boolean;
|
|
103
79
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
104
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {},
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
80
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
81
|
+
P: {};
|
|
82
|
+
B: {};
|
|
83
|
+
D: {};
|
|
84
|
+
C: {};
|
|
85
|
+
M: {};
|
|
86
|
+
Defaults: {};
|
|
87
|
+
}, Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
88
|
+
popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
89
|
+
as: {
|
|
90
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
93
|
+
disabled: {
|
|
94
|
+
type: BooleanConstructor[];
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
97
|
+
id: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: null;
|
|
100
|
+
};
|
|
101
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
102
|
+
[key: string]: any;
|
|
103
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
104
|
+
as: {
|
|
105
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
108
|
+
disabled: {
|
|
109
|
+
type: BooleanConstructor[];
|
|
110
|
+
default: boolean;
|
|
111
|
+
};
|
|
112
|
+
id: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
default: null;
|
|
115
|
+
};
|
|
116
|
+
}>>, {
|
|
117
|
+
id: string;
|
|
118
|
+
as: string | Record<string, any>;
|
|
119
|
+
disabled: boolean;
|
|
120
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null, import("vue").DefineComponent<{
|
|
121
|
+
as: {
|
|
122
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
125
|
+
disabled: {
|
|
126
|
+
type: BooleanConstructor[];
|
|
127
|
+
default: boolean;
|
|
128
|
+
};
|
|
129
|
+
id: {
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
default: null;
|
|
132
|
+
};
|
|
133
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
134
|
+
[key: string]: any;
|
|
135
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
136
|
+
as: {
|
|
137
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
138
|
+
default: string;
|
|
139
|
+
};
|
|
140
|
+
disabled: {
|
|
141
|
+
type: BooleanConstructor[];
|
|
142
|
+
default: boolean;
|
|
143
|
+
};
|
|
144
|
+
id: {
|
|
145
|
+
type: StringConstructor;
|
|
146
|
+
default: null;
|
|
147
|
+
};
|
|
148
|
+
}>>, {
|
|
149
|
+
id: string;
|
|
150
|
+
as: string | Record<string, any>;
|
|
151
|
+
disabled: boolean;
|
|
152
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
153
|
+
}, {}, {}, {}, {}>;
|
|
154
|
+
__isFragment?: never;
|
|
155
|
+
__isTeleport?: never;
|
|
156
|
+
__isSuspense?: never;
|
|
157
|
+
} & import("vue").ComponentOptionsBase<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
125
158
|
popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
126
159
|
as: {
|
|
127
160
|
type: (ObjectConstructor | StringConstructor)[];
|
|
@@ -187,301 +220,153 @@ declare function __VLS_template(): {
|
|
|
187
220
|
as: string | Record<string, any>;
|
|
188
221
|
disabled: boolean;
|
|
189
222
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
190
|
-
}
|
|
223
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
191
224
|
$slots: Readonly<import("../ScalarPopover").ScalarPopoverSlots> & import("../ScalarPopover").ScalarPopoverSlots;
|
|
192
|
-
}) | null
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
type
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
338
|
-
}, {}, {}, {}, {}>;
|
|
339
|
-
__isFragment?: never;
|
|
340
|
-
__isTeleport?: never;
|
|
341
|
-
__isSuspense?: never;
|
|
342
|
-
} & import("vue").ComponentOptionsBase<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
343
|
-
popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
344
|
-
as: {
|
|
345
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
346
|
-
default: string;
|
|
347
|
-
};
|
|
348
|
-
disabled: {
|
|
349
|
-
type: BooleanConstructor[];
|
|
350
|
-
default: boolean;
|
|
351
|
-
};
|
|
352
|
-
id: {
|
|
353
|
-
type: StringConstructor;
|
|
354
|
-
default: null;
|
|
355
|
-
};
|
|
356
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
357
|
-
[key: string]: any;
|
|
358
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
359
|
-
as: {
|
|
360
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
361
|
-
default: string;
|
|
362
|
-
};
|
|
363
|
-
disabled: {
|
|
364
|
-
type: BooleanConstructor[];
|
|
365
|
-
default: boolean;
|
|
366
|
-
};
|
|
367
|
-
id: {
|
|
368
|
-
type: StringConstructor;
|
|
369
|
-
default: null;
|
|
370
|
-
};
|
|
371
|
-
}>>, {
|
|
372
|
-
id: string;
|
|
373
|
-
as: string | Record<string, any>;
|
|
374
|
-
disabled: boolean;
|
|
375
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null, import("vue").DefineComponent<{
|
|
376
|
-
as: {
|
|
377
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
378
|
-
default: string;
|
|
379
|
-
};
|
|
380
|
-
disabled: {
|
|
381
|
-
type: BooleanConstructor[];
|
|
382
|
-
default: boolean;
|
|
383
|
-
};
|
|
384
|
-
id: {
|
|
385
|
-
type: StringConstructor;
|
|
386
|
-
default: null;
|
|
387
|
-
};
|
|
388
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
389
|
-
[key: string]: any;
|
|
390
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
391
|
-
as: {
|
|
392
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
393
|
-
default: string;
|
|
394
|
-
};
|
|
395
|
-
disabled: {
|
|
396
|
-
type: BooleanConstructor[];
|
|
397
|
-
default: boolean;
|
|
398
|
-
};
|
|
399
|
-
id: {
|
|
400
|
-
type: StringConstructor;
|
|
401
|
-
default: null;
|
|
402
|
-
};
|
|
403
|
-
}>>, {
|
|
404
|
-
id: string;
|
|
405
|
-
as: string | Record<string, any>;
|
|
406
|
-
disabled: boolean;
|
|
407
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
408
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
409
|
-
$slots: Readonly<import("../ScalarPopover").ScalarPopoverSlots> & import("../ScalarPopover").ScalarPopoverSlots;
|
|
410
|
-
})) | null, ({
|
|
411
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
412
|
-
popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
413
|
-
as: {
|
|
414
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
415
|
-
default: string;
|
|
416
|
-
};
|
|
417
|
-
disabled: {
|
|
418
|
-
type: BooleanConstructor[];
|
|
419
|
-
default: boolean;
|
|
420
|
-
};
|
|
421
|
-
id: {
|
|
422
|
-
type: StringConstructor;
|
|
423
|
-
default: null;
|
|
424
|
-
};
|
|
425
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
426
|
-
[key: string]: any;
|
|
427
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
428
|
-
as: {
|
|
429
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
430
|
-
default: string;
|
|
431
|
-
};
|
|
432
|
-
disabled: {
|
|
433
|
-
type: BooleanConstructor[];
|
|
434
|
-
default: boolean;
|
|
435
|
-
};
|
|
436
|
-
id: {
|
|
437
|
-
type: StringConstructor;
|
|
438
|
-
default: null;
|
|
439
|
-
};
|
|
440
|
-
}>>, {
|
|
441
|
-
id: string;
|
|
442
|
-
as: string | Record<string, any>;
|
|
443
|
-
disabled: boolean;
|
|
444
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null, import("vue").DefineComponent<{
|
|
445
|
-
as: {
|
|
446
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
447
|
-
default: string;
|
|
448
|
-
};
|
|
449
|
-
disabled: {
|
|
450
|
-
type: BooleanConstructor[];
|
|
451
|
-
default: boolean;
|
|
452
|
-
};
|
|
453
|
-
id: {
|
|
454
|
-
type: StringConstructor;
|
|
455
|
-
default: null;
|
|
456
|
-
};
|
|
457
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
458
|
-
[key: string]: any;
|
|
459
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
460
|
-
as: {
|
|
461
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
462
|
-
default: string;
|
|
463
|
-
};
|
|
464
|
-
disabled: {
|
|
465
|
-
type: BooleanConstructor[];
|
|
466
|
-
default: boolean;
|
|
467
|
-
};
|
|
468
|
-
id: {
|
|
469
|
-
type: StringConstructor;
|
|
470
|
-
default: null;
|
|
471
|
-
};
|
|
472
|
-
}>>, {
|
|
473
|
-
id: string;
|
|
474
|
-
as: string | Record<string, any>;
|
|
475
|
-
disabled: boolean;
|
|
476
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
477
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
478
|
-
P: {};
|
|
479
|
-
B: {};
|
|
480
|
-
D: {};
|
|
481
|
-
C: {};
|
|
482
|
-
M: {};
|
|
483
|
-
Defaults: {};
|
|
484
|
-
}, Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
225
|
+
})) | null, ({
|
|
226
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
227
|
+
popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
228
|
+
as: {
|
|
229
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
230
|
+
default: string;
|
|
231
|
+
};
|
|
232
|
+
disabled: {
|
|
233
|
+
type: BooleanConstructor[];
|
|
234
|
+
default: boolean;
|
|
235
|
+
};
|
|
236
|
+
id: {
|
|
237
|
+
type: StringConstructor;
|
|
238
|
+
default: null;
|
|
239
|
+
};
|
|
240
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
241
|
+
[key: string]: any;
|
|
242
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
243
|
+
as: {
|
|
244
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
245
|
+
default: string;
|
|
246
|
+
};
|
|
247
|
+
disabled: {
|
|
248
|
+
type: BooleanConstructor[];
|
|
249
|
+
default: boolean;
|
|
250
|
+
};
|
|
251
|
+
id: {
|
|
252
|
+
type: StringConstructor;
|
|
253
|
+
default: null;
|
|
254
|
+
};
|
|
255
|
+
}>>, {
|
|
256
|
+
id: string;
|
|
257
|
+
as: string | Record<string, any>;
|
|
258
|
+
disabled: boolean;
|
|
259
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null, import("vue").DefineComponent<{
|
|
260
|
+
as: {
|
|
261
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
262
|
+
default: string;
|
|
263
|
+
};
|
|
264
|
+
disabled: {
|
|
265
|
+
type: BooleanConstructor[];
|
|
266
|
+
default: boolean;
|
|
267
|
+
};
|
|
268
|
+
id: {
|
|
269
|
+
type: StringConstructor;
|
|
270
|
+
default: null;
|
|
271
|
+
};
|
|
272
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
273
|
+
[key: string]: any;
|
|
274
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
275
|
+
as: {
|
|
276
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
277
|
+
default: string;
|
|
278
|
+
};
|
|
279
|
+
disabled: {
|
|
280
|
+
type: BooleanConstructor[];
|
|
281
|
+
default: boolean;
|
|
282
|
+
};
|
|
283
|
+
id: {
|
|
284
|
+
type: StringConstructor;
|
|
285
|
+
default: null;
|
|
286
|
+
};
|
|
287
|
+
}>>, {
|
|
288
|
+
id: string;
|
|
289
|
+
as: string | Record<string, any>;
|
|
290
|
+
disabled: boolean;
|
|
291
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
292
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
293
|
+
P: {};
|
|
294
|
+
B: {};
|
|
295
|
+
D: {};
|
|
296
|
+
C: {};
|
|
297
|
+
M: {};
|
|
298
|
+
Defaults: {};
|
|
299
|
+
}, Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
300
|
+
popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
301
|
+
as: {
|
|
302
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
303
|
+
default: string;
|
|
304
|
+
};
|
|
305
|
+
disabled: {
|
|
306
|
+
type: BooleanConstructor[];
|
|
307
|
+
default: boolean;
|
|
308
|
+
};
|
|
309
|
+
id: {
|
|
310
|
+
type: StringConstructor;
|
|
311
|
+
default: null;
|
|
312
|
+
};
|
|
313
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
314
|
+
[key: string]: any;
|
|
315
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
316
|
+
as: {
|
|
317
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
318
|
+
default: string;
|
|
319
|
+
};
|
|
320
|
+
disabled: {
|
|
321
|
+
type: BooleanConstructor[];
|
|
322
|
+
default: boolean;
|
|
323
|
+
};
|
|
324
|
+
id: {
|
|
325
|
+
type: StringConstructor;
|
|
326
|
+
default: null;
|
|
327
|
+
};
|
|
328
|
+
}>>, {
|
|
329
|
+
id: string;
|
|
330
|
+
as: string | Record<string, any>;
|
|
331
|
+
disabled: boolean;
|
|
332
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null, import("vue").DefineComponent<{
|
|
333
|
+
as: {
|
|
334
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
335
|
+
default: string;
|
|
336
|
+
};
|
|
337
|
+
disabled: {
|
|
338
|
+
type: BooleanConstructor[];
|
|
339
|
+
default: boolean;
|
|
340
|
+
};
|
|
341
|
+
id: {
|
|
342
|
+
type: StringConstructor;
|
|
343
|
+
default: null;
|
|
344
|
+
};
|
|
345
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
346
|
+
[key: string]: any;
|
|
347
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
348
|
+
as: {
|
|
349
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
350
|
+
default: string;
|
|
351
|
+
};
|
|
352
|
+
disabled: {
|
|
353
|
+
type: BooleanConstructor[];
|
|
354
|
+
default: boolean;
|
|
355
|
+
};
|
|
356
|
+
id: {
|
|
357
|
+
type: StringConstructor;
|
|
358
|
+
default: null;
|
|
359
|
+
};
|
|
360
|
+
}>>, {
|
|
361
|
+
id: string;
|
|
362
|
+
as: string | Record<string, any>;
|
|
363
|
+
disabled: boolean;
|
|
364
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
365
|
+
}, {}, {}, {}, {}>;
|
|
366
|
+
__isFragment?: never;
|
|
367
|
+
__isTeleport?: never;
|
|
368
|
+
__isSuspense?: never;
|
|
369
|
+
} & import("vue").ComponentOptionsBase<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
|
|
485
370
|
popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
486
371
|
as: {
|
|
487
372
|
type: (ObjectConstructor | StringConstructor)[];
|
|
@@ -547,91 +432,20 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
|
547
432
|
as: string | Record<string, any>;
|
|
548
433
|
disabled: boolean;
|
|
549
434
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
550
|
-
}, {}, {}, {}, {}
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
type: BooleanConstructor[];
|
|
562
|
-
default: boolean;
|
|
563
|
-
};
|
|
564
|
-
id: {
|
|
565
|
-
type: StringConstructor;
|
|
566
|
-
default: null;
|
|
567
|
-
};
|
|
568
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
569
|
-
[key: string]: any;
|
|
570
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
571
|
-
as: {
|
|
572
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
573
|
-
default: string;
|
|
574
|
-
};
|
|
575
|
-
disabled: {
|
|
576
|
-
type: BooleanConstructor[];
|
|
577
|
-
default: boolean;
|
|
578
|
-
};
|
|
579
|
-
id: {
|
|
580
|
-
type: StringConstructor;
|
|
581
|
-
default: null;
|
|
582
|
-
};
|
|
583
|
-
}>>, {
|
|
584
|
-
id: string;
|
|
585
|
-
as: string | Record<string, any>;
|
|
586
|
-
disabled: boolean;
|
|
587
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null, import("vue").DefineComponent<{
|
|
588
|
-
as: {
|
|
589
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
590
|
-
default: string;
|
|
591
|
-
};
|
|
592
|
-
disabled: {
|
|
593
|
-
type: BooleanConstructor[];
|
|
594
|
-
default: boolean;
|
|
595
|
-
};
|
|
596
|
-
id: {
|
|
597
|
-
type: StringConstructor;
|
|
598
|
-
default: null;
|
|
599
|
-
};
|
|
600
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
601
|
-
[key: string]: any;
|
|
602
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
603
|
-
as: {
|
|
604
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
605
|
-
default: string;
|
|
606
|
-
};
|
|
607
|
-
disabled: {
|
|
608
|
-
type: BooleanConstructor[];
|
|
609
|
-
default: boolean;
|
|
610
|
-
};
|
|
611
|
-
id: {
|
|
612
|
-
type: StringConstructor;
|
|
613
|
-
default: null;
|
|
614
|
-
};
|
|
615
|
-
}>>, {
|
|
616
|
-
id: string;
|
|
617
|
-
as: string | Record<string, any>;
|
|
618
|
-
disabled: boolean;
|
|
619
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
620
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
621
|
-
$slots: Readonly<import("../ScalarPopover").ScalarPopoverSlots> & import("../ScalarPopover").ScalarPopoverSlots;
|
|
622
|
-
})) | null>;
|
|
623
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
624
|
-
delete: (option: Option) => any;
|
|
625
|
-
"update:modelValue": (v: Option[]) => any;
|
|
626
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
627
|
-
onDelete?: ((option: Option) => any) | undefined;
|
|
628
|
-
"onUpdate:modelValue"?: ((v: Option[]) => any) | undefined;
|
|
629
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
630
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
631
|
-
export default _default;
|
|
632
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
633
|
-
new (): {
|
|
634
|
-
$slots: S;
|
|
635
|
-
};
|
|
435
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
436
|
+
$slots: Readonly<import("../ScalarPopover").ScalarPopoverSlots> & import("../ScalarPopover").ScalarPopoverSlots;
|
|
437
|
+
})) | null>;
|
|
438
|
+
}>): void;
|
|
439
|
+
attrs: any;
|
|
440
|
+
slots: Readonly<ComboboxSlots<O, G>> & ComboboxSlots<O, G>;
|
|
441
|
+
emit: (evt: "update:modelValue", value: O[]) => void;
|
|
442
|
+
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
443
|
+
[key: string]: any;
|
|
444
|
+
}> & {
|
|
445
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
636
446
|
};
|
|
447
|
+
export default _default;
|
|
448
|
+
type __VLS_PrettifyLocal<T> = {
|
|
449
|
+
[K in keyof T]: T[K];
|
|
450
|
+
} & {};
|
|
637
451
|
//# sourceMappingURL=ScalarComboboxMultiselect.vue.d.ts.map
|