@quidgest/ui 0.13.1 → 0.13.2
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 +4 -0
- package/dist/ui.esm.js +510 -500
- package/dist/ui.js +7 -7
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +35 -35
- package/dist/ui.scss +4 -1
- package/esm/components/QBadge/QBadge.d.ts +12 -6
- package/esm/components/QBadge/QBadge.d.ts.map +1 -1
- package/esm/components/QBadge/QBadge.vue.js +6 -6
- package/esm/components/QBadge/index.d.ts +37 -15
- package/esm/components/QBadge/index.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.d.ts +22 -39
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.vue.js +29 -29
- package/esm/components/QCombobox/index.d.ts +48 -56
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QDialog/QDialog.d.ts +21 -3
- package/esm/components/QDialog/QDialog.d.ts.map +1 -1
- package/esm/components/QDialog/QDialog.vue.js +117 -98
- package/esm/components/QDialog/index.d.ts +41 -7
- package/esm/components/QDialog/index.d.ts.map +1 -1
- package/esm/components/QList/QList.d.ts +10 -0
- package/esm/components/QList/QList.d.ts.map +1 -1
- package/esm/components/QList/QList.vue.js +23 -22
- package/esm/components/QList/QListItem.d.ts +14 -8
- package/esm/components/QList/QListItem.d.ts.map +1 -1
- package/esm/components/QList/QListItem.vue.js +17 -17
- package/esm/components/QList/index.d.ts +49 -15
- package/esm/components/QList/index.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.d.ts +13 -0
- package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.vue.js +2 -0
- package/esm/components/QOverlay/index.d.ts +19 -0
- package/esm/components/QOverlay/index.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +22 -39
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +6 -6
- package/esm/components/QSelect/index.d.ts +48 -56
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -22,9 +22,15 @@ declare const QSelect: {
|
|
|
22
22
|
required: {
|
|
23
23
|
type: import('vue').PropType<boolean>;
|
|
24
24
|
};
|
|
25
|
-
|
|
26
|
-
type: import('vue').PropType<
|
|
27
|
-
|
|
25
|
+
internals: {
|
|
26
|
+
type: import('vue').PropType<{
|
|
27
|
+
icons: Record<string, import('..').Icon>;
|
|
28
|
+
texts: Record<string, string>;
|
|
29
|
+
}>;
|
|
30
|
+
default: () => {
|
|
31
|
+
icons: Record<string, import('..').Icon>;
|
|
32
|
+
texts: Record<string, string>;
|
|
33
|
+
};
|
|
28
34
|
};
|
|
29
35
|
items: {
|
|
30
36
|
type: import('vue').PropType<(Omit<import('..').QListItemProps, "label" | "value"> & {
|
|
@@ -60,14 +66,6 @@ declare const QSelect: {
|
|
|
60
66
|
type: import('vue').PropType<import('../../types/primitive').Primitive>;
|
|
61
67
|
default: undefined;
|
|
62
68
|
};
|
|
63
|
-
texts: {
|
|
64
|
-
type: import('vue').PropType<{
|
|
65
|
-
placeholder: string;
|
|
66
|
-
}>;
|
|
67
|
-
default: () => {
|
|
68
|
-
placeholder: string;
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
69
|
}>> & {
|
|
72
70
|
"onBefore-show"?: (() => any) | undefined;
|
|
73
71
|
"onBefore-hide"?: (() => any) | undefined;
|
|
@@ -101,9 +99,15 @@ declare const QSelect: {
|
|
|
101
99
|
required: {
|
|
102
100
|
type: import('vue').PropType<boolean>;
|
|
103
101
|
};
|
|
104
|
-
|
|
105
|
-
type: import('vue').PropType<
|
|
106
|
-
|
|
102
|
+
internals: {
|
|
103
|
+
type: import('vue').PropType<{
|
|
104
|
+
icons: Record<string, import('..').Icon>;
|
|
105
|
+
texts: Record<string, string>;
|
|
106
|
+
}>;
|
|
107
|
+
default: () => {
|
|
108
|
+
icons: Record<string, import('..').Icon>;
|
|
109
|
+
texts: Record<string, string>;
|
|
110
|
+
};
|
|
107
111
|
};
|
|
108
112
|
items: {
|
|
109
113
|
type: import('vue').PropType<(Omit<import('..').QListItemProps, "label" | "value"> & {
|
|
@@ -139,14 +143,6 @@ declare const QSelect: {
|
|
|
139
143
|
type: import('vue').PropType<import('../../types/primitive').Primitive>;
|
|
140
144
|
default: undefined;
|
|
141
145
|
};
|
|
142
|
-
texts: {
|
|
143
|
-
type: import('vue').PropType<{
|
|
144
|
-
placeholder: string;
|
|
145
|
-
}>;
|
|
146
|
-
default: () => {
|
|
147
|
-
placeholder: string;
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
146
|
}>> & {
|
|
151
147
|
"onBefore-show"?: (() => any) | undefined;
|
|
152
148
|
"onBefore-hide"?: (() => any) | undefined;
|
|
@@ -156,7 +152,10 @@ declare const QSelect: {
|
|
|
156
152
|
size: import('..').QFieldSize;
|
|
157
153
|
class: string | unknown[];
|
|
158
154
|
label: string;
|
|
159
|
-
|
|
155
|
+
internals: {
|
|
156
|
+
icons: Record<string, import('..').Icon>;
|
|
157
|
+
texts: Record<string, string>;
|
|
158
|
+
};
|
|
160
159
|
groups: (import('..').QListItemGroupProps & {
|
|
161
160
|
id: string;
|
|
162
161
|
})[];
|
|
@@ -164,9 +163,6 @@ declare const QSelect: {
|
|
|
164
163
|
itemLabel: string;
|
|
165
164
|
id: string;
|
|
166
165
|
emptyValue: import('../../types/primitive').Primitive;
|
|
167
|
-
texts: {
|
|
168
|
-
placeholder: string;
|
|
169
|
-
};
|
|
170
166
|
}, true, {}, {}, {
|
|
171
167
|
P: {};
|
|
172
168
|
B: {};
|
|
@@ -197,9 +193,15 @@ declare const QSelect: {
|
|
|
197
193
|
required: {
|
|
198
194
|
type: import('vue').PropType<boolean>;
|
|
199
195
|
};
|
|
200
|
-
|
|
201
|
-
type: import('vue').PropType<
|
|
202
|
-
|
|
196
|
+
internals: {
|
|
197
|
+
type: import('vue').PropType<{
|
|
198
|
+
icons: Record<string, import('..').Icon>;
|
|
199
|
+
texts: Record<string, string>;
|
|
200
|
+
}>;
|
|
201
|
+
default: () => {
|
|
202
|
+
icons: Record<string, import('..').Icon>;
|
|
203
|
+
texts: Record<string, string>;
|
|
204
|
+
};
|
|
203
205
|
};
|
|
204
206
|
items: {
|
|
205
207
|
type: import('vue').PropType<(Omit<import('..').QListItemProps, "label" | "value"> & {
|
|
@@ -235,14 +237,6 @@ declare const QSelect: {
|
|
|
235
237
|
type: import('vue').PropType<import('../../types/primitive').Primitive>;
|
|
236
238
|
default: undefined;
|
|
237
239
|
};
|
|
238
|
-
texts: {
|
|
239
|
-
type: import('vue').PropType<{
|
|
240
|
-
placeholder: string;
|
|
241
|
-
}>;
|
|
242
|
-
default: () => {
|
|
243
|
-
placeholder: string;
|
|
244
|
-
};
|
|
245
|
-
};
|
|
246
240
|
}>> & {
|
|
247
241
|
"onBefore-show"?: (() => any) | undefined;
|
|
248
242
|
"onBefore-hide"?: (() => any) | undefined;
|
|
@@ -252,7 +246,10 @@ declare const QSelect: {
|
|
|
252
246
|
size: import('..').QFieldSize;
|
|
253
247
|
class: string | unknown[];
|
|
254
248
|
label: string;
|
|
255
|
-
|
|
249
|
+
internals: {
|
|
250
|
+
icons: Record<string, import('..').Icon>;
|
|
251
|
+
texts: Record<string, string>;
|
|
252
|
+
};
|
|
256
253
|
groups: (import('..').QListItemGroupProps & {
|
|
257
254
|
id: string;
|
|
258
255
|
})[];
|
|
@@ -260,9 +257,6 @@ declare const QSelect: {
|
|
|
260
257
|
itemLabel: string;
|
|
261
258
|
id: string;
|
|
262
259
|
emptyValue: import('../../types/primitive').Primitive;
|
|
263
|
-
texts: {
|
|
264
|
-
placeholder: string;
|
|
265
|
-
};
|
|
266
260
|
}>;
|
|
267
261
|
__isFragment?: undefined;
|
|
268
262
|
__isTeleport?: undefined;
|
|
@@ -290,9 +284,15 @@ declare const QSelect: {
|
|
|
290
284
|
required: {
|
|
291
285
|
type: import('vue').PropType<boolean>;
|
|
292
286
|
};
|
|
293
|
-
|
|
294
|
-
type: import('vue').PropType<
|
|
295
|
-
|
|
287
|
+
internals: {
|
|
288
|
+
type: import('vue').PropType<{
|
|
289
|
+
icons: Record<string, import('..').Icon>;
|
|
290
|
+
texts: Record<string, string>;
|
|
291
|
+
}>;
|
|
292
|
+
default: () => {
|
|
293
|
+
icons: Record<string, import('..').Icon>;
|
|
294
|
+
texts: Record<string, string>;
|
|
295
|
+
};
|
|
296
296
|
};
|
|
297
297
|
items: {
|
|
298
298
|
type: import('vue').PropType<(Omit<import('..').QListItemProps, "label" | "value"> & {
|
|
@@ -328,14 +328,6 @@ declare const QSelect: {
|
|
|
328
328
|
type: import('vue').PropType<import('../../types/primitive').Primitive>;
|
|
329
329
|
default: undefined;
|
|
330
330
|
};
|
|
331
|
-
texts: {
|
|
332
|
-
type: import('vue').PropType<{
|
|
333
|
-
placeholder: string;
|
|
334
|
-
}>;
|
|
335
|
-
default: () => {
|
|
336
|
-
placeholder: string;
|
|
337
|
-
};
|
|
338
|
-
};
|
|
339
331
|
}>> & {
|
|
340
332
|
"onBefore-show"?: (() => any) | undefined;
|
|
341
333
|
"onBefore-hide"?: (() => any) | undefined;
|
|
@@ -350,7 +342,10 @@ declare const QSelect: {
|
|
|
350
342
|
size: import('..').QFieldSize;
|
|
351
343
|
class: string | unknown[];
|
|
352
344
|
label: string;
|
|
353
|
-
|
|
345
|
+
internals: {
|
|
346
|
+
icons: Record<string, import('..').Icon>;
|
|
347
|
+
texts: Record<string, string>;
|
|
348
|
+
};
|
|
354
349
|
groups: (import('..').QListItemGroupProps & {
|
|
355
350
|
id: string;
|
|
356
351
|
})[];
|
|
@@ -358,9 +353,6 @@ declare const QSelect: {
|
|
|
358
353
|
itemLabel: string;
|
|
359
354
|
id: string;
|
|
360
355
|
emptyValue: import('../../types/primitive').Primitive;
|
|
361
|
-
texts: {
|
|
362
|
-
placeholder: string;
|
|
363
|
-
};
|
|
364
356
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
365
357
|
$slots: {
|
|
366
358
|
prepend?(_: {}): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+C,CAAA;AAG5D,OAAO,EAAE,OAAO,EAAE,CAAA"}
|