@vtj/ui 0.16.35 → 0.17.0
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/index.mjs +811 -807
- package/dist/index.umd.js +4 -4
- package/package.json +3 -3
- package/types/components/action/Action.d.ts +12 -12
- package/types/components/action/hooks.d.ts +2 -2
- package/types/components/action-bar/ActionBar.d.ts +8 -8
- package/types/components/attachment/Attachment.d.ts +17 -8
- package/types/components/attachment/props.d.ts +4 -0
- package/types/components/data-item/DataItem.d.ts +8 -8
- package/types/components/dialog-form/DialogForm.d.ts +12 -12
- package/types/components/field/Field.d.ts +2 -2
- package/types/components/form/Form.d.ts +5 -5
- package/types/components/grid/renderers/components/DateEdit.d.ts +20 -20
- package/types/components/grid/renderers/components/GridEdit.d.ts +12 -9
- package/types/components/grid-editor/GridEditor.d.ts +12 -9
- package/types/components/mask/Mask.d.ts +8 -8
- package/types/components/query-form/QueryForm.d.ts +24 -24
- package/types/components/tabs/Tabs.d.ts +4 -4
- package/types/version.d.ts +2 -2
|
@@ -16,7 +16,7 @@ declare function __VLS_template(): {
|
|
|
16
16
|
$props: Partial<{
|
|
17
17
|
footer: boolean;
|
|
18
18
|
inline: boolean;
|
|
19
|
-
footerAlign: "
|
|
19
|
+
footerAlign: "left" | "right" | "center";
|
|
20
20
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
21
21
|
model: Record<string, any>;
|
|
22
22
|
submitText: string | null;
|
|
@@ -26,7 +26,7 @@ declare function __VLS_template(): {
|
|
|
26
26
|
}> & Omit<{
|
|
27
27
|
readonly footer: boolean;
|
|
28
28
|
readonly inline: boolean;
|
|
29
|
-
readonly footerAlign: "
|
|
29
|
+
readonly footerAlign: "left" | "right" | "center";
|
|
30
30
|
readonly submitText: string | null;
|
|
31
31
|
readonly resetText: string | null;
|
|
32
32
|
readonly enterSubmit: boolean;
|
|
@@ -91,13 +91,13 @@ declare function __VLS_template(): {
|
|
|
91
91
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
92
92
|
validate: (prop: FormItemProp, isValid: boolean, message: string) => void;
|
|
93
93
|
}, string, {
|
|
94
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
95
94
|
labelWidth: string | number;
|
|
96
95
|
labelPosition: "left" | "right" | "top";
|
|
97
96
|
requireAsteriskPosition: "left" | "right";
|
|
98
97
|
labelSuffix: string;
|
|
99
98
|
showMessage: boolean;
|
|
100
99
|
validateOnRuleChange: boolean;
|
|
100
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
101
101
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
102
102
|
beforeCreate?: (() => void) | (() => void)[];
|
|
103
103
|
created?: (() => void) | (() => void)[];
|
|
@@ -119,13 +119,13 @@ declare function __VLS_template(): {
|
|
|
119
119
|
$nextTick: nextTick;
|
|
120
120
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
121
121
|
} & Readonly<{
|
|
122
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
123
122
|
labelWidth: string | number;
|
|
124
123
|
labelPosition: "left" | "right" | "top";
|
|
125
124
|
requireAsteriskPosition: "left" | "right";
|
|
126
125
|
labelSuffix: string;
|
|
127
126
|
showMessage: boolean;
|
|
128
127
|
validateOnRuleChange: boolean;
|
|
128
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
129
129
|
}> & Omit<Readonly< FormProps> & Readonly<{
|
|
130
130
|
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
131
131
|
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & {
|
|
@@ -211,7 +211,7 @@ declare function __VLS_template(): {
|
|
|
211
211
|
}, string, {
|
|
212
212
|
footer: boolean;
|
|
213
213
|
inline: boolean;
|
|
214
|
-
footerAlign: "
|
|
214
|
+
footerAlign: "left" | "right" | "center";
|
|
215
215
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
216
216
|
model: Record<string, any>;
|
|
217
217
|
submitText: string | null;
|
|
@@ -241,7 +241,7 @@ declare function __VLS_template(): {
|
|
|
241
241
|
} & Readonly<{
|
|
242
242
|
footer: boolean;
|
|
243
243
|
inline: boolean;
|
|
244
|
-
footerAlign: "
|
|
244
|
+
footerAlign: "left" | "right" | "center";
|
|
245
245
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
246
246
|
model: Record<string, any>;
|
|
247
247
|
submitText: string | null;
|
|
@@ -338,7 +338,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
338
338
|
$props: Partial<{
|
|
339
339
|
footer: boolean;
|
|
340
340
|
inline: boolean;
|
|
341
|
-
footerAlign: "
|
|
341
|
+
footerAlign: "left" | "right" | "center";
|
|
342
342
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
343
343
|
model: Record<string, any>;
|
|
344
344
|
submitText: string | null;
|
|
@@ -348,7 +348,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
348
348
|
}> & Omit<{
|
|
349
349
|
readonly footer: boolean;
|
|
350
350
|
readonly inline: boolean;
|
|
351
|
-
readonly footerAlign: "
|
|
351
|
+
readonly footerAlign: "left" | "right" | "center";
|
|
352
352
|
readonly submitText: string | null;
|
|
353
353
|
readonly resetText: string | null;
|
|
354
354
|
readonly enterSubmit: boolean;
|
|
@@ -413,13 +413,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
413
413
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
414
414
|
validate: (prop: FormItemProp, isValid: boolean, message: string) => void;
|
|
415
415
|
}, string, {
|
|
416
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
417
416
|
labelWidth: string | number;
|
|
418
417
|
labelPosition: "left" | "right" | "top";
|
|
419
418
|
requireAsteriskPosition: "left" | "right";
|
|
420
419
|
labelSuffix: string;
|
|
421
420
|
showMessage: boolean;
|
|
422
421
|
validateOnRuleChange: boolean;
|
|
422
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
423
423
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
424
424
|
beforeCreate?: (() => void) | (() => void)[];
|
|
425
425
|
created?: (() => void) | (() => void)[];
|
|
@@ -441,13 +441,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
441
441
|
$nextTick: nextTick;
|
|
442
442
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
443
443
|
} & Readonly<{
|
|
444
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
445
444
|
labelWidth: string | number;
|
|
446
445
|
labelPosition: "left" | "right" | "top";
|
|
447
446
|
requireAsteriskPosition: "left" | "right";
|
|
448
447
|
labelSuffix: string;
|
|
449
448
|
showMessage: boolean;
|
|
450
449
|
validateOnRuleChange: boolean;
|
|
450
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
451
451
|
}> & Omit<Readonly< FormProps> & Readonly<{
|
|
452
452
|
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
453
453
|
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & {
|
|
@@ -533,7 +533,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
533
533
|
}, string, {
|
|
534
534
|
footer: boolean;
|
|
535
535
|
inline: boolean;
|
|
536
|
-
footerAlign: "
|
|
536
|
+
footerAlign: "left" | "right" | "center";
|
|
537
537
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
538
538
|
model: Record<string, any>;
|
|
539
539
|
submitText: string | null;
|
|
@@ -563,7 +563,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
563
563
|
} & Readonly<{
|
|
564
564
|
footer: boolean;
|
|
565
565
|
inline: boolean;
|
|
566
|
-
footerAlign: "
|
|
566
|
+
footerAlign: "left" | "right" | "center";
|
|
567
567
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
568
568
|
model: Record<string, any>;
|
|
569
569
|
submitText: string | null;
|
|
@@ -635,7 +635,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
635
635
|
$props: Partial<{
|
|
636
636
|
footer: boolean;
|
|
637
637
|
inline: boolean;
|
|
638
|
-
footerAlign: "
|
|
638
|
+
footerAlign: "left" | "right" | "center";
|
|
639
639
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
640
640
|
model: Record<string, any>;
|
|
641
641
|
submitText: string | null;
|
|
@@ -645,7 +645,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
645
645
|
}> & Omit<{
|
|
646
646
|
readonly footer: boolean;
|
|
647
647
|
readonly inline: boolean;
|
|
648
|
-
readonly footerAlign: "
|
|
648
|
+
readonly footerAlign: "left" | "right" | "center";
|
|
649
649
|
readonly submitText: string | null;
|
|
650
650
|
readonly resetText: string | null;
|
|
651
651
|
readonly enterSubmit: boolean;
|
|
@@ -710,13 +710,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
710
710
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
711
711
|
validate: (prop: FormItemProp, isValid: boolean, message: string) => void;
|
|
712
712
|
}, string, {
|
|
713
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
714
713
|
labelWidth: string | number;
|
|
715
714
|
labelPosition: "left" | "right" | "top";
|
|
716
715
|
requireAsteriskPosition: "left" | "right";
|
|
717
716
|
labelSuffix: string;
|
|
718
717
|
showMessage: boolean;
|
|
719
718
|
validateOnRuleChange: boolean;
|
|
719
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
720
720
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
721
721
|
beforeCreate?: (() => void) | (() => void)[];
|
|
722
722
|
created?: (() => void) | (() => void)[];
|
|
@@ -738,13 +738,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
738
738
|
$nextTick: nextTick;
|
|
739
739
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
740
740
|
} & Readonly<{
|
|
741
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
742
741
|
labelWidth: string | number;
|
|
743
742
|
labelPosition: "left" | "right" | "top";
|
|
744
743
|
requireAsteriskPosition: "left" | "right";
|
|
745
744
|
labelSuffix: string;
|
|
746
745
|
showMessage: boolean;
|
|
747
746
|
validateOnRuleChange: boolean;
|
|
747
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
748
748
|
}> & Omit<Readonly< FormProps> & Readonly<{
|
|
749
749
|
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
750
750
|
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & {
|
|
@@ -830,7 +830,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
830
830
|
}, string, {
|
|
831
831
|
footer: boolean;
|
|
832
832
|
inline: boolean;
|
|
833
|
-
footerAlign: "
|
|
833
|
+
footerAlign: "left" | "right" | "center";
|
|
834
834
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
835
835
|
model: Record<string, any>;
|
|
836
836
|
submitText: string | null;
|
|
@@ -860,7 +860,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
860
860
|
} & Readonly<{
|
|
861
861
|
footer: boolean;
|
|
862
862
|
inline: boolean;
|
|
863
|
-
footerAlign: "
|
|
863
|
+
footerAlign: "left" | "right" | "center";
|
|
864
864
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
865
865
|
model: Record<string, any>;
|
|
866
866
|
submitText: string | null;
|
|
@@ -958,7 +958,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
958
958
|
$props: Partial<{
|
|
959
959
|
footer: boolean;
|
|
960
960
|
inline: boolean;
|
|
961
|
-
footerAlign: "
|
|
961
|
+
footerAlign: "left" | "right" | "center";
|
|
962
962
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
963
963
|
model: Record<string, any>;
|
|
964
964
|
submitText: string | null;
|
|
@@ -968,7 +968,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
968
968
|
}> & Omit<{
|
|
969
969
|
readonly footer: boolean;
|
|
970
970
|
readonly inline: boolean;
|
|
971
|
-
readonly footerAlign: "
|
|
971
|
+
readonly footerAlign: "left" | "right" | "center";
|
|
972
972
|
readonly submitText: string | null;
|
|
973
973
|
readonly resetText: string | null;
|
|
974
974
|
readonly enterSubmit: boolean;
|
|
@@ -1033,13 +1033,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1033
1033
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1034
1034
|
validate: (prop: FormItemProp, isValid: boolean, message: string) => void;
|
|
1035
1035
|
}, string, {
|
|
1036
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
1037
1036
|
labelWidth: string | number;
|
|
1038
1037
|
labelPosition: "left" | "right" | "top";
|
|
1039
1038
|
requireAsteriskPosition: "left" | "right";
|
|
1040
1039
|
labelSuffix: string;
|
|
1041
1040
|
showMessage: boolean;
|
|
1042
1041
|
validateOnRuleChange: boolean;
|
|
1042
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
1043
1043
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1044
1044
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1045
1045
|
created?: (() => void) | (() => void)[];
|
|
@@ -1061,13 +1061,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1061
1061
|
$nextTick: nextTick;
|
|
1062
1062
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1063
1063
|
} & Readonly<{
|
|
1064
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
1065
1064
|
labelWidth: string | number;
|
|
1066
1065
|
labelPosition: "left" | "right" | "top";
|
|
1067
1066
|
requireAsteriskPosition: "left" | "right";
|
|
1068
1067
|
labelSuffix: string;
|
|
1069
1068
|
showMessage: boolean;
|
|
1070
1069
|
validateOnRuleChange: boolean;
|
|
1070
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
1071
1071
|
}> & Omit<Readonly< FormProps> & Readonly<{
|
|
1072
1072
|
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
1073
1073
|
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & {
|
|
@@ -1153,7 +1153,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1153
1153
|
}, string, {
|
|
1154
1154
|
footer: boolean;
|
|
1155
1155
|
inline: boolean;
|
|
1156
|
-
footerAlign: "
|
|
1156
|
+
footerAlign: "left" | "right" | "center";
|
|
1157
1157
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
1158
1158
|
model: Record<string, any>;
|
|
1159
1159
|
submitText: string | null;
|
|
@@ -1183,7 +1183,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1183
1183
|
} & Readonly<{
|
|
1184
1184
|
footer: boolean;
|
|
1185
1185
|
inline: boolean;
|
|
1186
|
-
footerAlign: "
|
|
1186
|
+
footerAlign: "left" | "right" | "center";
|
|
1187
1187
|
tooltipMessage: boolean | Partial< UseTooltipProps>;
|
|
1188
1188
|
model: Record<string, any>;
|
|
1189
1189
|
submitText: string | null;
|
|
@@ -129,7 +129,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
129
129
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
130
130
|
__epPropKey: true;
|
|
131
131
|
};
|
|
132
|
-
readonly placement: EpPropFinalized<(new (...args: any[]) => "
|
|
132
|
+
readonly placement: EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | (((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement)) | null)[], unknown, unknown, "bottom", boolean>;
|
|
133
133
|
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | (((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>)) | null)[], unknown, unknown, () => {}, boolean>;
|
|
134
134
|
readonly id: StringConstructor;
|
|
135
135
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
@@ -250,7 +250,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
250
250
|
__epPropKey: true;
|
|
251
251
|
};
|
|
252
252
|
readonly disabled: BooleanConstructor;
|
|
253
|
-
readonly role: EpPropFinalized<StringConstructor, "
|
|
253
|
+
readonly role: EpPropFinalized<StringConstructor, "listbox" | "grid" | "menu" | "tooltip" | "dialog" | "group" | "navigation" | "tree", unknown, "menu", boolean>;
|
|
254
254
|
readonly buttonProps: {
|
|
255
255
|
readonly type: PropType<Partial< ButtonProps>>;
|
|
256
256
|
readonly required: false;
|
|
@@ -366,7 +366,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
366
366
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
367
367
|
__epPropKey: true;
|
|
368
368
|
};
|
|
369
|
-
readonly placement: EpPropFinalized<(new (...args: any[]) => "
|
|
369
|
+
readonly placement: EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | (((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement)) | null)[], unknown, unknown, "bottom", boolean>;
|
|
370
370
|
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | (((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>)) | null)[], unknown, unknown, () => {}, boolean>;
|
|
371
371
|
readonly id: StringConstructor;
|
|
372
372
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
@@ -487,7 +487,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
487
487
|
__epPropKey: true;
|
|
488
488
|
};
|
|
489
489
|
readonly disabled: BooleanConstructor;
|
|
490
|
-
readonly role: EpPropFinalized<StringConstructor, "
|
|
490
|
+
readonly role: EpPropFinalized<StringConstructor, "listbox" | "grid" | "menu" | "tooltip" | "dialog" | "group" | "navigation" | "tree", unknown, "menu", boolean>;
|
|
491
491
|
readonly buttonProps: {
|
|
492
492
|
readonly type: PropType<Partial< ButtonProps>>;
|
|
493
493
|
readonly required: false;
|
package/types/version.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) 2026, VTJ.PRO All rights reserved.
|
|
3
3
|
* @name @vtj/ui
|
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
|
5
|
-
* @version 0.16.
|
|
5
|
+
* @version 0.16.36
|
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
7
7
|
*/
|
|
8
|
-
export declare const version = "0.16.
|
|
8
|
+
export declare const version = "0.16.36";
|