@quidgest/ui 0.14.21 → 0.14.23
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 +110 -5
- package/dist/ui.esm.js +3449 -3286
- package/dist/ui.js +9 -9
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +714 -702
- package/dist/ui.scss +118 -8
- package/esm/components/QColorPicker/QColorPicker.vue.js +1 -1
- package/esm/components/QCombobox/QCombobox.d.ts +28 -8
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.vue.js +31 -30
- package/esm/components/QCombobox/index.d.ts +49 -14
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +1 -1
- package/esm/components/QDateTimePicker/index.d.ts +3 -0
- package/esm/components/QDateTimePicker/index.d.ts.map +1 -1
- package/esm/components/QField/QField.d.ts.map +1 -1
- package/esm/components/QField/QField.vue.js +11 -10
- package/esm/components/QFileUpload/QFileUpload.vue.js +1 -1
- package/esm/components/QFileUpload/index.d.ts +3 -0
- package/esm/components/QFileUpload/index.d.ts.map +1 -1
- package/esm/components/QInputGroup/QInputGroup.vue.js +1 -1
- package/esm/components/QLabel/QLabel.d.ts +1 -0
- package/esm/components/QLabel/QLabel.d.ts.map +1 -1
- package/esm/components/QLabel/QLabel.vue.js +28 -13
- package/esm/components/QLabel/index.d.ts +1 -0
- package/esm/components/QLabel/index.d.ts.map +1 -1
- package/esm/components/QLabel/types.d.ts +5 -0
- package/esm/components/QLabel/types.d.ts.map +1 -1
- package/esm/components/QMeter/QMeter.vue.js +14 -13
- package/esm/components/QMeter/index.d.ts +2 -0
- package/esm/components/QMeter/index.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.d.ts +14 -4
- package/esm/components/QPasswordField/QPasswordField.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.vue.js +22 -21
- package/esm/components/QPasswordField/index.d.ts +7 -2
- package/esm/components/QPasswordField/index.d.ts.map +1 -1
- package/esm/components/QRadioGroup/QRadioButton.d.ts +24 -0
- package/esm/components/QRadioGroup/QRadioButton.d.ts.map +1 -0
- package/esm/components/QRadioGroup/QRadioButton.vue.js +78 -0
- package/esm/components/QRadioGroup/QRadioButton.vue2.js +4 -0
- package/esm/components/QRadioGroup/QRadioGroup.d.ts +32 -0
- package/esm/components/QRadioGroup/QRadioGroup.d.ts.map +1 -0
- package/esm/components/QRadioGroup/QRadioGroup.vue.js +79 -0
- package/esm/components/QRadioGroup/QRadioGroup.vue2.js +4 -0
- package/esm/components/QRadioGroup/index.d.ts +108 -0
- package/esm/components/QRadioGroup/index.d.ts.map +1 -0
- package/esm/components/QRadioGroup/index.js +8 -0
- package/esm/components/QRadioGroup/types.d.ts +65 -0
- package/esm/components/QRadioGroup/types.d.ts.map +1 -0
- package/esm/components/QSelect/QSelect.d.ts +2 -2
- package/esm/components/QSelect/QSelect.vue.js +1 -1
- package/esm/components/QSelect/index.d.ts +4 -1
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.vue.js +34 -31
- package/esm/components/QTextArea/index.d.ts +3 -0
- package/esm/components/QTextArea/index.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.d.ts +2 -2
- package/esm/components/QTextField/QTextField.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.vue.js +49 -39
- package/esm/components/QTextField/index.d.ts +7 -1
- package/esm/components/QTextField/index.d.ts.map +1 -1
- package/esm/components/QTextField/types.d.ts +5 -0
- package/esm/components/QTextField/types.d.ts.map +1 -1
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +34 -31
- package/esm/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { QField as
|
|
3
|
-
import { QClearButton as
|
|
4
|
-
import { useId as
|
|
5
|
-
const
|
|
1
|
+
import { defineComponent as C, mergeModels as y, useModel as R, computed as n, watch as V, ref as b, createBlock as h, openBlock as v, unref as r, normalizeClass as z, createSlots as M, withCtx as a, withDirectives as w, createElementVNode as L, mergeProps as Q, vModelDynamic as D, renderSlot as o, createCommentVNode as F } from "vue";
|
|
2
|
+
import { QField as N } from "../QField/index.js";
|
|
3
|
+
import { QClearButton as S } from "../__internal__/QClearButton/index.js";
|
|
4
|
+
import { useId as _ } from "../../composables/uid.js";
|
|
5
|
+
const A = ["id", "type", "maxlength", "required", "placeholder", "readonly", "disabled"], U = /* @__PURE__ */ C({
|
|
6
6
|
inheritAttrs: !1,
|
|
7
7
|
__name: "QTextField",
|
|
8
|
-
props: /* @__PURE__ */
|
|
8
|
+
props: /* @__PURE__ */ y({
|
|
9
9
|
id: {},
|
|
10
10
|
class: {},
|
|
11
11
|
label: {},
|
|
12
12
|
for: {},
|
|
13
|
+
required: { type: Boolean },
|
|
13
14
|
size: {},
|
|
14
15
|
readonly: { type: Boolean },
|
|
15
16
|
disabled: { type: Boolean },
|
|
16
|
-
required: { type: Boolean },
|
|
17
17
|
invalid: { type: Boolean },
|
|
18
18
|
placeholder: {},
|
|
19
|
+
maxLength: {},
|
|
19
20
|
clearable: { type: Boolean },
|
|
20
21
|
type: { default: "text" },
|
|
21
22
|
texts: {}
|
|
@@ -23,52 +24,61 @@ const _ = ["id", "type", "required", "placeholder", "readonly", "disabled"], T =
|
|
|
23
24
|
modelValue: {},
|
|
24
25
|
modelModifiers: {}
|
|
25
26
|
}),
|
|
26
|
-
emits: /* @__PURE__ */
|
|
27
|
-
setup(
|
|
28
|
-
const e =
|
|
27
|
+
emits: /* @__PURE__ */ y(["click:clear"], ["update:modelValue"]),
|
|
28
|
+
setup(i, { expose: x, emit: k }) {
|
|
29
|
+
const e = i, q = k, t = R(i, "modelValue"), s = n({
|
|
30
|
+
get: () => t.value,
|
|
31
|
+
set: (l) => {
|
|
32
|
+
const d = e.maxLength;
|
|
33
|
+
t.value = d ? l == null ? void 0 : l.slice(0, d) : l;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
V(t, (l) => s.value = l, { immediate: !0 });
|
|
37
|
+
const p = _(e.id), u = b(null), f = b(null), g = n(
|
|
29
38
|
() => e.readonly || e.disabled ? void 0 : e.placeholder
|
|
30
|
-
),
|
|
31
|
-
function
|
|
32
|
-
|
|
39
|
+
), m = n(() => e.clearable && !e.readonly && !e.disabled), c = n(() => m.value && t.value);
|
|
40
|
+
function B(l) {
|
|
41
|
+
m.value && (t.value = "", q("click:clear", l));
|
|
33
42
|
}
|
|
34
|
-
return
|
|
35
|
-
fieldRef:
|
|
43
|
+
return x({
|
|
44
|
+
fieldRef: n(() => {
|
|
36
45
|
var l;
|
|
37
|
-
return (l =
|
|
46
|
+
return (l = u.value) == null ? void 0 : l.fieldRef;
|
|
38
47
|
}),
|
|
39
|
-
inputRef:
|
|
40
|
-
}), (l,
|
|
48
|
+
inputRef: f
|
|
49
|
+
}), (l, d) => (v(), h(r(N), {
|
|
41
50
|
ref_key: "fieldRef",
|
|
42
|
-
ref:
|
|
43
|
-
class:
|
|
44
|
-
for: r(
|
|
51
|
+
ref: u,
|
|
52
|
+
class: z(["q-text-field", e.class]),
|
|
53
|
+
for: r(p),
|
|
45
54
|
label: e.label,
|
|
46
55
|
size: e.size,
|
|
47
56
|
readonly: e.readonly,
|
|
48
57
|
disabled: e.disabled,
|
|
49
58
|
required: e.required,
|
|
50
59
|
invalid: e.invalid
|
|
51
|
-
},
|
|
60
|
+
}, M({
|
|
52
61
|
"label.prepend": a(() => [
|
|
53
|
-
|
|
62
|
+
o(l.$slots, "label.prepend")
|
|
54
63
|
]),
|
|
55
64
|
"label.append": a(() => [
|
|
56
|
-
|
|
65
|
+
o(l.$slots, "label.append")
|
|
57
66
|
]),
|
|
58
67
|
default: a(() => [
|
|
59
|
-
|
|
60
|
-
id: r(
|
|
68
|
+
w(L("input", Q({
|
|
69
|
+
id: r(p),
|
|
61
70
|
ref_key: "inputRef",
|
|
62
|
-
ref:
|
|
63
|
-
"onUpdate:modelValue":
|
|
71
|
+
ref: f,
|
|
72
|
+
"onUpdate:modelValue": d[0] || (d[0] = ($) => s.value = $),
|
|
64
73
|
class: "q-text-field__input",
|
|
65
74
|
type: e.type,
|
|
75
|
+
maxlength: e.maxLength,
|
|
66
76
|
required: e.required,
|
|
67
|
-
placeholder:
|
|
77
|
+
placeholder: g.value,
|
|
68
78
|
readonly: e.readonly,
|
|
69
79
|
disabled: e.disabled
|
|
70
|
-
}, l.$attrs), null, 16,
|
|
71
|
-
[
|
|
80
|
+
}, l.$attrs), null, 16, A), [
|
|
81
|
+
[D, s.value]
|
|
72
82
|
])
|
|
73
83
|
]),
|
|
74
84
|
_: 2
|
|
@@ -77,27 +87,27 @@ const _ = ["id", "type", "required", "placeholder", "readonly", "disabled"], T =
|
|
|
77
87
|
l.$slots.prepend ? {
|
|
78
88
|
name: "prepend",
|
|
79
89
|
fn: a(() => [
|
|
80
|
-
|
|
90
|
+
o(l.$slots, "prepend")
|
|
81
91
|
]),
|
|
82
92
|
key: "0"
|
|
83
93
|
} : void 0,
|
|
84
|
-
l.$slots.append ||
|
|
94
|
+
l.$slots.append || c.value ? {
|
|
85
95
|
name: "append",
|
|
86
96
|
fn: a(() => [
|
|
87
|
-
|
|
88
|
-
|
|
97
|
+
o(l.$slots, "append"),
|
|
98
|
+
c.value ? (v(), h(r(S), {
|
|
89
99
|
key: 0,
|
|
90
100
|
"data-testid": "q-text-field__clear-button",
|
|
91
101
|
texts: e.texts,
|
|
92
|
-
onClick:
|
|
93
|
-
}, null, 8, ["texts"])) :
|
|
102
|
+
onClick: B
|
|
103
|
+
}, null, 8, ["texts"])) : F("v-if", !0)
|
|
94
104
|
]),
|
|
95
105
|
key: "1"
|
|
96
106
|
} : void 0,
|
|
97
107
|
l.$slots.extras ? {
|
|
98
108
|
name: "extras",
|
|
99
109
|
fn: a(() => [
|
|
100
|
-
|
|
110
|
+
o(l.$slots, "extras")
|
|
101
111
|
]),
|
|
102
112
|
key: "2"
|
|
103
113
|
} : void 0
|
|
@@ -105,5 +115,5 @@ const _ = ["id", "type", "required", "placeholder", "readonly", "disabled"], T =
|
|
|
105
115
|
}
|
|
106
116
|
});
|
|
107
117
|
export {
|
|
108
|
-
|
|
118
|
+
U as default
|
|
109
119
|
};
|
|
@@ -5,6 +5,7 @@ declare const QTextField: {
|
|
|
5
5
|
} & import('../../types/component').QBaseComponentProps & {
|
|
6
6
|
label?: string;
|
|
7
7
|
for?: string;
|
|
8
|
+
required?: boolean;
|
|
8
9
|
} & {
|
|
9
10
|
size?: import('..').QFieldSize;
|
|
10
11
|
readonly?: boolean;
|
|
@@ -13,6 +14,7 @@ declare const QTextField: {
|
|
|
13
14
|
invalid?: boolean;
|
|
14
15
|
} & {
|
|
15
16
|
placeholder?: string;
|
|
17
|
+
maxLength?: number;
|
|
16
18
|
clearable?: boolean;
|
|
17
19
|
type?: string;
|
|
18
20
|
texts?: typeof import('./types').DEFAULT_TEXTS;
|
|
@@ -37,10 +39,10 @@ declare const QTextField: {
|
|
|
37
39
|
readonly class?: string | unknown[] | undefined;
|
|
38
40
|
readonly label?: string | undefined;
|
|
39
41
|
readonly for?: string | undefined;
|
|
42
|
+
readonly required?: boolean | undefined;
|
|
40
43
|
readonly size?: import('..').QFieldSize | undefined;
|
|
41
44
|
readonly readonly?: boolean | undefined;
|
|
42
45
|
readonly disabled?: boolean | undefined;
|
|
43
|
-
readonly required?: boolean | undefined;
|
|
44
46
|
readonly invalid?: boolean | undefined;
|
|
45
47
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
46
48
|
$attrs: {
|
|
@@ -111,6 +113,7 @@ declare const QTextField: {
|
|
|
111
113
|
} & import('../../types/component').QBaseComponentProps & {
|
|
112
114
|
label?: string;
|
|
113
115
|
for?: string;
|
|
116
|
+
required?: boolean;
|
|
114
117
|
} & {
|
|
115
118
|
size?: import('..').QFieldSize;
|
|
116
119
|
readonly?: boolean;
|
|
@@ -119,6 +122,7 @@ declare const QTextField: {
|
|
|
119
122
|
invalid?: boolean;
|
|
120
123
|
} & {
|
|
121
124
|
placeholder?: string;
|
|
125
|
+
maxLength?: number;
|
|
122
126
|
clearable?: boolean;
|
|
123
127
|
type?: string;
|
|
124
128
|
texts?: typeof import('./types').DEFAULT_TEXTS;
|
|
@@ -139,6 +143,7 @@ declare const QTextField: {
|
|
|
139
143
|
} & import('../../types/component').QBaseComponentProps & {
|
|
140
144
|
label?: string;
|
|
141
145
|
for?: string;
|
|
146
|
+
required?: boolean;
|
|
142
147
|
} & {
|
|
143
148
|
size?: import('..').QFieldSize;
|
|
144
149
|
readonly?: boolean;
|
|
@@ -147,6 +152,7 @@ declare const QTextField: {
|
|
|
147
152
|
invalid?: boolean;
|
|
148
153
|
} & {
|
|
149
154
|
placeholder?: string;
|
|
155
|
+
maxLength?: number;
|
|
150
156
|
clearable?: boolean;
|
|
151
157
|
type?: string;
|
|
152
158
|
texts?: typeof import('./types').DEFAULT_TEXTS;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAK9C,QAAA,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAK9C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAO+ozB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAPtuzB,CAAA;AAG/C,OAAO,EAAE,UAAU,EAAE,CAAA;AAGrB,YAAY,EAAE,eAAe,EAAE,CAAA"}
|
|
@@ -4,6 +4,11 @@ export type QTextFieldProps = QFieldProps & {
|
|
|
4
4
|
* The placeholder text for the text field.
|
|
5
5
|
*/
|
|
6
6
|
placeholder?: string;
|
|
7
|
+
/**
|
|
8
|
+
* If set, defines the maximum string length
|
|
9
|
+
* that the user can enter into the text area field.
|
|
10
|
+
*/
|
|
11
|
+
maxLength?: number;
|
|
7
12
|
/**
|
|
8
13
|
* Whether the value of the field can be cleared.
|
|
9
14
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/types.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AAEtD,MAAM,MAAM,eAAe,GAAG,WAAW,GAAG;IAC3C;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAGD,eAAO,MAAM,aAAa;;CAEQ,CAAA"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/types.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AAEtD,MAAM,MAAM,eAAe,GAAG,WAAW,GAAG;IAC3C;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAGD,eAAO,MAAM,aAAa;;CAEQ,CAAA"}
|
|
@@ -24,6 +24,7 @@ export * from './QOverlay';
|
|
|
24
24
|
export * from './QPasswordField';
|
|
25
25
|
export * from './QPopover';
|
|
26
26
|
export * from './QPropertyList';
|
|
27
|
+
export * from './QRadioGroup';
|
|
27
28
|
export * from './QSelect';
|
|
28
29
|
export * from './QSkeletonLoader';
|
|
29
30
|
export * from './QSpinnerLoader';
|
|
@@ -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,iBAAiB,CAAA;AAC/B,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,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,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,WAAW,CAAA;AACzB,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,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,mBAAmB,CAAA;AACjC,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,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,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,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,YAAY,CAAA"}
|
package/esm/components/index.js
CHANGED
|
@@ -3,18 +3,18 @@ import { QBadge as p } from "./QBadge/index.js";
|
|
|
3
3
|
import { QBadgeIndicator as m } from "./QBadgeIndicator/index.js";
|
|
4
4
|
import { QButton as f } from "./QButton/index.js";
|
|
5
5
|
import { QButtonGroup as n } from "./QButtonGroup/index.js";
|
|
6
|
-
import { QButtonToggle as
|
|
6
|
+
import { QButtonToggle as d } from "./QButtonToggle/index.js";
|
|
7
7
|
import { QCard as L } from "./QCard/index.js";
|
|
8
|
-
import { QCheckbox as
|
|
9
|
-
import { QCollapsible as
|
|
8
|
+
import { QCheckbox as u } from "./QCheckbox/index.js";
|
|
9
|
+
import { QCollapsible as P } from "./QCollapsible/index.js";
|
|
10
10
|
import { QColorPicker as g } from "./QColorPicker/index.js";
|
|
11
|
-
import { QCombobox as
|
|
12
|
-
import { QDateTimePicker as
|
|
11
|
+
import { QCombobox as T } from "./QCombobox/index.js";
|
|
12
|
+
import { QDateTimePicker as y } from "./QDateTimePicker/index.js";
|
|
13
13
|
import { QDialog as F } from "./QDialog/index.js";
|
|
14
|
-
import { QDropdownMenu as
|
|
14
|
+
import { QDropdownMenu as k } from "./QDropdownMenu/index.js";
|
|
15
15
|
import { QField as S } from "./QField/index.js";
|
|
16
16
|
import { QFileUpload as D } from "./QFileUpload/index.js";
|
|
17
|
-
import { QIcon as
|
|
17
|
+
import { QIcon as h, QIconFont as A, QIconImg as M, QIconSvg as O } from "./QIcon/index.js";
|
|
18
18
|
import { QInputGroup as j } from "./QInputGroup/index.js";
|
|
19
19
|
import { QLabel as z } from "./QLabel/index.js";
|
|
20
20
|
import { QLineLoader as H } from "./QLineLoader/index.js";
|
|
@@ -24,34 +24,35 @@ import { QOverlay as Z } from "./QOverlay/index.js";
|
|
|
24
24
|
import { QPasswordField as $ } from "./QPasswordField/index.js";
|
|
25
25
|
import { QPopover as ro } from "./QPopover/index.js";
|
|
26
26
|
import { QPropertyList as to, QPropertyListGroup as po, QPropertyListPanel as Qo, QPropertyListRow as mo } from "./QPropertyList/index.js";
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
27
|
+
import { QRadioButton as fo, QRadioGroup as io } from "./QRadioGroup/index.js";
|
|
28
|
+
import { QSelect as ao } from "./QSelect/index.js";
|
|
29
|
+
import { QSkeletonLoader as Lo } from "./QSkeletonLoader/index.js";
|
|
30
|
+
import { QSpinnerLoader as uo } from "./QSpinnerLoader/index.js";
|
|
31
|
+
import { QTextArea as Po } from "./QTextArea/index.js";
|
|
32
|
+
import { QTextField as go } from "./QTextField/index.js";
|
|
33
|
+
import { QThemeProvider as To } from "./QThemeProvider/index.js";
|
|
34
|
+
import { QTooltip as yo } from "./QTooltip/index.js";
|
|
34
35
|
export {
|
|
35
36
|
e as QAccordion,
|
|
36
37
|
p as QBadge,
|
|
37
38
|
m as QBadgeIndicator,
|
|
38
39
|
f as QButton,
|
|
39
40
|
n as QButtonGroup,
|
|
40
|
-
|
|
41
|
+
d as QButtonToggle,
|
|
41
42
|
L as QCard,
|
|
42
|
-
|
|
43
|
-
|
|
43
|
+
u as QCheckbox,
|
|
44
|
+
P as QCollapsible,
|
|
44
45
|
g as QColorPicker,
|
|
45
|
-
|
|
46
|
-
|
|
46
|
+
T as QCombobox,
|
|
47
|
+
y as QDateTimePicker,
|
|
47
48
|
F as QDialog,
|
|
48
|
-
|
|
49
|
+
k as QDropdownMenu,
|
|
49
50
|
S as QField,
|
|
50
51
|
D as QFileUpload,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
h as QIcon,
|
|
53
|
+
A as QIconFont,
|
|
54
|
+
M as QIconImg,
|
|
55
|
+
O as QIconSvg,
|
|
55
56
|
j as QInputGroup,
|
|
56
57
|
z as QLabel,
|
|
57
58
|
H as QLineLoader,
|
|
@@ -66,11 +67,13 @@ export {
|
|
|
66
67
|
po as QPropertyListGroup,
|
|
67
68
|
Qo as QPropertyListPanel,
|
|
68
69
|
mo as QPropertyListRow,
|
|
69
|
-
fo as
|
|
70
|
-
|
|
71
|
-
ao as
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
70
|
+
fo as QRadioButton,
|
|
71
|
+
io as QRadioGroup,
|
|
72
|
+
ao as QSelect,
|
|
73
|
+
Lo as QSkeletonLoader,
|
|
74
|
+
uo as QSpinnerLoader,
|
|
75
|
+
Po as QTextArea,
|
|
76
|
+
go as QTextField,
|
|
77
|
+
To as QThemeProvider,
|
|
78
|
+
yo as QTooltip
|
|
76
79
|
};
|
package/esm/index.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ declare module '@vue/runtime-core' {
|
|
|
41
41
|
QPropertyListRow: typeof import('@quidgest/ui/components')['QPropertyListRow']
|
|
42
42
|
QPropertyListGroup: typeof import('@quidgest/ui/components')['QPropertyListGroup']
|
|
43
43
|
QPropertyListPanel: typeof import('@quidgest/ui/components')['QPropertyListPanel']
|
|
44
|
+
QRadioButton: typeof import('@quidgest/ui/components')['QRadioButton']
|
|
45
|
+
QRadioGroup: typeof import('@quidgest/ui/components')['QRadioGroup']
|
|
44
46
|
QSelect: typeof import('@quidgest/ui/components')['QSelect']
|
|
45
47
|
QSkeletonLoader: typeof import('@quidgest/ui/components')['QSkeletonLoader']
|
|
46
48
|
QSpinnerLoader: typeof import('@quidgest/ui/components')['QSpinnerLoader']
|