@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.
Files changed (44) hide show
  1. package/dist/components/ScalarCombobox/ScalarCombobox.stories.d.ts +29 -60
  2. package/dist/components/ScalarCombobox/ScalarCombobox.stories.d.ts.map +1 -1
  3. package/dist/components/ScalarCombobox/ScalarCombobox.vue.d.ts +21 -41
  4. package/dist/components/ScalarCombobox/ScalarCombobox.vue.d.ts.map +1 -1
  5. package/dist/components/ScalarCombobox/ScalarCombobox.vue.js +40 -27
  6. package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.test.d.ts +2 -0
  7. package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.test.d.ts.map +1 -0
  8. package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.vue.d.ts +252 -438
  9. package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.vue.d.ts.map +1 -1
  10. package/dist/components/ScalarCombobox/ScalarComboboxMultiselect.vue.js +45 -32
  11. package/dist/components/ScalarCombobox/ScalarComboboxOption.test.d.ts +2 -0
  12. package/dist/components/ScalarCombobox/ScalarComboboxOption.test.d.ts.map +1 -0
  13. package/dist/components/ScalarCombobox/ScalarComboboxOption.vue.d.ts +5 -9
  14. package/dist/components/ScalarCombobox/ScalarComboboxOption.vue.d.ts.map +1 -1
  15. package/dist/components/ScalarCombobox/ScalarComboboxOption.vue.js +14 -28
  16. package/dist/components/ScalarCombobox/ScalarComboboxOptionGroup.test.d.ts +2 -0
  17. package/dist/components/ScalarCombobox/ScalarComboboxOptionGroup.test.d.ts.map +1 -0
  18. package/dist/components/ScalarCombobox/ScalarComboboxOptionGroup.vue.d.ts.map +1 -1
  19. package/dist/components/ScalarCombobox/ScalarComboboxOptionGroup.vue.js +5 -5
  20. package/dist/components/ScalarCombobox/ScalarComboboxOptions.test.d.ts +2 -0
  21. package/dist/components/ScalarCombobox/ScalarComboboxOptions.test.d.ts.map +1 -0
  22. package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue.d.ts +22 -29
  23. package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue.d.ts.map +1 -1
  24. package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue.js +2 -2
  25. package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue2.js +112 -92
  26. package/dist/components/ScalarCombobox/ScalarComboboxOptions.vue3.js +2 -2
  27. package/dist/components/ScalarCombobox/ScalarComboboxPopover.test.d.ts +2 -0
  28. package/dist/components/ScalarCombobox/ScalarComboboxPopover.test.d.ts.map +1 -0
  29. package/dist/components/ScalarCombobox/types.d.ts +17 -6
  30. package/dist/components/ScalarCombobox/types.d.ts.map +1 -1
  31. package/dist/components/ScalarCombobox/types.js +3 -3
  32. package/dist/components/ScalarListbox/ScalarListbox.vue.js +25 -25
  33. package/dist/components/ScalarListbox/ScalarListboxCheckbox.vue.d.ts +1 -2
  34. package/dist/components/ScalarListbox/ScalarListboxCheckbox.vue.d.ts.map +1 -1
  35. package/dist/components/ScalarListbox/ScalarListboxCheckbox.vue.js +7 -7
  36. package/dist/components/ScalarListbox/ScalarListboxItem.vue.d.ts +2 -2
  37. package/dist/components/ScalarListbox/ScalarListboxItem.vue.d.ts.map +1 -1
  38. package/dist/components/ScalarListbox/ScalarListboxItem.vue.js +17 -17
  39. package/dist/components/ScalarListbox/index.d.ts +1 -1
  40. package/dist/components/ScalarListbox/index.d.ts.map +1 -1
  41. package/dist/components/ScalarListbox/types.d.ts +0 -1
  42. package/dist/components/ScalarListbox/types.d.ts.map +1 -1
  43. package/dist/style.css +1 -1
  44. 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
- type __VLS_Props = {
4
- options: Option[] | OptionGroup[];
5
- modelValue?: Option[];
6
- placeholder?: string;
7
- isDeletable?: boolean;
8
- } & ScalarFloatingOptions;
9
- declare function __VLS_template(): {
10
- attrs: Partial<{}>;
11
- slots: Readonly<ComboboxSlots> & ComboboxSlots;
12
- refs: {
13
- comboboxPopoverRef: ({
14
- $: import("vue").ComponentInternalInstance;
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, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
105
- beforeCreate?: (() => void) | (() => void)[];
106
- created?: (() => void) | (() => void)[];
107
- beforeMount?: (() => void) | (() => void)[];
108
- mounted?: (() => void) | (() => void)[];
109
- beforeUpdate?: (() => void) | (() => void)[];
110
- updated?: (() => void) | (() => void)[];
111
- activated?: (() => void) | (() => void)[];
112
- deactivated?: (() => void) | (() => void)[];
113
- beforeDestroy?: (() => void) | (() => void)[];
114
- beforeUnmount?: (() => void) | (() => void)[];
115
- destroyed?: (() => void) | (() => void)[];
116
- unmounted?: (() => void) | (() => void)[];
117
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
118
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
119
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
120
- };
121
- $forceUpdate: () => void;
122
- $nextTick: typeof import("vue").nextTick;
123
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
124
- } & Readonly<{}> & Omit<Readonly<ScalarFloatingOptions> & Readonly<{}>, "popoverButtonRef"> & import("vue").ShallowUnwrapRef<{
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
- }> & {} & import("vue").ComponentCustomProperties & {} & {
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
- rootEl: any;
195
- };
196
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
197
- declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
198
- comboboxPopoverRef: import("vue").Ref<({
199
- new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
200
- popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
201
- as: {
202
- type: (ObjectConstructor | StringConstructor)[];
203
- default: string;
204
- };
205
- disabled: {
206
- type: BooleanConstructor[];
207
- default: boolean;
208
- };
209
- id: {
210
- type: StringConstructor;
211
- default: null;
212
- };
213
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
214
- [key: string]: any;
215
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
216
- as: {
217
- type: (ObjectConstructor | StringConstructor)[];
218
- default: string;
219
- };
220
- disabled: {
221
- type: BooleanConstructor[];
222
- default: boolean;
223
- };
224
- id: {
225
- type: StringConstructor;
226
- default: null;
227
- };
228
- }>>, {
229
- id: string;
230
- as: string | Record<string, any>;
231
- disabled: boolean;
232
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null, import("vue").DefineComponent<{
233
- as: {
234
- type: (ObjectConstructor | StringConstructor)[];
235
- default: string;
236
- };
237
- disabled: {
238
- type: BooleanConstructor[];
239
- default: boolean;
240
- };
241
- id: {
242
- type: StringConstructor;
243
- default: null;
244
- };
245
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
246
- [key: string]: any;
247
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
248
- as: {
249
- type: (ObjectConstructor | StringConstructor)[];
250
- default: string;
251
- };
252
- disabled: {
253
- type: BooleanConstructor[];
254
- default: boolean;
255
- };
256
- id: {
257
- type: StringConstructor;
258
- default: null;
259
- };
260
- }>>, {
261
- id: string;
262
- as: string | Record<string, any>;
263
- disabled: boolean;
264
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
265
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
266
- P: {};
267
- B: {};
268
- D: {};
269
- C: {};
270
- M: {};
271
- Defaults: {};
272
- }, Readonly<ScalarFloatingOptions> & Readonly<{}>, {
273
- popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
274
- as: {
275
- type: (ObjectConstructor | StringConstructor)[];
276
- default: string;
277
- };
278
- disabled: {
279
- type: BooleanConstructor[];
280
- default: boolean;
281
- };
282
- id: {
283
- type: StringConstructor;
284
- default: null;
285
- };
286
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
287
- [key: string]: any;
288
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
289
- as: {
290
- type: (ObjectConstructor | StringConstructor)[];
291
- default: string;
292
- };
293
- disabled: {
294
- type: BooleanConstructor[];
295
- default: boolean;
296
- };
297
- id: {
298
- type: StringConstructor;
299
- default: null;
300
- };
301
- }>>, {
302
- id: string;
303
- as: string | Record<string, any>;
304
- disabled: boolean;
305
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null, import("vue").DefineComponent<{
306
- as: {
307
- type: (ObjectConstructor | StringConstructor)[];
308
- default: string;
309
- };
310
- disabled: {
311
- type: BooleanConstructor[];
312
- default: boolean;
313
- };
314
- id: {
315
- type: StringConstructor;
316
- default: null;
317
- };
318
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
319
- [key: string]: any;
320
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
321
- as: {
322
- type: (ObjectConstructor | StringConstructor)[];
323
- default: string;
324
- };
325
- disabled: {
326
- type: BooleanConstructor[];
327
- default: boolean;
328
- };
329
- id: {
330
- type: StringConstructor;
331
- default: null;
332
- };
333
- }>>, {
334
- id: string;
335
- as: string | Record<string, any>;
336
- disabled: boolean;
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
- __isFragment?: never;
552
- __isTeleport?: never;
553
- __isSuspense?: never;
554
- } & import("vue").ComponentOptionsBase<Readonly<ScalarFloatingOptions> & Readonly<{}>, {
555
- popoverButtonRef: import("vue").Ref<import("vue").DefineComponent<{
556
- as: {
557
- type: (ObjectConstructor | StringConstructor)[];
558
- default: string;
559
- };
560
- disabled: {
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