sprof 0.5.4 → 0.6.4
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/core/components/PAutocomplete.vue.d.ts +2 -2
- package/dist/core/components/RemoteSearch.stories.d.ts +8 -8
- package/dist/core/components/RemoteSearch.vue.d.ts +4 -4
- package/dist/core/components/SortList.vue.d.ts +2 -2
- package/dist/core/components/SortSelect.vue.d.ts +2 -2
- package/dist/core/components/atoms/PBadge/PBadge.stories.d.ts +9 -9
- package/dist/core/components/atoms/PBadge/PBadge.vue.d.ts +2 -2
- package/dist/core/components/atoms/PDateInput/PDateInput.stories.d.ts +72 -0
- package/dist/core/components/atoms/PDateInput/PDateInput.vue.d.ts +13 -0
- package/dist/core/components/atoms/PInput/PInput.stories.d.ts +66 -0
- package/dist/core/components/atoms/PInput/PInput.vue.d.ts +20 -0
- package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +120 -0
- package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +36 -0
- package/dist/core/components/organisms/PAuthForm/PAuthForm.stories.d.ts +56 -4
- package/dist/core/components/organisms/PAuthForm/PAuthForm.vue.d.ts +28 -2
- package/dist/core/helpers/Classes.d.ts +9 -0
- package/dist/core/helpers/Dates.d.ts +8 -0
- package/dist/core/helpers/Try.d.ts +64 -0
- package/dist/core/helpers/Try.test.d.ts +1 -0
- package/dist/core/helpers/Validate.d.ts +6 -0
- package/dist/core/helpers/index.d.ts +2 -0
- package/dist/sprof.js +3635 -3529
- package/dist/sprof.umd.cjs +13 -13
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -49,6 +49,15 @@ declare const _default: {
|
|
|
49
49
|
required: false;
|
|
50
50
|
default: undefined;
|
|
51
51
|
};
|
|
52
|
+
error: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
errorMessage: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: string;
|
|
59
|
+
required: false;
|
|
60
|
+
};
|
|
52
61
|
modelValue: {
|
|
53
62
|
type: globalThis.PropType<string | number | null>;
|
|
54
63
|
};
|
|
@@ -72,6 +81,7 @@ declare const _default: {
|
|
|
72
81
|
focus: (...args: any[]) => void;
|
|
73
82
|
"update:modelValue": (value: string | number | null | undefined) => void;
|
|
74
83
|
}, import('vue').PublicProps, {
|
|
84
|
+
error: boolean;
|
|
75
85
|
color: string;
|
|
76
86
|
label: string;
|
|
77
87
|
padding: string;
|
|
@@ -81,6 +91,7 @@ declare const _default: {
|
|
|
81
91
|
disabled: boolean;
|
|
82
92
|
borderColor: string;
|
|
83
93
|
rules: import('quasar').ValidationRule[];
|
|
94
|
+
errorMessage: string;
|
|
84
95
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
85
96
|
input: import('quasar').QInput | null;
|
|
86
97
|
}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -136,6 +147,15 @@ declare const _default: {
|
|
|
136
147
|
required: false;
|
|
137
148
|
default: undefined;
|
|
138
149
|
};
|
|
150
|
+
error: {
|
|
151
|
+
type: BooleanConstructor;
|
|
152
|
+
default: boolean;
|
|
153
|
+
};
|
|
154
|
+
errorMessage: {
|
|
155
|
+
type: StringConstructor;
|
|
156
|
+
default: string;
|
|
157
|
+
required: false;
|
|
158
|
+
};
|
|
139
159
|
modelValue: {
|
|
140
160
|
type: globalThis.PropType<string | number | null>;
|
|
141
161
|
};
|
|
@@ -153,6 +173,7 @@ declare const _default: {
|
|
|
153
173
|
validate: () => Promise<boolean>;
|
|
154
174
|
resetValidation: () => void;
|
|
155
175
|
}, {}, {}, {}, {
|
|
176
|
+
error: boolean;
|
|
156
177
|
color: string;
|
|
157
178
|
label: string;
|
|
158
179
|
padding: string;
|
|
@@ -162,6 +183,7 @@ declare const _default: {
|
|
|
162
183
|
disabled: boolean;
|
|
163
184
|
borderColor: string;
|
|
164
185
|
rules: import('quasar').ValidationRule[];
|
|
186
|
+
errorMessage: string;
|
|
165
187
|
}>;
|
|
166
188
|
__isFragment?: undefined;
|
|
167
189
|
__isTeleport?: undefined;
|
|
@@ -212,6 +234,15 @@ declare const _default: {
|
|
|
212
234
|
required: false;
|
|
213
235
|
default: undefined;
|
|
214
236
|
};
|
|
237
|
+
error: {
|
|
238
|
+
type: BooleanConstructor;
|
|
239
|
+
default: boolean;
|
|
240
|
+
};
|
|
241
|
+
errorMessage: {
|
|
242
|
+
type: StringConstructor;
|
|
243
|
+
default: string;
|
|
244
|
+
required: false;
|
|
245
|
+
};
|
|
215
246
|
modelValue: {
|
|
216
247
|
type: globalThis.PropType<string | number | null>;
|
|
217
248
|
};
|
|
@@ -235,6 +266,7 @@ declare const _default: {
|
|
|
235
266
|
focus: (...args: any[]) => void;
|
|
236
267
|
"update:modelValue": (value: string | number | null | undefined) => void;
|
|
237
268
|
}, string, {
|
|
269
|
+
error: boolean;
|
|
238
270
|
color: string;
|
|
239
271
|
label: string;
|
|
240
272
|
padding: string;
|
|
@@ -244,6 +276,7 @@ declare const _default: {
|
|
|
244
276
|
disabled: boolean;
|
|
245
277
|
borderColor: string;
|
|
246
278
|
rules: import('quasar').ValidationRule[];
|
|
279
|
+
errorMessage: string;
|
|
247
280
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
248
281
|
$slots: {
|
|
249
282
|
prepend?(_: {}): any;
|
|
@@ -367,6 +400,15 @@ export declare const Default: StoryFn<{
|
|
|
367
400
|
required: false;
|
|
368
401
|
default: undefined;
|
|
369
402
|
};
|
|
403
|
+
error: {
|
|
404
|
+
type: BooleanConstructor;
|
|
405
|
+
default: boolean;
|
|
406
|
+
};
|
|
407
|
+
errorMessage: {
|
|
408
|
+
type: StringConstructor;
|
|
409
|
+
default: string;
|
|
410
|
+
required: false;
|
|
411
|
+
};
|
|
370
412
|
modelValue: {
|
|
371
413
|
type: globalThis.PropType<string | number | null>;
|
|
372
414
|
};
|
|
@@ -390,6 +432,7 @@ export declare const Default: StoryFn<{
|
|
|
390
432
|
focus: (...args: any[]) => void;
|
|
391
433
|
"update:modelValue": (value: string | number | null | undefined) => void;
|
|
392
434
|
}, import('vue').PublicProps, {
|
|
435
|
+
error: boolean;
|
|
393
436
|
color: string;
|
|
394
437
|
label: string;
|
|
395
438
|
padding: string;
|
|
@@ -399,6 +442,7 @@ export declare const Default: StoryFn<{
|
|
|
399
442
|
disabled: boolean;
|
|
400
443
|
borderColor: string;
|
|
401
444
|
rules: import('quasar').ValidationRule[];
|
|
445
|
+
errorMessage: string;
|
|
402
446
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
403
447
|
input: import('quasar').QInput | null;
|
|
404
448
|
}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -454,6 +498,15 @@ export declare const Default: StoryFn<{
|
|
|
454
498
|
required: false;
|
|
455
499
|
default: undefined;
|
|
456
500
|
};
|
|
501
|
+
error: {
|
|
502
|
+
type: BooleanConstructor;
|
|
503
|
+
default: boolean;
|
|
504
|
+
};
|
|
505
|
+
errorMessage: {
|
|
506
|
+
type: StringConstructor;
|
|
507
|
+
default: string;
|
|
508
|
+
required: false;
|
|
509
|
+
};
|
|
457
510
|
modelValue: {
|
|
458
511
|
type: globalThis.PropType<string | number | null>;
|
|
459
512
|
};
|
|
@@ -471,6 +524,7 @@ export declare const Default: StoryFn<{
|
|
|
471
524
|
validate: () => Promise<boolean>;
|
|
472
525
|
resetValidation: () => void;
|
|
473
526
|
}, {}, {}, {}, {
|
|
527
|
+
error: boolean;
|
|
474
528
|
color: string;
|
|
475
529
|
label: string;
|
|
476
530
|
padding: string;
|
|
@@ -480,6 +534,7 @@ export declare const Default: StoryFn<{
|
|
|
480
534
|
disabled: boolean;
|
|
481
535
|
borderColor: string;
|
|
482
536
|
rules: import('quasar').ValidationRule[];
|
|
537
|
+
errorMessage: string;
|
|
483
538
|
}>;
|
|
484
539
|
__isFragment?: undefined;
|
|
485
540
|
__isTeleport?: undefined;
|
|
@@ -530,6 +585,15 @@ export declare const Default: StoryFn<{
|
|
|
530
585
|
required: false;
|
|
531
586
|
default: undefined;
|
|
532
587
|
};
|
|
588
|
+
error: {
|
|
589
|
+
type: BooleanConstructor;
|
|
590
|
+
default: boolean;
|
|
591
|
+
};
|
|
592
|
+
errorMessage: {
|
|
593
|
+
type: StringConstructor;
|
|
594
|
+
default: string;
|
|
595
|
+
required: false;
|
|
596
|
+
};
|
|
533
597
|
modelValue: {
|
|
534
598
|
type: globalThis.PropType<string | number | null>;
|
|
535
599
|
};
|
|
@@ -553,6 +617,7 @@ export declare const Default: StoryFn<{
|
|
|
553
617
|
focus: (...args: any[]) => void;
|
|
554
618
|
"update:modelValue": (value: string | number | null | undefined) => void;
|
|
555
619
|
}, string, {
|
|
620
|
+
error: boolean;
|
|
556
621
|
color: string;
|
|
557
622
|
label: string;
|
|
558
623
|
padding: string;
|
|
@@ -562,6 +627,7 @@ export declare const Default: StoryFn<{
|
|
|
562
627
|
disabled: boolean;
|
|
563
628
|
borderColor: string;
|
|
564
629
|
rules: import('quasar').ValidationRule[];
|
|
630
|
+
errorMessage: string;
|
|
565
631
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
566
632
|
$slots: {
|
|
567
633
|
prepend?(_: {}): any;
|
|
@@ -53,6 +53,15 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
53
53
|
required: false;
|
|
54
54
|
default: undefined;
|
|
55
55
|
};
|
|
56
|
+
error: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
errorMessage: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
required: false;
|
|
64
|
+
};
|
|
56
65
|
modelValue: {
|
|
57
66
|
type: globalThis.PropType<string | number | null>;
|
|
58
67
|
};
|
|
@@ -115,6 +124,15 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
115
124
|
required: false;
|
|
116
125
|
default: undefined;
|
|
117
126
|
};
|
|
127
|
+
error: {
|
|
128
|
+
type: BooleanConstructor;
|
|
129
|
+
default: boolean;
|
|
130
|
+
};
|
|
131
|
+
errorMessage: {
|
|
132
|
+
type: StringConstructor;
|
|
133
|
+
default: string;
|
|
134
|
+
required: false;
|
|
135
|
+
};
|
|
118
136
|
modelValue: {
|
|
119
137
|
type: globalThis.PropType<string | number | null>;
|
|
120
138
|
};
|
|
@@ -125,6 +143,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
125
143
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
126
144
|
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
127
145
|
}>, {
|
|
146
|
+
error: boolean;
|
|
128
147
|
color: string;
|
|
129
148
|
label: string;
|
|
130
149
|
padding: string;
|
|
@@ -134,6 +153,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
134
153
|
disabled: boolean;
|
|
135
154
|
borderColor: string;
|
|
136
155
|
rules: ValidationRule[];
|
|
156
|
+
errorMessage: string;
|
|
137
157
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
138
158
|
input: QInputType | null;
|
|
139
159
|
}, any>, {
|
|
@@ -68,6 +68,22 @@ declare const _default: {
|
|
|
68
68
|
required: false;
|
|
69
69
|
default: () => never[];
|
|
70
70
|
};
|
|
71
|
+
emitValue: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
mapOptions: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
optionValue: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
optionLabel: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
71
87
|
rules: {
|
|
72
88
|
type: globalThis.PropType<import('quasar').ValidationRule[]>;
|
|
73
89
|
required: false;
|
|
@@ -106,6 +122,10 @@ declare const _default: {
|
|
|
106
122
|
rules: import('quasar').ValidationRule[];
|
|
107
123
|
clearable: boolean;
|
|
108
124
|
inPadding: string;
|
|
125
|
+
emitValue: boolean;
|
|
126
|
+
mapOptions: boolean;
|
|
127
|
+
optionValue: string;
|
|
128
|
+
optionLabel: string;
|
|
109
129
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
110
130
|
selectRef: import('quasar').QSelect | null;
|
|
111
131
|
}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -181,6 +201,22 @@ declare const _default: {
|
|
|
181
201
|
required: false;
|
|
182
202
|
default: () => never[];
|
|
183
203
|
};
|
|
204
|
+
emitValue: {
|
|
205
|
+
type: BooleanConstructor;
|
|
206
|
+
default: boolean;
|
|
207
|
+
};
|
|
208
|
+
mapOptions: {
|
|
209
|
+
type: BooleanConstructor;
|
|
210
|
+
default: boolean;
|
|
211
|
+
};
|
|
212
|
+
optionValue: {
|
|
213
|
+
type: StringConstructor;
|
|
214
|
+
default: string;
|
|
215
|
+
};
|
|
216
|
+
optionLabel: {
|
|
217
|
+
type: StringConstructor;
|
|
218
|
+
default: string;
|
|
219
|
+
};
|
|
184
220
|
rules: {
|
|
185
221
|
type: globalThis.PropType<import('quasar').ValidationRule[]>;
|
|
186
222
|
required: false;
|
|
@@ -215,6 +251,10 @@ declare const _default: {
|
|
|
215
251
|
rules: import('quasar').ValidationRule[];
|
|
216
252
|
clearable: boolean;
|
|
217
253
|
inPadding: string;
|
|
254
|
+
emitValue: boolean;
|
|
255
|
+
mapOptions: boolean;
|
|
256
|
+
optionValue: string;
|
|
257
|
+
optionLabel: string;
|
|
218
258
|
}>;
|
|
219
259
|
__isFragment?: undefined;
|
|
220
260
|
__isTeleport?: undefined;
|
|
@@ -285,6 +325,22 @@ declare const _default: {
|
|
|
285
325
|
required: false;
|
|
286
326
|
default: () => never[];
|
|
287
327
|
};
|
|
328
|
+
emitValue: {
|
|
329
|
+
type: BooleanConstructor;
|
|
330
|
+
default: boolean;
|
|
331
|
+
};
|
|
332
|
+
mapOptions: {
|
|
333
|
+
type: BooleanConstructor;
|
|
334
|
+
default: boolean;
|
|
335
|
+
};
|
|
336
|
+
optionValue: {
|
|
337
|
+
type: StringConstructor;
|
|
338
|
+
default: string;
|
|
339
|
+
};
|
|
340
|
+
optionLabel: {
|
|
341
|
+
type: StringConstructor;
|
|
342
|
+
default: string;
|
|
343
|
+
};
|
|
288
344
|
rules: {
|
|
289
345
|
type: globalThis.PropType<import('quasar').ValidationRule[]>;
|
|
290
346
|
required: false;
|
|
@@ -323,6 +379,10 @@ declare const _default: {
|
|
|
323
379
|
rules: import('quasar').ValidationRule[];
|
|
324
380
|
clearable: boolean;
|
|
325
381
|
inPadding: string;
|
|
382
|
+
emitValue: boolean;
|
|
383
|
+
mapOptions: boolean;
|
|
384
|
+
optionValue: string;
|
|
385
|
+
optionLabel: string;
|
|
326
386
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
327
387
|
$slots: {
|
|
328
388
|
prepend?(_: {}): any;
|
|
@@ -452,6 +512,22 @@ export declare const Default: StoryFn<{
|
|
|
452
512
|
required: false;
|
|
453
513
|
default: () => never[];
|
|
454
514
|
};
|
|
515
|
+
emitValue: {
|
|
516
|
+
type: BooleanConstructor;
|
|
517
|
+
default: boolean;
|
|
518
|
+
};
|
|
519
|
+
mapOptions: {
|
|
520
|
+
type: BooleanConstructor;
|
|
521
|
+
default: boolean;
|
|
522
|
+
};
|
|
523
|
+
optionValue: {
|
|
524
|
+
type: StringConstructor;
|
|
525
|
+
default: string;
|
|
526
|
+
};
|
|
527
|
+
optionLabel: {
|
|
528
|
+
type: StringConstructor;
|
|
529
|
+
default: string;
|
|
530
|
+
};
|
|
455
531
|
rules: {
|
|
456
532
|
type: globalThis.PropType<import('quasar').ValidationRule[]>;
|
|
457
533
|
required: false;
|
|
@@ -490,6 +566,10 @@ export declare const Default: StoryFn<{
|
|
|
490
566
|
rules: import('quasar').ValidationRule[];
|
|
491
567
|
clearable: boolean;
|
|
492
568
|
inPadding: string;
|
|
569
|
+
emitValue: boolean;
|
|
570
|
+
mapOptions: boolean;
|
|
571
|
+
optionValue: string;
|
|
572
|
+
optionLabel: string;
|
|
493
573
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
494
574
|
selectRef: import('quasar').QSelect | null;
|
|
495
575
|
}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -565,6 +645,22 @@ export declare const Default: StoryFn<{
|
|
|
565
645
|
required: false;
|
|
566
646
|
default: () => never[];
|
|
567
647
|
};
|
|
648
|
+
emitValue: {
|
|
649
|
+
type: BooleanConstructor;
|
|
650
|
+
default: boolean;
|
|
651
|
+
};
|
|
652
|
+
mapOptions: {
|
|
653
|
+
type: BooleanConstructor;
|
|
654
|
+
default: boolean;
|
|
655
|
+
};
|
|
656
|
+
optionValue: {
|
|
657
|
+
type: StringConstructor;
|
|
658
|
+
default: string;
|
|
659
|
+
};
|
|
660
|
+
optionLabel: {
|
|
661
|
+
type: StringConstructor;
|
|
662
|
+
default: string;
|
|
663
|
+
};
|
|
568
664
|
rules: {
|
|
569
665
|
type: globalThis.PropType<import('quasar').ValidationRule[]>;
|
|
570
666
|
required: false;
|
|
@@ -599,6 +695,10 @@ export declare const Default: StoryFn<{
|
|
|
599
695
|
rules: import('quasar').ValidationRule[];
|
|
600
696
|
clearable: boolean;
|
|
601
697
|
inPadding: string;
|
|
698
|
+
emitValue: boolean;
|
|
699
|
+
mapOptions: boolean;
|
|
700
|
+
optionValue: string;
|
|
701
|
+
optionLabel: string;
|
|
602
702
|
}>;
|
|
603
703
|
__isFragment?: undefined;
|
|
604
704
|
__isTeleport?: undefined;
|
|
@@ -669,6 +769,22 @@ export declare const Default: StoryFn<{
|
|
|
669
769
|
required: false;
|
|
670
770
|
default: () => never[];
|
|
671
771
|
};
|
|
772
|
+
emitValue: {
|
|
773
|
+
type: BooleanConstructor;
|
|
774
|
+
default: boolean;
|
|
775
|
+
};
|
|
776
|
+
mapOptions: {
|
|
777
|
+
type: BooleanConstructor;
|
|
778
|
+
default: boolean;
|
|
779
|
+
};
|
|
780
|
+
optionValue: {
|
|
781
|
+
type: StringConstructor;
|
|
782
|
+
default: string;
|
|
783
|
+
};
|
|
784
|
+
optionLabel: {
|
|
785
|
+
type: StringConstructor;
|
|
786
|
+
default: string;
|
|
787
|
+
};
|
|
672
788
|
rules: {
|
|
673
789
|
type: globalThis.PropType<import('quasar').ValidationRule[]>;
|
|
674
790
|
required: false;
|
|
@@ -707,6 +823,10 @@ export declare const Default: StoryFn<{
|
|
|
707
823
|
rules: import('quasar').ValidationRule[];
|
|
708
824
|
clearable: boolean;
|
|
709
825
|
inPadding: string;
|
|
826
|
+
emitValue: boolean;
|
|
827
|
+
mapOptions: boolean;
|
|
828
|
+
optionValue: string;
|
|
829
|
+
optionLabel: string;
|
|
710
830
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
711
831
|
$slots: {
|
|
712
832
|
prepend?(_: {}): any;
|
|
@@ -73,6 +73,22 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
73
73
|
required: false;
|
|
74
74
|
default: () => never[];
|
|
75
75
|
};
|
|
76
|
+
emitValue: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
mapOptions: {
|
|
81
|
+
type: BooleanConstructor;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
optionValue: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
88
|
+
optionLabel: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
76
92
|
rules: {
|
|
77
93
|
type: globalThis.PropType<ValidationRule[]>;
|
|
78
94
|
required: false;
|
|
@@ -158,6 +174,22 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
158
174
|
required: false;
|
|
159
175
|
default: () => never[];
|
|
160
176
|
};
|
|
177
|
+
emitValue: {
|
|
178
|
+
type: BooleanConstructor;
|
|
179
|
+
default: boolean;
|
|
180
|
+
};
|
|
181
|
+
mapOptions: {
|
|
182
|
+
type: BooleanConstructor;
|
|
183
|
+
default: boolean;
|
|
184
|
+
};
|
|
185
|
+
optionValue: {
|
|
186
|
+
type: StringConstructor;
|
|
187
|
+
default: string;
|
|
188
|
+
};
|
|
189
|
+
optionLabel: {
|
|
190
|
+
type: StringConstructor;
|
|
191
|
+
default: string;
|
|
192
|
+
};
|
|
161
193
|
rules: {
|
|
162
194
|
type: globalThis.PropType<ValidationRule[]>;
|
|
163
195
|
required: false;
|
|
@@ -185,6 +217,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
185
217
|
rules: ValidationRule[];
|
|
186
218
|
clearable: boolean;
|
|
187
219
|
inPadding: string;
|
|
220
|
+
emitValue: boolean;
|
|
221
|
+
mapOptions: boolean;
|
|
222
|
+
optionValue: string;
|
|
223
|
+
optionLabel: string;
|
|
188
224
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
189
225
|
selectRef: QSelect | null;
|
|
190
226
|
}, any>, {
|