@quidgest/ui 0.14.4 → 0.14.6

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/README.md +4 -4
  2. package/dist/manifest/components.json +3 -0
  3. package/dist/ui.css +294 -19
  4. package/dist/ui.esm.js +1413 -1168
  5. package/dist/ui.js +6 -6
  6. package/dist/ui.min.css +1 -1
  7. package/dist/ui.min.js +198 -184
  8. package/dist/ui.scss +313 -21
  9. package/esm/components/QAccordion/QAccordion.d.ts +26 -0
  10. package/esm/components/QAccordion/QAccordion.d.ts.map +1 -0
  11. package/esm/components/QAccordion/QAccordion.vue.js +27 -0
  12. package/esm/components/QAccordion/QAccordion.vue2.js +4 -0
  13. package/esm/components/QAccordion/index.d.ts +4 -0
  14. package/esm/components/QAccordion/index.d.ts.map +1 -0
  15. package/esm/components/QAccordion/index.js +6 -0
  16. package/esm/components/QAccordion/types.d.ts +7 -0
  17. package/esm/components/QAccordion/types.d.ts.map +1 -0
  18. package/esm/components/QCard/QCard.d.ts +34 -0
  19. package/esm/components/QCard/QCard.d.ts.map +1 -0
  20. package/esm/components/QCard/QCard.vue.js +132 -0
  21. package/esm/components/QCard/QCard.vue2.js +4 -0
  22. package/esm/components/QCard/index.d.ts +6 -0
  23. package/esm/components/QCard/index.d.ts.map +1 -0
  24. package/esm/components/QCard/index.js +6 -0
  25. package/esm/components/QCard/types.d.ts +44 -0
  26. package/esm/components/QCard/types.d.ts.map +1 -0
  27. package/esm/components/QCollapsible/QCollapsible.d.ts +35 -0
  28. package/esm/components/QCollapsible/QCollapsible.d.ts.map +1 -0
  29. package/esm/components/QCollapsible/QCollapsible.vue.js +143 -0
  30. package/esm/components/QCollapsible/QCollapsible.vue2.js +4 -0
  31. package/esm/components/QCollapsible/index.d.ts +6 -0
  32. package/esm/components/QCollapsible/index.d.ts.map +1 -0
  33. package/esm/components/QCollapsible/index.js +6 -0
  34. package/esm/components/QCollapsible/types.d.ts +43 -0
  35. package/esm/components/QCollapsible/types.d.ts.map +1 -0
  36. package/esm/components/QCollapsible/types.js +8 -0
  37. package/esm/components/QCombobox/QCombobox.d.ts +9 -9
  38. package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
  39. package/esm/components/QIcon/QIconFont.d.ts +1 -1
  40. package/esm/components/QSelect/QSelect.d.ts.map +1 -1
  41. package/esm/components/QSkeletonLoader/QSkeletonLoader.d.ts +1 -1
  42. package/esm/components/QTextField/QTextField.d.ts +1 -1
  43. package/esm/components/QTextField/QTextField.d.ts.map +1 -1
  44. package/esm/components/QTooltip/QTooltip.d.ts +1 -1
  45. package/esm/components/index.d.ts +3 -0
  46. package/esm/components/index.d.ts.map +1 -1
  47. package/esm/components/index.js +56 -50
  48. package/esm/composables/group.d.ts +16 -0
  49. package/esm/composables/group.d.ts.map +1 -0
  50. package/esm/composables/group.js +34 -0
  51. package/esm/index.d.ts +3 -0
  52. package/package.json +30 -27
@@ -0,0 +1,132 @@
1
+ import { defineComponent as q, useAttrs as y, computed as d, openBlock as o, createBlock as u, resolveDynamicComponent as C, unref as v, normalizeClass as T, withCtx as D, createElementBlock as l, Fragment as i, createCommentVNode as s, createElementVNode as r, renderSlot as a, createTextVNode as p, toDisplayString as f } from "vue";
2
+ import { QSpinnerLoader as N } from "../QSpinnerLoader/index.js";
3
+ import { useId as g } from "../../composables/uid.js";
4
+ const B = { class: "q-card__header" }, A = {
5
+ key: 0,
6
+ class: "q-card__header-content"
7
+ }, R = { class: "q-card__header-text" }, w = {
8
+ key: 0,
9
+ class: "q-card__title",
10
+ role: "cell"
11
+ }, P = {
12
+ key: 1,
13
+ class: "q-card__subtitle",
14
+ role: "cell"
15
+ }, H = { class: "q-card__content" }, I = {
16
+ key: 0,
17
+ class: "q-card__footer"
18
+ }, V = /* @__PURE__ */ q({
19
+ __name: "QCard",
20
+ props: {
21
+ id: { default: void 0 },
22
+ title: { default: void 0 },
23
+ subtitle: { default: void 0 },
24
+ href: { default: void 0 },
25
+ disabled: { type: Boolean },
26
+ loading: { type: Boolean },
27
+ borderless: { type: Boolean },
28
+ variant: { default: "default" },
29
+ elevation: { default: "none" },
30
+ width: { default: void 0 }
31
+ },
32
+ setup(h) {
33
+ const e = h, $ = y(), m = g(e.id), b = d(() => {
34
+ const t = e.width ? `q-card--${e.width}` : void 0, c = e.variant && e.variant !== "default" ? `q-card--${e.variant}` : void 0, _ = e.elevation && e.elevation !== "none" ? `q-card--elevation-${e.elevation}` : void 0;
35
+ return [
36
+ "q-card",
37
+ t,
38
+ c,
39
+ _,
40
+ {
41
+ "q-card--clickable": E.value,
42
+ "q-card--loading": e.loading,
43
+ "q-card--borderless": e.borderless,
44
+ "q-card--disabled": e.disabled
45
+ }
46
+ ];
47
+ }), E = d(() => !!$.onClick || e.href), n = d(() => e.disabled || e.loading), k = (t) => {
48
+ n.value && t.stopImmediatePropagation();
49
+ };
50
+ return (t, c) => (o(), u(C(e.href ? "a" : "div"), {
51
+ id: v(m),
52
+ class: T([...b.value, t.$attrs.class]),
53
+ href: e.href && !n.value ? e.href : void 0,
54
+ onClick: k
55
+ }, {
56
+ default: D(() => [
57
+ e.loading ? (o(), u(v(N), {
58
+ key: 0,
59
+ size: 36
60
+ })) : (o(), l(
61
+ i,
62
+ { key: 1 },
63
+ [
64
+ s(" HEADER "),
65
+ r("div", B, [
66
+ a(t.$slots, "header", {}, () => [
67
+ s(" HEADER: PREPEND "),
68
+ a(t.$slots, "header.prepend"),
69
+ s(" HEADER CONTENT "),
70
+ t.$slots.title || e.title || t.$slots.subtitle || e.subtitle ? (o(), l("div", A, [
71
+ a(t.$slots, "header.content.prepend"),
72
+ r("div", R, [
73
+ s(" TITLE "),
74
+ t.$slots.title || e.title ? (o(), l("p", w, [
75
+ t.$slots.title ? a(t.$slots, "title", { key: 0 }) : (o(), l(
76
+ i,
77
+ { key: 1 },
78
+ [
79
+ p(
80
+ f(t.$props.title),
81
+ 1
82
+ /* TEXT */
83
+ )
84
+ ],
85
+ 64
86
+ /* STABLE_FRAGMENT */
87
+ ))
88
+ ])) : s("v-if", !0),
89
+ s(" SUBTITLE "),
90
+ t.$slots.subtitle || e.subtitle ? (o(), l("p", P, [
91
+ t.$slots.subtitle ? a(t.$slots, "subtitle", { key: 0 }) : (o(), l(
92
+ i,
93
+ { key: 1 },
94
+ [
95
+ p(
96
+ f(t.$props.subtitle),
97
+ 1
98
+ /* TEXT */
99
+ )
100
+ ],
101
+ 64
102
+ /* STABLE_FRAGMENT */
103
+ ))
104
+ ])) : s("v-if", !0)
105
+ ]),
106
+ a(t.$slots, "header.content.append")
107
+ ])) : s("v-if", !0),
108
+ s(" HEADER: APPEND "),
109
+ a(t.$slots, "header.append")
110
+ ])
111
+ ]),
112
+ s(" CONTENT "),
113
+ r("div", H, [
114
+ a(t.$slots, "default")
115
+ ]),
116
+ s(" FOOTER "),
117
+ t.$slots.footer ? (o(), l("div", I, [
118
+ a(t.$slots, "footer")
119
+ ])) : s("v-if", !0)
120
+ ],
121
+ 64
122
+ /* STABLE_FRAGMENT */
123
+ ))
124
+ ]),
125
+ _: 3
126
+ /* FORWARDED */
127
+ }, 8, ["id", "class", "href"]));
128
+ }
129
+ });
130
+ export {
131
+ V as default
132
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./QCard.vue.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,6 @@
1
+ import { default as _QCard } from './QCard';
2
+ import { QCardProps } from './types';
3
+ declare const QCard: typeof _QCard;
4
+ export { QCard };
5
+ export type { QCardProps };
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCard/index.ts"],"names":[],"mappings":"AACA,OAAO,MAAM,MAAM,aAAa,CAAA;AAGhC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAKzC,QAAA,MAAM,KAAK,EAA8B,OAAO,MAAM,CAAA;AAGtD,OAAO,EAAE,KAAK,EAAE,CAAA;AAGhB,YAAY,EAAE,UAAU,EAAE,CAAA"}
@@ -0,0 +1,6 @@
1
+ import o from "./QCard.vue.js";
2
+ import { setupPropsProxy as r } from "../../utils/setupPropsProxy.js";
3
+ const t = r(o);
4
+ export {
5
+ t as QCard
6
+ };
@@ -0,0 +1,44 @@
1
+ export type QCardWidth = 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'block';
2
+ export type QCardProps = {
3
+ /**
4
+ * The card unique identifier.
5
+ */
6
+ id?: string;
7
+ /**
8
+ * The title of the card.
9
+ */
10
+ title?: string;
11
+ /**
12
+ * The subtitle of the card.
13
+ */
14
+ subtitle?: string;
15
+ /**
16
+ * The card becomes an anchor with the href prop.
17
+ */
18
+ href?: string;
19
+ /**
20
+ * The disabled prop can be added in order to prevent a user from interacting with the card.
21
+ */
22
+ disabled?: boolean;
23
+ /**
24
+ * If true, the card is loading and shows a loader.
25
+ */
26
+ loading?: boolean;
27
+ /**
28
+ * If true, the card has no borders.
29
+ */
30
+ borderless?: boolean;
31
+ /**
32
+ * The styling variant of the card.
33
+ */
34
+ variant?: 'default' | 'background' | 'title-background' | 'minor';
35
+ /**
36
+ * The elevation provides levels of shadow depth.
37
+ */
38
+ elevation?: 'none' | 'low' | 'medium' | 'high';
39
+ /**
40
+ * The width of the card
41
+ */
42
+ width?: QCardWidth;
43
+ };
44
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QCard/types.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,CAAA;AAE5E,MAAM,MAAM,UAAU,GAAG;IACxB;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAA;IAEX;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,YAAY,GAAG,kBAAkB,GAAG,OAAO,CAAA;IAEjE;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAA;IAE9C;;OAEG;IACH,KAAK,CAAC,EAAE,UAAU,CAAA;CAClB,CAAA"}
@@ -0,0 +1,35 @@
1
+ import { QCollapsibleProps, DEFAULT_ICONS } from './types';
2
+ declare let __VLS_typeProps: QCollapsibleProps;
3
+ type __VLS_PublicProps = {
4
+ modelValue?: boolean;
5
+ } & typeof __VLS_typeProps;
6
+ declare function __VLS_template(): {
7
+ slots: {
8
+ icon?(_: {}): any;
9
+ icon?(_: {}): any;
10
+ "title.prepend"?(_: {}): any;
11
+ "title.append"?(_: {}): any;
12
+ subtitle?(_: {}): any;
13
+ default?(_: {}): any;
14
+ };
15
+ refs: {};
16
+ attrs: Partial<{}>;
17
+ };
18
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
+ "update:modelValue": (modelValue: boolean) => any;
21
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
22
+ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
23
+ }>, {
24
+ icons: typeof DEFAULT_ICONS;
25
+ id: string;
26
+ width: "fit-content" | "block";
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
+ export default _default;
30
+ type __VLS_WithTemplateSlots<T, S> = T & {
31
+ new (): {
32
+ $slots: S;
33
+ };
34
+ };
35
+ //# sourceMappingURL=QCollapsible.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QCollapsible.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCollapsible/QCollapsible.vue"],"names":[],"mappings":"AAqJC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAGhD,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAOxC,QAAA,IAAI,eAAe,EAAG,iBAAiB,CAAC;AAmExC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,OAAO,eAAe,CAAC;AAI3B,iBAAS,cAAc;;sBAiHI,GAAG;sBAGH,GAAG;iCAFQ,GAAG;gCACJ,GAAG;0BAET,GAAG;yBACJ,GAAG;;;WASnB,OAAO,IAA6B;EAEjD;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,143 @@
1
+ import { defineComponent as T, mergeModels as w, useModel as I, computed as r, watch as N, openBlock as c, createBlock as $, unref as a, normalizeClass as h, withCtx as d, createElementBlock as p, createVNode as u, createCommentVNode as t, createElementVNode as n, renderSlot as s, mergeProps as m, toDisplayString as f, createTextVNode as B } from "vue";
2
+ import { QCard as E } from "../QCard/index.js";
3
+ import { QButton as V } from "../QButton/index.js";
4
+ import { QIcon as q } from "../QIcon/index.js";
5
+ import { DEFAULT_ICONS as O } from "./types.js";
6
+ import { useGroupItem as R } from "../../composables/group.js";
7
+ import { useId as L } from "../../composables/uid.js";
8
+ const Q = {
9
+ key: 0,
10
+ class: "q-collapsible__header"
11
+ }, S = { class: "q-collapsible__title" }, A = { class: "q-collapsible__title-text" }, H = {
12
+ key: 1,
13
+ class: "q-collapsible--required"
14
+ }, M = {
15
+ key: 0,
16
+ class: "q-collapsible__subtitle"
17
+ }, D = { class: "q-collapsible__content-inner" }, F = { class: "q-collapsible__content" }, W = /* @__PURE__ */ T({
18
+ __name: "QCollapsible",
19
+ props: /* @__PURE__ */ w({
20
+ id: { default: void 0 },
21
+ title: {},
22
+ subtitle: {},
23
+ width: { default: "fit-content" },
24
+ required: { type: Boolean },
25
+ spacing: {},
26
+ variant: {},
27
+ iconRight: { type: Boolean },
28
+ icons: { default: () => O }
29
+ }, {
30
+ modelValue: { type: Boolean },
31
+ modelModifiers: {}
32
+ }),
33
+ emits: ["update:modelValue"],
34
+ setup(v) {
35
+ const l = v, i = I(v, "modelValue"), _ = L(l.id), o = R(_), g = r(() => l.width === "block" ? "block" : void 0), k = r(() => {
36
+ const e = l.spacing && l.spacing !== "comfortable" ? `q-collapsible--${l.spacing}` : void 0, b = l.variant && l.variant !== "default" ? `q-collapsible--${l.variant}` : void 0;
37
+ return [
38
+ "q-collapsible",
39
+ e,
40
+ b,
41
+ {
42
+ "q-collapsible--icon-right": l.iconRight,
43
+ "q-collapsible--expanded": i.value
44
+ }
45
+ ];
46
+ }), y = r(() => [
47
+ "q-collapsible__content-wrapper",
48
+ {
49
+ "q-collapsible__content-show": i.value
50
+ }
51
+ ]), C = () => {
52
+ i.value = !i.value, o == null || o.toggle();
53
+ };
54
+ return N(
55
+ () => o == null ? void 0 : o.isActive.value,
56
+ () => i.value = o == null ? void 0 : o.isActive.value
57
+ ), (e, b) => (c(), $(a(E), {
58
+ id: a(_),
59
+ class: h(k.value),
60
+ width: g.value
61
+ }, {
62
+ header: d(() => [
63
+ e.title ? (c(), p("div", Q, [
64
+ u(a(V), {
65
+ "b-style": "tertiary",
66
+ class: "q-collapsible__btn",
67
+ onClick: C
68
+ }, {
69
+ default: d(() => [
70
+ t(" TITLE "),
71
+ n("div", S, [
72
+ t(" ICON ON THE LEFT "),
73
+ e.iconRight ? t("v-if", !0) : s(e.$slots, "icon", { key: 0 }, () => [
74
+ u(
75
+ a(q),
76
+ m({ class: "q-collapsible__chevron" }, l.icons.chevron),
77
+ null,
78
+ 16
79
+ /* FULL_PROPS */
80
+ )
81
+ ]),
82
+ s(e.$slots, "title.prepend"),
83
+ n(
84
+ "h4",
85
+ A,
86
+ f(e.title),
87
+ 1
88
+ /* TEXT */
89
+ ),
90
+ l.required ? (c(), p("span", H, " * ")) : t("v-if", !0),
91
+ s(e.$slots, "title.append"),
92
+ t(" ICON ON THE RIGHT "),
93
+ e.iconRight ? s(e.$slots, "icon", { key: 2 }, () => [
94
+ u(
95
+ a(q),
96
+ m({ class: "q-collapsible__chevron q-collapsible__chevron-right" }, l.icons.chevron),
97
+ null,
98
+ 16
99
+ /* FULL_PROPS */
100
+ )
101
+ ]) : t("v-if", !0)
102
+ ]),
103
+ t(" SUBTITLE "),
104
+ e.$slots.subtitle || e.subtitle ? (c(), p("div", M, [
105
+ s(e.$slots, "subtitle", {}, () => [
106
+ B(
107
+ f(e.subtitle),
108
+ 1
109
+ /* TEXT */
110
+ )
111
+ ])
112
+ ])) : t("v-if", !0)
113
+ ]),
114
+ _: 3
115
+ /* FORWARDED */
116
+ })
117
+ ])) : t("v-if", !0)
118
+ ]),
119
+ default: d(() => [
120
+ n(
121
+ "div",
122
+ {
123
+ class: h(y.value)
124
+ },
125
+ [
126
+ n("div", D, [
127
+ n("div", F, [
128
+ s(e.$slots, "default")
129
+ ])
130
+ ])
131
+ ],
132
+ 2
133
+ /* CLASS */
134
+ )
135
+ ]),
136
+ _: 3
137
+ /* FORWARDED */
138
+ }, 8, ["id", "class", "width"]));
139
+ }
140
+ });
141
+ export {
142
+ W as default
143
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./QCollapsible.vue.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,6 @@
1
+ import { default as _QCollapsible } from './QCollapsible';
2
+ import { QCollapsibleProps } from './types';
3
+ declare const QCollapsible: typeof _QCollapsible;
4
+ export { QCollapsible };
5
+ export type { QCollapsibleProps };
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCollapsible/index.ts"],"names":[],"mappings":"AACA,OAAO,aAAa,MAAM,oBAAoB,CAAA;AAG9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAKhD,QAAA,MAAM,YAAY,EAAqC,OAAO,aAAa,CAAA;AAG3E,OAAO,EAAE,YAAY,EAAE,CAAA;AAGvB,YAAY,EAAE,iBAAiB,EAAE,CAAA"}
@@ -0,0 +1,6 @@
1
+ import o from "./QCollapsible.vue.js";
2
+ import { setupPropsProxy as r } from "../../utils/setupPropsProxy.js";
3
+ const s = r(o);
4
+ export {
5
+ s as QCollapsible
6
+ };
@@ -0,0 +1,43 @@
1
+ import { Icon } from '../QIcon';
2
+ export type QCollapsibleProps = {
3
+ /**
4
+ * The collapsible unique identifier.
5
+ */
6
+ id?: string;
7
+ /**
8
+ * The title of the collapsible.
9
+ */
10
+ title?: string;
11
+ /**
12
+ * The subtitle of the collapsible
13
+ */
14
+ subtitle?: string;
15
+ /**
16
+ * The width of the container
17
+ */
18
+ width?: 'fit-content' | 'block';
19
+ /**
20
+ * Show an indicator that there are required elements inside the group
21
+ */
22
+ required?: boolean;
23
+ /**
24
+ * Controls the spacing in the collapsible
25
+ */
26
+ spacing?: 'compact' | 'comfortable' | 'loose';
27
+ /**
28
+ * The variant of the collapsible.
29
+ */
30
+ variant?: 'default' | 'border-bottom';
31
+ /**
32
+ * If true, the expand/collapse icon shows on the right
33
+ */
34
+ iconRight?: boolean;
35
+ /**
36
+ * Custom icon configurations.
37
+ */
38
+ icons?: typeof DEFAULT_ICONS;
39
+ };
40
+ type IconKeys = 'chevron';
41
+ export declare const DEFAULT_ICONS: Record<IconKeys, Icon>;
42
+ export {};
43
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QCollapsible/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAA;AAE9C,MAAM,MAAM,iBAAiB,GAAG;IAC/B;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAA;IAEX;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB;;OAEG;IACH,KAAK,CAAC,EAAE,aAAa,GAAG,OAAO,CAAA;IAE/B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,aAAa,GAAG,OAAO,CAAA;IAE7C;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,eAAe,CAAA;IAErC;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAED,KAAK,QAAQ,GAAG,SAAS,CAAA;AAGzB,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,QAAQ,EAAE,IAAI,CAIhD,CAAA"}
@@ -0,0 +1,8 @@
1
+ const o = {
2
+ chevron: {
3
+ icon: "chevron-down"
4
+ }
5
+ };
6
+ export {
7
+ o as DEFAULT_ICONS
8
+ };
@@ -65,8 +65,8 @@ declare function __VLS_template(): {
65
65
  }, string, {
66
66
  size: import('..').QFieldSize;
67
67
  class: string | unknown[];
68
- type: string;
69
68
  label: string;
69
+ type: string;
70
70
  role: string;
71
71
  id: string;
72
72
  placeholder: string;
@@ -94,8 +94,8 @@ declare function __VLS_template(): {
94
94
  } & Readonly<{
95
95
  size: import('..').QFieldSize;
96
96
  class: string | unknown[];
97
- type: string;
98
97
  label: string;
98
+ type: string;
99
99
  role: string;
100
100
  id: string;
101
101
  placeholder: string;
@@ -104,7 +104,7 @@ declare function __VLS_template(): {
104
104
  modelValue?: string;
105
105
  } & import('../QTextField/types').QTextFieldProps> & Readonly<{
106
106
  "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
107
- }>, "fieldRef" | "inputRef" | ("size" | "class" | "type" | "label" | "role" | "id" | "placeholder" | "maxLength")> & import('vue').ShallowUnwrapRef<{
107
+ }>, "fieldRef" | "inputRef" | ("size" | "class" | "label" | "type" | "role" | "id" | "placeholder" | "maxLength")> & import('vue').ShallowUnwrapRef<{
108
108
  fieldRef: import('vue').ComputedRef<HTMLElement | null | undefined>;
109
109
  inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
110
110
  }> & {} & import('vue').ComponentCustomProperties & {} & {
@@ -328,8 +328,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
328
328
  }, string, {
329
329
  size: import('..').QFieldSize;
330
330
  class: string | unknown[];
331
- type: string;
332
331
  label: string;
332
+ type: string;
333
333
  role: string;
334
334
  id: string;
335
335
  placeholder: string;
@@ -357,8 +357,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
357
357
  } & Readonly<{
358
358
  size: import('..').QFieldSize;
359
359
  class: string | unknown[];
360
- type: string;
361
360
  label: string;
361
+ type: string;
362
362
  role: string;
363
363
  id: string;
364
364
  placeholder: string;
@@ -367,7 +367,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
367
367
  modelValue?: string;
368
368
  } & import('../QTextField/types').QTextFieldProps> & Readonly<{
369
369
  "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
370
- }>, "fieldRef" | "inputRef" | ("size" | "class" | "type" | "label" | "role" | "id" | "placeholder" | "maxLength")> & import('vue').ShallowUnwrapRef<{
370
+ }>, "fieldRef" | "inputRef" | ("size" | "class" | "label" | "type" | "role" | "id" | "placeholder" | "maxLength")> & import('vue').ShallowUnwrapRef<{
371
371
  fieldRef: import('vue').ComputedRef<HTMLElement | null | undefined>;
372
372
  inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
373
373
  }> & {} & import('vue').ComponentCustomProperties & {} & {
@@ -422,8 +422,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
422
422
  }, string, {
423
423
  size: import('..').QFieldSize;
424
424
  class: string | unknown[];
425
- type: string;
426
425
  label: string;
426
+ type: string;
427
427
  role: string;
428
428
  id: string;
429
429
  placeholder: string;
@@ -451,8 +451,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
451
451
  } & Readonly<{
452
452
  size: import('..').QFieldSize;
453
453
  class: string | unknown[];
454
- type: string;
455
454
  label: string;
455
+ type: string;
456
456
  role: string;
457
457
  id: string;
458
458
  placeholder: string;
@@ -461,7 +461,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
461
461
  modelValue?: string;
462
462
  } & import('../QTextField/types').QTextFieldProps> & Readonly<{
463
463
  "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
464
- }>, "fieldRef" | "inputRef" | ("size" | "class" | "type" | "label" | "role" | "id" | "placeholder" | "maxLength")> & import('vue').ShallowUnwrapRef<{
464
+ }>, "fieldRef" | "inputRef" | ("size" | "class" | "label" | "type" | "role" | "id" | "placeholder" | "maxLength")> & import('vue').ShallowUnwrapRef<{
465
465
  fieldRef: import('vue').ComputedRef<HTMLElement | null | undefined>;
466
466
  inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
467
467
  }> & {} & import('vue').ComponentCustomProperties & {} & {
@@ -1 +1 @@
1
- {"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"AAwlBC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAC7C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAIlD,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AACtD,OAAO,EAAY,QAAQ,EAAyB,MAAM,KAAK,CAAA;AAIhE,QAAA,IAAI,eAAe,EAAG,cAAc,CAAC;AA4drC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACjB,GAAG,OAAO,eAAe,CAAC;AAM3B,iBAAS,cAAc;;iCAoSe,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACb,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAlZS,GAC/C,8CAIG,GAAG,yBAAyB,GAAG,6DAE7B,GACL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAR+C,GAC/C,8CAIG,GAAG,yBAAyB,GAAG,6DAE7B,GACL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAR+C,GAC/C,8CAIG,GAAG,yBAAyB,GAAG,6DAE7B,GACL;;;;;;;;;;;;;;;;;;;;;;;;;WAuZa,OAAO,IAA6B;EAEjD;AAyCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA3c2B,GAC/C,8CAIG,GAAG,yBAAyB,GAAG,6DAE7B,GACL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAR+C,GAC/C,8CAIG,GAAG,yBAAyB,GAAG,6DAE7B,GACL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAidC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"AAwlBC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAC7C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAIlD,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AACtD,OAAO,EAAY,QAAQ,EAAyB,MAAM,KAAK,CAAA;AAIhE,QAAA,IAAI,eAAe,EAAG,cAAc,CAAC;AA4drC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACjB,GAAG,OAAO,eAAe,CAAC;AAM3B,iBAAS,cAAc;;iCAoSe,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACb,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAlZO,GAAG,8CAK/C,GAAG,yBAAyB,GAAG,6DAE7B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAPuC,GAAG,8CAK/C,GAAG,yBAAyB,GAAG,6DAE7B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAPuC,GAAG,8CAK/C,GAAG,yBAAyB,GAAG,6DAE7B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;WAwZO,OAAO,IAA6B;EAEjD;AAyCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA3cyB,GAAG,8CAK/C,GAAG,yBAAyB,GAAG,6DAE7B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAPuC,GAAG,8CAK/C,GAAG,yBAAyB,GAAG,6DAE7B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAkdL,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,9 +1,9 @@
1
1
  import { QIconFontProps } from './types';
2
2
  declare const _default: import('vue').DefineComponent<QIconFontProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QIconFontProps> & Readonly<{}>, {
3
3
  size: number;
4
+ variant: string;
4
5
  class: string | unknown[];
5
6
  library: string;
6
- variant: string;
7
7
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
8
8
  export default _default;
9
9
  //# sourceMappingURL=QIconFont.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"QSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/QSelect.vue"],"names":[],"mappings":"AAmVC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAC3C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAIlD,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AACtD,OAAO,EAAY,QAAQ,EAAc,MAAM,KAAK,CAAA;AAIrD,QAAA,IAAI,eAAe,EAAG,YAAY,CAAC;AAkNnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,OAAO,eAAe,CAAC;AAI3B,iBAAS,cAAc;;yBA6QO,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACb,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAhCF,GAAG,8CACR,GAAG,yBAAyB,GAAG,6DAE/D,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAHmC,GAAG,8CACR,GAAG,yBAAyB,GAAG,6DAE/D,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;WAyCY,OAAO,IAA6B;EAEjD;AAqCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;6EAanB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"QSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/QSelect.vue"],"names":[],"mappings":"AAmVC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAC3C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAIlD,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AACtD,OAAO,EAAY,QAAQ,EAAc,MAAM,KAAK,CAAA;AAIrD,QAAA,IAAI,eAAe,EAAG,YAAY,CAAC;AAkNnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,OAAO,eAAe,CAAC;AAI3B,iBAAS,cAAc;;yBA6QO,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACb,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAhCJ,GAAG,8CACR,GAAG,yBAAyB,GAAG,6DAC7D,GACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAHmC,GAAG,8CACR,GAAG,yBAAyB,GAAG,6DAC7D,GACA;;;;;;;;;;;;;;;;;;;;;;;;;WAyCc,OAAO,IAA6B;EAEjD;AAqCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;6EAanB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,8 +1,8 @@
1
1
  import { QSkeletonLoaderProps } from './types';
2
2
  declare const _default: import('vue').DefineComponent<QSkeletonLoaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QSkeletonLoaderProps> & Readonly<{}>, {
3
3
  type: "text" | "icon";
4
- height: string | number;
5
4
  width: string | number;
5
+ height: string | number;
6
6
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
7
  export default _default;
8
8
  //# sourceMappingURL=QSkeletonLoader.vue.d.ts.map
@@ -101,8 +101,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
101
101
  }>, {
102
102
  size: import('../QField').QFieldSize;
103
103
  class: string | unknown[];
104
- type: string;
105
104
  label: string;
105
+ type: string;
106
106
  role: string;
107
107
  id: string;
108
108
  placeholder: string;
@@ -1 +1 @@
1
- {"version":3,"file":"QTextField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/QTextField.vue"],"names":[],"mappings":"AAgGC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAQ/C,QAAA,IAAI,eAAe,EAAG,eAAe,CAAC;AAqDtC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,OAAO,eAAe,CAAC;AAI3B,iBAAS,cAAc;;iCA2Ec,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACH,GAAG;wBACH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA+DiqhB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;WApDzyhB,OAAO,IAA6B;EAEjD;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;6EASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"QTextField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/QTextField.vue"],"names":[],"mappings":"AAgGC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAQ/C,QAAA,IAAI,eAAe,EAAG,eAAe,CAAC;AAqDtC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,OAAO,eAAe,CAAC;AAI3B,iBAAS,cAAc;;iCA2Ec,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACH,GAAG;wBACH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA+D+phB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;WApDvyhB,OAAO,IAA6B;EAEjD;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;6EASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -22,8 +22,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
22
22
  "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
23
23
  }>, {
24
24
  class: string | unknown[];
25
- anchor: import('../../utils/getElement').Selector;
26
25
  html: boolean;
26
+ anchor: import('../../utils/getElement').Selector;
27
27
  icon: import('../QIcon').Icon;
28
28
  id: string;
29
29
  appearance: import('../../composables/overlay').Appearance;
@@ -1,8 +1,11 @@
1
+ export * from './QAccordion';
1
2
  export * from './QBadge';
2
3
  export * from './QButton';
3
4
  export * from './QButtonGroup';
4
5
  export * from './QButtonToggle';
6
+ export * from './QCard';
5
7
  export * from './QCheckbox';
8
+ export * from './QCollapsible';
6
9
  export * from './QCombobox';
7
10
  export * from './QDialog';
8
11
  export * from './QField';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,eAAe,CAAA;AAC7B,cAAc,SAAS,CAAA;AACvB,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,YAAY,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,eAAe,CAAA;AAC7B,cAAc,SAAS,CAAA;AACvB,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,YAAY,CAAA"}