@juit/vue-z 0.0.24 → 0.0.26
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/globals.d.ts +3 -0
- package/dist/index.d.ts +274 -52
- package/dist/index.js +632 -730
- package/dist/index.js.map +1 -1
- package/package.json +15 -9
package/dist/globals.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import type {
|
|
|
16
16
|
ZDateRange,
|
|
17
17
|
ZDialog,
|
|
18
18
|
ZEan13,
|
|
19
|
+
ZEuro,
|
|
19
20
|
ZForm,
|
|
20
21
|
ZFormHelper,
|
|
21
22
|
ZHeader,
|
|
@@ -110,6 +111,8 @@ declare module 'vue' {
|
|
|
110
111
|
ZNullableNumber: ComponentConstructor<ZNullableNumber>,
|
|
111
112
|
/** Number input */
|
|
112
113
|
ZNumber: ComponentConstructor<ZNumber>,
|
|
114
|
+
/** Euro input */
|
|
115
|
+
ZEuro: ComponentConstructor<ZEuro>,
|
|
113
116
|
/** Password input */
|
|
114
117
|
ZPassword: ComponentConstructor<ZPassword>,
|
|
115
118
|
/** Picker input */
|
package/dist/index.d.ts
CHANGED
|
@@ -299,6 +299,214 @@ type: BooleanConstructor;
|
|
|
299
299
|
required: false;
|
|
300
300
|
default: boolean;
|
|
301
301
|
};
|
|
302
|
+
/** Minimum value (inclusive) > IN CENTS!!! */
|
|
303
|
+
minimum: {
|
|
304
|
+
type: PropType<number | undefined>;
|
|
305
|
+
required: false;
|
|
306
|
+
default: undefined;
|
|
307
|
+
};
|
|
308
|
+
/** Maximum value (inclusive) > IN CENTS!!! */
|
|
309
|
+
maximum: {
|
|
310
|
+
type: PropType<number | undefined>;
|
|
311
|
+
required: false;
|
|
312
|
+
default: undefined;
|
|
313
|
+
};
|
|
314
|
+
/** The validation rules to apply to this field */
|
|
315
|
+
rules: {
|
|
316
|
+
type: PropType<ZValidator<number>[]>;
|
|
317
|
+
required: false;
|
|
318
|
+
default: () => never[];
|
|
319
|
+
};
|
|
320
|
+
modelValue: {
|
|
321
|
+
type: PropType<number>;
|
|
322
|
+
};
|
|
323
|
+
}>, {
|
|
324
|
+
/** Focus on this control */
|
|
325
|
+
focus: () => void | undefined;
|
|
326
|
+
/** Reset validation for this field */
|
|
327
|
+
resetValidation: () => void | undefined;
|
|
328
|
+
/** Force validation of this field */
|
|
329
|
+
validate: () => boolean | Promise<boolean>;
|
|
330
|
+
/** If the field has validation errors or not */
|
|
331
|
+
hasError: ComputedRef<boolean>;
|
|
332
|
+
/** If the field has validation errors or not */
|
|
333
|
+
isEditable: ComputedRef<boolean>;
|
|
334
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
335
|
+
"update:modelValue": (value: number) => any;
|
|
336
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
337
|
+
readonly: {
|
|
338
|
+
readonly type: PropType<boolean | undefined>;
|
|
339
|
+
readonly required: false;
|
|
340
|
+
readonly default: undefined;
|
|
341
|
+
};
|
|
342
|
+
bottomSlots: {
|
|
343
|
+
readonly type: PropType<boolean | undefined>;
|
|
344
|
+
readonly required: false;
|
|
345
|
+
readonly default: undefined;
|
|
346
|
+
};
|
|
347
|
+
editable: {
|
|
348
|
+
readonly type: PropType<boolean | undefined>;
|
|
349
|
+
readonly required: false;
|
|
350
|
+
readonly default: undefined;
|
|
351
|
+
};
|
|
352
|
+
disabled: {
|
|
353
|
+
readonly type: PropType<boolean | undefined>;
|
|
354
|
+
readonly required: false;
|
|
355
|
+
readonly default: undefined;
|
|
356
|
+
};
|
|
357
|
+
lazyRules: {
|
|
358
|
+
readonly type: PropType<boolean | "ondemand">;
|
|
359
|
+
readonly required: false;
|
|
360
|
+
readonly default: undefined;
|
|
361
|
+
};
|
|
362
|
+
/** The virtual keyboard to use on mobile devices*/
|
|
363
|
+
mode: {
|
|
364
|
+
type: PropType<"decimal" | "numeric">;
|
|
365
|
+
required: false;
|
|
366
|
+
default: string;
|
|
367
|
+
};
|
|
368
|
+
/** The label for this input text */
|
|
369
|
+
label: {
|
|
370
|
+
type: StringConstructor;
|
|
371
|
+
required: true;
|
|
372
|
+
};
|
|
373
|
+
/** The placeholder text when no input was entered */
|
|
374
|
+
placeholder: {
|
|
375
|
+
type: StringConstructor;
|
|
376
|
+
required: false;
|
|
377
|
+
default: string;
|
|
378
|
+
};
|
|
379
|
+
/** The hint to display below the input field */
|
|
380
|
+
hint: {
|
|
381
|
+
type: PropType<string | undefined>;
|
|
382
|
+
required: false;
|
|
383
|
+
default: undefined;
|
|
384
|
+
};
|
|
385
|
+
/** The icon to display within the control */
|
|
386
|
+
icon: {
|
|
387
|
+
type: PropType<string | undefined>;
|
|
388
|
+
required: false;
|
|
389
|
+
default: undefined;
|
|
390
|
+
};
|
|
391
|
+
/** The suffix to add to the input */
|
|
392
|
+
suffix: {
|
|
393
|
+
type: PropType<string>;
|
|
394
|
+
required: false;
|
|
395
|
+
default: string;
|
|
396
|
+
};
|
|
397
|
+
/** Required (that is, we need a non-null number, non-empty string) */
|
|
398
|
+
required: {
|
|
399
|
+
type: BooleanConstructor;
|
|
400
|
+
required: false;
|
|
401
|
+
default: boolean;
|
|
402
|
+
};
|
|
403
|
+
/** Minimum value (inclusive) > IN CENTS!!! */
|
|
404
|
+
minimum: {
|
|
405
|
+
type: PropType<number | undefined>;
|
|
406
|
+
required: false;
|
|
407
|
+
default: undefined;
|
|
408
|
+
};
|
|
409
|
+
/** Maximum value (inclusive) > IN CENTS!!! */
|
|
410
|
+
maximum: {
|
|
411
|
+
type: PropType<number | undefined>;
|
|
412
|
+
required: false;
|
|
413
|
+
default: undefined;
|
|
414
|
+
};
|
|
415
|
+
/** The validation rules to apply to this field */
|
|
416
|
+
rules: {
|
|
417
|
+
type: PropType<ZValidator<number>[]>;
|
|
418
|
+
required: false;
|
|
419
|
+
default: () => never[];
|
|
420
|
+
};
|
|
421
|
+
modelValue: {
|
|
422
|
+
type: PropType<number>;
|
|
423
|
+
};
|
|
424
|
+
}>> & Readonly<{
|
|
425
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
426
|
+
}>, {
|
|
427
|
+
icon: string | undefined;
|
|
428
|
+
required: boolean;
|
|
429
|
+
editable: boolean | undefined;
|
|
430
|
+
disabled: boolean | undefined;
|
|
431
|
+
lazyRules: boolean | "ondemand";
|
|
432
|
+
bottomSlots: boolean | undefined;
|
|
433
|
+
readonly: boolean | undefined;
|
|
434
|
+
mode: "decimal" | "numeric";
|
|
435
|
+
placeholder: string;
|
|
436
|
+
hint: string | undefined;
|
|
437
|
+
suffix: string;
|
|
438
|
+
rules: ZValidator<number>[];
|
|
439
|
+
minimum: number | undefined;
|
|
440
|
+
maximum: number | undefined;
|
|
441
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
442
|
+
|
|
443
|
+
declare const __VLS_component_12: DefineComponent<ExtractPropTypes< {
|
|
444
|
+
readonly: {
|
|
445
|
+
readonly type: PropType<boolean | undefined>;
|
|
446
|
+
readonly required: false;
|
|
447
|
+
readonly default: undefined;
|
|
448
|
+
};
|
|
449
|
+
bottomSlots: {
|
|
450
|
+
readonly type: PropType<boolean | undefined>;
|
|
451
|
+
readonly required: false;
|
|
452
|
+
readonly default: undefined;
|
|
453
|
+
};
|
|
454
|
+
editable: {
|
|
455
|
+
readonly type: PropType<boolean | undefined>;
|
|
456
|
+
readonly required: false;
|
|
457
|
+
readonly default: undefined;
|
|
458
|
+
};
|
|
459
|
+
disabled: {
|
|
460
|
+
readonly type: PropType<boolean | undefined>;
|
|
461
|
+
readonly required: false;
|
|
462
|
+
readonly default: undefined;
|
|
463
|
+
};
|
|
464
|
+
lazyRules: {
|
|
465
|
+
readonly type: PropType<boolean | "ondemand">;
|
|
466
|
+
readonly required: false;
|
|
467
|
+
readonly default: undefined;
|
|
468
|
+
};
|
|
469
|
+
/** The virtual keyboard to use on mobile devices*/
|
|
470
|
+
mode: {
|
|
471
|
+
type: PropType<"decimal" | "numeric">;
|
|
472
|
+
required: false;
|
|
473
|
+
default: string;
|
|
474
|
+
};
|
|
475
|
+
/** The label for this input text */
|
|
476
|
+
label: {
|
|
477
|
+
type: StringConstructor;
|
|
478
|
+
required: true;
|
|
479
|
+
};
|
|
480
|
+
/** The placeholder text when no input was entered */
|
|
481
|
+
placeholder: {
|
|
482
|
+
type: StringConstructor;
|
|
483
|
+
required: false;
|
|
484
|
+
default: string;
|
|
485
|
+
};
|
|
486
|
+
/** The hint to display below the input field */
|
|
487
|
+
hint: {
|
|
488
|
+
type: PropType<string | undefined>;
|
|
489
|
+
required: false;
|
|
490
|
+
default: undefined;
|
|
491
|
+
};
|
|
492
|
+
/** The icon to display within the control */
|
|
493
|
+
icon: {
|
|
494
|
+
type: PropType<string | undefined>;
|
|
495
|
+
required: false;
|
|
496
|
+
default: undefined;
|
|
497
|
+
};
|
|
498
|
+
/** The suffix to add to the input */
|
|
499
|
+
suffix: {
|
|
500
|
+
type: PropType<string>;
|
|
501
|
+
required: false;
|
|
502
|
+
default: string;
|
|
503
|
+
};
|
|
504
|
+
/** Required (that is, we need a non-null number, non-empty string) */
|
|
505
|
+
required: {
|
|
506
|
+
type: BooleanConstructor;
|
|
507
|
+
required: false;
|
|
508
|
+
default: boolean;
|
|
509
|
+
};
|
|
302
510
|
/** Minimum value (inclusive) */
|
|
303
511
|
minimum: {
|
|
304
512
|
type: PropType<number | undefined>;
|
|
@@ -440,7 +648,7 @@ minimum: number | undefined;
|
|
|
440
648
|
maximum: number | undefined;
|
|
441
649
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
442
650
|
|
|
443
|
-
declare const
|
|
651
|
+
declare const __VLS_component_13: DefineComponent<ExtractPropTypes< {
|
|
444
652
|
readonly: {
|
|
445
653
|
readonly type: PropType<boolean | undefined>;
|
|
446
654
|
readonly required: false;
|
|
@@ -620,7 +828,7 @@ minimum: number | undefined;
|
|
|
620
828
|
maximum: number | undefined;
|
|
621
829
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
622
830
|
|
|
623
|
-
declare const
|
|
831
|
+
declare const __VLS_component_14: DefineComponent<ExtractPropTypes< {
|
|
624
832
|
readonly: {
|
|
625
833
|
readonly type: PropType<boolean | undefined>;
|
|
626
834
|
readonly required: false;
|
|
@@ -819,7 +1027,7 @@ hint: string | undefined;
|
|
|
819
1027
|
onClear: (() => any) | undefined;
|
|
820
1028
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
821
1029
|
|
|
822
|
-
declare const
|
|
1030
|
+
declare const __VLS_component_15: DefineComponent<ExtractPropTypes< {
|
|
823
1031
|
readonly: {
|
|
824
1032
|
readonly type: PropType<boolean | undefined>;
|
|
825
1033
|
readonly required: false;
|
|
@@ -1002,7 +1210,7 @@ prefix: string | undefined;
|
|
|
1002
1210
|
clearable: boolean;
|
|
1003
1211
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1004
1212
|
|
|
1005
|
-
declare const
|
|
1213
|
+
declare const __VLS_component_16: DefineComponent<ExtractPropTypes< {
|
|
1006
1214
|
readonly: {
|
|
1007
1215
|
readonly type: PropType<boolean | undefined>;
|
|
1008
1216
|
readonly required: false;
|
|
@@ -1247,7 +1455,7 @@ rules: ZValidator<string>[];
|
|
|
1247
1455
|
minLength: number;
|
|
1248
1456
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1249
1457
|
|
|
1250
|
-
declare const
|
|
1458
|
+
declare const __VLS_component_17: DefineComponent<ExtractPropTypes< {
|
|
1251
1459
|
readonly: {
|
|
1252
1460
|
readonly type: PropType<boolean | undefined>;
|
|
1253
1461
|
readonly required: false;
|
|
@@ -1580,7 +1788,7 @@ onClickIcon: ((event: PointerEvent) => any) | undefined;
|
|
|
1580
1788
|
onClear: (() => any) | undefined;
|
|
1581
1789
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1582
1790
|
|
|
1583
|
-
declare const
|
|
1791
|
+
declare const __VLS_component_18: DefineComponent<ExtractPropTypes< {
|
|
1584
1792
|
label: {
|
|
1585
1793
|
type: StringConstructor;
|
|
1586
1794
|
required: false;
|
|
@@ -1607,7 +1815,7 @@ label: string;
|
|
|
1607
1815
|
caption: string;
|
|
1608
1816
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1609
1817
|
|
|
1610
|
-
declare const
|
|
1818
|
+
declare const __VLS_component_19: DefineComponent<ExtractPropTypes< {
|
|
1611
1819
|
/** Label for the page title (optional, see also the `label` slot) */
|
|
1612
1820
|
label: {
|
|
1613
1821
|
type: StringConstructor;
|
|
@@ -1740,7 +1948,13 @@ onDelete: (() => any) | undefined;
|
|
|
1740
1948
|
onRestore: (() => any) | undefined;
|
|
1741
1949
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1742
1950
|
|
|
1743
|
-
declare const
|
|
1951
|
+
declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {
|
|
1952
|
+
show: () => void | undefined;
|
|
1953
|
+
hide: () => void | undefined;
|
|
1954
|
+
toggle: () => void | undefined;
|
|
1955
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1956
|
+
|
|
1957
|
+
declare const __VLS_component_20: DefineComponent<ExtractPropTypes< {
|
|
1744
1958
|
/** The object being created */
|
|
1745
1959
|
value: {
|
|
1746
1960
|
type: PropType<Record<string, any> | undefined>;
|
|
@@ -1800,13 +2014,7 @@ disabled: boolean | undefined;
|
|
|
1800
2014
|
caption: string;
|
|
1801
2015
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1802
2016
|
|
|
1803
|
-
declare const
|
|
1804
|
-
show: () => void | undefined;
|
|
1805
|
-
hide: () => void | undefined;
|
|
1806
|
-
toggle: () => void | undefined;
|
|
1807
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1808
|
-
|
|
1809
|
-
declare const __VLS_component_20: DefineComponent<ExtractPropTypes< {
|
|
2017
|
+
declare const __VLS_component_21: DefineComponent<ExtractPropTypes< {
|
|
1810
2018
|
/** Optional title for this table */
|
|
1811
2019
|
title: {
|
|
1812
2020
|
type: StringConstructor;
|
|
@@ -2604,18 +2812,18 @@ declare type __VLS_Slots_12 = {
|
|
|
2604
2812
|
};
|
|
2605
2813
|
|
|
2606
2814
|
declare type __VLS_Slots_13 = {
|
|
2607
|
-
default?: (formProps: Readonly<ZFormProps>) => VNode[];
|
|
2608
2815
|
append?: (formProps: Readonly<ZFormProps>) => VNode[];
|
|
2609
2816
|
};
|
|
2610
2817
|
|
|
2611
2818
|
declare type __VLS_Slots_14 = {
|
|
2612
|
-
|
|
2819
|
+
default?: (formProps: Readonly<ZFormProps>) => VNode[];
|
|
2613
2820
|
append?: (formProps: Readonly<ZFormProps>) => VNode[];
|
|
2614
|
-
option?: QSelectSlots['option'];
|
|
2615
2821
|
};
|
|
2616
2822
|
|
|
2617
2823
|
declare type __VLS_Slots_15 = {
|
|
2824
|
+
prepend?: (formProps: Readonly<ZFormProps>) => VNode[];
|
|
2618
2825
|
append?: (formProps: Readonly<ZFormProps>) => VNode[];
|
|
2826
|
+
option?: QSelectSlots['option'];
|
|
2619
2827
|
};
|
|
2620
2828
|
|
|
2621
2829
|
declare type __VLS_Slots_16 = {
|
|
@@ -2623,13 +2831,17 @@ declare type __VLS_Slots_16 = {
|
|
|
2623
2831
|
};
|
|
2624
2832
|
|
|
2625
2833
|
declare type __VLS_Slots_17 = {
|
|
2834
|
+
append?: (formProps: Readonly<ZFormProps>) => VNode[];
|
|
2835
|
+
};
|
|
2836
|
+
|
|
2837
|
+
declare type __VLS_Slots_18 = {
|
|
2626
2838
|
default(): VNode[];
|
|
2627
2839
|
caption?: () => VNode[];
|
|
2628
2840
|
label?: () => VNode[];
|
|
2629
2841
|
info?: () => VNode[];
|
|
2630
2842
|
};
|
|
2631
2843
|
|
|
2632
|
-
declare type
|
|
2844
|
+
declare type __VLS_Slots_19 = {
|
|
2633
2845
|
/** The components of the form for the object being viewed/edited */
|
|
2634
2846
|
'default': () => VNode[];
|
|
2635
2847
|
/** Label for the page title (optional, see also the `label` prop) */
|
|
@@ -2648,7 +2860,9 @@ declare type __VLS_Slots_18 = {
|
|
|
2648
2860
|
'controls-under'?: () => VNode[];
|
|
2649
2861
|
};
|
|
2650
2862
|
|
|
2651
|
-
declare type
|
|
2863
|
+
declare type __VLS_Slots_2 = Partial<QBtnDropdownSlots>;
|
|
2864
|
+
|
|
2865
|
+
declare type __VLS_Slots_20 = {
|
|
2652
2866
|
/** The components of the form for the object being viewed/edited */
|
|
2653
2867
|
default: () => VNode[];
|
|
2654
2868
|
/** Label for the page title (optional, see also the `label` prop) */
|
|
@@ -2657,9 +2871,7 @@ declare type __VLS_Slots_19 = {
|
|
|
2657
2871
|
caption?: () => VNode[];
|
|
2658
2872
|
};
|
|
2659
2873
|
|
|
2660
|
-
declare type
|
|
2661
|
-
|
|
2662
|
-
declare type __VLS_Slots_20 = {
|
|
2874
|
+
declare type __VLS_Slots_21 = {
|
|
2663
2875
|
[key: `data-${string}`]: (props: {
|
|
2664
2876
|
index: number;
|
|
2665
2877
|
row: any;
|
|
@@ -2771,6 +2983,12 @@ declare type __VLS_WithSlots_20<T, S> = T & {
|
|
|
2771
2983
|
};
|
|
2772
2984
|
};
|
|
2773
2985
|
|
|
2986
|
+
declare type __VLS_WithSlots_21<T, S> = T & {
|
|
2987
|
+
new (): {
|
|
2988
|
+
$slots: S;
|
|
2989
|
+
};
|
|
2990
|
+
};
|
|
2991
|
+
|
|
2774
2992
|
declare type __VLS_WithSlots_3<T, S> = T & {
|
|
2775
2993
|
new (): {
|
|
2776
2994
|
$slots: S;
|
|
@@ -3823,7 +4041,9 @@ hint: string | undefined;
|
|
|
3823
4041
|
rules: ZValidator<string>[];
|
|
3824
4042
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3825
4043
|
|
|
3826
|
-
declare const _default_22:
|
|
4044
|
+
declare const _default_22: __VLS_WithSlots_11<typeof __VLS_component_11, __VLS_Slots_11>;
|
|
4045
|
+
|
|
4046
|
+
declare const _default_23: DefineComponent<ExtractPropTypes< {
|
|
3827
4047
|
/** The value to display in this label */
|
|
3828
4048
|
value: {
|
|
3829
4049
|
type: PropType<string | number | boolean | null | undefined>;
|
|
@@ -3942,11 +4162,11 @@ hint: string | undefined;
|
|
|
3942
4162
|
minimal: boolean;
|
|
3943
4163
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3944
4164
|
|
|
3945
|
-
declare const _default_23: __VLS_WithSlots_11<typeof __VLS_component_11, __VLS_Slots_11>;
|
|
3946
|
-
|
|
3947
4165
|
declare const _default_24: __VLS_WithSlots_12<typeof __VLS_component_12, __VLS_Slots_12>;
|
|
3948
4166
|
|
|
3949
|
-
declare const _default_25:
|
|
4167
|
+
declare const _default_25: __VLS_WithSlots_13<typeof __VLS_component_13, __VLS_Slots_13>;
|
|
4168
|
+
|
|
4169
|
+
declare const _default_26: DefineComponent<ExtractPropTypes< {
|
|
3950
4170
|
readonly: {
|
|
3951
4171
|
readonly type: PropType<boolean | undefined>;
|
|
3952
4172
|
readonly required: false;
|
|
@@ -4103,13 +4323,15 @@ rules: ZValidator<string>[];
|
|
|
4103
4323
|
minLength: number;
|
|
4104
4324
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4105
4325
|
|
|
4106
|
-
declare const _default_26: __VLS_WithSlots_13<typeof __VLS_component_13, __VLS_Slots_13>;
|
|
4107
|
-
|
|
4108
4326
|
declare const _default_27: __VLS_WithSlots_14<typeof __VLS_component_14, __VLS_Slots_14>;
|
|
4109
4327
|
|
|
4110
4328
|
declare const _default_28: __VLS_WithSlots_15<typeof __VLS_component_15, __VLS_Slots_15>;
|
|
4111
4329
|
|
|
4112
|
-
declare const _default_29:
|
|
4330
|
+
declare const _default_29: __VLS_WithSlots_16<typeof __VLS_component_16, __VLS_Slots_16>;
|
|
4331
|
+
|
|
4332
|
+
declare const _default_3: __VLS_WithSlots_3<typeof __VLS_component_3, __VLS_Slots_3>;
|
|
4333
|
+
|
|
4334
|
+
declare const _default_30: DefineComponent<ExtractPropTypes< {
|
|
4113
4335
|
readonly: {
|
|
4114
4336
|
readonly type: PropType<boolean | undefined>;
|
|
4115
4337
|
readonly required: false;
|
|
@@ -4260,11 +4482,9 @@ tags: string[];
|
|
|
4260
4482
|
noNewValues: boolean;
|
|
4261
4483
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4262
4484
|
|
|
4263
|
-
declare const
|
|
4264
|
-
|
|
4265
|
-
declare const _default_30: __VLS_WithSlots_16<typeof __VLS_component_16, __VLS_Slots_16>;
|
|
4485
|
+
declare const _default_31: __VLS_WithSlots_17<typeof __VLS_component_17, __VLS_Slots_17>;
|
|
4266
4486
|
|
|
4267
|
-
declare const
|
|
4487
|
+
declare const _default_32: DefineComponent<ExtractPropTypes< {
|
|
4268
4488
|
readonly: {
|
|
4269
4489
|
readonly type: PropType<boolean | undefined>;
|
|
4270
4490
|
readonly required: false;
|
|
@@ -4431,15 +4651,15 @@ rules: ZValidator<string>[];
|
|
|
4431
4651
|
country: string;
|
|
4432
4652
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4433
4653
|
|
|
4434
|
-
declare const _default_32: __VLS_WithSlots_17<typeof __VLS_component_17, __VLS_Slots_17>;
|
|
4435
|
-
|
|
4436
4654
|
declare const _default_33: __VLS_WithSlots_18<typeof __VLS_component_18, __VLS_Slots_18>;
|
|
4437
4655
|
|
|
4438
4656
|
declare const _default_34: __VLS_WithSlots_19<typeof __VLS_component_19, __VLS_Slots_19>;
|
|
4439
4657
|
|
|
4440
4658
|
declare const _default_35: __VLS_WithSlots_20<typeof __VLS_component_20, __VLS_Slots_20>;
|
|
4441
4659
|
|
|
4442
|
-
declare const _default_36:
|
|
4660
|
+
declare const _default_36: __VLS_WithSlots_21<typeof __VLS_component_21, __VLS_Slots_21>;
|
|
4661
|
+
|
|
4662
|
+
declare const _default_37: DefineComponent<ExtractPropTypes< {
|
|
4443
4663
|
tag: {
|
|
4444
4664
|
type: StringConstructor;
|
|
4445
4665
|
required: true;
|
|
@@ -5358,6 +5578,8 @@ export declare interface ZDialogs {
|
|
|
5358
5578
|
|
|
5359
5579
|
export declare type ZEan13 = InstanceType<typeof _default_21>;
|
|
5360
5580
|
|
|
5581
|
+
export declare type ZEuro = InstanceType<typeof _default_22>;
|
|
5582
|
+
|
|
5361
5583
|
export declare type ZForm = InstanceType<typeof _default_13>;
|
|
5362
5584
|
|
|
5363
5585
|
export declare type ZFormHelper = InstanceType<typeof _default_14>;
|
|
@@ -5370,11 +5592,11 @@ export declare type ZFormProps = {
|
|
|
5370
5592
|
bottomSlots: boolean;
|
|
5371
5593
|
};
|
|
5372
5594
|
|
|
5373
|
-
export declare type ZHeader = InstanceType<typeof
|
|
5595
|
+
export declare type ZHeader = InstanceType<typeof _default_33>;
|
|
5374
5596
|
|
|
5375
5597
|
export declare type ZInputGroup = InstanceType<typeof _default_15>;
|
|
5376
5598
|
|
|
5377
|
-
export declare type ZLabel = InstanceType<typeof
|
|
5599
|
+
export declare type ZLabel = InstanceType<typeof _default_23>;
|
|
5378
5600
|
|
|
5379
5601
|
export declare interface ZListicle {
|
|
5380
5602
|
offset: number;
|
|
@@ -5392,13 +5614,13 @@ export declare interface ZLoader {
|
|
|
5392
5614
|
load<T>(callback: () => T | Promise<T>): Promise<T>;
|
|
5393
5615
|
}
|
|
5394
5616
|
|
|
5395
|
-
export declare type ZNullableNumber = InstanceType<typeof
|
|
5617
|
+
export declare type ZNullableNumber = InstanceType<typeof _default_24>;
|
|
5396
5618
|
|
|
5397
|
-
export declare type ZNumber = InstanceType<typeof
|
|
5619
|
+
export declare type ZNumber = InstanceType<typeof _default_25>;
|
|
5398
5620
|
|
|
5399
|
-
export declare type ZObject = InstanceType<typeof
|
|
5621
|
+
export declare type ZObject = InstanceType<typeof _default_34>;
|
|
5400
5622
|
|
|
5401
|
-
export declare type ZObjectNew = InstanceType<typeof
|
|
5623
|
+
export declare type ZObjectNew = InstanceType<typeof _default_35>;
|
|
5402
5624
|
|
|
5403
5625
|
/** An option from select components */
|
|
5404
5626
|
export declare interface ZOption {
|
|
@@ -5406,9 +5628,9 @@ export declare interface ZOption {
|
|
|
5406
5628
|
value: string;
|
|
5407
5629
|
}
|
|
5408
5630
|
|
|
5409
|
-
export declare type ZPassword = InstanceType<typeof
|
|
5631
|
+
export declare type ZPassword = InstanceType<typeof _default_26>;
|
|
5410
5632
|
|
|
5411
|
-
export declare type ZPicker = InstanceType<typeof
|
|
5633
|
+
export declare type ZPicker = InstanceType<typeof _default_27>;
|
|
5412
5634
|
|
|
5413
5635
|
export declare type ZProgressDialog = InstanceType<typeof _default_12>;
|
|
5414
5636
|
|
|
@@ -5448,11 +5670,11 @@ export declare type ZQueryReactiveObject = Record<string, ZQueryReactiveValue |
|
|
|
5448
5670
|
/** Types accepted by our reactive object */
|
|
5449
5671
|
export declare type ZQueryReactiveValue = string | number | boolean;
|
|
5450
5672
|
|
|
5451
|
-
export declare type ZSelect = InstanceType<typeof
|
|
5673
|
+
export declare type ZSelect = InstanceType<typeof _default_28>;
|
|
5452
5674
|
|
|
5453
|
-
export declare type ZString = InstanceType<typeof
|
|
5675
|
+
export declare type ZString = InstanceType<typeof _default_29>;
|
|
5454
5676
|
|
|
5455
|
-
export declare type ZTable = InstanceType<typeof
|
|
5677
|
+
export declare type ZTable = InstanceType<typeof _default_36>;
|
|
5456
5678
|
|
|
5457
5679
|
/** A single column definition */
|
|
5458
5680
|
export declare interface ZTableColumn<T = any> {
|
|
@@ -5496,13 +5718,13 @@ export declare interface ZTableState {
|
|
|
5496
5718
|
desc: boolean;
|
|
5497
5719
|
}
|
|
5498
5720
|
|
|
5499
|
-
export declare type ZTag = InstanceType<typeof
|
|
5721
|
+
export declare type ZTag = InstanceType<typeof _default_37>;
|
|
5500
5722
|
|
|
5501
|
-
export declare type ZTags = InstanceType<typeof
|
|
5723
|
+
export declare type ZTags = InstanceType<typeof _default_30>;
|
|
5502
5724
|
|
|
5503
|
-
export declare type ZTelephone = InstanceType<typeof
|
|
5725
|
+
export declare type ZTelephone = InstanceType<typeof _default_32>;
|
|
5504
5726
|
|
|
5505
|
-
export declare type ZText = InstanceType<typeof
|
|
5727
|
+
export declare type ZText = InstanceType<typeof _default_31>;
|
|
5506
5728
|
|
|
5507
5729
|
/** A non-async validation rule */
|
|
5508
5730
|
export declare interface ZValidator<T> {
|