@quidgest/ui 0.21.2 → 0.22.0
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/CHANGELOG.md +6 -0
- package/dist/json/api.json +202 -2
- package/dist/manifest/components.json +1 -0
- package/dist/ui.css +160 -0
- package/dist/ui.esm.js +276 -272
- package/dist/ui.js +178 -174
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +178 -174
- package/dist/ui.scss +126 -1
- package/esm/components/QProgress/QProgress.d.ts +21 -0
- package/esm/components/QProgress/QProgress.d.ts.map +1 -0
- package/esm/components/QProgress/QProgress.vue.js +112 -0
- package/esm/components/QProgress/QProgress2.vue.js +5 -0
- package/esm/components/QProgress/index.d.ts +45 -0
- package/esm/components/QProgress/index.d.ts.map +1 -0
- package/esm/components/QProgress/index.js +6 -0
- package/esm/components/QProgress/types.d.ts +78 -0
- package/esm/components/QProgress/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 +34 -32
- 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.
|
|
2
|
+
* Quidgest UI v0.22.0
|
|
3
3
|
* (c) 2026 Quidgest - Consultores de Gestão, S.A.
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3636,6 +3636,131 @@ $arrow-tip-radius: 0.1rem;
|
|
|
3636
3636
|
font-size: $font-size-base;
|
|
3637
3637
|
}
|
|
3638
3638
|
}
|
|
3639
|
+
$transition-speed: 0.4s !default;
|
|
3640
|
+
@keyframes q-progress-move {
|
|
3641
|
+
from {
|
|
3642
|
+
background-position: 0 0;
|
|
3643
|
+
}
|
|
3644
|
+
to {
|
|
3645
|
+
background-position: 1rem 0;
|
|
3646
|
+
}
|
|
3647
|
+
}
|
|
3648
|
+
@keyframes q-progress-pulse {
|
|
3649
|
+
0% {
|
|
3650
|
+
transform: scale(0, 0);
|
|
3651
|
+
opacity: 0.4;
|
|
3652
|
+
}
|
|
3653
|
+
100% {
|
|
3654
|
+
transform: scale(10, 10);
|
|
3655
|
+
opacity: 0;
|
|
3656
|
+
}
|
|
3657
|
+
}
|
|
3658
|
+
.q-progress {
|
|
3659
|
+
$this: &;
|
|
3660
|
+
--q-progress-main-color: var(--q-theme-primary);
|
|
3661
|
+
--q-progress-main-color-rgb: var(--q-theme-primary-rgb);
|
|
3662
|
+
--q-progress-on-main-color: var(--q-theme-on-primary);
|
|
3663
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-primary-rgb);
|
|
3664
|
+
&__bar {
|
|
3665
|
+
display: flex;
|
|
3666
|
+
overflow: hidden;
|
|
3667
|
+
height: 1.2rem;
|
|
3668
|
+
line-height: 0;
|
|
3669
|
+
font-size: 0.75rem;
|
|
3670
|
+
background-color: var(--q-theme-neutral-light);
|
|
3671
|
+
border-radius: $border-radius;
|
|
3672
|
+
&--mini {
|
|
3673
|
+
height: 0.35rem;
|
|
3674
|
+
font-size: 0;
|
|
3675
|
+
}
|
|
3676
|
+
}
|
|
3677
|
+
&__fill {
|
|
3678
|
+
display: flex;
|
|
3679
|
+
flex-direction: column;
|
|
3680
|
+
justify-content: center;
|
|
3681
|
+
overflow: hidden;
|
|
3682
|
+
position: relative;
|
|
3683
|
+
color: var(--q-progress-on-main-color);
|
|
3684
|
+
text-align: center;
|
|
3685
|
+
white-space: nowrap;
|
|
3686
|
+
background-color: var(--q-progress-main-color);
|
|
3687
|
+
transition: width $transition-speed ease;
|
|
3688
|
+
&-text {
|
|
3689
|
+
position: relative;
|
|
3690
|
+
margin: 0 10%;
|
|
3691
|
+
height: 100%;
|
|
3692
|
+
text-align: center;
|
|
3693
|
+
align-content: center;
|
|
3694
|
+
overflow: hidden;
|
|
3695
|
+
white-space: nowrap;
|
|
3696
|
+
text-overflow: ellipsis;
|
|
3697
|
+
line-height: initial;
|
|
3698
|
+
}
|
|
3699
|
+
&--striped {
|
|
3700
|
+
background-image: linear-gradient(
|
|
3701
|
+
45deg,
|
|
3702
|
+
rgb(255 255 255 / 15%) 25%,
|
|
3703
|
+
transparent 25%,
|
|
3704
|
+
transparent 50%,
|
|
3705
|
+
rgb(255 255 255 / 15%) 50%,
|
|
3706
|
+
rgb(255 255 255 / 15%) 75%,
|
|
3707
|
+
transparent 75%,
|
|
3708
|
+
transparent
|
|
3709
|
+
);
|
|
3710
|
+
background-size: 1rem 1rem;
|
|
3711
|
+
}
|
|
3712
|
+
&--animated {
|
|
3713
|
+
animation: 1s linear infinite q-progress-move;
|
|
3714
|
+
&::before {
|
|
3715
|
+
content: '';
|
|
3716
|
+
position: absolute;
|
|
3717
|
+
left: -100%;
|
|
3718
|
+
width: 100%;
|
|
3719
|
+
height: 100%;
|
|
3720
|
+
background-image: radial-gradient(
|
|
3721
|
+
circle at 100%,
|
|
3722
|
+
var(--q-theme-neutral-dark) 75%,
|
|
3723
|
+
transparent 35%
|
|
3724
|
+
);
|
|
3725
|
+
animation: 5s linear infinite q-progress-pulse;
|
|
3726
|
+
}
|
|
3727
|
+
}
|
|
3728
|
+
}
|
|
3729
|
+
&__values {
|
|
3730
|
+
display: flex;
|
|
3731
|
+
justify-content: space-between;
|
|
3732
|
+
margin-top: 5px;
|
|
3733
|
+
&-min,
|
|
3734
|
+
&-max {
|
|
3735
|
+
position: relative;
|
|
3736
|
+
}
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3739
|
+
@mixin color-variant($color) {
|
|
3740
|
+
&--#{$color} {
|
|
3741
|
+
--q-progress-main-color: var(--q-theme-#{$color});
|
|
3742
|
+
--q-progress-main-color-rgb: var(--q-theme-#{$color}-rgb);
|
|
3743
|
+
--q-progress-on-main-color: var(--q-theme-on-#{$color});
|
|
3744
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-#{$color}-rgb);
|
|
3745
|
+
--q-progress-on-hover-color: var(--q-theme-on-#{$color});
|
|
3746
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-#{$color}-rgb);
|
|
3747
|
+
}
|
|
3748
|
+
}
|
|
3749
|
+
@each $color, $value in $theme-colors {
|
|
3750
|
+
@include color-variant($color);
|
|
3751
|
+
}
|
|
3752
|
+
}
|
|
3753
|
+
@media (prefers-reduced-motion: reduce) {
|
|
3754
|
+
.q-progress__fill {
|
|
3755
|
+
transition: none;
|
|
3756
|
+
&--animated {
|
|
3757
|
+
animation: none;
|
|
3758
|
+
&::before {
|
|
3759
|
+
display: none;
|
|
3760
|
+
}
|
|
3761
|
+
}
|
|
3762
|
+
}
|
|
3763
|
+
}
|
|
3639
3764
|
$table-header-bg: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
3640
3765
|
$row-hover-bg: rgb(var(--q-theme-primary-light-rgb) / 50%);
|
|
3641
3766
|
$row-selected-bg: rgb(var(--q-theme-primary-rgb) / 15%);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { QProgressProps } from '.';
|
|
2
|
+
type __VLS_Props = QProgressProps;
|
|
3
|
+
type __VLS_PublicProps = {
|
|
4
|
+
modelValue?: number;
|
|
5
|
+
} & __VLS_Props;
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (value: number) => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
mini: boolean;
|
|
12
|
+
min: number;
|
|
13
|
+
max: number;
|
|
14
|
+
striped: boolean;
|
|
15
|
+
animated: boolean;
|
|
16
|
+
showLimits: boolean;
|
|
17
|
+
showValue: boolean;
|
|
18
|
+
showPercent: boolean;
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
export default _default;
|
|
21
|
+
//# sourceMappingURL=QProgress.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QProgress.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QProgress/QProgress.vue"],"names":[],"mappings":"AAgDA;AA+MC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,GAAG,CAAA;AAKvC,KAAK,WAAW,GAAG,cAAc,CAAC;AAyJnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;AAyGhB,wBAQG"}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { useColor as e } from "../../composables/useColor/index.js";
|
|
2
|
+
import { useId as t } from "../../composables/useId/index.js";
|
|
3
|
+
import { computed as n, createCommentVNode as r, createElementBlock as i, createElementVNode as a, defineComponent as o, mergeModels as s, mergeProps as c, nextTick as l, normalizeClass as u, normalizeStyle as d, openBlock as f, ref as p, toDisplayString as m, toRef as h, unref as g, useModel as _, watch as v } from "vue";
|
|
4
|
+
//#region src/components/QProgress/QProgress.vue?vue&type=script&setup=true&lang.ts
|
|
5
|
+
var y = ["id"], b = [
|
|
6
|
+
"id",
|
|
7
|
+
"aria-valuenow",
|
|
8
|
+
"aria-valuemin",
|
|
9
|
+
"aria-valuemax",
|
|
10
|
+
"aria-valuetext",
|
|
11
|
+
"aria-labelledby"
|
|
12
|
+
], x = ["title"], S = {
|
|
13
|
+
class: "q-sr-only",
|
|
14
|
+
role: "status",
|
|
15
|
+
"aria-live": "polite",
|
|
16
|
+
"aria-atomic": "true"
|
|
17
|
+
}, C = {
|
|
18
|
+
key: 1,
|
|
19
|
+
class: "q-progress__values"
|
|
20
|
+
}, w = { class: "q-progress__values-min" }, T = { class: "q-progress__values-max" }, E = /*@__PURE__*/ o({
|
|
21
|
+
inheritAttrs: !1,
|
|
22
|
+
__name: "QProgress",
|
|
23
|
+
props: /*@__PURE__*/ s({
|
|
24
|
+
id: {},
|
|
25
|
+
class: {},
|
|
26
|
+
label: {},
|
|
27
|
+
text: {},
|
|
28
|
+
striped: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: !1
|
|
31
|
+
},
|
|
32
|
+
animated: {
|
|
33
|
+
type: Boolean,
|
|
34
|
+
default: !1
|
|
35
|
+
},
|
|
36
|
+
mini: {
|
|
37
|
+
type: Boolean,
|
|
38
|
+
default: !1
|
|
39
|
+
},
|
|
40
|
+
color: {},
|
|
41
|
+
min: { default: 0 },
|
|
42
|
+
max: { default: 100 },
|
|
43
|
+
showLimits: {
|
|
44
|
+
type: Boolean,
|
|
45
|
+
default: !1
|
|
46
|
+
},
|
|
47
|
+
showValue: {
|
|
48
|
+
type: Boolean,
|
|
49
|
+
default: !1
|
|
50
|
+
},
|
|
51
|
+
showPercent: {
|
|
52
|
+
type: Boolean,
|
|
53
|
+
default: !1
|
|
54
|
+
}
|
|
55
|
+
}, {
|
|
56
|
+
modelValue: { default: 0 },
|
|
57
|
+
modelModifiers: {}
|
|
58
|
+
}),
|
|
59
|
+
emits: ["update:modelValue"],
|
|
60
|
+
setup(o) {
|
|
61
|
+
let s = o, E = _(o, "modelValue"), { isUtilityColor: D, style: O } = e(h(s, "color")), k = t(h(s, "id")), A = n(() => Number.isFinite(s.min) ? s.min < s.max ? s.min : s.max : 0), j = n(() => Number.isFinite(s.max) ? s.max > s.min ? s.max : s.min === s.max ? s.max + 1 : s.min : A.value + 1), M = n(() => Number.isNaN(E.value) ? 0 : E.value < A.value ? A.value : E.value > j.value ? j.value : E.value), N = n(() => Number(((M.value - A.value) / (j.value - A.value) * 100).toFixed(2))), P = n(() => ["q-progress", s.class]), F = n(() => [
|
|
62
|
+
"q-progress__bar",
|
|
63
|
+
{ "q-progress__bar--mini": s.mini },
|
|
64
|
+
D.value ? `q-progress--${s.color}` : void 0
|
|
65
|
+
]), I = n(() => ["q-progress__fill", {
|
|
66
|
+
"q-progress__fill--striped": s.striped,
|
|
67
|
+
"q-progress__fill--animated": s.animated && N.value < 100
|
|
68
|
+
}]), L = n(() => ({ width: `${N.value}%` })), R = n(() => {
|
|
69
|
+
if (!D.value) return {
|
|
70
|
+
"--q-progress-main-color": O.value?.mainColor,
|
|
71
|
+
"--q-progress-main-color-rgb": O.value?.mainColorRgb,
|
|
72
|
+
"--q-progress-on-main-color": O.value?.onMainColor
|
|
73
|
+
};
|
|
74
|
+
}), z = n(() => `${s.text ? `${s.text} ` : ""}${M.value} (${N.value}%)`), B = n(() => {
|
|
75
|
+
if (s.mini) return "";
|
|
76
|
+
let e = s.text ?? "";
|
|
77
|
+
return e += s.text && s.showValue ? " " : "", e += s.showValue ? M.value.toString() : "", e += (s.text || s.showValue) && s.showPercent ? " " : "", e += s.showPercent ? N.value.toString() + "%" : "", e;
|
|
78
|
+
}), V = n(() => s.label ? k.value + "_label" : void 0), H = p(""), U = p(0);
|
|
79
|
+
return v(E, async () => {
|
|
80
|
+
let e = N.value;
|
|
81
|
+
e - U.value < 25 && e < 100 || (U.value = e, await l(), H.value = `${s.label ? `${s.label} ` : ""}${N.value}%`);
|
|
82
|
+
}), (e, t) => (f(), i("div", { class: u(P.value) }, [
|
|
83
|
+
s.label ? (f(), i("span", {
|
|
84
|
+
key: 0,
|
|
85
|
+
id: V.value,
|
|
86
|
+
class: u(["q-progress__label", "q-label"])
|
|
87
|
+
}, m(s.label), 9, y)) : r("v-if", !0),
|
|
88
|
+
a("div", c({
|
|
89
|
+
id: g(k),
|
|
90
|
+
class: F.value,
|
|
91
|
+
style: R.value,
|
|
92
|
+
role: "progressbar",
|
|
93
|
+
"aria-valuenow": M.value,
|
|
94
|
+
"aria-valuemin": A.value,
|
|
95
|
+
"aria-valuemax": j.value,
|
|
96
|
+
"aria-valuetext": z.value || void 0,
|
|
97
|
+
"aria-labelledby": V.value
|
|
98
|
+
}, e.$attrs), [a("div", {
|
|
99
|
+
class: u(I.value),
|
|
100
|
+
style: d(L.value)
|
|
101
|
+
}, [B.value ? (f(), i("span", {
|
|
102
|
+
key: 0,
|
|
103
|
+
class: "q-progress__fill-text",
|
|
104
|
+
title: B.value
|
|
105
|
+
}, m(B.value), 9, x)) : r("v-if", !0)], 6)], 16, b),
|
|
106
|
+
a("div", S, m(H.value), 1),
|
|
107
|
+
o.showLimits ? (f(), i("div", C, [a("span", w, m(A.value), 1), a("span", T, m(j.value), 1)])) : r("v-if", !0)
|
|
108
|
+
], 2));
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
//#endregion
|
|
112
|
+
export { E as default };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare const QProgress: import('vue').DefineComponent<{
|
|
2
|
+
modelValue?: number;
|
|
3
|
+
} & import('../../types/component').QBaseComponentProps & {
|
|
4
|
+
label?: string;
|
|
5
|
+
text?: string;
|
|
6
|
+
striped?: boolean;
|
|
7
|
+
animated?: boolean;
|
|
8
|
+
mini?: boolean;
|
|
9
|
+
color?: string;
|
|
10
|
+
min?: number;
|
|
11
|
+
max?: number;
|
|
12
|
+
showLimits?: boolean;
|
|
13
|
+
showValue?: boolean;
|
|
14
|
+
showPercent?: boolean;
|
|
15
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
"update:modelValue": (value: number) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
18
|
+
modelValue?: number;
|
|
19
|
+
} & import('../../types/component').QBaseComponentProps & {
|
|
20
|
+
label?: string;
|
|
21
|
+
text?: string;
|
|
22
|
+
striped?: boolean;
|
|
23
|
+
animated?: boolean;
|
|
24
|
+
mini?: boolean;
|
|
25
|
+
color?: string;
|
|
26
|
+
min?: number;
|
|
27
|
+
max?: number;
|
|
28
|
+
showLimits?: boolean;
|
|
29
|
+
showValue?: boolean;
|
|
30
|
+
showPercent?: boolean;
|
|
31
|
+
}> & Readonly<{
|
|
32
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
33
|
+
}>, {
|
|
34
|
+
mini: boolean;
|
|
35
|
+
min: number;
|
|
36
|
+
max: number;
|
|
37
|
+
striped: boolean;
|
|
38
|
+
animated: boolean;
|
|
39
|
+
showLimits: boolean;
|
|
40
|
+
showValue: boolean;
|
|
41
|
+
showPercent: boolean;
|
|
42
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
43
|
+
export { QProgress };
|
|
44
|
+
export * from './types';
|
|
45
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QProgress/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAA8B,CAAA;AAG7C,OAAO,EAAE,SAAS,EAAE,CAAA;AAGpB,cAAc,SAAS,CAAA"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { QBaseComponentProps } from '../../types/component';
|
|
2
|
+
export type QProgressProps = QBaseComponentProps & {
|
|
3
|
+
/**
|
|
4
|
+
* Text displayed above the progress bar.
|
|
5
|
+
*
|
|
6
|
+
* @category Content
|
|
7
|
+
*/
|
|
8
|
+
label?: string;
|
|
9
|
+
/**
|
|
10
|
+
* Text displayed in the progress bar.
|
|
11
|
+
* Not shown if the 'mini' prop is true.
|
|
12
|
+
*
|
|
13
|
+
* @category Content
|
|
14
|
+
*/
|
|
15
|
+
text?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Whether the progress bar is striped.
|
|
18
|
+
*
|
|
19
|
+
* @category Presentation
|
|
20
|
+
*/
|
|
21
|
+
striped?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Whether the progress bar has an animation.
|
|
24
|
+
*
|
|
25
|
+
* @category Presentation
|
|
26
|
+
*/
|
|
27
|
+
animated?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Whether the progress bar is mini.
|
|
30
|
+
* If true, the values of the 'text', 'showValue', and 'showPercent' props will not be shown.
|
|
31
|
+
*
|
|
32
|
+
* @category Presentation
|
|
33
|
+
*/
|
|
34
|
+
mini?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* The color of the progress bar.
|
|
37
|
+
*
|
|
38
|
+
* @category Presentation
|
|
39
|
+
*/
|
|
40
|
+
color?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Minimum value for the range of the progress bar.
|
|
43
|
+
* If greater than 'max', these values will be swapped.
|
|
44
|
+
* If equal to 'max', 'max' will be max + 1.
|
|
45
|
+
*
|
|
46
|
+
* @category Content
|
|
47
|
+
*/
|
|
48
|
+
min?: number;
|
|
49
|
+
/**
|
|
50
|
+
* Maximum value for the range of the progress bar.
|
|
51
|
+
* If less than 'min', these values will be swapped.
|
|
52
|
+
* If equal to 'min', 'max' will be max + 1.
|
|
53
|
+
*
|
|
54
|
+
* @category Content
|
|
55
|
+
*/
|
|
56
|
+
max?: number;
|
|
57
|
+
/**
|
|
58
|
+
* Whether to display the min and max values.
|
|
59
|
+
*
|
|
60
|
+
* @category Presentation
|
|
61
|
+
*/
|
|
62
|
+
showLimits?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Whether to display the current value in the progress bar.
|
|
65
|
+
* Not shown if the 'mini' prop is true.
|
|
66
|
+
*
|
|
67
|
+
* @category Presentation
|
|
68
|
+
*/
|
|
69
|
+
showValue?: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Whether to display the current percent in the progress bar.
|
|
72
|
+
* Not shown if the 'mini' prop is true.
|
|
73
|
+
*
|
|
74
|
+
* @category Presentation
|
|
75
|
+
*/
|
|
76
|
+
showPercent?: boolean;
|
|
77
|
+
};
|
|
78
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QProgress/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE,MAAM,MAAM,cAAc,GAAG,mBAAmB,GAAG;IAClD;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;;;OAMG;IACH,GAAG,CAAC,EAAE,MAAM,CAAA;IAEZ;;;;;;OAMG;IACH,GAAG,CAAC,EAAE,MAAM,CAAA;IAEZ;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;;;OAKG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;;OAKG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA"}
|
|
@@ -33,6 +33,7 @@ export * from './QOverlay';
|
|
|
33
33
|
export * from './QPasswordField';
|
|
34
34
|
export * from './QPhoneField';
|
|
35
35
|
export * from './QPopover';
|
|
36
|
+
export * from './QProgress';
|
|
36
37
|
export * from './QPropertyList';
|
|
37
38
|
export * from './QRadioGroup';
|
|
38
39
|
export * from './QSection';
|
|
@@ -1 +1 @@
|
|
|
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,qBAAqB,CAAA;AACnC,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,UAAU,CAAA;AACxB,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,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA;AAChC,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,WAAW,CAAA;AACzB,cAAc,SAAS,CAAA;AACvB,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,qBAAqB,CAAA;AACnC,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,UAAU,CAAA;AACxB,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,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA;AAChC,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,WAAW,CAAA;AACzB,cAAc,SAAS,CAAA;AACvB,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
|
@@ -40,19 +40,20 @@ import { QPasswordField as q } from "./QPasswordField/index.js";
|
|
|
40
40
|
import { QPopover as J } from "./QPopover/index.js";
|
|
41
41
|
import { QSelect as Y } from "./QSelect/index.js";
|
|
42
42
|
import { QPhoneField as X } from "./QPhoneField/index.js";
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
43
|
+
import { QProgress as Z } from "./QProgress/index.js";
|
|
44
|
+
import { QPropertyList as Q, QPropertyListGroup as $, QPropertyListPanel as ne, QPropertyListRow as re } from "./QPropertyList/index.js";
|
|
45
|
+
import { QRadioButton as ie, QRadioGroup as ae } from "./QRadioGroup/index.js";
|
|
46
|
+
import { QSection as oe } from "./QSection/index.js";
|
|
47
|
+
import { QToggle as se } from "./QToggle/index.js";
|
|
48
|
+
import { QSidebar as ce, QSidebarItem as le } from "./QSidebar/index.js";
|
|
49
|
+
import { QTab as ue, QTabs as de } from "./QTabs/index.js";
|
|
50
|
+
import { QTextArea as fe } from "./QTextArea/index.js";
|
|
51
|
+
import { QThemeProvider as pe } from "./QThemeProvider/index.js";
|
|
52
|
+
import { QToast as me, QToaster as he } from "./QToast/index.js";
|
|
53
|
+
import { QToggleGroup as ge, QToggleGroupItem as _e } from "./QToggleGroup/index.js";
|
|
54
|
+
import { QTooltip as ve } from "./QTooltip/index.js";
|
|
54
55
|
//#region src/components/index.ts
|
|
55
|
-
var
|
|
56
|
+
var ye = /* @__PURE__ */ ee({
|
|
56
57
|
DEFAULT_TEXTS: () => b,
|
|
57
58
|
QAccordion: () => c,
|
|
58
59
|
QAccordionItem: () => l,
|
|
@@ -98,32 +99,33 @@ var ve = /* @__PURE__ */ ee({
|
|
|
98
99
|
QPasswordField: () => q,
|
|
99
100
|
QPhoneField: () => X,
|
|
100
101
|
QPopover: () => J,
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
102
|
+
QProgress: () => Z,
|
|
103
|
+
QPropertyList: () => Q,
|
|
104
|
+
QPropertyListGroup: () => $,
|
|
105
|
+
QPropertyListPanel: () => ne,
|
|
106
|
+
QPropertyListRow: () => re,
|
|
107
|
+
QRadioButton: () => ie,
|
|
108
|
+
QRadioGroup: () => ae,
|
|
107
109
|
QRow: () => B,
|
|
108
|
-
QSection: () =>
|
|
110
|
+
QSection: () => oe,
|
|
109
111
|
QSelect: () => Y,
|
|
110
|
-
QSidebar: () =>
|
|
111
|
-
QSidebarItem: () =>
|
|
112
|
+
QSidebar: () => ce,
|
|
113
|
+
QSidebarItem: () => le,
|
|
112
114
|
QSkeletonLoader: () => m,
|
|
113
115
|
QSpacer: () => V,
|
|
114
116
|
QSpinnerLoader: () => e,
|
|
115
117
|
QSwitch: () => A,
|
|
116
|
-
QTab: () =>
|
|
117
|
-
QTabs: () =>
|
|
118
|
-
QTextArea: () =>
|
|
118
|
+
QTab: () => ue,
|
|
119
|
+
QTabs: () => de,
|
|
120
|
+
QTextArea: () => fe,
|
|
119
121
|
QTextField: () => x,
|
|
120
|
-
QThemeProvider: () =>
|
|
121
|
-
QToast: () =>
|
|
122
|
-
QToaster: () =>
|
|
123
|
-
QToggle: () =>
|
|
124
|
-
QToggleGroup: () =>
|
|
125
|
-
QToggleGroupItem: () =>
|
|
126
|
-
QTooltip: () =>
|
|
122
|
+
QThemeProvider: () => pe,
|
|
123
|
+
QToast: () => me,
|
|
124
|
+
QToaster: () => he,
|
|
125
|
+
QToggle: () => se,
|
|
126
|
+
QToggleGroup: () => ge,
|
|
127
|
+
QToggleGroupItem: () => _e,
|
|
128
|
+
QTooltip: () => ve
|
|
127
129
|
});
|
|
128
130
|
//#endregion
|
|
129
|
-
export { b as DEFAULT_TEXTS, c as QAccordion, l as QAccordionItem, u as QAvatar, f as QBadge, p as QBadgeIndicator, t as QButton, d as QButtonGroup, n as QCard, h as QCarousel, _ as QCheckbox, v as QCheckboxLabel, z as QCol, s as QCollapsible, S as QColorPicker, k as QCombobox, te as QContainer, j as QDateTimePicker, M as QDefaultsProvider, N as QDialog, P as QDialogProvider, E as QDismissibleLayer, F as QDivider, I as QDropdownMenu, y as QField, L as QFileUpload, D as QFocusWrap, R as QGauge, r as QIcon, i as QIconFont, a as QIconImg, o as QIconSvg, H as QInputGroup, g as QLabel, U as QLineLoader, C as QList, w as QListItem, T as QListItemGroup, W as QMeter, G as QObfuscation, K as QOverflow, O as QOverlay, q as QPasswordField, X as QPhoneField, J as QPopover, Z as
|
|
131
|
+
export { b as DEFAULT_TEXTS, c as QAccordion, l as QAccordionItem, u as QAvatar, f as QBadge, p as QBadgeIndicator, t as QButton, d as QButtonGroup, n as QCard, h as QCarousel, _ as QCheckbox, v as QCheckboxLabel, z as QCol, s as QCollapsible, S as QColorPicker, k as QCombobox, te as QContainer, j as QDateTimePicker, M as QDefaultsProvider, N as QDialog, P as QDialogProvider, E as QDismissibleLayer, F as QDivider, I as QDropdownMenu, y as QField, L as QFileUpload, D as QFocusWrap, R as QGauge, r as QIcon, i as QIconFont, a as QIconImg, o as QIconSvg, H as QInputGroup, g as QLabel, U as QLineLoader, C as QList, w as QListItem, T as QListItemGroup, W as QMeter, G as QObfuscation, K as QOverflow, O as QOverlay, q as QPasswordField, X as QPhoneField, J as QPopover, Z as QProgress, Q as QPropertyList, $ as QPropertyListGroup, ne as QPropertyListPanel, re as QPropertyListRow, ie as QRadioButton, ae as QRadioGroup, B as QRow, oe as QSection, Y as QSelect, ce as QSidebar, le as QSidebarItem, m as QSkeletonLoader, V as QSpacer, e as QSpinnerLoader, A as QSwitch, ue as QTab, de as QTabs, fe as QTextArea, x as QTextField, pe as QThemeProvider, me as QToast, he as QToaster, se as QToggle, ge as QToggleGroup, _e as QToggleGroupItem, ve as QTooltip, ye as components_exports };
|
package/esm/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ declare module '@vue/runtime-core' {
|
|
|
54
54
|
QPasswordField: typeof import('@quidgest/ui/components')['QPasswordField']
|
|
55
55
|
QPhoneField: typeof import('@quidgest/ui/components')['QPhoneField']
|
|
56
56
|
QPopover: typeof import('@quidgest/ui/components')['QPopover']
|
|
57
|
+
QProgress: typeof import('@quidgest/ui/components')['QProgress']
|
|
57
58
|
QPropertyList: typeof import('@quidgest/ui/components')['QPropertyList']
|
|
58
59
|
QPropertyListRow: typeof import('@quidgest/ui/components')['QPropertyListRow']
|
|
59
60
|
QPropertyListGroup: typeof import('@quidgest/ui/components')['QPropertyListGroup']
|