@quidgest/ui 0.16.19 → 0.16.20
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 +1 -0
- package/dist/ui.css +49 -10
- package/dist/ui.esm.js +1497 -1465
- package/dist/ui.js +9 -9
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +695 -692
- package/dist/ui.scss +53 -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/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +100 -98
- package/esm/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest UI v0.16.
|
|
2
|
+
* Quidgest UI v0.16.20
|
|
3
3
|
* (c) 2025 Quidgest - Consultores de Gestão, S.A.
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -235,10 +235,11 @@ $shadow-md: (
|
|
|
235
235
|
0 4px 6px -1px rgb(0 0 0 / 10%),
|
|
236
236
|
0 2px 4px -2px rgb(0 0 0 / 10%)
|
|
237
237
|
);
|
|
238
|
-
$breakpoint-
|
|
239
|
-
$breakpoint-
|
|
240
|
-
$breakpoint-
|
|
241
|
-
$breakpoint-
|
|
238
|
+
$breakpoint-sm: 576px;
|
|
239
|
+
$breakpoint-md: 768px;
|
|
240
|
+
$breakpoint-lg: 992px;
|
|
241
|
+
$breakpoint-xl: 1200px;
|
|
242
|
+
$breakpoint-xxl: 1400px;
|
|
242
243
|
$font-size-base: 0.9rem !default;
|
|
243
244
|
$line-height-base: 1.5 !default;
|
|
244
245
|
$font-weight-thin: 100;
|
|
@@ -446,6 +447,43 @@ $transition-duration: 0.2s !default;
|
|
|
446
447
|
gap: $space-base;
|
|
447
448
|
height: fit-content;
|
|
448
449
|
}
|
|
450
|
+
.q-avatar {
|
|
451
|
+
--q-avatar-size: 48px;
|
|
452
|
+
display: flex;
|
|
453
|
+
align-items: center;
|
|
454
|
+
justify-content: center;
|
|
455
|
+
overflow: hidden;
|
|
456
|
+
box-sizing: border-box;
|
|
457
|
+
font-size: 1rem;
|
|
458
|
+
width: var(--q-avatar-size);
|
|
459
|
+
height: var(--q-avatar-size);
|
|
460
|
+
border-radius: 50%;
|
|
461
|
+
background-color: var(--q-avatar-color, var(--q-theme-neutral-light));
|
|
462
|
+
color: var(--q-avatar-text-color);
|
|
463
|
+
&-img {
|
|
464
|
+
display: block;
|
|
465
|
+
width: 100%;
|
|
466
|
+
height: 100%;
|
|
467
|
+
object-fit: cover;
|
|
468
|
+
}
|
|
469
|
+
&-initials {
|
|
470
|
+
font-size: 1em;
|
|
471
|
+
font-weight: bold;
|
|
472
|
+
text-align: center;
|
|
473
|
+
user-select: none;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
&--small {
|
|
477
|
+
--q-avatar-size: 32px;
|
|
478
|
+
}
|
|
479
|
+
&--large {
|
|
480
|
+
--q-avatar-size: 64px;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
&--square {
|
|
484
|
+
border-radius: 0;
|
|
485
|
+
}
|
|
486
|
+
}
|
|
449
487
|
.q-badge {
|
|
450
488
|
$this: &;
|
|
451
489
|
display: inline-flex;
|
|
@@ -1586,27 +1624,27 @@ $transition-duration: 0.2s !default;
|
|
|
1586
1624
|
.q-container--fluid {
|
|
1587
1625
|
max-width: 100%;
|
|
1588
1626
|
}
|
|
1589
|
-
@media (width
|
|
1627
|
+
@media (min-width: $breakpoint-sm) {
|
|
1590
1628
|
.q-container:not(.q-container--fluid) {
|
|
1591
1629
|
max-width: 540px;
|
|
1592
1630
|
}
|
|
1593
1631
|
}
|
|
1594
|
-
@media (width
|
|
1632
|
+
@media (min-width: $breakpoint-md) {
|
|
1595
1633
|
.q-container:not(.q-container--fluid) {
|
|
1596
1634
|
max-width: 720px;
|
|
1597
1635
|
}
|
|
1598
1636
|
}
|
|
1599
|
-
@media (width
|
|
1637
|
+
@media (min-width: $breakpoint-lg) {
|
|
1600
1638
|
.q-container:not(.q-container--fluid) {
|
|
1601
1639
|
max-width: 960px;
|
|
1602
1640
|
}
|
|
1603
1641
|
}
|
|
1604
|
-
@media (width
|
|
1642
|
+
@media (min-width: $breakpoint-xl) {
|
|
1605
1643
|
.q-container:not(.q-container--fluid) {
|
|
1606
1644
|
max-width: 1140px;
|
|
1607
1645
|
}
|
|
1608
1646
|
}
|
|
1609
|
-
@media (width
|
|
1647
|
+
@media (min-width: $breakpoint-xxl) {
|
|
1610
1648
|
.q-container:not(.q-container--fluid) {
|
|
1611
1649
|
max-width: 1320px;
|
|
1612
1650
|
}
|
|
@@ -1676,19 +1714,19 @@ $transition-duration: 0.2s !default;
|
|
|
1676
1714
|
}
|
|
1677
1715
|
}
|
|
1678
1716
|
@include generate-cols;
|
|
1679
|
-
@media (width
|
|
1717
|
+
@media (min-width: $breakpoint-sm) {
|
|
1680
1718
|
@include generate-cols('-sm');
|
|
1681
1719
|
}
|
|
1682
|
-
@media (width
|
|
1720
|
+
@media (min-width: $breakpoint-md) {
|
|
1683
1721
|
@include generate-cols('-md');
|
|
1684
1722
|
}
|
|
1685
|
-
@media (width
|
|
1723
|
+
@media (min-width: $breakpoint-lg) {
|
|
1686
1724
|
@include generate-cols('-lg');
|
|
1687
1725
|
}
|
|
1688
|
-
@media (width
|
|
1726
|
+
@media (min-width: $breakpoint-xl) {
|
|
1689
1727
|
@include generate-cols('-xl');
|
|
1690
1728
|
}
|
|
1691
|
-
@media (width
|
|
1729
|
+
@media (min-width: $breakpoint-xxl) {
|
|
1692
1730
|
@include generate-cols('-xxl');
|
|
1693
1731
|
}
|
|
1694
1732
|
.q-spacer {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { QAvatarProps } from './types';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
fallback?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: HTMLDivElement;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<QAvatarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QAvatarProps> & Readonly<{}>, {
|
|
12
|
+
size: "small" | "medium" | "large" | string;
|
|
13
|
+
alt: string;
|
|
14
|
+
shape: "circle" | "square";
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=QAvatar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QAvatar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QAvatar/QAvatar.vue"],"names":[],"mappings":"AAmBA;AAwEC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AA+C5C,iBAAS,cAAc;WAwCT,OAAO,IAA6B;;0BAVpB,GAAG;;;;EAehC;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;wFAQnB,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"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { defineComponent as p, computed as t, toRef as v, createElementBlock as r, openBlock as i, normalizeStyle as d, normalizeClass as f, renderSlot as q, toDisplayString as y } from "vue";
|
|
2
|
+
import { useColor as z } from "../../composables/useColor/index.js";
|
|
3
|
+
const C = ["src", "alt"], h = {
|
|
4
|
+
key: 1,
|
|
5
|
+
class: "q-avatar-initials"
|
|
6
|
+
}, S = /* @__PURE__ */ p({
|
|
7
|
+
__name: "QAvatar",
|
|
8
|
+
props: {
|
|
9
|
+
src: {},
|
|
10
|
+
alt: { default: "Avatar" },
|
|
11
|
+
size: { default: "medium" },
|
|
12
|
+
shape: { default: "circle" },
|
|
13
|
+
initials: {},
|
|
14
|
+
color: {}
|
|
15
|
+
},
|
|
16
|
+
setup(n) {
|
|
17
|
+
const e = n, c = t(() => ["small", "large"].includes(e.size) ? `q-avatar--${e.size}` : ""), u = t(() => e.shape === "circle" ? void 0 : "q-avatar--square"), { style: s } = z(v(e, "color")), m = t(() => {
|
|
18
|
+
var l, o;
|
|
19
|
+
const a = {};
|
|
20
|
+
return ["small", "medium", "large"].includes(e.size) || (a["--q-avatar-size"] = e.size), s.value && (a["--q-avatar-color"] = (l = s.value) == null ? void 0 : l.mainColor, a["--q-avatar-text-color"] = (o = s.value) == null ? void 0 : o.onMainColor), a;
|
|
21
|
+
});
|
|
22
|
+
return (a, l) => (i(), r(
|
|
23
|
+
"div",
|
|
24
|
+
{
|
|
25
|
+
class: f(["q-avatar", c.value, u.value]),
|
|
26
|
+
style: d(m.value)
|
|
27
|
+
},
|
|
28
|
+
[
|
|
29
|
+
a.src ? (i(), r("img", {
|
|
30
|
+
key: 0,
|
|
31
|
+
src: a.src,
|
|
32
|
+
alt: a.alt,
|
|
33
|
+
class: "q-avatar-img"
|
|
34
|
+
}, null, 8, C)) : a.initials ? (i(), r(
|
|
35
|
+
"span",
|
|
36
|
+
h,
|
|
37
|
+
y(a.initials.slice(0, 2).toUpperCase()),
|
|
38
|
+
1
|
|
39
|
+
/* TEXT */
|
|
40
|
+
)) : q(a.$slots, "fallback", { key: 2 })
|
|
41
|
+
],
|
|
42
|
+
6
|
|
43
|
+
/* CLASS, STYLE */
|
|
44
|
+
));
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
export {
|
|
48
|
+
S as default
|
|
49
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const QAvatar: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').QAvatarProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
3
|
+
size: "small" | "medium" | "large" | string;
|
|
4
|
+
alt: string;
|
|
5
|
+
shape: "circle" | "square";
|
|
6
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
7
|
+
P: {};
|
|
8
|
+
B: {};
|
|
9
|
+
D: {};
|
|
10
|
+
C: {};
|
|
11
|
+
M: {};
|
|
12
|
+
Defaults: {};
|
|
13
|
+
}, Readonly<import('./types').QAvatarProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
14
|
+
size: "small" | "medium" | "large" | string;
|
|
15
|
+
alt: string;
|
|
16
|
+
shape: "circle" | "square";
|
|
17
|
+
}>;
|
|
18
|
+
__isFragment?: never;
|
|
19
|
+
__isTeleport?: never;
|
|
20
|
+
__isSuspense?: never;
|
|
21
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./types').QAvatarProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
22
|
+
size: "small" | "medium" | "large" | string;
|
|
23
|
+
alt: string;
|
|
24
|
+
shape: "circle" | "square";
|
|
25
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
26
|
+
$slots: {
|
|
27
|
+
fallback?(_: {}): any;
|
|
28
|
+
};
|
|
29
|
+
});
|
|
30
|
+
export { QAvatar };
|
|
31
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QAvatar/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA4B,CAAA;AAGzC,OAAO,EAAE,OAAO,EAAE,CAAA"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Props for the QAvatar component.
|
|
3
|
+
*/
|
|
4
|
+
export type QAvatarProps = {
|
|
5
|
+
/**
|
|
6
|
+
* URL of the avatar image.
|
|
7
|
+
*/
|
|
8
|
+
src?: string;
|
|
9
|
+
/**
|
|
10
|
+
* Alt text for the image.
|
|
11
|
+
*/
|
|
12
|
+
alt?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Predefined sizes ('small', 'medium', 'large') or a custom size as a string.
|
|
15
|
+
*/
|
|
16
|
+
size?: 'small' | 'medium' | 'large' | string;
|
|
17
|
+
/**
|
|
18
|
+
* Shape of the avatar, either 'circle' or 'square'.
|
|
19
|
+
*/
|
|
20
|
+
shape?: 'circle' | 'square';
|
|
21
|
+
/**
|
|
22
|
+
* Initials to display if no image is provided.
|
|
23
|
+
*/
|
|
24
|
+
initials?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Background color for initials or fallback.
|
|
27
|
+
*/
|
|
28
|
+
color?: string;
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QAvatar/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IAC1B;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAA;IAE5C;;OAEG;IACH,KAAK,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAA;IAE3B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;CACd,CAAA"}
|
|
@@ -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,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,105 @@
|
|
|
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 { QCheckbox as u, QCheckboxLabel as g } from "./QCheckbox/index.js";
|
|
9
|
+
import { QCollapsible as P } from "./QCollapsible/index.js";
|
|
10
|
+
import { QColorPicker as b } from "./QColorPicker/index.js";
|
|
11
|
+
import { QCombobox as v } from "./QCombobox/index.js";
|
|
12
|
+
import { QDateTimePicker as S } from "./QDateTimePicker/index.js";
|
|
13
|
+
import { QDialog as D, QDialogProvider as F } from "./QDialog/index.js";
|
|
14
|
+
import { QDismissibleLayer as w } from "./QDismissibleLayer/index.js";
|
|
15
|
+
import { QDivider as h } from "./QDivider/index.js";
|
|
16
|
+
import { QDropdownMenu as R } from "./QDropdownMenu/index.js";
|
|
17
|
+
import { QField as O } from "./QField/index.js";
|
|
18
|
+
import { QFileUpload as j } from "./QFileUpload/index.js";
|
|
19
|
+
import { QFocusTrap as z } from "./QFocusTrap/index.js";
|
|
20
|
+
import { QCol as H, QContainer as J, QRow as K, QSpacer as N } from "./QGrid/index.js";
|
|
21
|
+
import { QIcon as W, QIconFont as X, QIconImg as Y, QIconSvg as Z } from "./QIcon/index.js";
|
|
22
|
+
import { QInputGroup as $ } from "./QInputGroup/index.js";
|
|
23
|
+
import { QLabel as ro } from "./QLabel/index.js";
|
|
24
|
+
import { QLineLoader as to } from "./QLineLoader/index.js";
|
|
25
|
+
import { QList as Qo, QListItem as mo, QListItemGroup as xo } from "./QList/index.js";
|
|
26
|
+
import { QMeter as io } from "./QMeter/index.js";
|
|
27
|
+
import { QOverlay as lo } from "./QOverlay/index.js";
|
|
28
|
+
import { QPasswordField as co } from "./QPasswordField/index.js";
|
|
29
|
+
import { QPopover as Lo } from "./QPopover/index.js";
|
|
30
|
+
import { QPropertyList as go, QPropertyListGroup as Io, QPropertyListPanel as Po, QPropertyListRow as To } from "./QPropertyList/index.js";
|
|
31
|
+
import { QRadioButton as Co, QRadioGroup as vo } from "./QRadioGroup/index.js";
|
|
32
|
+
import { QSelect as So } from "./QSelect/index.js";
|
|
33
|
+
import { QSidebar as Do } from "./QSidebar/index.js";
|
|
34
|
+
import { QSkeletonLoader as ko } from "./QSkeletonLoader/index.js";
|
|
35
|
+
import { QSpinnerLoader as Bo } from "./QSpinnerLoader/index.js";
|
|
36
|
+
import { QSwitch as Ao } from "./QSwitch/index.js";
|
|
37
|
+
import { QTextArea as Mo } from "./QTextArea/index.js";
|
|
38
|
+
import { QTextField as Uo } from "./QTextField/index.js";
|
|
39
|
+
import { QThemeProvider as qo } from "./QThemeProvider/index.js";
|
|
40
|
+
import { QToast as Eo, QToaster as Ho } from "./QToast/index.js";
|
|
41
|
+
import { QToggle as Ko } from "./QToggle/index.js";
|
|
42
|
+
import { QToggleGroup as Vo, QToggleGroupItem as Wo } from "./QToggleGroup/index.js";
|
|
43
|
+
import { QTooltip as Yo } from "./QTooltip/index.js";
|
|
43
44
|
export {
|
|
44
45
|
e as QAccordion,
|
|
45
46
|
t as QAccordionItem,
|
|
46
|
-
Q as
|
|
47
|
-
x as
|
|
48
|
-
i as
|
|
49
|
-
l as
|
|
50
|
-
n as
|
|
51
|
-
s as
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
P as
|
|
56
|
-
b as
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
F as
|
|
62
|
-
w as
|
|
63
|
-
h as
|
|
64
|
-
|
|
65
|
-
O as
|
|
66
|
-
j as
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
Z as
|
|
72
|
-
$ as
|
|
73
|
-
ro as
|
|
74
|
-
to as
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
xo as
|
|
78
|
-
io as
|
|
79
|
-
lo as
|
|
80
|
-
co as
|
|
81
|
-
Lo as
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
To as
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
Do as
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
Bo as
|
|
94
|
-
|
|
95
|
-
Mo as
|
|
96
|
-
Uo as
|
|
97
|
-
qo as
|
|
98
|
-
|
|
99
|
-
Ho as
|
|
100
|
-
Ko as
|
|
101
|
-
|
|
102
|
-
Wo as
|
|
47
|
+
Q as QAvatar,
|
|
48
|
+
x as QBadge,
|
|
49
|
+
i as QBadgeIndicator,
|
|
50
|
+
l as QButton,
|
|
51
|
+
n as QButtonGroup,
|
|
52
|
+
s as QCard,
|
|
53
|
+
u as QCheckbox,
|
|
54
|
+
g as QCheckboxLabel,
|
|
55
|
+
H as QCol,
|
|
56
|
+
P as QCollapsible,
|
|
57
|
+
b as QColorPicker,
|
|
58
|
+
v as QCombobox,
|
|
59
|
+
J as QContainer,
|
|
60
|
+
S as QDateTimePicker,
|
|
61
|
+
D as QDialog,
|
|
62
|
+
F as QDialogProvider,
|
|
63
|
+
w as QDismissibleLayer,
|
|
64
|
+
h as QDivider,
|
|
65
|
+
R as QDropdownMenu,
|
|
66
|
+
O as QField,
|
|
67
|
+
j as QFileUpload,
|
|
68
|
+
z as QFocusTrap,
|
|
69
|
+
W as QIcon,
|
|
70
|
+
X as QIconFont,
|
|
71
|
+
Y as QIconImg,
|
|
72
|
+
Z as QIconSvg,
|
|
73
|
+
$ as QInputGroup,
|
|
74
|
+
ro as QLabel,
|
|
75
|
+
to as QLineLoader,
|
|
76
|
+
Qo as QList,
|
|
77
|
+
mo as QListItem,
|
|
78
|
+
xo as QListItemGroup,
|
|
79
|
+
io as QMeter,
|
|
80
|
+
lo as QOverlay,
|
|
81
|
+
co as QPasswordField,
|
|
82
|
+
Lo as QPopover,
|
|
83
|
+
go as QPropertyList,
|
|
84
|
+
Io as QPropertyListGroup,
|
|
85
|
+
Po as QPropertyListPanel,
|
|
86
|
+
To as QPropertyListRow,
|
|
87
|
+
Co as QRadioButton,
|
|
88
|
+
vo as QRadioGroup,
|
|
89
|
+
K as QRow,
|
|
90
|
+
So as QSelect,
|
|
91
|
+
Do as QSidebar,
|
|
92
|
+
ko as QSkeletonLoader,
|
|
93
|
+
N as QSpacer,
|
|
94
|
+
Bo as QSpinnerLoader,
|
|
95
|
+
Ao as QSwitch,
|
|
96
|
+
Mo as QTextArea,
|
|
97
|
+
Uo as QTextField,
|
|
98
|
+
qo as QThemeProvider,
|
|
99
|
+
Eo as QToast,
|
|
100
|
+
Ho as QToaster,
|
|
101
|
+
Ko as QToggle,
|
|
102
|
+
Vo as QToggleGroup,
|
|
103
|
+
Wo as QToggleGroupItem,
|
|
104
|
+
Yo as QTooltip
|
|
103
105
|
};
|
package/esm/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ 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']
|