@quidgest/ui 0.16.20 → 0.16.22

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 (50) hide show
  1. package/dist/manifest/components.json +1 -0
  2. package/dist/ui.css +249 -1
  3. package/dist/ui.esm.js +5242 -4967
  4. package/dist/ui.js +19 -19
  5. package/dist/ui.min.css +1 -1
  6. package/dist/ui.min.js +789 -765
  7. package/dist/ui.scss +221 -2
  8. package/esm/components/QCarousel/QCarousel.d.ts +44 -0
  9. package/esm/components/QCarousel/QCarousel.d.ts.map +1 -0
  10. package/esm/components/QCarousel/QCarousel.vue.js +355 -0
  11. package/esm/components/QCarousel/QCarousel.vue2.js +4 -0
  12. package/esm/components/QCarousel/constants.d.ts +14 -0
  13. package/esm/components/QCarousel/constants.d.ts.map +1 -0
  14. package/esm/components/QCarousel/constants.js +16 -0
  15. package/esm/components/QCarousel/index.d.ts +119 -0
  16. package/esm/components/QCarousel/index.d.ts.map +1 -0
  17. package/esm/components/QCarousel/index.js +6 -0
  18. package/esm/components/QCarousel/types.d.ts +79 -0
  19. package/esm/components/QCarousel/types.d.ts.map +1 -0
  20. package/esm/components/QCombobox/QCombobox.d.ts +22 -72
  21. package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
  22. package/esm/components/QCombobox/index.d.ts +19 -44
  23. package/esm/components/QCombobox/index.d.ts.map +1 -1
  24. package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts +18 -68
  25. package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts.map +1 -1
  26. package/esm/components/QGrid/QRow.d.ts +1 -1
  27. package/esm/components/QGrid/index.d.ts +3 -3
  28. package/esm/components/QList/QList.d.ts +5 -10
  29. package/esm/components/QList/QList.d.ts.map +1 -1
  30. package/esm/components/QList/QList.vue.js +94 -96
  31. package/esm/components/QList/index.d.ts +10 -48
  32. package/esm/components/QList/index.d.ts.map +1 -1
  33. package/esm/components/QList/types.d.ts +5 -1
  34. package/esm/components/QList/types.d.ts.map +1 -1
  35. package/esm/components/QSelect/QSelect.d.ts +22 -72
  36. package/esm/components/QSelect/QSelect.d.ts.map +1 -1
  37. package/esm/components/QSelect/QSelect.vue.js +18 -18
  38. package/esm/components/QSelect/index.d.ts +19 -44
  39. package/esm/components/QSelect/index.d.ts.map +1 -1
  40. package/esm/components/QTextArea/QTextArea.d.ts +1 -1
  41. package/esm/components/QTextArea/index.d.ts +3 -3
  42. package/esm/components/QToggleGroup/types.d.ts +1 -1
  43. package/esm/components/index.d.ts +1 -0
  44. package/esm/components/index.d.ts.map +1 -1
  45. package/esm/components/index.js +90 -88
  46. package/esm/composables/useGroup/index.d.ts +4 -2
  47. package/esm/composables/useGroup/index.d.ts.map +1 -1
  48. package/esm/composables/useGroup/index.js +26 -24
  49. package/esm/index.d.ts +1 -0
  50. package/package.json +1 -1
@@ -0,0 +1,119 @@
1
+ declare const QCarousel: {
2
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
3
+ currentSlide?: number;
4
+ } & import('../../types/component').QBaseComponentProps & {
5
+ slides?: import('./types').Slide[];
6
+ showIndicators?: boolean;
7
+ showControls?: boolean;
8
+ autoCycleInterval?: number;
9
+ autoCyclePause?: "hover" | "false";
10
+ ride?: "carousel" | "false";
11
+ swipeThreshold?: number;
12
+ wrap?: boolean;
13
+ animationDuration?: number;
14
+ loading?: boolean;
15
+ icons?: typeof import('./constants').DEFAULT_ICONS;
16
+ texts?: typeof import('./constants').DEFAULT_TEXTS;
17
+ }> & Readonly<{
18
+ "onSlide:before-change"?: ((newId: string, oldId?: string | undefined) => any) | undefined;
19
+ "onSlide:after-change"?: ((newId: string, oldId?: string | undefined) => any) | undefined;
20
+ "onSlide:click"?: ((id: string) => any) | undefined;
21
+ "onUpdate:currentSlide"?: ((value: number) => any) | undefined;
22
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
23
+ "slide:before-change": (newId: string, oldId?: string | undefined) => any;
24
+ "slide:after-change": (newId: string, oldId?: string | undefined) => any;
25
+ "slide:click": (id: string) => any;
26
+ "update:currentSlide": (value: number) => any;
27
+ }, import('vue').PublicProps, {
28
+ icons: typeof import('./constants').DEFAULT_ICONS;
29
+ texts: typeof import('./constants').DEFAULT_TEXTS;
30
+ slides: import('./types').Slide[];
31
+ autoCycleInterval: number;
32
+ autoCyclePause: "hover" | "false";
33
+ ride: "carousel" | "false";
34
+ swipeThreshold: number;
35
+ wrap: boolean;
36
+ animationDuration: number;
37
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
38
+ P: {};
39
+ B: {};
40
+ D: {};
41
+ C: {};
42
+ M: {};
43
+ Defaults: {};
44
+ }, Readonly<{
45
+ currentSlide?: number;
46
+ } & import('../../types/component').QBaseComponentProps & {
47
+ slides?: import('./types').Slide[];
48
+ showIndicators?: boolean;
49
+ showControls?: boolean;
50
+ autoCycleInterval?: number;
51
+ autoCyclePause?: "hover" | "false";
52
+ ride?: "carousel" | "false";
53
+ swipeThreshold?: number;
54
+ wrap?: boolean;
55
+ animationDuration?: number;
56
+ loading?: boolean;
57
+ icons?: typeof import('./constants').DEFAULT_ICONS;
58
+ texts?: typeof import('./constants').DEFAULT_TEXTS;
59
+ }> & Readonly<{
60
+ "onSlide:before-change"?: ((newId: string, oldId?: string | undefined) => any) | undefined;
61
+ "onSlide:after-change"?: ((newId: string, oldId?: string | undefined) => any) | undefined;
62
+ "onSlide:click"?: ((id: string) => any) | undefined;
63
+ "onUpdate:currentSlide"?: ((value: number) => any) | undefined;
64
+ }>, {}, {}, {}, {}, {
65
+ icons: typeof import('./constants').DEFAULT_ICONS;
66
+ texts: typeof import('./constants').DEFAULT_TEXTS;
67
+ slides: import('./types').Slide[];
68
+ autoCycleInterval: number;
69
+ autoCyclePause: "hover" | "false";
70
+ ride: "carousel" | "false";
71
+ swipeThreshold: number;
72
+ wrap: boolean;
73
+ animationDuration: number;
74
+ }>;
75
+ __isFragment?: never;
76
+ __isTeleport?: never;
77
+ __isSuspense?: never;
78
+ } & import('vue').ComponentOptionsBase<Readonly<{
79
+ currentSlide?: number;
80
+ } & import('../../types/component').QBaseComponentProps & {
81
+ slides?: import('./types').Slide[];
82
+ showIndicators?: boolean;
83
+ showControls?: boolean;
84
+ autoCycleInterval?: number;
85
+ autoCyclePause?: "hover" | "false";
86
+ ride?: "carousel" | "false";
87
+ swipeThreshold?: number;
88
+ wrap?: boolean;
89
+ animationDuration?: number;
90
+ loading?: boolean;
91
+ icons?: typeof import('./constants').DEFAULT_ICONS;
92
+ texts?: typeof import('./constants').DEFAULT_TEXTS;
93
+ }> & Readonly<{
94
+ "onSlide:before-change"?: ((newId: string, oldId?: string | undefined) => any) | undefined;
95
+ "onSlide:after-change"?: ((newId: string, oldId?: string | undefined) => any) | undefined;
96
+ "onSlide:click"?: ((id: string) => any) | undefined;
97
+ "onUpdate:currentSlide"?: ((value: number) => any) | undefined;
98
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
99
+ "slide:before-change": (newId: string, oldId?: string | undefined) => any;
100
+ "slide:after-change": (newId: string, oldId?: string | undefined) => any;
101
+ "slide:click": (id: string) => any;
102
+ "update:currentSlide": (value: number) => any;
103
+ }, string, {
104
+ icons: typeof import('./constants').DEFAULT_ICONS;
105
+ texts: typeof import('./constants').DEFAULT_TEXTS;
106
+ slides: import('./types').Slide[];
107
+ autoCycleInterval: number;
108
+ autoCyclePause: "hover" | "false";
109
+ ride: "carousel" | "false";
110
+ swipeThreshold: number;
111
+ wrap: boolean;
112
+ animationDuration: number;
113
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
114
+ $slots: {
115
+ empty?(_: {}): any;
116
+ };
117
+ });
118
+ export { QCarousel };
119
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCarousel/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8B,CAAA;AAG7C,OAAO,EAAE,SAAS,EAAE,CAAA"}
@@ -0,0 +1,6 @@
1
+ import o from "./QCarousel.vue.js";
2
+ import { setupPropsProxy as r } from "../../utils/setupPropsProxy.js";
3
+ const s = r(o);
4
+ export {
5
+ s as QCarousel
6
+ };
@@ -0,0 +1,79 @@
1
+ import { QBaseComponentProps } from 'src/types/component';
2
+ import { DEFAULT_ICONS, DEFAULT_TEXTS } from './constants';
3
+ /**
4
+ * Represents a single slide in the carousel.
5
+ */
6
+ export type Slide = {
7
+ /** Unique identifier for the slide */
8
+ id: string;
9
+ /** Optional title text displayed on the slide */
10
+ title?: string;
11
+ /** Optional subtitle text displayed below the title */
12
+ subtitle?: string;
13
+ /** Image URL or path for the slide */
14
+ image: string;
15
+ /** Optional placeholder background color shown while the image loads */
16
+ colorPlaceholder?: string;
17
+ };
18
+ /**
19
+ * Props for the QCarousel component.
20
+ */
21
+ export type QCarouselProps = QBaseComponentProps & {
22
+ /** Array of slides to be displayed in the carousel */
23
+ slides?: Slide[];
24
+ /** Whether to show slide indicators (dots) below the carousel */
25
+ showIndicators?: boolean;
26
+ /** Whether to show previous/next navigation controls */
27
+ showControls?: boolean;
28
+ /** Time interval in milliseconds between automatic slide transitions */
29
+ autoCycleInterval?: number;
30
+ /** Pausing behavior for auto cycling:
31
+ * - `'hover'`: pause when hovering over the carousel
32
+ * - `'false'`: do not pause
33
+ */
34
+ autoCyclePause?: 'hover' | 'false';
35
+ /** Determines if the carousel should auto-start cycling:
36
+ * - `'carousel'`: start cycling automatically
37
+ * - `'false'`: do not auto-start
38
+ */
39
+ ride?: 'carousel' | 'false';
40
+ /**
41
+ * The minimum horizontal distance in pixels that a touch gesture
42
+ * must travel to be recognized as a swipe.
43
+ */
44
+ swipeThreshold?: number;
45
+ /** Whether the carousel should loop back to the start after the last slide */
46
+ wrap?: boolean;
47
+ /** Duration of slide transition animations in milliseconds */
48
+ animationDuration?: number;
49
+ /** Whether the carousel is in a loading state (e.g., slides not yet ready) */
50
+ loading?: boolean;
51
+ /** Custom icon configurations. */
52
+ icons?: typeof DEFAULT_ICONS;
53
+ /** Custom text overrides for controls and labels */
54
+ texts?: typeof DEFAULT_TEXTS;
55
+ };
56
+ export type QCarouselEmits = {
57
+ /**
58
+ * Emitted right before the slide changes.
59
+ * Useful for hooking into transitions.
60
+ *
61
+ * @param newId - Id of the slide to be shown
62
+ * @param oldId - Id of the slide being hidden, if it exists
63
+ */
64
+ 'slide:before-change': [newId: string, oldId?: string];
65
+ /**
66
+ * Emitted after a slide transition completes.
67
+ *
68
+ * @param newId - Id of the now-active slide
69
+ * @param oldId - Id of the previous slide, if it exists
70
+ */
71
+ 'slide:after-change': [newId: string, oldId?: string];
72
+ /**
73
+ * Emitted when a slide is clicked.
74
+ *
75
+ * @param id - Id of the clicked slide
76
+ */
77
+ 'slide:click': [id: string];
78
+ };
79
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QCarousel/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAE/D;;GAEG;AACH,MAAM,MAAM,KAAK,GAAG;IACnB,sCAAsC;IACtC,EAAE,EAAE,MAAM,CAAA;IAEV,iDAAiD;IACjD,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd,uDAAuD;IACvD,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB,sCAAsC;IACtC,KAAK,EAAE,MAAM,CAAA;IAEb,wEAAwE;IACxE,gBAAgB,CAAC,EAAE,MAAM,CAAA;CACzB,CAAA;AAED;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,mBAAmB,GAAG;IAClD,sDAAsD;IACtD,MAAM,CAAC,EAAE,KAAK,EAAE,CAAA;IAEhB,iEAAiE;IACjE,cAAc,CAAC,EAAE,OAAO,CAAA;IAExB,wDAAwD;IACxD,YAAY,CAAC,EAAE,OAAO,CAAA;IAEtB,wEAAwE;IACxE,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAE1B;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,GAAG,OAAO,CAAA;IAElC;;;OAGG;IACH,IAAI,CAAC,EAAE,UAAU,GAAG,OAAO,CAAA;IAE3B;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAA;IAEvB,8EAA8E;IAC9E,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd,8DAA8D;IAC9D,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAE1B,8EAA8E;IAC9E,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB,kCAAkC;IAClC,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;IAE5B,oDAAoD;IACpD,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC5B;;;;;;OAMG;IACH,qBAAqB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,CAAA;IAEtD;;;;;OAKG;IACH,oBAAoB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,CAAA;IAErD;;;;OAIG;IACH,aAAa,EAAE,CAAC,EAAE,EAAE,MAAM,CAAC,CAAA;CAC3B,CAAA"}
@@ -312,9 +312,9 @@ declare function __VLS_template(): {
312
312
  $: import('vue').ComponentInternalInstance;
313
313
  $data: {};
314
314
  $props: {
315
- readonly modelValue?: any;
316
315
  readonly id?: string | undefined;
317
316
  readonly class?: string | unknown[] | undefined;
317
+ readonly modelValue?: any;
318
318
  readonly highlighted?: any;
319
319
  readonly items?: import('../QList/types').Item[] | undefined;
320
320
  readonly groups?: import('../QList/types').Group[] | undefined;
@@ -325,7 +325,7 @@ declare function __VLS_template(): {
325
325
  readonly multiple?: boolean | undefined;
326
326
  readonly required?: boolean | undefined;
327
327
  readonly onClick?: ((key: any) => any) | undefined;
328
- readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
328
+ readonly "onUpdate:modelValue"?: ((val: any) => any) | undefined;
329
329
  readonly "onMouseenter:item"?: ((key: any) => any) | undefined;
330
330
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
331
331
  $attrs: {
@@ -417,23 +417,11 @@ declare function __VLS_template(): {
417
417
  $root: import('vue').ComponentPublicInstance | null;
418
418
  $parent: import('vue').ComponentPublicInstance | null;
419
419
  $host: Element | null;
420
- $emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", value: any) => void) & ((event: "mouseenter:item", key: any) => void);
420
+ $emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", val: any) => void) & ((event: "mouseenter:item", key: any) => void);
421
421
  $el: any;
422
- $options: import('vue').ComponentOptionsBase<Readonly<{
423
- modelValue?: any;
424
- } & import('../../types/component').QBaseComponentProps & {
425
- highlighted?: any;
426
- items?: import('../QList/types').Item[];
427
- groups?: import('../QList/types').Group[];
428
- itemValue?: string;
429
- itemLabel?: string;
430
- disabled?: boolean;
431
- selectable?: boolean;
432
- multiple?: boolean;
433
- required?: boolean;
434
- }> & Readonly<{
422
+ $options: import('vue').ComponentOptionsBase<Readonly<import('..').QListProps> & Readonly<{
435
423
  onClick?: ((key: any) => any) | undefined;
436
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
424
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
437
425
  "onMouseenter:item"?: ((key: any) => any) | undefined;
438
426
  }>, {
439
427
  getItem: (idx: number) => HTMLElement | undefined;
@@ -441,10 +429,9 @@ declare function __VLS_template(): {
441
429
  getAdjacentItemIndex: (idx: number, direction: "next" | "prev") => number;
442
430
  getFirstFocusableItemIndex: () => number;
443
431
  getLastFocusableItemIndex: () => number;
444
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
445
- "update:modelValue": (value: any) => any;
446
- } & {
432
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
447
433
  click: (key: any) => any;
434
+ "update:modelValue": (val: any) => any;
448
435
  "mouseenter:item": (key: any) => any;
449
436
  }, string, {
450
437
  groups: import('../QList/types').Group[];
@@ -474,21 +461,9 @@ declare function __VLS_template(): {
474
461
  groups: import('../QList/types').Group[];
475
462
  itemValue: string;
476
463
  itemLabel: string;
477
- }> & Omit<Readonly<{
478
- modelValue?: any;
479
- } & import('../../types/component').QBaseComponentProps & {
480
- highlighted?: any;
481
- items?: import('../QList/types').Item[];
482
- groups?: import('../QList/types').Group[];
483
- itemValue?: string;
484
- itemLabel?: string;
485
- disabled?: boolean;
486
- selectable?: boolean;
487
- multiple?: boolean;
488
- required?: boolean;
489
- }> & Readonly<{
464
+ }> & Omit<Readonly<import('..').QListProps> & Readonly<{
490
465
  onClick?: ((key: any) => any) | undefined;
491
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
466
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
492
467
  "onMouseenter:item"?: ((key: any) => any) | undefined;
493
468
  }>, "getItem" | "getActiveItemIndex" | "getAdjacentItemIndex" | "getFirstFocusableItemIndex" | "getLastFocusableItemIndex" | ("groups" | "itemValue" | "itemLabel")> & import('vue').ShallowUnwrapRef<{
494
469
  getItem: (idx: number) => HTMLElement | undefined;
@@ -902,16 +877,16 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
902
877
  "update:open": (value: boolean) => any;
903
878
  "update:search": (value: string) => any;
904
879
  } & {
880
+ hide: () => any;
881
+ show: () => any;
905
882
  "before-show": () => any;
906
883
  "before-hide": () => any;
907
- show: () => any;
908
- hide: () => any;
909
884
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
910
885
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
886
+ onHide?: (() => any) | undefined;
887
+ onShow?: (() => any) | undefined;
911
888
  "onBefore-show"?: (() => any) | undefined;
912
889
  "onBefore-hide"?: (() => any) | undefined;
913
- onShow?: (() => any) | undefined;
914
- onHide?: (() => any) | undefined;
915
890
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
916
891
  "onUpdate:search"?: ((value: string) => any) | undefined;
917
892
  }>, {
@@ -1220,9 +1195,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
1220
1195
  $: import('vue').ComponentInternalInstance;
1221
1196
  $data: {};
1222
1197
  $props: {
1223
- readonly modelValue?: any;
1224
1198
  readonly id?: string | undefined;
1225
1199
  readonly class?: string | unknown[] | undefined;
1200
+ readonly modelValue?: any;
1226
1201
  readonly highlighted?: any;
1227
1202
  readonly items?: import('../QList/types').Item[] | undefined;
1228
1203
  readonly groups?: import('../QList/types').Group[] | undefined;
@@ -1233,7 +1208,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
1233
1208
  readonly multiple?: boolean | undefined;
1234
1209
  readonly required?: boolean | undefined;
1235
1210
  readonly onClick?: ((key: any) => any) | undefined;
1236
- readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1211
+ readonly "onUpdate:modelValue"?: ((val: any) => any) | undefined;
1237
1212
  readonly "onMouseenter:item"?: ((key: any) => any) | undefined;
1238
1213
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
1239
1214
  $attrs: {
@@ -1325,23 +1300,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
1325
1300
  $root: import('vue').ComponentPublicInstance | null;
1326
1301
  $parent: import('vue').ComponentPublicInstance | null;
1327
1302
  $host: Element | null;
1328
- $emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", value: any) => void) & ((event: "mouseenter:item", key: any) => void);
1303
+ $emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", val: any) => void) & ((event: "mouseenter:item", key: any) => void);
1329
1304
  $el: any;
1330
- $options: import('vue').ComponentOptionsBase<Readonly<{
1331
- modelValue?: any;
1332
- } & import('../../types/component').QBaseComponentProps & {
1333
- highlighted?: any;
1334
- items?: import('../QList/types').Item[];
1335
- groups?: import('../QList/types').Group[];
1336
- itemValue?: string;
1337
- itemLabel?: string;
1338
- disabled?: boolean;
1339
- selectable?: boolean;
1340
- multiple?: boolean;
1341
- required?: boolean;
1342
- }> & Readonly<{
1305
+ $options: import('vue').ComponentOptionsBase<Readonly<import('..').QListProps> & Readonly<{
1343
1306
  onClick?: ((key: any) => any) | undefined;
1344
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1307
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
1345
1308
  "onMouseenter:item"?: ((key: any) => any) | undefined;
1346
1309
  }>, {
1347
1310
  getItem: (idx: number) => HTMLElement | undefined;
@@ -1349,10 +1312,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
1349
1312
  getAdjacentItemIndex: (idx: number, direction: "next" | "prev") => number;
1350
1313
  getFirstFocusableItemIndex: () => number;
1351
1314
  getLastFocusableItemIndex: () => number;
1352
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1353
- "update:modelValue": (value: any) => any;
1354
- } & {
1315
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
1355
1316
  click: (key: any) => any;
1317
+ "update:modelValue": (val: any) => any;
1356
1318
  "mouseenter:item": (key: any) => any;
1357
1319
  }, string, {
1358
1320
  groups: import('../QList/types').Group[];
@@ -1382,21 +1344,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
1382
1344
  groups: import('../QList/types').Group[];
1383
1345
  itemValue: string;
1384
1346
  itemLabel: string;
1385
- }> & Omit<Readonly<{
1386
- modelValue?: any;
1387
- } & import('../../types/component').QBaseComponentProps & {
1388
- highlighted?: any;
1389
- items?: import('../QList/types').Item[];
1390
- groups?: import('../QList/types').Group[];
1391
- itemValue?: string;
1392
- itemLabel?: string;
1393
- disabled?: boolean;
1394
- selectable?: boolean;
1395
- multiple?: boolean;
1396
- required?: boolean;
1397
- }> & Readonly<{
1347
+ }> & Omit<Readonly<import('..').QListProps> & Readonly<{
1398
1348
  onClick?: ((key: any) => any) | undefined;
1399
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1349
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
1400
1350
  "onMouseenter:item"?: ((key: any) => any) | undefined;
1401
1351
  }>, "getItem" | "getActiveItemIndex" | "getAdjacentItemIndex" | "getFirstFocusableItemIndex" | "getLastFocusableItemIndex" | ("groups" | "itemValue" | "itemLabel")> & import('vue').ShallowUnwrapRef<{
1402
1352
  getItem: (idx: number) => HTMLElement | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"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"}
@@ -17,10 +17,10 @@ declare const QCombobox: {
17
17
  texts?: typeof import('./types').DEFAULT_TEXTS;
18
18
  }> & Readonly<{
19
19
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
20
+ onHide?: (() => any) | undefined;
21
+ onShow?: (() => any) | undefined;
20
22
  "onBefore-show"?: (() => any) | undefined;
21
23
  "onBefore-hide"?: (() => any) | undefined;
22
- onShow?: (() => any) | undefined;
23
- onHide?: (() => any) | undefined;
24
24
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
25
25
  "onUpdate:search"?: ((value: string) => any) | undefined;
26
26
  }>, {
@@ -412,10 +412,10 @@ declare const QCombobox: {
412
412
  "update:open": (value: boolean) => any;
413
413
  "update:search": (value: string) => any;
414
414
  } & {
415
+ hide: () => any;
416
+ show: () => any;
415
417
  "before-show": () => any;
416
418
  "before-hide": () => any;
417
- show: () => any;
418
- hide: () => any;
419
419
  }, import('vue').PublicProps, {
420
420
  icons: typeof import('./types').DEFAULT_ICONS;
421
421
  texts: {
@@ -722,9 +722,9 @@ declare const QCombobox: {
722
722
  $: import('vue').ComponentInternalInstance;
723
723
  $data: {};
724
724
  $props: {
725
- readonly modelValue?: any;
726
725
  readonly id?: string | undefined;
727
726
  readonly class?: string | unknown[] | undefined;
727
+ readonly modelValue?: any;
728
728
  readonly highlighted?: any;
729
729
  readonly items?: import('../QList/types').Item[] | undefined;
730
730
  readonly groups?: import('../QList/types').Group[] | undefined;
@@ -735,7 +735,7 @@ declare const QCombobox: {
735
735
  readonly multiple?: boolean | undefined;
736
736
  readonly required?: boolean | undefined;
737
737
  readonly onClick?: ((key: any) => any) | undefined;
738
- readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
738
+ readonly "onUpdate:modelValue"?: ((val: any) => any) | undefined;
739
739
  readonly "onMouseenter:item"?: ((key: any) => any) | undefined;
740
740
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
741
741
  $attrs: {
@@ -827,23 +827,11 @@ declare const QCombobox: {
827
827
  $root: import('vue').ComponentPublicInstance | null;
828
828
  $parent: import('vue').ComponentPublicInstance | null;
829
829
  $host: Element | null;
830
- $emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", value: any) => void) & ((event: "mouseenter:item", key: any) => void);
830
+ $emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", val: any) => void) & ((event: "mouseenter:item", key: any) => void);
831
831
  $el: any;
832
- $options: import('vue').ComponentOptionsBase<Readonly<{
833
- modelValue?: any;
834
- } & import('../../types/component').QBaseComponentProps & {
835
- highlighted?: any;
836
- items?: import('../QList/types').Item[];
837
- groups?: import('../QList/types').Group[];
838
- itemValue?: string;
839
- itemLabel?: string;
840
- disabled?: boolean;
841
- selectable?: boolean;
842
- multiple?: boolean;
843
- required?: boolean;
844
- }> & Readonly<{
832
+ $options: import('vue').ComponentOptionsBase<Readonly<import('..').QListProps> & Readonly<{
845
833
  onClick?: ((key: any) => any) | undefined;
846
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
834
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
847
835
  "onMouseenter:item"?: ((key: any) => any) | undefined;
848
836
  }>, {
849
837
  getItem: (idx: number) => HTMLElement | undefined;
@@ -851,10 +839,9 @@ declare const QCombobox: {
851
839
  getAdjacentItemIndex: (idx: number, direction: "next" | "prev") => number;
852
840
  getFirstFocusableItemIndex: () => number;
853
841
  getLastFocusableItemIndex: () => number;
854
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
855
- "update:modelValue": (value: any) => any;
856
- } & {
842
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
857
843
  click: (key: any) => any;
844
+ "update:modelValue": (val: any) => any;
858
845
  "mouseenter:item": (key: any) => any;
859
846
  }, string, {
860
847
  groups: import('../QList/types').Group[];
@@ -884,21 +871,9 @@ declare const QCombobox: {
884
871
  groups: import('../QList/types').Group[];
885
872
  itemValue: string;
886
873
  itemLabel: string;
887
- }> & Omit<Readonly<{
888
- modelValue?: any;
889
- } & import('../../types/component').QBaseComponentProps & {
890
- highlighted?: any;
891
- items?: import('../QList/types').Item[];
892
- groups?: import('../QList/types').Group[];
893
- itemValue?: string;
894
- itemLabel?: string;
895
- disabled?: boolean;
896
- selectable?: boolean;
897
- multiple?: boolean;
898
- required?: boolean;
899
- }> & Readonly<{
874
+ }> & Omit<Readonly<import('..').QListProps> & Readonly<{
900
875
  onClick?: ((key: any) => any) | undefined;
901
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
876
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
902
877
  "onMouseenter:item"?: ((key: any) => any) | undefined;
903
878
  }>, "getItem" | "getActiveItemIndex" | "getAdjacentItemIndex" | "getFirstFocusableItemIndex" | "getLastFocusableItemIndex" | ("groups" | "itemValue" | "itemLabel")> & import('vue').ShallowUnwrapRef<{
904
879
  getItem: (idx: number) => HTMLElement | undefined;
@@ -944,10 +919,10 @@ declare const QCombobox: {
944
919
  texts?: typeof import('./types').DEFAULT_TEXTS;
945
920
  }> & Readonly<{
946
921
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
922
+ onHide?: (() => any) | undefined;
923
+ onShow?: (() => any) | undefined;
947
924
  "onBefore-show"?: (() => any) | undefined;
948
925
  "onBefore-hide"?: (() => any) | undefined;
949
- onShow?: (() => any) | undefined;
950
- onHide?: (() => any) | undefined;
951
926
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
952
927
  "onUpdate:search"?: ((value: string) => any) | undefined;
953
928
  }>, {
@@ -1370,10 +1345,10 @@ declare const QCombobox: {
1370
1345
  texts?: typeof import('./types').DEFAULT_TEXTS;
1371
1346
  }> & Readonly<{
1372
1347
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1348
+ onHide?: (() => any) | undefined;
1349
+ onShow?: (() => any) | undefined;
1373
1350
  "onBefore-show"?: (() => any) | undefined;
1374
1351
  "onBefore-hide"?: (() => any) | undefined;
1375
- onShow?: (() => any) | undefined;
1376
- onHide?: (() => any) | undefined;
1377
1352
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
1378
1353
  "onUpdate:search"?: ((value: string) => any) | undefined;
1379
1354
  }>, {
@@ -1765,10 +1740,10 @@ declare const QCombobox: {
1765
1740
  "update:open": (value: boolean) => any;
1766
1741
  "update:search": (value: string) => any;
1767
1742
  } & {
1743
+ hide: () => any;
1744
+ show: () => any;
1768
1745
  "before-show": () => any;
1769
1746
  "before-hide": () => any;
1770
- show: () => any;
1771
- hide: () => any;
1772
1747
  }, string, {
1773
1748
  icons: typeof import('./types').DEFAULT_ICONS;
1774
1749
  texts: {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"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"}