@quidgest/ui 0.15.4 → 0.15.7
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/ui.css +1 -0
- package/dist/ui.esm.js +1802 -1787
- package/dist/ui.js +16 -16
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +15 -9
- package/dist/ui.scss +2 -1
- package/esm/components/QColorPicker/QColorPicker.vue.js +1 -1
- package/esm/components/QCombobox/QCombobox.d.ts +12 -0
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.vue.js +37 -36
- package/esm/components/QCombobox/index.d.ts +21 -0
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.d.ts +6 -0
- package/esm/components/QPasswordField/QPasswordField.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.vue.js +21 -20
- package/esm/components/QPasswordField/index.d.ts +3 -0
- package/esm/components/QPasswordField/index.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.vue.js +33 -30
- package/esm/components/QTextField/QTextField.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.vue.js +48 -38
- package/esm/components/QTextField/index.d.ts +3 -0
- 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/package.json +1 -1
|
@@ -7,7 +7,7 @@ import { QSpinnerLoader as he } from "../QSpinnerLoader/index.js";
|
|
|
7
7
|
import { QTextField as ge } from "../QTextField/index.js";
|
|
8
8
|
import { QChevron as ke } from "../__internal__/QChevron/index.js";
|
|
9
9
|
import { QClearButton as Ie } from "../__internal__/QClearButton/index.js";
|
|
10
|
-
const
|
|
10
|
+
const xe = ["data-key"], we = {
|
|
11
11
|
key: 0,
|
|
12
12
|
class: "q-select__loader"
|
|
13
13
|
}, Ve = {
|
|
@@ -27,6 +27,7 @@ const we = ["data-key"], xe = {
|
|
|
27
27
|
disabled: { type: Boolean },
|
|
28
28
|
invalid: { type: Boolean },
|
|
29
29
|
placeholder: {},
|
|
30
|
+
maxLength: {},
|
|
30
31
|
clearable: { type: Boolean },
|
|
31
32
|
texts: { default: () => ve },
|
|
32
33
|
items: {},
|
|
@@ -47,8 +48,8 @@ const we = ["data-key"], xe = {
|
|
|
47
48
|
searchModifiers: {}
|
|
48
49
|
}),
|
|
49
50
|
emits: /* @__PURE__ */ H(["before-show", "before-hide", "show", "hide"], ["update:modelValue", "update:open", "update:search"]),
|
|
50
|
-
setup(
|
|
51
|
-
const l =
|
|
51
|
+
setup(x, { expose: W, emit: X }) {
|
|
52
|
+
const l = x, w = X, d = S(x, "modelValue"), i = S(x, "open"), u = S(x, "search"), o = g(void 0), c = g(null), s = g(null), V = g(null), L = g(null);
|
|
52
53
|
ue(h);
|
|
53
54
|
const q = m(() => l.clearable && !l.readonly && !l.disabled), p = m(() => {
|
|
54
55
|
var e;
|
|
@@ -59,14 +60,14 @@ const we = ["data-key"], xe = {
|
|
|
59
60
|
var e;
|
|
60
61
|
return (e = l.items) == null ? void 0 : e.find((t) => t[l.itemValue] === d.value);
|
|
61
62
|
}), _ = m(() => y.value === void 0), C = m(() => {
|
|
62
|
-
const e =
|
|
63
|
+
const e = o.value;
|
|
63
64
|
if (e !== void 0 && p.value[e])
|
|
64
65
|
return p.value[e];
|
|
65
66
|
}), G = m(() => {
|
|
66
67
|
var t;
|
|
67
|
-
if (
|
|
68
|
+
if (o.value === void 0)
|
|
68
69
|
return;
|
|
69
|
-
const e = (t = s.value) == null ? void 0 : t.getItem(
|
|
70
|
+
const e = (t = s.value) == null ? void 0 : t.getItem(o.value);
|
|
70
71
|
return e == null ? void 0 : e.id;
|
|
71
72
|
}), J = m(() => {
|
|
72
73
|
var e;
|
|
@@ -81,16 +82,16 @@ const we = ["data-key"], xe = {
|
|
|
81
82
|
u.value !== e && (u.value = e);
|
|
82
83
|
}
|
|
83
84
|
function D() {
|
|
84
|
-
i.value || l.readonly || l.disabled || (
|
|
85
|
+
i.value || l.readonly || l.disabled || (w("before-show"), i.value = !0, E());
|
|
85
86
|
}
|
|
86
87
|
function F() {
|
|
87
|
-
i.value && (
|
|
88
|
+
i.value && (w("before-hide"), i.value = !1, o.value = void 0);
|
|
88
89
|
}
|
|
89
90
|
function Y() {
|
|
90
91
|
i.value ? F() : U();
|
|
91
92
|
}
|
|
92
93
|
function Z() {
|
|
93
|
-
q.value && (d.value = l.emptyValue,
|
|
94
|
+
q.value && (d.value = l.emptyValue, o.value = void 0, E());
|
|
94
95
|
}
|
|
95
96
|
function U() {
|
|
96
97
|
if (D(), y.value !== void 0) {
|
|
@@ -99,17 +100,17 @@ const we = ["data-key"], xe = {
|
|
|
99
100
|
}
|
|
100
101
|
}
|
|
101
102
|
function ee(e) {
|
|
102
|
-
var t,
|
|
103
|
+
var t, a;
|
|
103
104
|
if (!(!e.key || l.readonly || l.disabled))
|
|
104
105
|
if (["ArrowDown", "ArrowUp", "Home", "End"].includes(e.key) && (e.preventDefault(), e.stopPropagation()), e.key === "Escape")
|
|
105
106
|
h(), i.value && F();
|
|
106
107
|
else if (["ArrowDown", "ArrowUp"].includes(e.key))
|
|
107
108
|
i.value ? I(() => {
|
|
108
|
-
if (
|
|
109
|
+
if (o.value === void 0)
|
|
109
110
|
$();
|
|
110
111
|
else {
|
|
111
112
|
const n = e.key === "ArrowDown" ? "next" : "prev";
|
|
112
|
-
te(
|
|
113
|
+
te(o.value, n);
|
|
113
114
|
}
|
|
114
115
|
}) : (D(), I(() => {
|
|
115
116
|
e.key === "ArrowDown" ? $() : le();
|
|
@@ -117,31 +118,31 @@ const we = ["data-key"], xe = {
|
|
|
117
118
|
else if (e.key === "Enter") {
|
|
118
119
|
if (C.value === void 0) return;
|
|
119
120
|
Q(C.value[l.itemValue]);
|
|
120
|
-
} else e.key === "Home" ?
|
|
121
|
+
} else e.key === "Home" ? o.value = (t = s.value) == null ? void 0 : t.getFirstFocusableItemIndex() : e.key === "End" ? o.value = (a = s.value) == null ? void 0 : a.getLastFocusableItemIndex() : (/^[a-z]$/i.test(e.key) || e.key === "Backspace") && D();
|
|
121
122
|
}
|
|
122
123
|
function $() {
|
|
123
124
|
var e, t;
|
|
124
125
|
if (_.value)
|
|
125
|
-
|
|
126
|
+
o.value = (t = s.value) == null ? void 0 : t.getFirstFocusableItemIndex();
|
|
126
127
|
else {
|
|
127
|
-
const
|
|
128
|
+
const a = p.value.findIndex(
|
|
128
129
|
(n) => n[l.itemValue] === d.value
|
|
129
130
|
);
|
|
130
|
-
|
|
131
|
+
a === -1 ? o.value = (e = s.value) == null ? void 0 : e.getFirstFocusableItemIndex() : o.value = a;
|
|
131
132
|
}
|
|
132
133
|
}
|
|
133
134
|
function le() {
|
|
134
135
|
var e;
|
|
135
|
-
|
|
136
|
+
o.value = (e = s.value) == null ? void 0 : e.getLastFocusableItemIndex();
|
|
136
137
|
}
|
|
137
138
|
function te(e, t) {
|
|
138
|
-
var
|
|
139
|
-
|
|
139
|
+
var a;
|
|
140
|
+
o.value = (a = s.value) == null ? void 0 : a.getAdjacentItemIndex(e, t);
|
|
140
141
|
}
|
|
141
142
|
function N(e) {
|
|
142
143
|
var B, z, P, R;
|
|
143
|
-
const t = ((B = V == null ? void 0 : V.value) == null ? void 0 : B.$el) === e.relatedTarget,
|
|
144
|
-
if (t || n ||
|
|
144
|
+
const t = ((B = V == null ? void 0 : V.value) == null ? void 0 : B.$el) === e.relatedTarget, a = (P = (z = c == null ? void 0 : c.value) == null ? void 0 : z.$el) == null ? void 0 : P.contains(e.relatedTarget), n = (R = L == null ? void 0 : L.value) == null ? void 0 : R.contains(e.relatedTarget);
|
|
145
|
+
if (t || n || a) {
|
|
145
146
|
e.preventDefault(), e.stopPropagation();
|
|
146
147
|
return;
|
|
147
148
|
}
|
|
@@ -151,30 +152,30 @@ const we = ["data-key"], xe = {
|
|
|
151
152
|
var e, t;
|
|
152
153
|
(t = (e = c.value) == null ? void 0 : e.inputRef) == null || t.focus();
|
|
153
154
|
}
|
|
154
|
-
function
|
|
155
|
+
function ae() {
|
|
155
156
|
E();
|
|
156
157
|
}
|
|
157
|
-
function
|
|
158
|
-
|
|
158
|
+
function oe() {
|
|
159
|
+
w("show");
|
|
159
160
|
}
|
|
160
161
|
function ne() {
|
|
161
|
-
|
|
162
|
+
w("hide");
|
|
162
163
|
}
|
|
163
164
|
function O(e) {
|
|
164
|
-
var
|
|
165
|
-
const t = (
|
|
165
|
+
var a;
|
|
166
|
+
const t = (a = s.value) == null ? void 0 : a.getItem(e);
|
|
166
167
|
s.value && (s.value.$el.scrollTop = t == null ? void 0 : t.offsetTop);
|
|
167
168
|
}
|
|
168
169
|
return k(d, h), k(
|
|
169
170
|
() => l.items,
|
|
170
171
|
(e, t) => {
|
|
171
172
|
if (!_.value) {
|
|
172
|
-
const
|
|
173
|
-
u.value === (
|
|
173
|
+
const a = t == null ? void 0 : t.find((n) => n[l.itemValue] === d.value);
|
|
174
|
+
u.value === (a == null ? void 0 : a[l.itemLabel]) && h();
|
|
174
175
|
}
|
|
175
176
|
},
|
|
176
177
|
{ deep: !0 }
|
|
177
|
-
), k(
|
|
178
|
+
), k(o, (e) => {
|
|
178
179
|
e !== void 0 && O(e);
|
|
179
180
|
}), k(u, (e) => {
|
|
180
181
|
e && i.value && l.selectionMode === "automatic" && I($);
|
|
@@ -186,7 +187,7 @@ const we = ["data-key"], xe = {
|
|
|
186
187
|
), W({
|
|
187
188
|
triggerEl: c
|
|
188
189
|
}), (e, t) => {
|
|
189
|
-
var
|
|
190
|
+
var a;
|
|
190
191
|
return b(), T(
|
|
191
192
|
se,
|
|
192
193
|
null,
|
|
@@ -287,8 +288,8 @@ const we = ["data-key"], xe = {
|
|
|
287
288
|
placement: "bottom-start",
|
|
288
289
|
width: "anchor",
|
|
289
290
|
offset: 4,
|
|
290
|
-
anchor: (
|
|
291
|
-
onEnter:
|
|
291
|
+
anchor: (a = c.value) == null ? void 0 : a.$el,
|
|
292
|
+
onEnter: oe,
|
|
292
293
|
onLeave: ne
|
|
293
294
|
}, {
|
|
294
295
|
default: r(() => {
|
|
@@ -303,7 +304,7 @@ const we = ["data-key"], xe = {
|
|
|
303
304
|
onFocusout: N
|
|
304
305
|
}, [
|
|
305
306
|
f(e.$slots, "body.prepend"),
|
|
306
|
-
l.loading ? (b(), T("div",
|
|
307
|
+
l.loading ? (b(), T("div", we, [
|
|
307
308
|
M(v(he), { size: 24 })
|
|
308
309
|
])) : p.value.length ? (b(), A(v(be), {
|
|
309
310
|
key: 1,
|
|
@@ -317,7 +318,7 @@ const we = ["data-key"], xe = {
|
|
|
317
318
|
groups: e.groups,
|
|
318
319
|
"item-label": l.itemLabel,
|
|
319
320
|
"item-value": l.itemValue,
|
|
320
|
-
onMouseup:
|
|
321
|
+
onMouseup: ae,
|
|
321
322
|
"onUpdate:modelValue": Q
|
|
322
323
|
}, {
|
|
323
324
|
item: r(({ item: B }) => [
|
|
@@ -333,7 +334,7 @@ const we = ["data-key"], xe = {
|
|
|
333
334
|
/* TEXT */
|
|
334
335
|
)),
|
|
335
336
|
f(e.$slots, "body.append")
|
|
336
|
-
], 40,
|
|
337
|
+
], 40, xe)
|
|
337
338
|
];
|
|
338
339
|
}),
|
|
339
340
|
_: 3
|
|
@@ -42,6 +42,7 @@ declare const QCombobox: {
|
|
|
42
42
|
readonly disabled?: boolean | undefined;
|
|
43
43
|
readonly invalid?: boolean | undefined;
|
|
44
44
|
readonly placeholder?: string | undefined;
|
|
45
|
+
readonly maxLength?: number | undefined;
|
|
45
46
|
readonly clearable?: boolean | undefined;
|
|
46
47
|
readonly type?: string | undefined;
|
|
47
48
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -147,6 +148,7 @@ declare const QCombobox: {
|
|
|
147
148
|
invalid?: boolean;
|
|
148
149
|
} & {
|
|
149
150
|
placeholder?: string;
|
|
151
|
+
maxLength?: number;
|
|
150
152
|
clearable?: boolean;
|
|
151
153
|
type?: string;
|
|
152
154
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -198,6 +200,7 @@ declare const QCombobox: {
|
|
|
198
200
|
invalid?: boolean;
|
|
199
201
|
} & {
|
|
200
202
|
placeholder?: string;
|
|
203
|
+
maxLength?: number;
|
|
201
204
|
clearable?: boolean;
|
|
202
205
|
type?: string;
|
|
203
206
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -230,6 +233,7 @@ declare const QCombobox: {
|
|
|
230
233
|
readonly disabled?: boolean | undefined;
|
|
231
234
|
readonly invalid?: boolean | undefined;
|
|
232
235
|
readonly placeholder?: string | undefined;
|
|
236
|
+
readonly maxLength?: number | undefined;
|
|
233
237
|
readonly clearable?: boolean | undefined;
|
|
234
238
|
readonly type?: string | undefined;
|
|
235
239
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -335,6 +339,7 @@ declare const QCombobox: {
|
|
|
335
339
|
invalid?: boolean;
|
|
336
340
|
} & {
|
|
337
341
|
placeholder?: string;
|
|
342
|
+
maxLength?: number;
|
|
338
343
|
clearable?: boolean;
|
|
339
344
|
type?: string;
|
|
340
345
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -386,6 +391,7 @@ declare const QCombobox: {
|
|
|
386
391
|
invalid?: boolean;
|
|
387
392
|
} & {
|
|
388
393
|
placeholder?: string;
|
|
394
|
+
maxLength?: number;
|
|
389
395
|
clearable?: boolean;
|
|
390
396
|
type?: string;
|
|
391
397
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -445,6 +451,7 @@ declare const QCombobox: {
|
|
|
445
451
|
readonly disabled?: boolean | undefined;
|
|
446
452
|
readonly invalid?: boolean | undefined;
|
|
447
453
|
readonly placeholder?: string | undefined;
|
|
454
|
+
readonly maxLength?: number | undefined;
|
|
448
455
|
readonly clearable?: boolean | undefined;
|
|
449
456
|
readonly type?: string | undefined;
|
|
450
457
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -550,6 +557,7 @@ declare const QCombobox: {
|
|
|
550
557
|
invalid?: boolean;
|
|
551
558
|
} & {
|
|
552
559
|
placeholder?: string;
|
|
560
|
+
maxLength?: number;
|
|
553
561
|
clearable?: boolean;
|
|
554
562
|
type?: string;
|
|
555
563
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -601,6 +609,7 @@ declare const QCombobox: {
|
|
|
601
609
|
invalid?: boolean;
|
|
602
610
|
} & {
|
|
603
611
|
placeholder?: string;
|
|
612
|
+
maxLength?: number;
|
|
604
613
|
clearable?: boolean;
|
|
605
614
|
type?: string;
|
|
606
615
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -919,6 +928,7 @@ declare const QCombobox: {
|
|
|
919
928
|
readonly disabled?: boolean | undefined;
|
|
920
929
|
readonly invalid?: boolean | undefined;
|
|
921
930
|
readonly placeholder?: string | undefined;
|
|
931
|
+
readonly maxLength?: number | undefined;
|
|
922
932
|
readonly clearable?: boolean | undefined;
|
|
923
933
|
readonly type?: string | undefined;
|
|
924
934
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -1024,6 +1034,7 @@ declare const QCombobox: {
|
|
|
1024
1034
|
invalid?: boolean;
|
|
1025
1035
|
} & {
|
|
1026
1036
|
placeholder?: string;
|
|
1037
|
+
maxLength?: number;
|
|
1027
1038
|
clearable?: boolean;
|
|
1028
1039
|
type?: string;
|
|
1029
1040
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1075,6 +1086,7 @@ declare const QCombobox: {
|
|
|
1075
1086
|
invalid?: boolean;
|
|
1076
1087
|
} & {
|
|
1077
1088
|
placeholder?: string;
|
|
1089
|
+
maxLength?: number;
|
|
1078
1090
|
clearable?: boolean;
|
|
1079
1091
|
type?: string;
|
|
1080
1092
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1107,6 +1119,7 @@ declare const QCombobox: {
|
|
|
1107
1119
|
readonly disabled?: boolean | undefined;
|
|
1108
1120
|
readonly invalid?: boolean | undefined;
|
|
1109
1121
|
readonly placeholder?: string | undefined;
|
|
1122
|
+
readonly maxLength?: number | undefined;
|
|
1110
1123
|
readonly clearable?: boolean | undefined;
|
|
1111
1124
|
readonly type?: string | undefined;
|
|
1112
1125
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -1212,6 +1225,7 @@ declare const QCombobox: {
|
|
|
1212
1225
|
invalid?: boolean;
|
|
1213
1226
|
} & {
|
|
1214
1227
|
placeholder?: string;
|
|
1228
|
+
maxLength?: number;
|
|
1215
1229
|
clearable?: boolean;
|
|
1216
1230
|
type?: string;
|
|
1217
1231
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1263,6 +1277,7 @@ declare const QCombobox: {
|
|
|
1263
1277
|
invalid?: boolean;
|
|
1264
1278
|
} & {
|
|
1265
1279
|
placeholder?: string;
|
|
1280
|
+
maxLength?: number;
|
|
1266
1281
|
clearable?: boolean;
|
|
1267
1282
|
type?: string;
|
|
1268
1283
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1344,6 +1359,7 @@ declare const QCombobox: {
|
|
|
1344
1359
|
readonly disabled?: boolean | undefined;
|
|
1345
1360
|
readonly invalid?: boolean | undefined;
|
|
1346
1361
|
readonly placeholder?: string | undefined;
|
|
1362
|
+
readonly maxLength?: number | undefined;
|
|
1347
1363
|
readonly clearable?: boolean | undefined;
|
|
1348
1364
|
readonly type?: string | undefined;
|
|
1349
1365
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -1449,6 +1465,7 @@ declare const QCombobox: {
|
|
|
1449
1465
|
invalid?: boolean;
|
|
1450
1466
|
} & {
|
|
1451
1467
|
placeholder?: string;
|
|
1468
|
+
maxLength?: number;
|
|
1452
1469
|
clearable?: boolean;
|
|
1453
1470
|
type?: string;
|
|
1454
1471
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1500,6 +1517,7 @@ declare const QCombobox: {
|
|
|
1500
1517
|
invalid?: boolean;
|
|
1501
1518
|
} & {
|
|
1502
1519
|
placeholder?: string;
|
|
1520
|
+
maxLength?: number;
|
|
1503
1521
|
clearable?: boolean;
|
|
1504
1522
|
type?: string;
|
|
1505
1523
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1532,6 +1550,7 @@ declare const QCombobox: {
|
|
|
1532
1550
|
readonly disabled?: boolean | undefined;
|
|
1533
1551
|
readonly invalid?: boolean | undefined;
|
|
1534
1552
|
readonly placeholder?: string | undefined;
|
|
1553
|
+
readonly maxLength?: number | undefined;
|
|
1535
1554
|
readonly clearable?: boolean | undefined;
|
|
1536
1555
|
readonly type?: string | undefined;
|
|
1537
1556
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -1637,6 +1656,7 @@ declare const QCombobox: {
|
|
|
1637
1656
|
invalid?: boolean;
|
|
1638
1657
|
} & {
|
|
1639
1658
|
placeholder?: string;
|
|
1659
|
+
maxLength?: number;
|
|
1640
1660
|
clearable?: boolean;
|
|
1641
1661
|
type?: string;
|
|
1642
1662
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1688,6 +1708,7 @@ declare const QCombobox: {
|
|
|
1688
1708
|
invalid?: boolean;
|
|
1689
1709
|
} & {
|
|
1690
1710
|
placeholder?: string;
|
|
1711
|
+
maxLength?: number;
|
|
1691
1712
|
clearable?: boolean;
|
|
1692
1713
|
type?: string;
|
|
1693
1714
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -29,6 +29,7 @@ declare function __VLS_template(): {
|
|
|
29
29
|
readonly disabled?: boolean | undefined;
|
|
30
30
|
readonly invalid?: boolean | undefined;
|
|
31
31
|
readonly placeholder?: string | undefined;
|
|
32
|
+
readonly maxLength?: number | undefined;
|
|
32
33
|
readonly clearable?: boolean | undefined;
|
|
33
34
|
readonly type?: string | undefined;
|
|
34
35
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -134,6 +135,7 @@ declare function __VLS_template(): {
|
|
|
134
135
|
invalid?: boolean;
|
|
135
136
|
} & {
|
|
136
137
|
placeholder?: string;
|
|
138
|
+
maxLength?: number;
|
|
137
139
|
clearable?: boolean;
|
|
138
140
|
type?: string;
|
|
139
141
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -185,6 +187,7 @@ declare function __VLS_template(): {
|
|
|
185
187
|
invalid?: boolean;
|
|
186
188
|
} & {
|
|
187
189
|
placeholder?: string;
|
|
190
|
+
maxLength?: number;
|
|
188
191
|
clearable?: boolean;
|
|
189
192
|
type?: string;
|
|
190
193
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -232,6 +235,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
232
235
|
readonly disabled?: boolean | undefined;
|
|
233
236
|
readonly invalid?: boolean | undefined;
|
|
234
237
|
readonly placeholder?: string | undefined;
|
|
238
|
+
readonly maxLength?: number | undefined;
|
|
235
239
|
readonly clearable?: boolean | undefined;
|
|
236
240
|
readonly type?: string | undefined;
|
|
237
241
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -337,6 +341,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
337
341
|
invalid?: boolean;
|
|
338
342
|
} & {
|
|
339
343
|
placeholder?: string;
|
|
344
|
+
maxLength?: number;
|
|
340
345
|
clearable?: boolean;
|
|
341
346
|
type?: string;
|
|
342
347
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -388,6 +393,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
388
393
|
invalid?: boolean;
|
|
389
394
|
} & {
|
|
390
395
|
placeholder?: string;
|
|
396
|
+
maxLength?: number;
|
|
391
397
|
clearable?: boolean;
|
|
392
398
|
type?: string;
|
|
393
399
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QPasswordField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QPasswordField/QPasswordField.vue"],"names":[],"mappings":"AA6DA;AAqLC,OAAO,KAAK,EAEX,mBAAmB,EAEnB,MAAM,SAAS,CAAA;AAKhB,KAAK,WAAW,GAAG,mBAAmB,CAAC;AA4FxC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CAClB,GAAG,WAAW,CAAC;AAMhB,iBAAS,cAAc;WAkLT,OAAO,IAA6B;;iCAhBZ,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACJ,GAAG;wBACH,GAAG
|
|
1
|
+
{"version":3,"file":"QPasswordField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QPasswordField/QPasswordField.vue"],"names":[],"mappings":"AA6DA;AAqLC,OAAO,KAAK,EAEX,mBAAmB,EAEnB,MAAM,SAAS,CAAA;AAKhB,KAAK,WAAW,GAAG,mBAAmB,CAAC;AA4FxC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CAClB,GAAG,WAAW,CAAC;AAMhB,iBAAS,cAAc;WAkLT,OAAO,IAA6B;;iCAhBZ,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACJ,GAAG;wBACH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAwE4uT,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAvDj4T;AAwBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CA8BuvT,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OArBh4T,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"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { DEFAULT_ICONS as
|
|
3
|
-
import { QButton as
|
|
1
|
+
import { defineComponent as L, mergeModels as S, useModel as V, ref as B, computed as v, createElementBlock as E, openBlock as g, Fragment as P, createVNode as y, createBlock as $, createCommentVNode as w, unref as b, mergeProps as Q, createSlots as R, withCtx as n, renderSlot as d, normalizeProps as x, guardReactiveProps as N } from "vue";
|
|
2
|
+
import { DEFAULT_ICONS as O } from "./constants.js";
|
|
3
|
+
import { QButton as U } from "../QButton/index.js";
|
|
4
4
|
import { QIcon as A } from "../QIcon/index.js";
|
|
5
5
|
import { QTextField as I } from "../QTextField/index.js";
|
|
6
6
|
import T from "./QPasswordFieldMessages.vue.js";
|
|
7
7
|
import D from "./QPasswordFieldMeterOverlay.vue.js";
|
|
8
|
-
const Y = /* @__PURE__ */
|
|
8
|
+
const Y = /* @__PURE__ */ L({
|
|
9
9
|
inheritAttrs: !1,
|
|
10
10
|
__name: "QPasswordField",
|
|
11
|
-
props: /* @__PURE__ */
|
|
11
|
+
props: /* @__PURE__ */ S({
|
|
12
12
|
id: {},
|
|
13
13
|
class: {},
|
|
14
14
|
label: {},
|
|
@@ -19,11 +19,12 @@ const Y = /* @__PURE__ */ S({
|
|
|
19
19
|
disabled: { type: Boolean },
|
|
20
20
|
invalid: { type: Boolean },
|
|
21
21
|
placeholder: {},
|
|
22
|
+
maxLength: {},
|
|
22
23
|
toggle: { type: Boolean },
|
|
23
24
|
meter: { type: Boolean },
|
|
24
25
|
meterLevels: {},
|
|
25
26
|
rules: {},
|
|
26
|
-
icons: { default: () =>
|
|
27
|
+
icons: { default: () => O }
|
|
27
28
|
}, {
|
|
28
29
|
modelValue: {},
|
|
29
30
|
modelModifiers: {},
|
|
@@ -39,13 +40,13 @@ const Y = /* @__PURE__ */ S({
|
|
|
39
40
|
function q(l, s) {
|
|
40
41
|
if (!l || !s) return;
|
|
41
42
|
let a = 0;
|
|
42
|
-
const
|
|
43
|
+
const r = [];
|
|
43
44
|
return s.forEach((m) => {
|
|
44
45
|
const c = m.test instanceof RegExp ? m.test.test(l) : m.test(l);
|
|
45
|
-
c === !0 ? a += m.weight : typeof c == "string" &&
|
|
46
|
+
c === !0 ? a += m.weight : typeof c == "string" && r.push(c);
|
|
46
47
|
}), {
|
|
47
48
|
score: k.value ? a / k.value : 0,
|
|
48
|
-
messages:
|
|
49
|
+
messages: r
|
|
49
50
|
};
|
|
50
51
|
}
|
|
51
52
|
function z() {
|
|
@@ -58,8 +59,8 @@ const Y = /* @__PURE__ */ S({
|
|
|
58
59
|
u.value = !1;
|
|
59
60
|
}
|
|
60
61
|
return (l, s) => {
|
|
61
|
-
var a,
|
|
62
|
-
return g(),
|
|
62
|
+
var a, r;
|
|
63
|
+
return g(), E(
|
|
63
64
|
P,
|
|
64
65
|
null,
|
|
65
66
|
[
|
|
@@ -82,10 +83,10 @@ const Y = /* @__PURE__ */ S({
|
|
|
82
83
|
onFocusin: F,
|
|
83
84
|
onFocusout: C
|
|
84
85
|
}), R({
|
|
85
|
-
"label.prepend":
|
|
86
|
+
"label.prepend": n(() => [
|
|
86
87
|
d(l.$slots, "label.prepend")
|
|
87
88
|
]),
|
|
88
|
-
"label.append":
|
|
89
|
+
"label.append": n(() => [
|
|
89
90
|
d(l.$slots, "label.append")
|
|
90
91
|
]),
|
|
91
92
|
_: 2
|
|
@@ -93,26 +94,26 @@ const Y = /* @__PURE__ */ S({
|
|
|
93
94
|
}, [
|
|
94
95
|
l.$slots.prepend ? {
|
|
95
96
|
name: "prepend",
|
|
96
|
-
fn:
|
|
97
|
+
fn: n(() => [
|
|
97
98
|
d(l.$slots, "prepend")
|
|
98
99
|
]),
|
|
99
100
|
key: "0"
|
|
100
101
|
} : void 0,
|
|
101
102
|
e.toggle ? {
|
|
102
103
|
name: "append",
|
|
103
|
-
fn:
|
|
104
|
+
fn: n(() => [
|
|
104
105
|
d(l.$slots, "append"),
|
|
105
|
-
y(b(
|
|
106
|
+
y(b(U), {
|
|
106
107
|
size: "small",
|
|
107
108
|
borderless: "",
|
|
108
109
|
"data-testid": "q-password-toggle",
|
|
109
110
|
disabled: e.disabled,
|
|
110
111
|
onClick: z
|
|
111
112
|
}, {
|
|
112
|
-
default:
|
|
113
|
+
default: n(() => [
|
|
113
114
|
y(
|
|
114
115
|
b(A),
|
|
115
|
-
N(
|
|
116
|
+
x(N(i.value ? e.icons.show : e.icons.hide)),
|
|
116
117
|
null,
|
|
117
118
|
16
|
|
118
119
|
/* FULL_PROPS */
|
|
@@ -126,7 +127,7 @@ const Y = /* @__PURE__ */ S({
|
|
|
126
127
|
} : void 0,
|
|
127
128
|
l.$slots.extras || e.rules && !e.meter ? {
|
|
128
129
|
name: "extras",
|
|
129
|
-
fn:
|
|
130
|
+
fn: n(() => [
|
|
130
131
|
d(l.$slots, "extras", {}, () => {
|
|
131
132
|
var o;
|
|
132
133
|
return [
|
|
@@ -148,7 +149,7 @@ const Y = /* @__PURE__ */ S({
|
|
|
148
149
|
score: t.value.score,
|
|
149
150
|
levels: e.meterLevels,
|
|
150
151
|
messages: t.value.messages,
|
|
151
|
-
anchor: (
|
|
152
|
+
anchor: (r = h.value) == null ? void 0 : r.$el
|
|
152
153
|
}, null, 8, ["modelValue", "score", "levels", "messages", "anchor"])) : w("v-if", !0)
|
|
153
154
|
],
|
|
154
155
|
64
|
|
@@ -34,6 +34,7 @@ declare const QPasswordField: {
|
|
|
34
34
|
readonly disabled?: boolean | undefined;
|
|
35
35
|
readonly invalid?: boolean | undefined;
|
|
36
36
|
readonly placeholder?: string | undefined;
|
|
37
|
+
readonly maxLength?: number | undefined;
|
|
37
38
|
readonly clearable?: boolean | undefined;
|
|
38
39
|
readonly type?: string | undefined;
|
|
39
40
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -139,6 +140,7 @@ declare const QPasswordField: {
|
|
|
139
140
|
invalid?: boolean;
|
|
140
141
|
} & {
|
|
141
142
|
placeholder?: string;
|
|
143
|
+
maxLength?: number;
|
|
142
144
|
clearable?: boolean;
|
|
143
145
|
type?: string;
|
|
144
146
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -190,6 +192,7 @@ declare const QPasswordField: {
|
|
|
190
192
|
invalid?: boolean;
|
|
191
193
|
} & {
|
|
192
194
|
placeholder?: string;
|
|
195
|
+
maxLength?: number;
|
|
193
196
|
clearable?: boolean;
|
|
194
197
|
type?: string;
|
|
195
198
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QPasswordField/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAKlD,QAAA,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QPasswordField/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAKlD,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAO+mzB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAPlszB,CAAA;AAGvD,OAAO,EAAE,cAAc,EAAE,CAAA;AAGzB,YAAY,EAAE,mBAAmB,EAAE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QTextArea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QTextArea/QTextArea.vue"],"names":[],"mappings":"AAgDA;
|
|
1
|
+
{"version":3,"file":"QTextArea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QTextArea/QTextArea.vue"],"names":[],"mappings":"AAgDA;AAkHC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAO7C,KAAK,WAAW,GAAG,cAAc,CAAC;AAwDnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA0GT,OAAO,IAA6B;;iCAhBb,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACJ,GAAG;wBACF,GAAG;;;;;;EAiB/B;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;OASnB,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"}
|