@quidgest/ui 0.16.19 → 0.16.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/manifest/components.json +2 -0
- package/dist/ui.css +289 -10
- package/dist/ui.esm.js +5132 -4825
- package/dist/ui.js +19 -19
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +718 -692
- package/dist/ui.scss +264 -15
- package/esm/components/QAvatar/QAvatar.d.ts +23 -0
- package/esm/components/QAvatar/QAvatar.d.ts.map +1 -0
- package/esm/components/QAvatar/QAvatar.vue.js +49 -0
- package/esm/components/QAvatar/QAvatar.vue2.js +4 -0
- package/esm/components/QAvatar/index.d.ts +31 -0
- package/esm/components/QAvatar/index.d.ts.map +1 -0
- package/esm/components/QAvatar/index.js +6 -0
- package/esm/components/QAvatar/types.d.ts +30 -0
- package/esm/components/QAvatar/types.d.ts.map +1 -0
- package/esm/components/QCarousel/QCarousel.d.ts +44 -0
- package/esm/components/QCarousel/QCarousel.d.ts.map +1 -0
- package/esm/components/QCarousel/QCarousel.vue.js +355 -0
- package/esm/components/QCarousel/QCarousel.vue2.js +4 -0
- package/esm/components/QCarousel/constants.d.ts +14 -0
- package/esm/components/QCarousel/constants.d.ts.map +1 -0
- package/esm/components/QCarousel/constants.js +16 -0
- package/esm/components/QCarousel/index.d.ts +119 -0
- package/esm/components/QCarousel/index.d.ts.map +1 -0
- package/esm/components/QCarousel/index.js +6 -0
- package/esm/components/QCarousel/types.d.ts +79 -0
- package/esm/components/QCarousel/types.d.ts.map +1 -0
- package/esm/components/QCombobox/QCombobox.d.ts +4 -4
- package/esm/components/QCombobox/index.d.ts +10 -10
- package/esm/components/QGrid/QRow.d.ts +1 -1
- package/esm/components/QGrid/index.d.ts +3 -3
- package/esm/components/QSelect/QSelect.d.ts +4 -4
- package/esm/components/QSelect/index.d.ts +10 -10
- package/esm/components/QTextArea/QTextArea.d.ts +1 -1
- package/esm/components/QTextArea/index.d.ts +3 -3
- package/esm/components/index.d.ts +2 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +102 -98
- package/esm/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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: {
|
|
@@ -944,10 +944,10 @@ declare const QCombobox: {
|
|
|
944
944
|
texts?: typeof import('./types').DEFAULT_TEXTS;
|
|
945
945
|
}> & Readonly<{
|
|
946
946
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
947
|
+
onHide?: (() => any) | undefined;
|
|
948
|
+
onShow?: (() => any) | undefined;
|
|
947
949
|
"onBefore-show"?: (() => any) | undefined;
|
|
948
950
|
"onBefore-hide"?: (() => any) | undefined;
|
|
949
|
-
onShow?: (() => any) | undefined;
|
|
950
|
-
onHide?: (() => any) | undefined;
|
|
951
951
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
952
952
|
"onUpdate:search"?: ((value: string) => any) | undefined;
|
|
953
953
|
}>, {
|
|
@@ -1370,10 +1370,10 @@ declare const QCombobox: {
|
|
|
1370
1370
|
texts?: typeof import('./types').DEFAULT_TEXTS;
|
|
1371
1371
|
}> & Readonly<{
|
|
1372
1372
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1373
|
+
onHide?: (() => any) | undefined;
|
|
1374
|
+
onShow?: (() => any) | undefined;
|
|
1373
1375
|
"onBefore-show"?: (() => any) | undefined;
|
|
1374
1376
|
"onBefore-hide"?: (() => any) | undefined;
|
|
1375
|
-
onShow?: (() => any) | undefined;
|
|
1376
|
-
onHide?: (() => any) | undefined;
|
|
1377
1377
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
1378
1378
|
"onUpdate:search"?: ((value: string) => any) | undefined;
|
|
1379
1379
|
}>, {
|
|
@@ -1765,10 +1765,10 @@ declare const QCombobox: {
|
|
|
1765
1765
|
"update:open": (value: boolean) => any;
|
|
1766
1766
|
"update:search": (value: string) => any;
|
|
1767
1767
|
} & {
|
|
1768
|
+
hide: () => any;
|
|
1769
|
+
show: () => any;
|
|
1768
1770
|
"before-show": () => any;
|
|
1769
1771
|
"before-hide": () => any;
|
|
1770
|
-
show: () => any;
|
|
1771
|
-
hide: () => any;
|
|
1772
1772
|
}, string, {
|
|
1773
1773
|
icons: typeof import('./types').DEFAULT_ICONS;
|
|
1774
1774
|
texts: {
|
|
@@ -9,8 +9,8 @@ declare function __VLS_template(): {
|
|
|
9
9
|
};
|
|
10
10
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
11
|
declare const __VLS_component: import('vue').DefineComponent<QRowProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QRowProps> & Readonly<{}>, {
|
|
12
|
-
gutter: number;
|
|
13
12
|
justify: "start" | "center" | "end" | "between" | "around" | "evenly";
|
|
13
|
+
gutter: number;
|
|
14
14
|
align: "start" | "center" | "end" | "baseline" | "stretch";
|
|
15
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
16
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -34,8 +34,8 @@ declare const QContainer: {
|
|
|
34
34
|
});
|
|
35
35
|
declare const QRow: {
|
|
36
36
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').QRowProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
37
|
-
gutter: number;
|
|
38
37
|
justify: "start" | "center" | "end" | "between" | "around" | "evenly";
|
|
38
|
+
gutter: number;
|
|
39
39
|
align: "start" | "center" | "end" | "baseline" | "stretch";
|
|
40
40
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
41
41
|
P: {};
|
|
@@ -45,16 +45,16 @@ declare const QRow: {
|
|
|
45
45
|
M: {};
|
|
46
46
|
Defaults: {};
|
|
47
47
|
}, Readonly<import('./types').QRowProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
48
|
-
gutter: number;
|
|
49
48
|
justify: "start" | "center" | "end" | "between" | "around" | "evenly";
|
|
49
|
+
gutter: number;
|
|
50
50
|
align: "start" | "center" | "end" | "baseline" | "stretch";
|
|
51
51
|
}>;
|
|
52
52
|
__isFragment?: never;
|
|
53
53
|
__isTeleport?: never;
|
|
54
54
|
__isSuspense?: never;
|
|
55
55
|
} & import('vue').ComponentOptionsBase<Readonly<import('./types').QRowProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
56
|
-
gutter: number;
|
|
57
56
|
justify: "start" | "center" | "end" | "between" | "around" | "evenly";
|
|
57
|
+
gutter: number;
|
|
58
58
|
align: "start" | "center" | "end" | "baseline" | "stretch";
|
|
59
59
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
60
60
|
$slots: {
|
|
@@ -295,16 +295,16 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
295
295
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
296
296
|
"update:modelValue": (value: any) => any;
|
|
297
297
|
} & {
|
|
298
|
+
hide: () => any;
|
|
299
|
+
show: () => any;
|
|
298
300
|
"before-show": () => any;
|
|
299
301
|
"before-hide": () => any;
|
|
300
|
-
show: () => any;
|
|
301
|
-
hide: () => any;
|
|
302
302
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
303
303
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
304
|
+
onHide?: (() => any) | undefined;
|
|
305
|
+
onShow?: (() => any) | undefined;
|
|
304
306
|
"onBefore-show"?: (() => any) | undefined;
|
|
305
307
|
"onBefore-hide"?: (() => any) | undefined;
|
|
306
|
-
onShow?: (() => any) | undefined;
|
|
307
|
-
onHide?: (() => any) | undefined;
|
|
308
308
|
}>, {
|
|
309
309
|
icons: typeof DEFAULT_ICONS;
|
|
310
310
|
texts: typeof DEFAULT_TEXTS;
|
|
@@ -24,17 +24,17 @@ declare const QSelect: {
|
|
|
24
24
|
texts?: typeof import('./types').DEFAULT_TEXTS;
|
|
25
25
|
}> & Readonly<{
|
|
26
26
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
27
|
+
onHide?: (() => any) | undefined;
|
|
28
|
+
onShow?: (() => any) | undefined;
|
|
27
29
|
"onBefore-show"?: (() => any) | undefined;
|
|
28
30
|
"onBefore-hide"?: (() => any) | undefined;
|
|
29
|
-
onShow?: (() => any) | undefined;
|
|
30
|
-
onHide?: (() => any) | undefined;
|
|
31
31
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
32
32
|
"update:modelValue": (value: any) => any;
|
|
33
33
|
} & {
|
|
34
|
+
hide: () => any;
|
|
35
|
+
show: () => any;
|
|
34
36
|
"before-show": () => any;
|
|
35
37
|
"before-hide": () => any;
|
|
36
|
-
show: () => any;
|
|
37
|
-
hide: () => any;
|
|
38
38
|
}, import('vue').PublicProps, {
|
|
39
39
|
icons: typeof import('./types').DEFAULT_ICONS;
|
|
40
40
|
texts: typeof import('./types').DEFAULT_TEXTS;
|
|
@@ -345,10 +345,10 @@ declare const QSelect: {
|
|
|
345
345
|
texts?: typeof import('./types').DEFAULT_TEXTS;
|
|
346
346
|
}> & Readonly<{
|
|
347
347
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
348
|
+
onHide?: (() => any) | undefined;
|
|
349
|
+
onShow?: (() => any) | undefined;
|
|
348
350
|
"onBefore-show"?: (() => any) | undefined;
|
|
349
351
|
"onBefore-hide"?: (() => any) | undefined;
|
|
350
|
-
onShow?: (() => any) | undefined;
|
|
351
|
-
onHide?: (() => any) | undefined;
|
|
352
352
|
}>, {}, {}, {}, {}, {
|
|
353
353
|
icons: typeof import('./types').DEFAULT_ICONS;
|
|
354
354
|
texts: typeof import('./types').DEFAULT_TEXTS;
|
|
@@ -384,17 +384,17 @@ declare const QSelect: {
|
|
|
384
384
|
texts?: typeof import('./types').DEFAULT_TEXTS;
|
|
385
385
|
}> & Readonly<{
|
|
386
386
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
387
|
+
onHide?: (() => any) | undefined;
|
|
388
|
+
onShow?: (() => any) | undefined;
|
|
387
389
|
"onBefore-show"?: (() => any) | undefined;
|
|
388
390
|
"onBefore-hide"?: (() => any) | undefined;
|
|
389
|
-
onShow?: (() => any) | undefined;
|
|
390
|
-
onHide?: (() => any) | undefined;
|
|
391
391
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
392
392
|
"update:modelValue": (value: any) => any;
|
|
393
393
|
} & {
|
|
394
|
+
hide: () => any;
|
|
395
|
+
show: () => any;
|
|
394
396
|
"before-show": () => any;
|
|
395
397
|
"before-hide": () => any;
|
|
396
|
-
show: () => any;
|
|
397
|
-
hide: () => any;
|
|
398
398
|
}, string, {
|
|
399
399
|
icons: typeof import('./types').DEFAULT_ICONS;
|
|
400
400
|
texts: typeof import('./types').DEFAULT_TEXTS;
|
|
@@ -23,9 +23,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
23
23
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
24
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
|
+
wrap: "soft" | "hard" | "off";
|
|
26
27
|
resize: "none" | "both" | "horizontal" | "vertical";
|
|
27
28
|
rows: number;
|
|
28
|
-
wrap: "soft" | "hard" | "off";
|
|
29
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
30
30
|
textareaRef: HTMLTextAreaElement;
|
|
31
31
|
}, any>;
|
|
@@ -24,9 +24,9 @@ declare const QTextArea: {
|
|
|
24
24
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
25
|
"update:modelValue": (value: string) => any;
|
|
26
26
|
}, import('vue').PublicProps, {
|
|
27
|
+
wrap: "soft" | "hard" | "off";
|
|
27
28
|
resize: "none" | "both" | "horizontal" | "vertical";
|
|
28
29
|
rows: number;
|
|
29
|
-
wrap: "soft" | "hard" | "off";
|
|
30
30
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
31
31
|
textareaRef: HTMLTextAreaElement;
|
|
32
32
|
}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -59,9 +59,9 @@ declare const QTextArea: {
|
|
|
59
59
|
}> & Readonly<{
|
|
60
60
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
61
61
|
}>, {}, {}, {}, {}, {
|
|
62
|
+
wrap: "soft" | "hard" | "off";
|
|
62
63
|
resize: "none" | "both" | "horizontal" | "vertical";
|
|
63
64
|
rows: number;
|
|
64
|
-
wrap: "soft" | "hard" | "off";
|
|
65
65
|
}>;
|
|
66
66
|
__isFragment?: never;
|
|
67
67
|
__isTeleport?: never;
|
|
@@ -91,9 +91,9 @@ declare const QTextArea: {
|
|
|
91
91
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
92
92
|
"update:modelValue": (value: string) => any;
|
|
93
93
|
}, string, {
|
|
94
|
+
wrap: "soft" | "hard" | "off";
|
|
94
95
|
resize: "none" | "both" | "horizontal" | "vertical";
|
|
95
96
|
rows: number;
|
|
96
|
-
wrap: "soft" | "hard" | "off";
|
|
97
97
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
98
98
|
$slots: {
|
|
99
99
|
'label.prepend'?(_: {}): any;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from './QAccordion';
|
|
2
|
+
export * from './QAvatar';
|
|
2
3
|
export * from './QBadge';
|
|
3
4
|
export * from './QBadgeIndicator';
|
|
4
5
|
export * from './QButton';
|
|
5
6
|
export * from './QButtonGroup';
|
|
6
7
|
export * from './QCard';
|
|
8
|
+
export * from './QCarousel';
|
|
7
9
|
export * from './QCheckbox';
|
|
8
10
|
export * from './QCollapsible';
|
|
9
11
|
export * from './QColorPicker';
|
|
@@ -1 +1 @@
|
|
|
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,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,qBAAqB,CAAA;AACnC,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,cAAc,CAAA;AAC5B,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA;AAChC,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,qBAAqB,CAAA;AACnC,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,cAAc,CAAA;AAC5B,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA;AAChC,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA"}
|
package/esm/components/index.js
CHANGED
|
@@ -1,103 +1,107 @@
|
|
|
1
1
|
import { QAccordion as e, QAccordionItem as t } from "./QAccordion/index.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
2
|
+
import { QAvatar as Q } from "./QAvatar/index.js";
|
|
3
|
+
import { QBadge as x } from "./QBadge/index.js";
|
|
4
|
+
import { QBadgeIndicator as i } from "./QBadgeIndicator/index.js";
|
|
5
|
+
import { QButton as l } from "./QButton/index.js";
|
|
6
|
+
import { QButtonGroup as n } from "./QButtonGroup/index.js";
|
|
7
|
+
import { QCard as s } from "./QCard/index.js";
|
|
8
|
+
import { QCarousel as L } from "./QCarousel/index.js";
|
|
9
|
+
import { QCheckbox as I, QCheckboxLabel as P } from "./QCheckbox/index.js";
|
|
10
|
+
import { QCollapsible as b } from "./QCollapsible/index.js";
|
|
11
|
+
import { QColorPicker as v } from "./QColorPicker/index.js";
|
|
12
|
+
import { QCombobox as S } from "./QCombobox/index.js";
|
|
13
|
+
import { QDateTimePicker as D } from "./QDateTimePicker/index.js";
|
|
14
|
+
import { QDialog as k, QDialogProvider as w } from "./QDialog/index.js";
|
|
15
|
+
import { QDismissibleLayer as h } from "./QDismissibleLayer/index.js";
|
|
16
|
+
import { QDivider as R } from "./QDivider/index.js";
|
|
17
|
+
import { QDropdownMenu as O } from "./QDropdownMenu/index.js";
|
|
18
|
+
import { QField as j } from "./QField/index.js";
|
|
19
|
+
import { QFileUpload as z } from "./QFileUpload/index.js";
|
|
20
|
+
import { QFocusTrap as H } from "./QFocusTrap/index.js";
|
|
21
|
+
import { QCol as K, QContainer as N, QRow as V, QSpacer as W } from "./QGrid/index.js";
|
|
22
|
+
import { QIcon as Y, QIconFont as Z, QIconImg as _, QIconSvg as $ } from "./QIcon/index.js";
|
|
23
|
+
import { QInputGroup as ro } from "./QInputGroup/index.js";
|
|
24
|
+
import { QLabel as to } from "./QLabel/index.js";
|
|
25
|
+
import { QLineLoader as Qo } from "./QLineLoader/index.js";
|
|
26
|
+
import { QList as xo, QListItem as fo, QListItemGroup as io } from "./QList/index.js";
|
|
27
|
+
import { QMeter as lo } from "./QMeter/index.js";
|
|
28
|
+
import { QOverlay as co } from "./QOverlay/index.js";
|
|
29
|
+
import { QPasswordField as uo } from "./QPasswordField/index.js";
|
|
30
|
+
import { QPopover as go } from "./QPopover/index.js";
|
|
31
|
+
import { QPropertyList as Po, QPropertyListGroup as To, QPropertyListPanel as bo, QPropertyListRow as Co } from "./QPropertyList/index.js";
|
|
32
|
+
import { QRadioButton as Go, QRadioGroup as So } from "./QRadioGroup/index.js";
|
|
33
|
+
import { QSelect as Do } from "./QSelect/index.js";
|
|
34
|
+
import { QSidebar as ko } from "./QSidebar/index.js";
|
|
35
|
+
import { QSkeletonLoader as Bo } from "./QSkeletonLoader/index.js";
|
|
36
|
+
import { QSpinnerLoader as Ao } from "./QSpinnerLoader/index.js";
|
|
37
|
+
import { QSwitch as Mo } from "./QSwitch/index.js";
|
|
38
|
+
import { QTextArea as Uo } from "./QTextArea/index.js";
|
|
39
|
+
import { QTextField as qo } from "./QTextField/index.js";
|
|
40
|
+
import { QThemeProvider as Eo } from "./QThemeProvider/index.js";
|
|
41
|
+
import { QToast as Jo, QToaster as Ko } from "./QToast/index.js";
|
|
42
|
+
import { QToggle as Vo } from "./QToggle/index.js";
|
|
43
|
+
import { QToggleGroup as Xo, QToggleGroupItem as Yo } from "./QToggleGroup/index.js";
|
|
44
|
+
import { QTooltip as _o } from "./QTooltip/index.js";
|
|
43
45
|
export {
|
|
44
46
|
e as QAccordion,
|
|
45
47
|
t as QAccordionItem,
|
|
46
|
-
Q as
|
|
47
|
-
x as
|
|
48
|
-
i as
|
|
49
|
-
l as
|
|
50
|
-
n as
|
|
51
|
-
s as
|
|
52
|
-
L as
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
b as
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
w as
|
|
63
|
-
h as
|
|
64
|
-
|
|
65
|
-
O as
|
|
66
|
-
j as
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
$ as
|
|
73
|
-
ro as
|
|
74
|
-
to as
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
io as
|
|
79
|
-
lo as
|
|
80
|
-
co as
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
Do as
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
Mo as
|
|
96
|
-
Uo as
|
|
97
|
-
qo as
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
Ko as
|
|
101
|
-
|
|
102
|
-
|
|
48
|
+
Q as QAvatar,
|
|
49
|
+
x as QBadge,
|
|
50
|
+
i as QBadgeIndicator,
|
|
51
|
+
l as QButton,
|
|
52
|
+
n as QButtonGroup,
|
|
53
|
+
s as QCard,
|
|
54
|
+
L as QCarousel,
|
|
55
|
+
I as QCheckbox,
|
|
56
|
+
P as QCheckboxLabel,
|
|
57
|
+
K as QCol,
|
|
58
|
+
b as QCollapsible,
|
|
59
|
+
v as QColorPicker,
|
|
60
|
+
S as QCombobox,
|
|
61
|
+
N as QContainer,
|
|
62
|
+
D as QDateTimePicker,
|
|
63
|
+
k as QDialog,
|
|
64
|
+
w as QDialogProvider,
|
|
65
|
+
h as QDismissibleLayer,
|
|
66
|
+
R as QDivider,
|
|
67
|
+
O as QDropdownMenu,
|
|
68
|
+
j as QField,
|
|
69
|
+
z as QFileUpload,
|
|
70
|
+
H as QFocusTrap,
|
|
71
|
+
Y as QIcon,
|
|
72
|
+
Z as QIconFont,
|
|
73
|
+
_ as QIconImg,
|
|
74
|
+
$ as QIconSvg,
|
|
75
|
+
ro as QInputGroup,
|
|
76
|
+
to as QLabel,
|
|
77
|
+
Qo as QLineLoader,
|
|
78
|
+
xo as QList,
|
|
79
|
+
fo as QListItem,
|
|
80
|
+
io as QListItemGroup,
|
|
81
|
+
lo as QMeter,
|
|
82
|
+
co as QOverlay,
|
|
83
|
+
uo as QPasswordField,
|
|
84
|
+
go as QPopover,
|
|
85
|
+
Po as QPropertyList,
|
|
86
|
+
To as QPropertyListGroup,
|
|
87
|
+
bo as QPropertyListPanel,
|
|
88
|
+
Co as QPropertyListRow,
|
|
89
|
+
Go as QRadioButton,
|
|
90
|
+
So as QRadioGroup,
|
|
91
|
+
V as QRow,
|
|
92
|
+
Do as QSelect,
|
|
93
|
+
ko as QSidebar,
|
|
94
|
+
Bo as QSkeletonLoader,
|
|
95
|
+
W as QSpacer,
|
|
96
|
+
Ao as QSpinnerLoader,
|
|
97
|
+
Mo as QSwitch,
|
|
98
|
+
Uo as QTextArea,
|
|
99
|
+
qo as QTextField,
|
|
100
|
+
Eo as QThemeProvider,
|
|
101
|
+
Jo as QToast,
|
|
102
|
+
Ko as QToaster,
|
|
103
|
+
Vo as QToggle,
|
|
104
|
+
Xo as QToggleGroup,
|
|
105
|
+
Yo as QToggleGroupItem,
|
|
106
|
+
_o as QTooltip
|
|
103
107
|
};
|
package/esm/index.d.ts
CHANGED
|
@@ -9,11 +9,13 @@ declare module '@vue/runtime-core' {
|
|
|
9
9
|
export interface GlobalComponents {
|
|
10
10
|
QAccordion: typeof import('@quidgest/ui/components')['QAccordion']
|
|
11
11
|
QAccordionItem: typeof import('@quidgest/ui/components')['QAccordionItem']
|
|
12
|
+
QAvatar: typeof import('@quidgest/ui/components')['QAvatar']
|
|
12
13
|
QBadge: typeof import('@quidgest/ui/components')['QBadge']
|
|
13
14
|
QBadgeIndicator: typeof import('@quidgest/ui/components')['QBadgeIndicator']
|
|
14
15
|
QButton: typeof import('@quidgest/ui/components')['QButton']
|
|
15
16
|
QButtonGroup: typeof import('@quidgest/ui/components')['QButtonGroup']
|
|
16
17
|
QCard: typeof import('@quidgest/ui/components')['QCard']
|
|
18
|
+
QCarousel: typeof import('@quidgest/ui/components')['QCarousel']
|
|
17
19
|
QCheckbox: typeof import('@quidgest/ui/components')['QCheckbox']
|
|
18
20
|
QCheckboxLabel: typeof import('@quidgest/ui/components')['QCheckboxLabel']
|
|
19
21
|
QCollapsible: typeof import('@quidgest/ui/components')['QCollapsible']
|