@vtj/ui 0.15.1 → 0.16.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 +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +3 -3
- package/types/components/action/Action.d.ts +13 -13
- package/types/components/action/hooks.d.ts +4 -4
- package/types/components/action-bar/ActionBar.d.ts +9 -9
- package/types/components/attachment/Attachment.d.ts +553 -634
- package/types/components/container/Container.d.ts +4 -4
- package/types/components/container/types.d.ts +2 -2
- package/types/components/data-item/DataItem.d.ts +13 -13
- package/types/components/data-item/types.d.ts +2 -2
- package/types/components/dialog/Dialog.d.ts +32 -32
- package/types/components/dialog/types.d.ts +4 -4
- package/types/components/dialog-form/DialogForm.d.ts +357 -278
- package/types/components/dialog-grid/DialogGrid.d.ts +44 -44
- package/types/components/field/Field.d.ts +186 -175
- package/types/components/field/types.d.ts +1 -1
- package/types/components/form/Form.d.ts +294 -215
- package/types/components/grid/renderers/components/GridEdit.d.ts +275 -273
- package/types/components/grid-editor/GridEditor.d.ts +275 -273
- package/types/components/input-unit/InputUnit.d.ts +2 -2
- package/types/components/input-unit/types.d.ts +1 -1
- package/types/components/list/List.d.ts +4 -4
- package/types/components/list/types.d.ts +2 -2
- package/types/components/mask/Mask.d.ts +18 -18
- package/types/components/mask/components/Tabs.d.ts +4 -4
- package/types/components/panel/Panel.d.ts +12 -12
- package/types/components/panel/types.d.ts +2 -2
- package/types/components/picker/props.d.ts +1 -1
- package/types/components/query-form/QueryForm.d.ts +623 -464
- package/types/components/tabs/Tabs.d.ts +5 -5
- package/types/components/test/Test.d.ts +2 -2
- package/types/version.d.ts +2 -2
|
@@ -19,7 +19,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19
19
|
type: StringConstructor;
|
|
20
20
|
};
|
|
21
21
|
modelValue: {
|
|
22
|
-
type: (
|
|
22
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
23
23
|
};
|
|
24
24
|
selectProps: {
|
|
25
25
|
type: PropType<Record<string, any>>;
|
|
@@ -54,7 +54,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
54
54
|
type: StringConstructor;
|
|
55
55
|
};
|
|
56
56
|
modelValue: {
|
|
57
|
-
type: (
|
|
57
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
58
58
|
};
|
|
59
59
|
selectProps: {
|
|
60
60
|
type: PropType<Record<string, any>>;
|
|
@@ -35,11 +35,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
35
35
|
type: PropType<number | ((index: number) => number)>;
|
|
36
36
|
};
|
|
37
37
|
width: {
|
|
38
|
-
type: (
|
|
38
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
39
39
|
default: string;
|
|
40
40
|
};
|
|
41
41
|
height: {
|
|
42
|
-
type: (
|
|
42
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
43
43
|
default: string;
|
|
44
44
|
};
|
|
45
45
|
pager: {
|
|
@@ -83,11 +83,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
83
83
|
type: PropType<number | ((index: number) => number)>;
|
|
84
84
|
};
|
|
85
85
|
width: {
|
|
86
|
-
type: (
|
|
86
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
87
87
|
default: string;
|
|
88
88
|
};
|
|
89
89
|
height: {
|
|
90
|
-
type: (
|
|
90
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
91
91
|
default: string;
|
|
92
92
|
};
|
|
93
93
|
pager: {
|
|
@@ -27,11 +27,11 @@ export declare const listProps: {
|
|
|
27
27
|
type: PropType<number | ((index: number) => number)>;
|
|
28
28
|
};
|
|
29
29
|
width: {
|
|
30
|
-
type: (
|
|
30
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
31
31
|
default: string;
|
|
32
32
|
};
|
|
33
33
|
height: {
|
|
34
|
-
type: (
|
|
34
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
37
37
|
pager: {
|
|
@@ -8,7 +8,7 @@ import { OnCleanup } from '@vue/reactivity';
|
|
|
8
8
|
import { ActionBarItems } from '../action-bar';
|
|
9
9
|
import { IconParam } from '../icon';
|
|
10
10
|
import { ActionMode } from '../action';
|
|
11
|
-
import { ElTooltipProps, BadgeProps, Measurable, PopperEffect, ButtonProps } from 'element-plus';
|
|
11
|
+
import { ElTooltipProps, BadgeProps, Measurable, PopperEffect, Placement, Options, ButtonProps } from 'element-plus';
|
|
12
12
|
import { Arrayable } from 'element-plus/es/utils/typescript.mjs';
|
|
13
13
|
import { EpPropFinalized, EpPropMergeType } from 'element-plus/es/utils/index.mjs';
|
|
14
14
|
import { BaseSize, BaseType } from '../shared';
|
|
@@ -98,10 +98,10 @@ declare function __VLS_template(): {
|
|
|
98
98
|
default: boolean;
|
|
99
99
|
};
|
|
100
100
|
width: {
|
|
101
|
-
type: (
|
|
101
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
102
102
|
};
|
|
103
103
|
height: {
|
|
104
|
-
type: (
|
|
104
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
105
105
|
};
|
|
106
106
|
flex: {
|
|
107
107
|
type: BooleanConstructor;
|
|
@@ -219,10 +219,10 @@ declare function __VLS_template(): {
|
|
|
219
219
|
default: boolean;
|
|
220
220
|
};
|
|
221
221
|
width: {
|
|
222
|
-
type: (
|
|
222
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
223
223
|
};
|
|
224
224
|
height: {
|
|
225
|
-
type: (
|
|
225
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
226
226
|
};
|
|
227
227
|
flex: {
|
|
228
228
|
type: BooleanConstructor;
|
|
@@ -407,13 +407,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
407
407
|
readonly __epPropKey: true;
|
|
408
408
|
};
|
|
409
409
|
readonly type: {
|
|
410
|
-
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() =>
|
|
410
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | ((new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger"))[], unknown, unknown>>;
|
|
411
411
|
readonly required: false;
|
|
412
412
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
413
413
|
__epPropKey: true;
|
|
414
414
|
};
|
|
415
415
|
readonly placement: EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], unknown, unknown, "bottom", boolean>;
|
|
416
|
-
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
416
|
+
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | ((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>))[], unknown, unknown, () => {}, boolean>;
|
|
417
417
|
readonly id: StringConstructor;
|
|
418
418
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
419
419
|
readonly splitButton: BooleanConstructor;
|
|
@@ -628,13 +628,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
628
628
|
readonly __epPropKey: true;
|
|
629
629
|
};
|
|
630
630
|
readonly type: {
|
|
631
|
-
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() =>
|
|
631
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | ((new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger"))[], unknown, unknown>>;
|
|
632
632
|
readonly required: false;
|
|
633
633
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
634
634
|
__epPropKey: true;
|
|
635
635
|
};
|
|
636
636
|
readonly placement: EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], unknown, unknown, "bottom", boolean>;
|
|
637
|
-
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
637
|
+
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | ((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>))[], unknown, unknown, () => {}, boolean>;
|
|
638
638
|
readonly id: StringConstructor;
|
|
639
639
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
640
640
|
readonly splitButton: BooleanConstructor;
|
|
@@ -904,13 +904,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
904
904
|
readonly __epPropKey: true;
|
|
905
905
|
};
|
|
906
906
|
readonly type: {
|
|
907
|
-
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() =>
|
|
907
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | ((new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger"))[], unknown, unknown>>;
|
|
908
908
|
readonly required: false;
|
|
909
909
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
910
910
|
__epPropKey: true;
|
|
911
911
|
};
|
|
912
912
|
readonly placement: EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], unknown, unknown, "bottom", boolean>;
|
|
913
|
-
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
913
|
+
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | ((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>))[], unknown, unknown, () => {}, boolean>;
|
|
914
914
|
readonly id: StringConstructor;
|
|
915
915
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
916
916
|
readonly splitButton: BooleanConstructor;
|
|
@@ -1125,13 +1125,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1125
1125
|
readonly __epPropKey: true;
|
|
1126
1126
|
};
|
|
1127
1127
|
readonly type: {
|
|
1128
|
-
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() =>
|
|
1128
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | ((new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger"))[], unknown, unknown>>;
|
|
1129
1129
|
readonly required: false;
|
|
1130
1130
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1131
1131
|
__epPropKey: true;
|
|
1132
1132
|
};
|
|
1133
1133
|
readonly placement: EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], unknown, unknown, "bottom", boolean>;
|
|
1134
|
-
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
1134
|
+
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | ((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>))[], unknown, unknown, () => {}, boolean>;
|
|
1135
1135
|
readonly id: StringConstructor;
|
|
1136
1136
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
1137
1137
|
readonly splitButton: BooleanConstructor;
|
|
@@ -1300,9 +1300,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1300
1300
|
title: string;
|
|
1301
1301
|
pure: boolean;
|
|
1302
1302
|
menus: MenuDataItem[] | (() => Promise< MenuDataItem[]> | MenuDataItem[]);
|
|
1303
|
-
home: string | MaskTab;
|
|
1304
1303
|
logo: string;
|
|
1305
1304
|
favorites: MenuDataItem[] | (() => Promise< MenuDataItem[]> | MenuDataItem[]);
|
|
1305
|
+
home: string | MaskTab;
|
|
1306
1306
|
tabs: number;
|
|
1307
1307
|
theme: boolean;
|
|
1308
1308
|
userCardWidth: number;
|
|
@@ -1385,10 +1385,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1385
1385
|
default: boolean;
|
|
1386
1386
|
};
|
|
1387
1387
|
width: {
|
|
1388
|
-
type: (
|
|
1388
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1389
1389
|
};
|
|
1390
1390
|
height: {
|
|
1391
|
-
type: (
|
|
1391
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1392
1392
|
};
|
|
1393
1393
|
flex: {
|
|
1394
1394
|
type: BooleanConstructor;
|
|
@@ -1506,10 +1506,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1506
1506
|
default: boolean;
|
|
1507
1507
|
};
|
|
1508
1508
|
width: {
|
|
1509
|
-
type: (
|
|
1509
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1510
1510
|
};
|
|
1511
1511
|
height: {
|
|
1512
|
-
type: (
|
|
1512
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1513
1513
|
};
|
|
1514
1514
|
flex: {
|
|
1515
1515
|
type: BooleanConstructor;
|
|
@@ -88,10 +88,10 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
|
88
88
|
default: boolean;
|
|
89
89
|
};
|
|
90
90
|
width: {
|
|
91
|
-
type: (
|
|
91
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
92
92
|
};
|
|
93
93
|
height: {
|
|
94
|
-
type: (
|
|
94
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
95
95
|
};
|
|
96
96
|
flex: {
|
|
97
97
|
type: BooleanConstructor;
|
|
@@ -209,10 +209,10 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
|
209
209
|
default: boolean;
|
|
210
210
|
};
|
|
211
211
|
width: {
|
|
212
|
-
type: (
|
|
212
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
213
213
|
};
|
|
214
214
|
height: {
|
|
215
|
-
type: (
|
|
215
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
216
216
|
};
|
|
217
217
|
flex: {
|
|
218
218
|
type: BooleanConstructor;
|
|
@@ -79,10 +79,10 @@ declare function __VLS_template(): {
|
|
|
79
79
|
default: boolean;
|
|
80
80
|
};
|
|
81
81
|
width: {
|
|
82
|
-
type: (
|
|
82
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
83
83
|
};
|
|
84
84
|
height: {
|
|
85
|
-
type: (
|
|
85
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
86
86
|
};
|
|
87
87
|
flex: {
|
|
88
88
|
type: BooleanConstructor;
|
|
@@ -200,10 +200,10 @@ declare function __VLS_template(): {
|
|
|
200
200
|
default: boolean;
|
|
201
201
|
};
|
|
202
202
|
width: {
|
|
203
|
-
type: (
|
|
203
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
204
204
|
};
|
|
205
205
|
height: {
|
|
206
|
-
type: (
|
|
206
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
207
207
|
};
|
|
208
208
|
flex: {
|
|
209
209
|
type: BooleanConstructor;
|
|
@@ -277,10 +277,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
277
277
|
default: boolean;
|
|
278
278
|
};
|
|
279
279
|
width: {
|
|
280
|
-
type: (
|
|
280
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
281
281
|
};
|
|
282
282
|
height: {
|
|
283
|
-
type: (
|
|
283
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
284
284
|
};
|
|
285
285
|
border: {
|
|
286
286
|
type: BooleanConstructor;
|
|
@@ -319,10 +319,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
319
319
|
default: boolean;
|
|
320
320
|
};
|
|
321
321
|
width: {
|
|
322
|
-
type: (
|
|
322
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
323
323
|
};
|
|
324
324
|
height: {
|
|
325
|
-
type: (
|
|
325
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
326
326
|
};
|
|
327
327
|
border: {
|
|
328
328
|
type: BooleanConstructor;
|
|
@@ -421,10 +421,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
421
421
|
default: boolean;
|
|
422
422
|
};
|
|
423
423
|
width: {
|
|
424
|
-
type: (
|
|
424
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
425
425
|
};
|
|
426
426
|
height: {
|
|
427
|
-
type: (
|
|
427
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
428
428
|
};
|
|
429
429
|
flex: {
|
|
430
430
|
type: BooleanConstructor;
|
|
@@ -542,10 +542,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
542
542
|
default: boolean;
|
|
543
543
|
};
|
|
544
544
|
width: {
|
|
545
|
-
type: (
|
|
545
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
546
546
|
};
|
|
547
547
|
height: {
|
|
548
|
-
type: (
|
|
548
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
549
549
|
};
|
|
550
550
|
flex: {
|
|
551
551
|
type: BooleanConstructor;
|
|
@@ -24,13 +24,13 @@ export declare const panelProps: {
|
|
|
24
24
|
* 指定高度,fit 为true 失效
|
|
25
25
|
*/
|
|
26
26
|
width: {
|
|
27
|
-
type: (
|
|
27
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* 指定高度,fit 为true失效
|
|
31
31
|
*/
|
|
32
32
|
height: {
|
|
33
|
-
type: (
|
|
33
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
34
34
|
};
|
|
35
35
|
/**
|
|
36
36
|
* 显示边框
|
|
@@ -29,7 +29,7 @@ export declare const pickerProps: {
|
|
|
29
29
|
* 值
|
|
30
30
|
*/
|
|
31
31
|
modelValue: {
|
|
32
|
-
type: (
|
|
32
|
+
type: (NumberConstructor | StringConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
33
33
|
};
|
|
34
34
|
/**
|
|
35
35
|
* 多选模式
|