ra-element 0.1.37 → 0.1.39
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/docs/ra-dialog.md +1 -0
- package/lib/components/ra-button/index.vue.d.ts +40 -12
- package/lib/components/ra-checkbox-group/index.vue.d.ts +134 -4
- package/lib/components/ra-date-picker/index.vue.d.ts +216 -44
- package/lib/components/ra-dialog/index.vue.d.ts +173 -28
- package/lib/components/ra-dialog-select/index.vue.d.ts +3 -3
- package/lib/components/ra-input/index.vue.d.ts +50 -24
- package/lib/components/ra-radio-group/index.vue.d.ts +70 -4
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +19519 -18603
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +13 -39
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +3 -3
- package/lib/components/ra-select/index.vue.d.ts +0 -1692
|
@@ -24,13 +24,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
24
24
|
$data: {};
|
|
25
25
|
$props: Partial<{
|
|
26
26
|
readonly disabled: boolean;
|
|
27
|
+
readonly tabindex: string | number;
|
|
27
28
|
readonly id: string;
|
|
28
29
|
readonly type: string;
|
|
29
30
|
readonly modelValue: string | number | null | undefined;
|
|
30
|
-
readonly tabindex: string | number;
|
|
31
31
|
readonly readonly: boolean;
|
|
32
32
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
33
|
-
readonly autocomplete:
|
|
33
|
+
readonly autocomplete: AutoFill;
|
|
34
34
|
readonly containerRole: string;
|
|
35
35
|
readonly validateEvent: boolean;
|
|
36
36
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -50,7 +50,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
50
50
|
readonly clearable: boolean;
|
|
51
51
|
readonly readonly: boolean;
|
|
52
52
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
53
|
-
readonly autocomplete:
|
|
53
|
+
readonly autocomplete: AutoFill;
|
|
54
54
|
readonly showPassword: boolean;
|
|
55
55
|
readonly showWordLimit: boolean;
|
|
56
56
|
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
@@ -61,6 +61,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
61
61
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
62
62
|
readonly ariaLabel?: string | undefined;
|
|
63
63
|
readonly id?: string | undefined;
|
|
64
|
+
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
64
65
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
65
66
|
readonly placeholder?: string | undefined;
|
|
66
67
|
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
@@ -82,7 +83,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
82
83
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
83
84
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
84
85
|
onClear?: (() => any) | undefined | undefined;
|
|
85
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "validateEvent" | "
|
|
86
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "validateEvent" | "id" | "tabindex" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
|
|
86
87
|
$attrs: {
|
|
87
88
|
[x: string]: unknown;
|
|
88
89
|
};
|
|
@@ -166,7 +167,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
166
167
|
readonly default: false;
|
|
167
168
|
};
|
|
168
169
|
readonly autocomplete: {
|
|
169
|
-
readonly type: import('vue').PropType<
|
|
170
|
+
readonly type: import('vue').PropType<AutoFill>;
|
|
170
171
|
readonly required: false;
|
|
171
172
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
172
173
|
__epPropKey: true;
|
|
@@ -199,6 +200,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
199
200
|
};
|
|
200
201
|
readonly readonly: BooleanConstructor;
|
|
201
202
|
readonly clearable: BooleanConstructor;
|
|
203
|
+
readonly clearIcon: {
|
|
204
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
205
|
+
readonly required: false;
|
|
206
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
207
|
+
__epPropKey: true;
|
|
208
|
+
};
|
|
202
209
|
readonly showPassword: BooleanConstructor;
|
|
203
210
|
readonly showWordLimit: BooleanConstructor;
|
|
204
211
|
readonly suffixIcon: {
|
|
@@ -281,6 +288,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
281
288
|
resizeTextarea: () => void;
|
|
282
289
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
283
290
|
input: (value: string) => void;
|
|
291
|
+
focus: (evt: FocusEvent) => void;
|
|
284
292
|
clear: () => void;
|
|
285
293
|
"update:modelValue": (value: string) => void;
|
|
286
294
|
change: (value: string) => void;
|
|
@@ -288,19 +296,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
288
296
|
compositionend: (evt: CompositionEvent) => void;
|
|
289
297
|
compositionstart: (evt: CompositionEvent) => void;
|
|
290
298
|
compositionupdate: (evt: CompositionEvent) => void;
|
|
291
|
-
focus: (evt: FocusEvent) => void;
|
|
292
299
|
keydown: (evt: Event | KeyboardEvent) => void;
|
|
293
300
|
mouseenter: (evt: MouseEvent) => void;
|
|
294
301
|
mouseleave: (evt: MouseEvent) => void;
|
|
295
302
|
}, string, {
|
|
296
303
|
readonly disabled: boolean;
|
|
304
|
+
readonly tabindex: string | number;
|
|
297
305
|
readonly id: string;
|
|
298
306
|
readonly type: string;
|
|
299
307
|
readonly modelValue: string | number | null | undefined;
|
|
300
|
-
readonly tabindex: string | number;
|
|
301
308
|
readonly readonly: boolean;
|
|
302
309
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
303
|
-
readonly autocomplete:
|
|
310
|
+
readonly autocomplete: AutoFill;
|
|
304
311
|
readonly containerRole: string;
|
|
305
312
|
readonly validateEvent: boolean;
|
|
306
313
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -332,13 +339,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
332
339
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
333
340
|
} & Readonly<{
|
|
334
341
|
readonly disabled: boolean;
|
|
342
|
+
readonly tabindex: string | number;
|
|
335
343
|
readonly id: string;
|
|
336
344
|
readonly type: string;
|
|
337
345
|
readonly modelValue: string | number | null | undefined;
|
|
338
|
-
readonly tabindex: string | number;
|
|
339
346
|
readonly readonly: boolean;
|
|
340
347
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
341
|
-
readonly autocomplete:
|
|
348
|
+
readonly autocomplete: AutoFill;
|
|
342
349
|
readonly containerRole: string;
|
|
343
350
|
readonly validateEvent: boolean;
|
|
344
351
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -417,7 +424,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
417
424
|
readonly default: false;
|
|
418
425
|
};
|
|
419
426
|
readonly autocomplete: {
|
|
420
|
-
readonly type: import('vue').PropType<
|
|
427
|
+
readonly type: import('vue').PropType<AutoFill>;
|
|
421
428
|
readonly required: false;
|
|
422
429
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
423
430
|
__epPropKey: true;
|
|
@@ -450,6 +457,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
450
457
|
};
|
|
451
458
|
readonly readonly: BooleanConstructor;
|
|
452
459
|
readonly clearable: BooleanConstructor;
|
|
460
|
+
readonly clearIcon: {
|
|
461
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
462
|
+
readonly required: false;
|
|
463
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
464
|
+
__epPropKey: true;
|
|
465
|
+
};
|
|
453
466
|
readonly showPassword: BooleanConstructor;
|
|
454
467
|
readonly showWordLimit: BooleanConstructor;
|
|
455
468
|
readonly suffixIcon: {
|
|
@@ -518,7 +531,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
518
531
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
519
532
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
520
533
|
onClear?: (() => any) | undefined;
|
|
521
|
-
}, "disabled" | "type" | "input" | "select" | "textarea" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "validateEvent" | "
|
|
534
|
+
}, "disabled" | "type" | "input" | "select" | "textarea" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "validateEvent" | "id" | "tabindex" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
522
535
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
523
536
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
524
537
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -542,13 +555,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
542
555
|
$data: {};
|
|
543
556
|
$props: Partial<{
|
|
544
557
|
readonly disabled: boolean;
|
|
558
|
+
readonly tabindex: string | number;
|
|
545
559
|
readonly id: string;
|
|
546
560
|
readonly type: string;
|
|
547
561
|
readonly modelValue: string | number | null | undefined;
|
|
548
|
-
readonly tabindex: string | number;
|
|
549
562
|
readonly readonly: boolean;
|
|
550
563
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
551
|
-
readonly autocomplete:
|
|
564
|
+
readonly autocomplete: AutoFill;
|
|
552
565
|
readonly containerRole: string;
|
|
553
566
|
readonly validateEvent: boolean;
|
|
554
567
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -568,7 +581,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
568
581
|
readonly clearable: boolean;
|
|
569
582
|
readonly readonly: boolean;
|
|
570
583
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
571
|
-
readonly autocomplete:
|
|
584
|
+
readonly autocomplete: AutoFill;
|
|
572
585
|
readonly showPassword: boolean;
|
|
573
586
|
readonly showWordLimit: boolean;
|
|
574
587
|
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
@@ -579,6 +592,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
579
592
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
580
593
|
readonly ariaLabel?: string | undefined;
|
|
581
594
|
readonly id?: string | undefined;
|
|
595
|
+
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
582
596
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
583
597
|
readonly placeholder?: string | undefined;
|
|
584
598
|
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
@@ -600,7 +614,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
600
614
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
601
615
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
602
616
|
onClear?: (() => any) | undefined | undefined;
|
|
603
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "validateEvent" | "
|
|
617
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "validateEvent" | "id" | "tabindex" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
|
|
604
618
|
$attrs: {
|
|
605
619
|
[x: string]: unknown;
|
|
606
620
|
};
|
|
@@ -684,7 +698,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
684
698
|
readonly default: false;
|
|
685
699
|
};
|
|
686
700
|
readonly autocomplete: {
|
|
687
|
-
readonly type: import('vue').PropType<
|
|
701
|
+
readonly type: import('vue').PropType<AutoFill>;
|
|
688
702
|
readonly required: false;
|
|
689
703
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
690
704
|
__epPropKey: true;
|
|
@@ -717,6 +731,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
717
731
|
};
|
|
718
732
|
readonly readonly: BooleanConstructor;
|
|
719
733
|
readonly clearable: BooleanConstructor;
|
|
734
|
+
readonly clearIcon: {
|
|
735
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
736
|
+
readonly required: false;
|
|
737
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
738
|
+
__epPropKey: true;
|
|
739
|
+
};
|
|
720
740
|
readonly showPassword: BooleanConstructor;
|
|
721
741
|
readonly showWordLimit: BooleanConstructor;
|
|
722
742
|
readonly suffixIcon: {
|
|
@@ -799,6 +819,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
799
819
|
resizeTextarea: () => void;
|
|
800
820
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
801
821
|
input: (value: string) => void;
|
|
822
|
+
focus: (evt: FocusEvent) => void;
|
|
802
823
|
clear: () => void;
|
|
803
824
|
"update:modelValue": (value: string) => void;
|
|
804
825
|
change: (value: string) => void;
|
|
@@ -806,19 +827,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
806
827
|
compositionend: (evt: CompositionEvent) => void;
|
|
807
828
|
compositionstart: (evt: CompositionEvent) => void;
|
|
808
829
|
compositionupdate: (evt: CompositionEvent) => void;
|
|
809
|
-
focus: (evt: FocusEvent) => void;
|
|
810
830
|
keydown: (evt: Event | KeyboardEvent) => void;
|
|
811
831
|
mouseenter: (evt: MouseEvent) => void;
|
|
812
832
|
mouseleave: (evt: MouseEvent) => void;
|
|
813
833
|
}, string, {
|
|
814
834
|
readonly disabled: boolean;
|
|
835
|
+
readonly tabindex: string | number;
|
|
815
836
|
readonly id: string;
|
|
816
837
|
readonly type: string;
|
|
817
838
|
readonly modelValue: string | number | null | undefined;
|
|
818
|
-
readonly tabindex: string | number;
|
|
819
839
|
readonly readonly: boolean;
|
|
820
840
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
821
|
-
readonly autocomplete:
|
|
841
|
+
readonly autocomplete: AutoFill;
|
|
822
842
|
readonly containerRole: string;
|
|
823
843
|
readonly validateEvent: boolean;
|
|
824
844
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -850,13 +870,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
850
870
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
851
871
|
} & Readonly<{
|
|
852
872
|
readonly disabled: boolean;
|
|
873
|
+
readonly tabindex: string | number;
|
|
853
874
|
readonly id: string;
|
|
854
875
|
readonly type: string;
|
|
855
876
|
readonly modelValue: string | number | null | undefined;
|
|
856
|
-
readonly tabindex: string | number;
|
|
857
877
|
readonly readonly: boolean;
|
|
858
878
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
859
|
-
readonly autocomplete:
|
|
879
|
+
readonly autocomplete: AutoFill;
|
|
860
880
|
readonly containerRole: string;
|
|
861
881
|
readonly validateEvent: boolean;
|
|
862
882
|
readonly inputStyle: import('vue').StyleValue;
|
|
@@ -935,7 +955,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
935
955
|
readonly default: false;
|
|
936
956
|
};
|
|
937
957
|
readonly autocomplete: {
|
|
938
|
-
readonly type: import('vue').PropType<
|
|
958
|
+
readonly type: import('vue').PropType<AutoFill>;
|
|
939
959
|
readonly required: false;
|
|
940
960
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
941
961
|
__epPropKey: true;
|
|
@@ -968,6 +988,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
968
988
|
};
|
|
969
989
|
readonly readonly: BooleanConstructor;
|
|
970
990
|
readonly clearable: BooleanConstructor;
|
|
991
|
+
readonly clearIcon: {
|
|
992
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
993
|
+
readonly required: false;
|
|
994
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
995
|
+
__epPropKey: true;
|
|
996
|
+
};
|
|
971
997
|
readonly showPassword: BooleanConstructor;
|
|
972
998
|
readonly showWordLimit: BooleanConstructor;
|
|
973
999
|
readonly suffixIcon: {
|
|
@@ -1036,7 +1062,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1036
1062
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
1037
1063
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
1038
1064
|
onClear?: (() => any) | undefined;
|
|
1039
|
-
}, "disabled" | "type" | "input" | "select" | "textarea" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "validateEvent" | "
|
|
1065
|
+
}, "disabled" | "type" | "input" | "select" | "textarea" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "validateEvent" | "id" | "tabindex" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
1040
1066
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
1041
1067
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
1042
1068
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -32,6 +32,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
32
32
|
readonly disabled: boolean;
|
|
33
33
|
readonly fill: string;
|
|
34
34
|
readonly id: string;
|
|
35
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
35
36
|
readonly name: string;
|
|
36
37
|
readonly modelValue: string | number | boolean;
|
|
37
38
|
readonly validateEvent: boolean;
|
|
@@ -39,16 +40,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
39
40
|
}> & Omit<{
|
|
40
41
|
readonly fill: string;
|
|
41
42
|
readonly disabled: boolean;
|
|
43
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
42
44
|
readonly textColor: string;
|
|
43
45
|
readonly validateEvent: boolean;
|
|
44
46
|
readonly name?: string | undefined;
|
|
45
47
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
46
48
|
readonly ariaLabel?: string | undefined;
|
|
47
49
|
readonly modelValue?: (string | number | boolean) | undefined;
|
|
50
|
+
readonly options?: import('element-plus').radioOption[] | undefined;
|
|
48
51
|
readonly id?: string | undefined;
|
|
49
52
|
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
50
53
|
onChange?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
51
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "name" | "fill" | "disabled" | "modelValue" | "textColor" | "validateEvent" | "id">;
|
|
54
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "name" | "fill" | "disabled" | "props" | "modelValue" | "textColor" | "validateEvent" | "id">;
|
|
52
55
|
$attrs: {
|
|
53
56
|
[x: string]: unknown;
|
|
54
57
|
};
|
|
@@ -120,6 +123,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
120
123
|
} & {
|
|
121
124
|
readonly default: true;
|
|
122
125
|
};
|
|
126
|
+
readonly options: {
|
|
127
|
+
readonly type: PropType<import('element-plus').radioOption[]>;
|
|
128
|
+
readonly required: false;
|
|
129
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
130
|
+
__epPropKey: true;
|
|
131
|
+
};
|
|
132
|
+
readonly props: {
|
|
133
|
+
readonly type: PropType<import('element-plus').radioOptionProp>;
|
|
134
|
+
readonly required: false;
|
|
135
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
136
|
+
__epPropKey: true;
|
|
137
|
+
} & {
|
|
138
|
+
readonly default: () => Required<import('element-plus').radioOptionProp>;
|
|
139
|
+
};
|
|
123
140
|
}>> & {
|
|
124
141
|
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
125
142
|
onChange?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
@@ -130,6 +147,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
130
147
|
readonly disabled: boolean;
|
|
131
148
|
readonly fill: string;
|
|
132
149
|
readonly id: string;
|
|
150
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
133
151
|
readonly name: string;
|
|
134
152
|
readonly modelValue: string | number | boolean;
|
|
135
153
|
readonly validateEvent: boolean;
|
|
@@ -158,6 +176,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
158
176
|
readonly disabled: boolean;
|
|
159
177
|
readonly fill: string;
|
|
160
178
|
readonly id: string;
|
|
179
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
161
180
|
readonly name: string;
|
|
162
181
|
readonly modelValue: string | number | boolean;
|
|
163
182
|
readonly validateEvent: boolean;
|
|
@@ -219,10 +238,24 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
219
238
|
} & {
|
|
220
239
|
readonly default: true;
|
|
221
240
|
};
|
|
241
|
+
readonly options: {
|
|
242
|
+
readonly type: PropType<import('element-plus').radioOption[]>;
|
|
243
|
+
readonly required: false;
|
|
244
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
245
|
+
__epPropKey: true;
|
|
246
|
+
};
|
|
247
|
+
readonly props: {
|
|
248
|
+
readonly type: PropType<import('element-plus').radioOptionProp>;
|
|
249
|
+
readonly required: false;
|
|
250
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
251
|
+
__epPropKey: true;
|
|
252
|
+
} & {
|
|
253
|
+
readonly default: () => Required<import('element-plus').radioOptionProp>;
|
|
254
|
+
};
|
|
222
255
|
}>> & {
|
|
223
256
|
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
224
257
|
onChange?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
225
|
-
}, "name" | "fill" | "disabled" | "modelValue" | "textColor" | "validateEvent" | "id"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
258
|
+
}, "name" | "fill" | "disabled" | "props" | "modelValue" | "textColor" | "validateEvent" | "id"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
226
259
|
$slots: {
|
|
227
260
|
default?(_: {}): any;
|
|
228
261
|
};
|
|
@@ -233,6 +266,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
233
266
|
readonly disabled: boolean;
|
|
234
267
|
readonly fill: string;
|
|
235
268
|
readonly id: string;
|
|
269
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
236
270
|
readonly name: string;
|
|
237
271
|
readonly modelValue: string | number | boolean;
|
|
238
272
|
readonly validateEvent: boolean;
|
|
@@ -240,16 +274,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
240
274
|
}> & Omit<{
|
|
241
275
|
readonly fill: string;
|
|
242
276
|
readonly disabled: boolean;
|
|
277
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
243
278
|
readonly textColor: string;
|
|
244
279
|
readonly validateEvent: boolean;
|
|
245
280
|
readonly name?: string | undefined;
|
|
246
281
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
247
282
|
readonly ariaLabel?: string | undefined;
|
|
248
283
|
readonly modelValue?: (string | number | boolean) | undefined;
|
|
284
|
+
readonly options?: import('element-plus').radioOption[] | undefined;
|
|
249
285
|
readonly id?: string | undefined;
|
|
250
286
|
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
251
287
|
onChange?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
252
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "name" | "fill" | "disabled" | "modelValue" | "textColor" | "validateEvent" | "id">;
|
|
288
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "name" | "fill" | "disabled" | "props" | "modelValue" | "textColor" | "validateEvent" | "id">;
|
|
253
289
|
$attrs: {
|
|
254
290
|
[x: string]: unknown;
|
|
255
291
|
};
|
|
@@ -321,6 +357,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
321
357
|
} & {
|
|
322
358
|
readonly default: true;
|
|
323
359
|
};
|
|
360
|
+
readonly options: {
|
|
361
|
+
readonly type: PropType<import('element-plus').radioOption[]>;
|
|
362
|
+
readonly required: false;
|
|
363
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
364
|
+
__epPropKey: true;
|
|
365
|
+
};
|
|
366
|
+
readonly props: {
|
|
367
|
+
readonly type: PropType<import('element-plus').radioOptionProp>;
|
|
368
|
+
readonly required: false;
|
|
369
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
370
|
+
__epPropKey: true;
|
|
371
|
+
} & {
|
|
372
|
+
readonly default: () => Required<import('element-plus').radioOptionProp>;
|
|
373
|
+
};
|
|
324
374
|
}>> & {
|
|
325
375
|
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
326
376
|
onChange?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
@@ -331,6 +381,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
331
381
|
readonly disabled: boolean;
|
|
332
382
|
readonly fill: string;
|
|
333
383
|
readonly id: string;
|
|
384
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
334
385
|
readonly name: string;
|
|
335
386
|
readonly modelValue: string | number | boolean;
|
|
336
387
|
readonly validateEvent: boolean;
|
|
@@ -359,6 +410,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
359
410
|
readonly disabled: boolean;
|
|
360
411
|
readonly fill: string;
|
|
361
412
|
readonly id: string;
|
|
413
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
362
414
|
readonly name: string;
|
|
363
415
|
readonly modelValue: string | number | boolean;
|
|
364
416
|
readonly validateEvent: boolean;
|
|
@@ -420,10 +472,24 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
420
472
|
} & {
|
|
421
473
|
readonly default: true;
|
|
422
474
|
};
|
|
475
|
+
readonly options: {
|
|
476
|
+
readonly type: PropType<import('element-plus').radioOption[]>;
|
|
477
|
+
readonly required: false;
|
|
478
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
479
|
+
__epPropKey: true;
|
|
480
|
+
};
|
|
481
|
+
readonly props: {
|
|
482
|
+
readonly type: PropType<import('element-plus').radioOptionProp>;
|
|
483
|
+
readonly required: false;
|
|
484
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
485
|
+
__epPropKey: true;
|
|
486
|
+
} & {
|
|
487
|
+
readonly default: () => Required<import('element-plus').radioOptionProp>;
|
|
488
|
+
};
|
|
423
489
|
}>> & {
|
|
424
490
|
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
425
491
|
onChange?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
426
|
-
}, "name" | "fill" | "disabled" | "modelValue" | "textColor" | "validateEvent" | "id"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
492
|
+
}, "name" | "fill" | "disabled" | "props" | "modelValue" | "textColor" | "validateEvent" | "id"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
427
493
|
$slots: {
|
|
428
494
|
default?(_: {}): any;
|
|
429
495
|
};
|