@quidgest/ui 0.16.15 → 0.16.16

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 (52) hide show
  1. package/dist/manifest/components.json +1 -0
  2. package/dist/ui.css +182 -9
  3. package/dist/ui.esm.js +4570 -4382
  4. package/dist/ui.js +12 -12
  5. package/dist/ui.min.css +1 -1
  6. package/dist/ui.min.js +723 -710
  7. package/dist/ui.scss +200 -12
  8. package/esm/components/QCheckbox/QCheckbox.d.ts +6 -2
  9. package/esm/components/QCheckbox/QCheckbox.d.ts.map +1 -1
  10. package/esm/components/QCheckbox/QCheckbox.vue.js +90 -79
  11. package/esm/components/QCheckbox/QCheckboxLabel.d.ts +2 -3
  12. package/esm/components/QCheckbox/QCheckboxLabel.d.ts.map +1 -1
  13. package/esm/components/QCheckbox/QCheckboxLabel.vue.js +32 -24
  14. package/esm/components/QCheckbox/index.d.ts +12 -4
  15. package/esm/components/QCheckbox/index.d.ts.map +1 -1
  16. package/esm/components/QCheckbox/types.d.ts +2 -7
  17. package/esm/components/QCheckbox/types.d.ts.map +1 -1
  18. package/esm/components/QCombobox/QCombobox.d.ts +16 -4
  19. package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
  20. package/esm/components/QCombobox/index.d.ts +8 -2
  21. package/esm/components/QCombobox/index.d.ts.map +1 -1
  22. package/esm/components/QDropdownMenu/QDropdownMenu.vue.js +11 -9
  23. package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts +22 -6
  24. package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts.map +1 -1
  25. package/esm/components/QDropdownMenu/QDropdownMenuContent.vue.js +171 -84
  26. package/esm/components/QDropdownMenu/index.d.ts +4 -0
  27. package/esm/components/QDropdownMenu/index.d.ts.map +1 -1
  28. package/esm/components/QDropdownMenu/types.d.ts +8 -8
  29. package/esm/components/QDropdownMenu/types.d.ts.map +1 -1
  30. package/esm/components/QList/QList.d.ts +9 -0
  31. package/esm/components/QList/QList.d.ts.map +1 -1
  32. package/esm/components/QList/QList.vue.js +73 -68
  33. package/esm/components/QList/index.d.ts +8 -0
  34. package/esm/components/QList/index.d.ts.map +1 -1
  35. package/esm/components/QSelect/QSelect.d.ts +16 -4
  36. package/esm/components/QSelect/QSelect.d.ts.map +1 -1
  37. package/esm/components/QSelect/index.d.ts +8 -2
  38. package/esm/components/QSelect/index.d.ts.map +1 -1
  39. package/esm/components/QSwitch/QSwitch.d.ts +16 -0
  40. package/esm/components/QSwitch/QSwitch.d.ts.map +1 -0
  41. package/esm/components/QSwitch/QSwitch.vue.js +129 -0
  42. package/esm/components/QSwitch/QSwitch.vue2.js +4 -0
  43. package/esm/components/QSwitch/index.d.ts +33 -0
  44. package/esm/components/QSwitch/index.d.ts.map +1 -0
  45. package/esm/components/QSwitch/index.js +6 -0
  46. package/esm/components/QSwitch/types.d.ts +39 -0
  47. package/esm/components/QSwitch/types.d.ts.map +1 -0
  48. package/esm/components/index.d.ts +1 -0
  49. package/esm/components/index.d.ts.map +1 -1
  50. package/esm/components/index.js +31 -29
  51. package/esm/index.d.ts +1 -0
  52. package/package.json +1 -1
@@ -1,17 +1,14 @@
1
- import { defineComponent as B, mergeModels as c, useModel as m, ref as p, computed as h, createBlock as L, openBlock as g, unref as v, normalizeClass as M, withCtx as i, createElementVNode as O, createVNode as E, renderSlot as y, createElementBlock as I, createCommentVNode as N, toDisplayString as S, nextTick as q } from "vue";
2
- import { QList as D } from "../QList/index.js";
3
- import { QOverlay as Q } from "../QOverlay/index.js";
4
- import { DEFAULT_ICONS as $ } from "./types.js";
5
- const R = {
6
- class: "q-dropdown-menu__body",
7
- "data-testid": "dropdown-content",
8
- tabindex: "-1"
9
- }, T = {
1
+ import { defineComponent as Q, mergeModels as V, useModel as _, ref as x, computed as I, useTemplateRef as T, resolveComponent as F, createBlock as L, openBlock as u, unref as v, normalizeClass as U, withCtx as g, createElementVNode as $, withModifiers as z, createVNode as C, renderSlot as A, createElementBlock as M, createCommentVNode as w, toDisplayString as H, Fragment as j, normalizeProps as G, guardReactiveProps as J, mergeProps as W, nextTick as X } from "vue";
2
+ import { QList as Y } from "../QList/index.js";
3
+ import { QOverlay as Z } from "../QOverlay/index.js";
4
+ import { QIcon as K } from "../QIcon/index.js";
5
+ import { DEFAULT_ICONS as ee } from "./types.js";
6
+ const te = {
10
7
  key: 0,
11
8
  class: "q-dropdown-menu__extra"
12
- }, j = /* @__PURE__ */ B({
9
+ }, se = /* @__PURE__ */ Q({
13
10
  __name: "QDropdownMenuContent",
14
- props: /* @__PURE__ */ c({
11
+ props: /* @__PURE__ */ V({
15
12
  id: {},
16
13
  class: {},
17
14
  activator: {},
@@ -24,91 +21,181 @@ const R = {
24
21
  groups: { default: () => [] },
25
22
  itemValue: { default: "key" },
26
23
  itemLabel: { default: "label" },
27
- icons: { default: () => $ },
28
- trigger: { default: "click" },
24
+ trigger: { default: "hover" },
25
+ depth: { default: 0 },
26
+ icons: { default: () => ee },
29
27
  offset: { default: 0 },
30
- crossOffset: { default: -5 },
31
- depth: { default: 0 }
28
+ crossOffset: { default: -5 }
32
29
  }, {
33
30
  modelValue: { type: Boolean },
34
31
  modelModifiers: {},
35
32
  highlighted: {},
36
33
  highlightedModifiers: {}
37
34
  }),
38
- emits: /* @__PURE__ */ c(["select"], ["update:modelValue", "update:highlighted"]),
39
- setup(l, { emit: V }) {
40
- const e = l, _ = V, s = m(l, "modelValue"), n = m(l, "highlighted"), d = p([]), b = h(() => e.depth !== 0 ? e.offset : 4), k = h(() => e.depth !== 0 ? e.crossOffset : void 0), r = p(null);
41
- function C(o) {
42
- var u;
43
- _("select", o);
44
- const a = (u = e.items) == null ? void 0 : u.find((f) => f[e.itemValue] === f);
45
- d.value = (a == null ? void 0 : a.items) ?? [];
46
- const t = d.value.length > 0;
47
- n.value = t ? o : void 0, t || w();
35
+ emits: /* @__PURE__ */ V(["select", "hide", "focus-previous"], ["update:modelValue", "update:highlighted"]),
36
+ setup(r, { emit: q }) {
37
+ const e = r, d = q, c = _(r, "modelValue"), l = _(r, "highlighted"), i = x(void 0), y = x([]), E = I(() => e.depth !== 0 ? e.offset : 4), R = I(() => e.depth !== 0 ? e.crossOffset : void 0), f = T("qListRef");
38
+ function P(t) {
39
+ var o;
40
+ const n = (o = e.items) == null ? void 0 : o.find((s) => s[e.itemValue] === t);
41
+ y.value = (n == null ? void 0 : n.items) ?? [];
42
+ const a = y.value.length > 0;
43
+ l.value = t, a ? h(t) : k(t);
48
44
  }
49
- function w() {
50
- s.value = !1;
45
+ function S(t) {
46
+ var n;
47
+ if (t.key)
48
+ switch (["Enter", "ArrowDown", "ArrowUp", "ArrowLeft", "ArrowRight"].includes(t.key) && (t.preventDefault(), t.stopPropagation()), t.key) {
49
+ case "ArrowRight":
50
+ const a = (n = f.value) == null ? void 0 : n.getActiveItemIndex();
51
+ e.items && (a || a === 0) && e.items[a] && (l.value = e.items[a].key, h(e.items[a].key));
52
+ break;
53
+ case "ArrowLeft":
54
+ m();
55
+ break;
56
+ case "Escape":
57
+ case "Tab":
58
+ p();
59
+ break;
60
+ }
51
61
  }
52
- function x() {
53
- q(() => {
54
- var o;
55
- return (o = r.value) == null ? void 0 : o.$el.focus();
62
+ function B(t) {
63
+ e.trigger === "hover" && (l.value = t, h(t));
64
+ }
65
+ function k(t) {
66
+ d("select", t), p();
67
+ }
68
+ function D() {
69
+ m();
70
+ }
71
+ function m() {
72
+ i.value = void 0, l.value = void 0, c.value = !1, d("focus-previous");
73
+ }
74
+ function p() {
75
+ m(), d("hide");
76
+ }
77
+ function h(t) {
78
+ i.value = t;
79
+ }
80
+ function O() {
81
+ var a, o;
82
+ const t = (a = e.items) == null ? void 0 : a.findIndex(
83
+ (s) => s[e.itemValue] === i.value
84
+ );
85
+ if (!t && t !== 0) return;
86
+ const n = (o = f.value) == null ? void 0 : o.getItem(t);
87
+ i.value = void 0, l.value = void 0, n == null || n.focus();
88
+ }
89
+ function N() {
90
+ X(() => {
91
+ var t;
92
+ return (t = f.value) == null ? void 0 : t.$el.focus();
56
93
  });
57
94
  }
58
- return (o, a) => (g(), L(v(Q), {
59
- id: e.id,
60
- modelValue: s.value,
61
- "onUpdate:modelValue": a[0] || (a[0] = (t) => s.value = t),
62
- anchor: e.activator,
63
- appearance: e.appearance,
64
- inline: e.inline,
65
- delay: e.delay,
66
- offset: b.value,
67
- "cross-offset": k.value,
68
- placement: e.placement,
69
- transition: e.transition,
70
- class: M(e.class),
71
- trigger: e.trigger,
72
- "scroll-lock": "",
73
- onEnter: x
74
- }, {
75
- default: i(() => [
76
- O("div", R, [
77
- E(v(D), {
78
- ref_key: "listRef",
79
- ref: r,
80
- class: "q-dropdown-menu__items",
81
- highlighted: n.value,
82
- items: e.items,
83
- groups: e.groups,
84
- "item-label": e.itemLabel,
85
- "item-value": e.itemValue,
86
- onClick: C
87
- }, {
88
- item: i(({ item: t }) => [
89
- y(o.$slots, "item", { item: t })
90
- ]),
91
- "item.append": i(({ item: t }) => [
92
- y(o.$slots, "item.append", { item: t }, () => [
93
- t.extraInfo ? (g(), I(
94
- "span",
95
- T,
96
- S(t.extraInfo),
97
- 1
98
- /* TEXT */
99
- )) : N("v-if", !0)
100
- ])
101
- ]),
102
- _: 3
103
- /* FORWARDED */
104
- }, 8, ["highlighted", "items", "groups", "item-label", "item-value"])
105
- ])
106
- ]),
107
- _: 3
108
- /* FORWARDED */
109
- }, 8, ["id", "modelValue", "anchor", "appearance", "inline", "delay", "offset", "cross-offset", "placement", "transition", "class", "trigger"]));
95
+ return (t, n) => {
96
+ const a = F("q-dropdown-menu-content", !0);
97
+ return u(), L(v(Z), {
98
+ id: e.id,
99
+ modelValue: c.value,
100
+ "onUpdate:modelValue": n[0] || (n[0] = (o) => c.value = o),
101
+ anchor: e.activator,
102
+ appearance: e.appearance,
103
+ inline: e.inline,
104
+ delay: e.delay,
105
+ offset: E.value,
106
+ "cross-offset": R.value,
107
+ placement: e.placement,
108
+ transition: e.transition,
109
+ class: U(e.class),
110
+ "scroll-lock": "",
111
+ "non-modal": "",
112
+ onEnter: N,
113
+ onLeave: D
114
+ }, {
115
+ default: g(() => [
116
+ $(
117
+ "div",
118
+ {
119
+ class: "q-dropdown-menu__body",
120
+ "data-testid": "dropdown-content",
121
+ tabindex: "-1",
122
+ onKeydown: z(S, ["stop"])
123
+ },
124
+ [
125
+ C(v(Y), {
126
+ ref: "qListRef",
127
+ class: "q-dropdown-menu__items",
128
+ highlighted: l.value,
129
+ items: e.items,
130
+ groups: e.groups,
131
+ "item-label": e.itemLabel,
132
+ "item-value": e.itemValue,
133
+ selectable: !1,
134
+ onClick: P,
135
+ "onMouseenter:item": B
136
+ }, {
137
+ item: g(({ item: o }) => [
138
+ A(t.$slots, "item", { item: o })
139
+ ]),
140
+ "item.append": g(({ item: o, element: s }) => {
141
+ var b;
142
+ return [
143
+ A(t.$slots, "item.append", { item: o }, () => [
144
+ o.extraInfo ? (u(), M(
145
+ "span",
146
+ te,
147
+ H(o.extraInfo),
148
+ 1
149
+ /* TEXT */
150
+ )) : w("v-if", !0)
151
+ ]),
152
+ ((b = o.items) == null ? void 0 : b.length) > 0 ? (u(), M(
153
+ j,
154
+ { key: 0 },
155
+ [
156
+ C(
157
+ v(K),
158
+ G(J(e.icons.expand)),
159
+ null,
160
+ 16
161
+ /* FULL_PROPS */
162
+ ),
163
+ i.value === o.key ? (u(), L(a, W({
164
+ key: 0,
165
+ "model-value": r.modelValue
166
+ }, e, {
167
+ activator: s,
168
+ items: o.items,
169
+ groups: o.groups,
170
+ depth: e.depth + 1,
171
+ delay: e.delay,
172
+ placement: "right-start",
173
+ "non-modal": "",
174
+ inline: "",
175
+ onHide: p,
176
+ onSelect: k,
177
+ onFocusPrevious: O
178
+ }), null, 16, ["model-value", "activator", "items", "groups", "depth", "delay"])) : w("v-if", !0)
179
+ ],
180
+ 64
181
+ /* STABLE_FRAGMENT */
182
+ )) : w("v-if", !0)
183
+ ];
184
+ }),
185
+ _: 3
186
+ /* FORWARDED */
187
+ }, 8, ["highlighted", "items", "groups", "item-label", "item-value"])
188
+ ],
189
+ 32
190
+ /* NEED_HYDRATION */
191
+ )
192
+ ]),
193
+ _: 3
194
+ /* FORWARDED */
195
+ }, 8, ["id", "modelValue", "anchor", "appearance", "inline", "delay", "offset", "cross-offset", "placement", "transition", "class"]);
196
+ };
110
197
  }
111
198
  });
112
199
  export {
113
- j as default
200
+ se as default
114
201
  };
@@ -11,6 +11,8 @@ declare const QDropdownMenu: import('vue').DefineComponent<{
11
11
  groups?: import('../QList/types').Group[];
12
12
  itemValue?: string;
13
13
  itemLabel?: string;
14
+ trigger?: import('../../composables/overlay').Trigger;
15
+ depth?: number;
14
16
  icons?: typeof import('./types').DEFAULT_ICONS;
15
17
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
18
  "update:modelValue": (value: boolean) => any;
@@ -29,6 +31,8 @@ declare const QDropdownMenu: import('vue').DefineComponent<{
29
31
  groups?: import('../QList/types').Group[];
30
32
  itemValue?: string;
31
33
  itemLabel?: string;
34
+ trigger?: import('../../composables/overlay').Trigger;
35
+ depth?: number;
32
36
  icons?: typeof import('./types').DEFAULT_ICONS;
33
37
  }> & Readonly<{
34
38
  onSelect?: ((item: any) => any) | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDropdownMenu/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kFAAkC,CAAA;AAGrD,OAAO,EAAE,aAAa,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDropdownMenu/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kFAAkC,CAAA;AAGrD,OAAO,EAAE,aAAa,EAAE,CAAA"}
@@ -45,16 +45,20 @@ export type QDropdownMenuProps = QBaseComponentProps & {
45
45
  * Property on each item that contains its title.
46
46
  */
47
47
  itemLabel?: string;
48
+ /**
49
+ * The method to trigger the dropdown submenus.
50
+ */
51
+ trigger?: Trigger;
52
+ /**
53
+ * Depth for recursive nesting
54
+ */
55
+ depth?: number;
48
56
  /**
49
57
  * Custom icon configurations.
50
58
  */
51
59
  icons?: typeof DEFAULT_ICONS;
52
60
  };
53
61
  export type QDropdownMenuContentProps = QDropdownMenuProps & {
54
- /**
55
- * The method to trigger the dropdown menu.
56
- */
57
- trigger?: Trigger;
58
62
  /**
59
63
  * Offset the dropdown menu in the given amount of pixels.
60
64
  */
@@ -63,10 +67,6 @@ export type QDropdownMenuContentProps = QDropdownMenuProps & {
63
67
  * Offset the dropdown menu in the given amount of pixels (opposite to the main axis).
64
68
  */
65
69
  crossOffset?: number;
66
- /**
67
- * Depth for recursive nesting
68
- */
69
- depth?: number;
70
70
  };
71
71
  export declare const DEFAULT_ICONS: {
72
72
  expand: {
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QDropdownMenu/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAA;AAC/E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAChE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AAEtD,OAAO,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AAEjD,MAAM,MAAM,kBAAkB,GAAG,mBAAmB,GAAG;IACtD;;OAEG;IACH,SAAS,CAAC,EAAE,QAAQ,CAAA;IAEpB;;;;OAIG;IACH,UAAU,CAAC,EAAE,UAAU,CAAA;IAEvB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,CAAA;IAErB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAA;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;IAEd;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,EAAE,CAAA;IAEhB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG,kBAAkB,GAAG;IAC5D;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;CACd,CAAA;AAGD,eAAO,MAAM,aAAa;;;;CAIM,CAAA"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QDropdownMenu/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAA;AAC/E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAChE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AAEtD,OAAO,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AAEjD,MAAM,MAAM,kBAAkB,GAAG,mBAAmB,GAAG;IACtD;;OAEG;IACH,SAAS,CAAC,EAAE,QAAQ,CAAA;IAEpB;;;;OAIG;IACH,UAAU,CAAC,EAAE,UAAU,CAAA;IAEvB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,CAAA;IAErB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAA;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;IAEd;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,EAAE,CAAA;IAEhB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG,kBAAkB,GAAG;IAC5D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;CACpB,CAAA;AAGD,eAAO,MAAM,aAAa;;;;CAIM,CAAA"}
@@ -1,6 +1,12 @@
1
1
  import { Group, QListProps } from './types';
2
2
  type __VLS_Props = QListProps;
3
3
  declare function getItem(idx: number): HTMLElement | undefined;
4
+ /**
5
+ * Retrieves the index of the currently active item among the provided array of HTML elements.
6
+ *
7
+ * @returns The index of the currently active item, or -1 if no active item is found.
8
+ */
9
+ declare function getActiveItemIndex(): number;
4
10
  /**
5
11
  * Retrieves the index of the first focusable item among the child elements.
6
12
  *
@@ -126,6 +132,7 @@ declare function __VLS_template(): {
126
132
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
127
133
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
128
134
  getItem: typeof getItem;
135
+ getActiveItemIndex: typeof getActiveItemIndex;
129
136
  getAdjacentItemIndex: typeof getAdjacentItemIndex;
130
137
  getFirstFocusableItemIndex: typeof getFirstFocusableItemIndex;
131
138
  getLastFocusableItemIndex: typeof getLastFocusableItemIndex;
@@ -133,9 +140,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
133
140
  "update:modelValue": (value: any) => any;
134
141
  } & {
135
142
  click: (key: any) => any;
143
+ "mouseenter:item": (key: any) => any;
136
144
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
137
145
  onClick?: ((key: any) => any) | undefined;
138
146
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
147
+ "onMouseenter:item"?: ((key: any) => any) | undefined;
139
148
  }>, {
140
149
  groups: Group[];
141
150
  itemValue: string;
@@ -1 +1 @@
1
- {"version":3,"file":"QList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QList/QList.vue"],"names":[],"mappings":"AA6CA;AAibC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAMhD,KAAK,WAAW,GAAG,UAAU,CAAC;AAoN9B,iBAAS,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,GAAG,SAAS,CAIrD;AAaD;;;;;;GAMG;AACH,iBAAS,0BAA0B,IAAI,MAAM,CAO5C;AAED;;;;;;GAMG;AACH,iBAAS,yBAAyB,IAAI,MAAM,CAO3C;AAmCD;;;;;;;;GAQG;AACH,iBAAS,oBAAoB,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAuB7E;AA4DF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAsIT,OAAO,IAA6B;;yBAdpB,GAAG;;;;YACN,GAAG;;;;YACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCApEb,GAAG,8CAE3B,GAAG,yBACH,GAAG,6DAEF,GAAG;;;;;;;;;;;;;;;;;EAgFL;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA5GK,GAAG,8CAE3B,GAAG,yBACH,GAAG,6DAEF,GAAG;;;;;;;;;;;;;;;OAkHJ,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"QList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QList/QList.vue"],"names":[],"mappings":"AA8CA;AA+bC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAMhD,KAAK,WAAW,GAAG,UAAU,CAAC;AAgO9B,iBAAS,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,GAAG,SAAS,CAIrD;AAED;;;;GAIG;AACH,iBAAS,kBAAkB,IAAI,MAAM,CAIpC;AAED;;;;;;GAMG;AACH,iBAAS,0BAA0B,IAAI,MAAM,CAO5C;AAED;;;;;;GAMG;AACH,iBAAS,yBAAyB,IAAI,MAAM,CAO3C;AAmCD;;;;;;;;GAQG;AACH,iBAAS,oBAAoB,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAuB7E;AA8DF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA0IT,OAAO,IAA6B;;yBAdpB,GAAG;;;;YACN,GAAG;;;;YACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAvFmC,GAAG,8CACvE,GAAG,yBACT,GAAE,6DAAmC,GAAG;;;;;;;;;;;;;;;;;EAsGvC;AAuBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAhIqD,GAAG,8CACvE,GAAG,yBACT,GAAE,6DAAmC,GAAG;;;;;;;;;;;;;;;OAyItC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}