@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.
Files changed (33) hide show
  1. package/dist/index.mjs +2 -2
  2. package/dist/index.umd.js +2 -2
  3. package/package.json +3 -3
  4. package/types/components/action/Action.d.ts +13 -13
  5. package/types/components/action/hooks.d.ts +4 -4
  6. package/types/components/action-bar/ActionBar.d.ts +9 -9
  7. package/types/components/attachment/Attachment.d.ts +553 -634
  8. package/types/components/container/Container.d.ts +4 -4
  9. package/types/components/container/types.d.ts +2 -2
  10. package/types/components/data-item/DataItem.d.ts +13 -13
  11. package/types/components/data-item/types.d.ts +2 -2
  12. package/types/components/dialog/Dialog.d.ts +32 -32
  13. package/types/components/dialog/types.d.ts +4 -4
  14. package/types/components/dialog-form/DialogForm.d.ts +357 -278
  15. package/types/components/dialog-grid/DialogGrid.d.ts +44 -44
  16. package/types/components/field/Field.d.ts +186 -175
  17. package/types/components/field/types.d.ts +1 -1
  18. package/types/components/form/Form.d.ts +294 -215
  19. package/types/components/grid/renderers/components/GridEdit.d.ts +275 -273
  20. package/types/components/grid-editor/GridEditor.d.ts +275 -273
  21. package/types/components/input-unit/InputUnit.d.ts +2 -2
  22. package/types/components/input-unit/types.d.ts +1 -1
  23. package/types/components/list/List.d.ts +4 -4
  24. package/types/components/list/types.d.ts +2 -2
  25. package/types/components/mask/Mask.d.ts +18 -18
  26. package/types/components/mask/components/Tabs.d.ts +4 -4
  27. package/types/components/panel/Panel.d.ts +12 -12
  28. package/types/components/panel/types.d.ts +2 -2
  29. package/types/components/picker/props.d.ts +1 -1
  30. package/types/components/query-form/QueryForm.d.ts +623 -464
  31. package/types/components/tabs/Tabs.d.ts +5 -5
  32. package/types/components/test/Test.d.ts +2 -2
  33. package/types/version.d.ts +2 -2
@@ -21,10 +21,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
21
21
  default: boolean;
22
22
  };
23
23
  width: {
24
- type: (StringConstructor | NumberConstructor)[];
24
+ type: (NumberConstructor | StringConstructor)[];
25
25
  };
26
26
  height: {
27
- type: (StringConstructor | NumberConstructor)[];
27
+ type: (NumberConstructor | StringConstructor)[];
28
28
  };
29
29
  flex: {
30
30
  type: BooleanConstructor;
@@ -90,10 +90,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
90
90
  default: boolean;
91
91
  };
92
92
  width: {
93
- type: (StringConstructor | NumberConstructor)[];
93
+ type: (NumberConstructor | StringConstructor)[];
94
94
  };
95
95
  height: {
96
- type: (StringConstructor | NumberConstructor)[];
96
+ type: (NumberConstructor | StringConstructor)[];
97
97
  };
98
98
  flex: {
99
99
  type: BooleanConstructor;
@@ -25,13 +25,13 @@ export declare const containerProps: {
25
25
  * 指定高度,fit 为true 失效
26
26
  */
27
27
  width: {
28
- type: (StringConstructor | NumberConstructor)[];
28
+ type: (NumberConstructor | StringConstructor)[];
29
29
  };
30
30
  /**
31
31
  * 指定高度,fit 为true失效
32
32
  */
33
33
  height: {
34
- type: (StringConstructor | NumberConstructor)[];
34
+ type: (NumberConstructor | StringConstructor)[];
35
35
  };
36
36
  /**
37
37
  * 开启flex布局
@@ -3,7 +3,7 @@ import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, Sty
3
3
  import { IconParam } from '../icon';
4
4
  import { ActionBarItems } from '../action-bar';
5
5
  import { ActionMode } from '../action';
6
- import { ElTooltipProps, BadgeProps, Measurable, PopperEffect, ButtonProps } from 'element-plus';
6
+ import { ElTooltipProps, BadgeProps, Measurable, PopperEffect, Placement, Options, ButtonProps } from 'element-plus';
7
7
  import { Arrayable } from 'element-plus/es/utils/typescript.mjs';
8
8
  import { EpPropFinalized, EpPropMergeType } from 'element-plus/es/utils/index.mjs';
9
9
  import { BaseSize, BaseType } from '../shared';
@@ -29,10 +29,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
29
29
  type: StringConstructor;
30
30
  };
31
31
  imageWidth: {
32
- type: (StringConstructor | NumberConstructor)[];
32
+ type: (NumberConstructor | StringConstructor)[];
33
33
  };
34
34
  imageHeight: {
35
- type: (StringConstructor | NumberConstructor)[];
35
+ type: (NumberConstructor | StringConstructor)[];
36
36
  };
37
37
  icon: {
38
38
  type: PropType<IconParam>;
@@ -119,13 +119,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
119
119
  readonly __epPropKey: true;
120
120
  };
121
121
  readonly type: {
122
- readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => EpPropMergeType<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown>) | ((new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => EpPropMergeType<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown>))[], unknown, unknown>>;
122
+ 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>>;
123
123
  readonly required: false;
124
124
  readonly validator: ((val: unknown) => boolean) | undefined;
125
125
  __epPropKey: true;
126
126
  };
127
127
  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>;
128
- readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
128
+ readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | ((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>))[], unknown, unknown, () => {}, boolean>;
129
129
  readonly id: StringConstructor;
130
130
  readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
131
131
  readonly splitButton: BooleanConstructor;
@@ -340,13 +340,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
340
340
  readonly __epPropKey: true;
341
341
  };
342
342
  readonly type: {
343
- readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => EpPropMergeType<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown>) | ((new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => EpPropMergeType<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown>))[], unknown, unknown>>;
343
+ 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>>;
344
344
  readonly required: false;
345
345
  readonly validator: ((val: unknown) => boolean) | undefined;
346
346
  __epPropKey: true;
347
347
  };
348
348
  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>;
349
- readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
349
+ readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | ((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>))[], unknown, unknown, () => {}, boolean>;
350
350
  readonly id: StringConstructor;
351
351
  readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
352
352
  readonly splitButton: BooleanConstructor;
@@ -521,10 +521,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
521
521
  type: StringConstructor;
522
522
  };
523
523
  imageWidth: {
524
- type: (StringConstructor | NumberConstructor)[];
524
+ type: (NumberConstructor | StringConstructor)[];
525
525
  };
526
526
  imageHeight: {
527
- type: (StringConstructor | NumberConstructor)[];
527
+ type: (NumberConstructor | StringConstructor)[];
528
528
  };
529
529
  icon: {
530
530
  type: PropType<IconParam>;
@@ -611,13 +611,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
611
611
  readonly __epPropKey: true;
612
612
  };
613
613
  readonly type: {
614
- readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => EpPropMergeType<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown>) | ((new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => EpPropMergeType<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown>))[], unknown, unknown>>;
614
+ 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>>;
615
615
  readonly required: false;
616
616
  readonly validator: ((val: unknown) => boolean) | undefined;
617
617
  __epPropKey: true;
618
618
  };
619
619
  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>;
620
- readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
620
+ readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | ((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>))[], unknown, unknown, () => {}, boolean>;
621
621
  readonly id: StringConstructor;
622
622
  readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
623
623
  readonly splitButton: BooleanConstructor;
@@ -832,13 +832,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
832
832
  readonly __epPropKey: true;
833
833
  };
834
834
  readonly type: {
835
- readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => EpPropMergeType<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown>) | ((new (...args: any[]) => "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger") | (() => EpPropMergeType<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown>))[], unknown, unknown>>;
835
+ 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>>;
836
836
  readonly required: false;
837
837
  readonly validator: ((val: unknown) => boolean) | undefined;
838
838
  __epPropKey: true;
839
839
  };
840
840
  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>;
841
- readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
841
+ readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial< Options>) | (() => Partial< Options>) | ((new (...args: any[]) => Partial< Options>) | (() => Partial< Options>))[], unknown, unknown, () => {}, boolean>;
842
842
  readonly id: StringConstructor;
843
843
  readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
844
844
  readonly splitButton: BooleanConstructor;
@@ -10,10 +10,10 @@ export declare const dataItemProps: {
10
10
  type: StringConstructor;
11
11
  };
12
12
  imageWidth: {
13
- type: (StringConstructor | NumberConstructor)[];
13
+ type: (NumberConstructor | StringConstructor)[];
14
14
  };
15
15
  imageHeight: {
16
- type: (StringConstructor | NumberConstructor)[];
16
+ type: (NumberConstructor | StringConstructor)[];
17
17
  };
18
18
  icon: {
19
19
  type: PropType<IconParam>;
@@ -43,10 +43,10 @@ declare function __VLS_template(): {
43
43
  default: boolean;
44
44
  };
45
45
  width: {
46
- type: (StringConstructor | NumberConstructor)[];
46
+ type: (NumberConstructor | StringConstructor)[];
47
47
  };
48
48
  height: {
49
- type: (StringConstructor | NumberConstructor)[];
49
+ type: (NumberConstructor | StringConstructor)[];
50
50
  };
51
51
  flex: {
52
52
  type: BooleanConstructor;
@@ -111,10 +111,10 @@ declare function __VLS_template(): {
111
111
  default: boolean;
112
112
  };
113
113
  width: {
114
- type: (StringConstructor | NumberConstructor)[];
114
+ type: (NumberConstructor | StringConstructor)[];
115
115
  };
116
116
  height: {
117
- type: (StringConstructor | NumberConstructor)[];
117
+ type: (NumberConstructor | StringConstructor)[];
118
118
  };
119
119
  flex: {
120
120
  type: BooleanConstructor;
@@ -267,10 +267,10 @@ declare function __VLS_template(): {
267
267
  default: boolean;
268
268
  };
269
269
  width: {
270
- type: (StringConstructor | NumberConstructor)[];
270
+ type: (NumberConstructor | StringConstructor)[];
271
271
  };
272
272
  height: {
273
- type: (StringConstructor | NumberConstructor)[];
273
+ type: (NumberConstructor | StringConstructor)[];
274
274
  };
275
275
  flex: {
276
276
  type: BooleanConstructor;
@@ -388,10 +388,10 @@ declare function __VLS_template(): {
388
388
  default: boolean;
389
389
  };
390
390
  width: {
391
- type: (StringConstructor | NumberConstructor)[];
391
+ type: (NumberConstructor | StringConstructor)[];
392
392
  };
393
393
  height: {
394
- type: (StringConstructor | NumberConstructor)[];
394
+ type: (NumberConstructor | StringConstructor)[];
395
395
  };
396
396
  flex: {
397
397
  type: BooleanConstructor;
@@ -470,10 +470,10 @@ declare function __VLS_template(): {
470
470
  default: boolean;
471
471
  };
472
472
  width: {
473
- type: (StringConstructor | NumberConstructor)[];
473
+ type: (NumberConstructor | StringConstructor)[];
474
474
  };
475
475
  height: {
476
- type: (StringConstructor | NumberConstructor)[];
476
+ type: (NumberConstructor | StringConstructor)[];
477
477
  };
478
478
  border: {
479
479
  type: BooleanConstructor;
@@ -542,10 +542,10 @@ declare function __VLS_template(): {
542
542
  default: boolean;
543
543
  };
544
544
  width: {
545
- type: (StringConstructor | NumberConstructor)[];
545
+ type: (NumberConstructor | StringConstructor)[];
546
546
  };
547
547
  height: {
548
- type: (StringConstructor | NumberConstructor)[];
548
+ type: (NumberConstructor | StringConstructor)[];
549
549
  };
550
550
  border: {
551
551
  type: BooleanConstructor;
@@ -608,18 +608,18 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
608
608
  default: string;
609
609
  };
610
610
  width: {
611
- type: (StringConstructor | NumberConstructor)[];
611
+ type: (NumberConstructor | StringConstructor)[];
612
612
  default: string;
613
613
  };
614
614
  height: {
615
- type: (StringConstructor | NumberConstructor)[];
615
+ type: (NumberConstructor | StringConstructor)[];
616
616
  default: string;
617
617
  };
618
618
  left: {
619
- type: (StringConstructor | NumberConstructor)[];
619
+ type: (NumberConstructor | StringConstructor)[];
620
620
  };
621
621
  top: {
622
- type: (StringConstructor | NumberConstructor)[];
622
+ type: (NumberConstructor | StringConstructor)[];
623
623
  };
624
624
  modal: {
625
625
  type: BooleanConstructor;
@@ -778,18 +778,18 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
778
778
  default: string;
779
779
  };
780
780
  width: {
781
- type: (StringConstructor | NumberConstructor)[];
781
+ type: (NumberConstructor | StringConstructor)[];
782
782
  default: string;
783
783
  };
784
784
  height: {
785
- type: (StringConstructor | NumberConstructor)[];
785
+ type: (NumberConstructor | StringConstructor)[];
786
786
  default: string;
787
787
  };
788
788
  left: {
789
- type: (StringConstructor | NumberConstructor)[];
789
+ type: (NumberConstructor | StringConstructor)[];
790
790
  };
791
791
  top: {
792
- type: (StringConstructor | NumberConstructor)[];
792
+ type: (NumberConstructor | StringConstructor)[];
793
793
  };
794
794
  modal: {
795
795
  type: BooleanConstructor;
@@ -942,10 +942,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
942
942
  default: boolean;
943
943
  };
944
944
  width: {
945
- type: (StringConstructor | NumberConstructor)[];
945
+ type: (NumberConstructor | StringConstructor)[];
946
946
  };
947
947
  height: {
948
- type: (StringConstructor | NumberConstructor)[];
948
+ type: (NumberConstructor | StringConstructor)[];
949
949
  };
950
950
  flex: {
951
951
  type: BooleanConstructor;
@@ -1010,10 +1010,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1010
1010
  default: boolean;
1011
1011
  };
1012
1012
  width: {
1013
- type: (StringConstructor | NumberConstructor)[];
1013
+ type: (NumberConstructor | StringConstructor)[];
1014
1014
  };
1015
1015
  height: {
1016
- type: (StringConstructor | NumberConstructor)[];
1016
+ type: (NumberConstructor | StringConstructor)[];
1017
1017
  };
1018
1018
  flex: {
1019
1019
  type: BooleanConstructor;
@@ -1166,10 +1166,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1166
1166
  default: boolean;
1167
1167
  };
1168
1168
  width: {
1169
- type: (StringConstructor | NumberConstructor)[];
1169
+ type: (NumberConstructor | StringConstructor)[];
1170
1170
  };
1171
1171
  height: {
1172
- type: (StringConstructor | NumberConstructor)[];
1172
+ type: (NumberConstructor | StringConstructor)[];
1173
1173
  };
1174
1174
  flex: {
1175
1175
  type: BooleanConstructor;
@@ -1287,10 +1287,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1287
1287
  default: boolean;
1288
1288
  };
1289
1289
  width: {
1290
- type: (StringConstructor | NumberConstructor)[];
1290
+ type: (NumberConstructor | StringConstructor)[];
1291
1291
  };
1292
1292
  height: {
1293
- type: (StringConstructor | NumberConstructor)[];
1293
+ type: (NumberConstructor | StringConstructor)[];
1294
1294
  };
1295
1295
  flex: {
1296
1296
  type: BooleanConstructor;
@@ -1369,10 +1369,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1369
1369
  default: boolean;
1370
1370
  };
1371
1371
  width: {
1372
- type: (StringConstructor | NumberConstructor)[];
1372
+ type: (NumberConstructor | StringConstructor)[];
1373
1373
  };
1374
1374
  height: {
1375
- type: (StringConstructor | NumberConstructor)[];
1375
+ type: (NumberConstructor | StringConstructor)[];
1376
1376
  };
1377
1377
  border: {
1378
1378
  type: BooleanConstructor;
@@ -1441,10 +1441,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1441
1441
  default: boolean;
1442
1442
  };
1443
1443
  width: {
1444
- type: (StringConstructor | NumberConstructor)[];
1444
+ type: (NumberConstructor | StringConstructor)[];
1445
1445
  };
1446
1446
  height: {
1447
- type: (StringConstructor | NumberConstructor)[];
1447
+ type: (NumberConstructor | StringConstructor)[];
1448
1448
  };
1449
1449
  border: {
1450
1450
  type: BooleanConstructor;
@@ -23,18 +23,18 @@ export declare const dialogProps: {
23
23
  default: string;
24
24
  };
25
25
  width: {
26
- type: (StringConstructor | NumberConstructor)[];
26
+ type: (NumberConstructor | StringConstructor)[];
27
27
  default: string;
28
28
  };
29
29
  height: {
30
- type: (StringConstructor | NumberConstructor)[];
30
+ type: (NumberConstructor | StringConstructor)[];
31
31
  default: string;
32
32
  };
33
33
  left: {
34
- type: (StringConstructor | NumberConstructor)[];
34
+ type: (NumberConstructor | StringConstructor)[];
35
35
  };
36
36
  top: {
37
- type: (StringConstructor | NumberConstructor)[];
37
+ type: (NumberConstructor | StringConstructor)[];
38
38
  };
39
39
  modal: {
40
40
  type: BooleanConstructor;