@julingbase/jly-arco-design 0.0.5 → 0.0.6

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.
@@ -1,3 +1,3 @@
1
1
  export declare function fixedWidth(width: number): Record<string, unknown>;
2
2
  export declare function setTransformStyle(value: string): Record<string, unknown>;
3
- export declare function getStyle(element: HTMLElement | null, prop: string | null): string | number | ((index: number) => string) | CSSRule | ((property: string, value: string | null, priority?: string | undefined) => void) | null;
3
+ export declare function getStyle(element: HTMLElement | null, prop: string | null): string | number | CSSRule | ((index: number) => string) | ((property: string, value: string | null, priority?: string | undefined) => void) | null;
@@ -407,11 +407,11 @@ declare const DatePicker: {
407
407
  disabled?: boolean | undefined;
408
408
  unmountOnClose?: boolean | undefined;
409
409
  size?: "mini" | "medium" | "large" | "small" | undefined;
410
- type?: "time" | "time-range" | undefined;
411
410
  modelValue?: import("../time-picker/interface").TimeValue | import("../time-picker/interface").TimeValue[] | undefined;
412
411
  placeholder?: string | string[] | undefined;
413
412
  error?: boolean | undefined;
414
413
  readonly?: boolean | undefined;
414
+ type?: "time" | "time-range" | undefined;
415
415
  allowClear?: boolean | undefined;
416
416
  format: string;
417
417
  triggerProps?: Record<string, unknown> | undefined;
@@ -136,11 +136,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
136
136
  disabled?: boolean | undefined;
137
137
  unmountOnClose?: boolean | undefined;
138
138
  size?: "mini" | "medium" | "large" | "small" | undefined;
139
- type?: "time" | "time-range" | undefined;
140
139
  modelValue?: import("../time-picker/interface").TimeValue | import("../time-picker/interface").TimeValue[] | undefined;
141
140
  placeholder?: string | string[] | undefined;
142
141
  error?: boolean | undefined;
143
142
  readonly?: boolean | undefined;
143
+ type?: "time" | "time-range" | undefined;
144
144
  allowClear?: boolean | undefined;
145
145
  format: string;
146
146
  triggerProps?: Record<string, unknown> | undefined;
@@ -151,11 +151,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
151
151
  disabled?: boolean | undefined;
152
152
  unmountOnClose?: boolean | undefined;
153
153
  size?: "mini" | "medium" | "large" | "small" | undefined;
154
- type?: "time" | "time-range" | undefined;
155
154
  modelValue?: import("../time-picker/interface").TimeValue | import("../time-picker/interface").TimeValue[] | undefined;
156
155
  placeholder?: string | string[] | undefined;
157
156
  error?: boolean | undefined;
158
157
  readonly?: boolean | undefined;
158
+ type?: "time" | "time-range" | undefined;
159
159
  allowClear?: boolean | undefined;
160
160
  format: string;
161
161
  triggerProps?: Record<string, unknown> | undefined;
@@ -213,8 +213,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
213
213
  footer: boolean;
214
214
  header: boolean;
215
215
  mask: boolean;
216
- height: string | number;
217
216
  closable: boolean;
217
+ height: string | number;
218
218
  width: string | number;
219
219
  defaultVisible: boolean;
220
220
  maskClosable: boolean;
@@ -129,8 +129,8 @@ declare const Drawer: {
129
129
  footer: boolean;
130
130
  header: boolean;
131
131
  mask: boolean;
132
- height: string | number;
133
132
  closable: boolean;
133
+ height: string | number;
134
134
  width: string | number;
135
135
  defaultVisible: boolean;
136
136
  maskClosable: boolean;
@@ -502,8 +502,8 @@ declare const Drawer: {
502
502
  footer: boolean;
503
503
  header: boolean;
504
504
  mask: boolean;
505
- height: string | number;
506
505
  closable: boolean;
506
+ height: string | number;
507
507
  width: string | number;
508
508
  defaultVisible: boolean;
509
509
  maskClosable: boolean;
@@ -641,8 +641,8 @@ declare const Drawer: {
641
641
  footer: boolean;
642
642
  header: boolean;
643
643
  mask: boolean;
644
- height: string | number;
645
644
  closable: boolean;
645
+ height: string | number;
646
646
  width: string | number;
647
647
  defaultVisible: boolean;
648
648
  maskClosable: boolean;
@@ -61,6 +61,10 @@ declare const Input: {
61
61
  type: BooleanConstructor;
62
62
  default: boolean;
63
63
  };
64
+ toolTipProps: {
65
+ type: ObjectConstructor;
66
+ default: () => void;
67
+ };
64
68
  }>> & Readonly<{
65
69
  onFocus?: ((ev: FocusEvent) => any) | undefined;
66
70
  onClear?: ((ev: MouseEvent) => any) | undefined;
@@ -85,10 +89,10 @@ declare const Input: {
85
89
  blur: (ev: FocusEvent) => true;
86
90
  }, import("vue").PublicProps, {
87
91
  disabled: boolean;
88
- type: "text" | "password";
89
92
  error: boolean;
90
93
  defaultValue: string;
91
94
  readonly: boolean;
95
+ type: "text" | "password";
92
96
  allowClear: boolean;
93
97
  maxLength: number | {
94
98
  length: number;
@@ -96,6 +100,7 @@ declare const Input: {
96
100
  };
97
101
  showWordLimit: boolean;
98
102
  enableToolTip: boolean;
103
+ toolTipProps: Record<string, any>;
99
104
  }, true, {}, {}, {
100
105
  Tooltip: {
101
106
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
@@ -1461,6 +1466,10 @@ declare const Input: {
1461
1466
  type: BooleanConstructor;
1462
1467
  default: boolean;
1463
1468
  };
1469
+ toolTipProps: {
1470
+ type: ObjectConstructor;
1471
+ default: () => void;
1472
+ };
1464
1473
  }>> & Readonly<{
1465
1474
  onFocus?: ((ev: FocusEvent) => any) | undefined;
1466
1475
  onClear?: ((ev: MouseEvent) => any) | undefined;
@@ -1477,10 +1486,10 @@ declare const Input: {
1477
1486
  blur(): void;
1478
1487
  }, {
1479
1488
  disabled: boolean;
1480
- type: "text" | "password";
1481
1489
  error: boolean;
1482
1490
  defaultValue: string;
1483
1491
  readonly: boolean;
1492
+ type: "text" | "password";
1484
1493
  allowClear: boolean;
1485
1494
  maxLength: number | {
1486
1495
  length: number;
@@ -1488,6 +1497,7 @@ declare const Input: {
1488
1497
  };
1489
1498
  showWordLimit: boolean;
1490
1499
  enableToolTip: boolean;
1500
+ toolTipProps: Record<string, any>;
1491
1501
  }>;
1492
1502
  __isFragment?: undefined;
1493
1503
  __isTeleport?: undefined;
@@ -1548,6 +1558,10 @@ declare const Input: {
1548
1558
  type: BooleanConstructor;
1549
1559
  default: boolean;
1550
1560
  };
1561
+ toolTipProps: {
1562
+ type: ObjectConstructor;
1563
+ default: () => void;
1564
+ };
1551
1565
  }>> & Readonly<{
1552
1566
  onFocus?: ((ev: FocusEvent) => any) | undefined;
1553
1567
  onClear?: ((ev: MouseEvent) => any) | undefined;
@@ -1572,10 +1586,10 @@ declare const Input: {
1572
1586
  blur: (ev: FocusEvent) => true;
1573
1587
  }, string, {
1574
1588
  disabled: boolean;
1575
- type: "text" | "password";
1576
1589
  error: boolean;
1577
1590
  defaultValue: string;
1578
1591
  readonly: boolean;
1592
+ type: "text" | "password";
1579
1593
  allowClear: boolean;
1580
1594
  maxLength: number | {
1581
1595
  length: number;
@@ -1583,6 +1597,7 @@ declare const Input: {
1583
1597
  };
1584
1598
  showWordLimit: boolean;
1585
1599
  enableToolTip: boolean;
1600
+ toolTipProps: Record<string, any>;
1586
1601
  }, {}, string, {}, {
1587
1602
  Tooltip: {
1588
1603
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
@@ -3074,6 +3089,10 @@ declare const Input: {
3074
3089
  type: BooleanConstructor;
3075
3090
  default: boolean;
3076
3091
  };
3092
+ toolTipProps: {
3093
+ type: ObjectConstructor;
3094
+ default: () => void;
3095
+ };
3077
3096
  }>, {
3078
3097
  inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
3079
3098
  render: () => import("vue/jsx-runtime").JSX.Element;
@@ -3144,6 +3163,10 @@ declare const Input: {
3144
3163
  type: BooleanConstructor;
3145
3164
  default: boolean;
3146
3165
  };
3166
+ toolTipProps: {
3167
+ type: ObjectConstructor;
3168
+ default: () => void;
3169
+ };
3147
3170
  }>> & Readonly<{
3148
3171
  onFocus?: ((ev: FocusEvent) => any) | undefined;
3149
3172
  onClear?: ((ev: MouseEvent) => any) | undefined;
@@ -3154,10 +3177,10 @@ declare const Input: {
3154
3177
  onPressEnter?: ((ev: KeyboardEvent) => any) | undefined;
3155
3178
  }>, {
3156
3179
  disabled: boolean;
3157
- type: "text" | "password";
3158
3180
  error: boolean;
3159
3181
  defaultValue: string;
3160
3182
  readonly: boolean;
3183
+ type: "text" | "password";
3161
3184
  allowClear: boolean;
3162
3185
  maxLength: number | {
3163
3186
  length: number;
@@ -3165,6 +3188,7 @@ declare const Input: {
3165
3188
  };
3166
3189
  showWordLimit: boolean;
3167
3190
  enableToolTip: boolean;
3191
+ toolTipProps: Record<string, any>;
3168
3192
  }, {}, {
3169
3193
  Tooltip: {
3170
3194
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
@@ -127,6 +127,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
127
127
  type: BooleanConstructor;
128
128
  default: boolean;
129
129
  };
130
+ toolTipProps: {
131
+ type: ObjectConstructor;
132
+ default: () => void;
133
+ };
130
134
  }>, {
131
135
  inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
132
136
  render: () => import("vue/jsx-runtime").JSX.Element;
@@ -197,6 +201,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
197
201
  type: BooleanConstructor;
198
202
  default: boolean;
199
203
  };
204
+ toolTipProps: {
205
+ type: ObjectConstructor;
206
+ default: () => void;
207
+ };
200
208
  }>> & Readonly<{
201
209
  onFocus?: ((ev: FocusEvent) => any) | undefined;
202
210
  onClear?: ((ev: MouseEvent) => any) | undefined;
@@ -207,10 +215,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
207
215
  onPressEnter?: ((ev: KeyboardEvent) => any) | undefined;
208
216
  }>, {
209
217
  disabled: boolean;
210
- type: "text" | "password";
211
218
  error: boolean;
212
219
  defaultValue: string;
213
220
  readonly: boolean;
221
+ type: "text" | "password";
214
222
  allowClear: boolean;
215
223
  maxLength: number | {
216
224
  length: number;
@@ -218,6 +226,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
218
226
  };
219
227
  showWordLimit: boolean;
220
228
  enableToolTip: boolean;
229
+ toolTipProps: Record<string, any>;
221
230
  }, {}, {
222
231
  Tooltip: {
223
232
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
@@ -55,6 +55,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
55
55
  type: BooleanConstructor;
56
56
  default: boolean;
57
57
  };
58
+ toolTipProps: {
59
+ type: ObjectConstructor;
60
+ default: () => void;
61
+ };
58
62
  }>, {
59
63
  inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
60
64
  render: () => import("vue/jsx-runtime").JSX.Element;
@@ -125,6 +129,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
125
129
  type: BooleanConstructor;
126
130
  default: boolean;
127
131
  };
132
+ toolTipProps: {
133
+ type: ObjectConstructor;
134
+ default: () => void;
135
+ };
128
136
  }>> & Readonly<{
129
137
  onFocus?: ((ev: FocusEvent) => any) | undefined;
130
138
  onClear?: ((ev: MouseEvent) => any) | undefined;
@@ -135,10 +143,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
135
143
  onPressEnter?: ((ev: KeyboardEvent) => any) | undefined;
136
144
  }>, {
137
145
  disabled: boolean;
138
- type: "text" | "password";
139
146
  error: boolean;
140
147
  defaultValue: string;
141
148
  readonly: boolean;
149
+ type: "text" | "password";
142
150
  allowClear: boolean;
143
151
  maxLength: number | {
144
152
  length: number;
@@ -146,6 +154,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
146
154
  };
147
155
  showWordLimit: boolean;
148
156
  enableToolTip: boolean;
157
+ toolTipProps: Record<string, any>;
149
158
  }, {}, {
150
159
  Tooltip: {
151
160
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
package/es/input/input.js CHANGED
@@ -70,6 +70,11 @@ var _Input = defineComponent({
70
70
  enableToolTip: {
71
71
  type: Boolean,
72
72
  default: false
73
+ },
74
+ toolTipProps: {
75
+ type: Object,
76
+ default: () => {
77
+ }
73
78
  }
74
79
  },
75
80
  emits: {
@@ -277,9 +282,7 @@ var _Input = defineComponent({
277
282
  "onMousedown": handleMousedown
278
283
  }, !hasOuter ? wrapperAttrs.value : void 0), [slots.prefix && createVNode("span", {
279
284
  "class": `${prefixCls}-prefix`
280
- }, [slots.prefix()]), createVNode(Tooltip, mergeProps({
281
- "content": props.placeholder
282
- }, inputToolTipAttrs.value), {
285
+ }, [slots.prefix()]), createVNode(Tooltip, mergeProps(inputToolTipAttrs.value, props.toolTipProps), {
283
286
  default: () => [createVNode("input", mergeProps({
284
287
  "ref": inputRef,
285
288
  "class": cls.value,
@@ -57,9 +57,9 @@ declare const Mention: {
57
57
  }, import("vue").PublicProps, {
58
58
  disabled: boolean;
59
59
  data: (string | number | import("..").SelectOptionData | import("..").SelectOptionGroup)[];
60
- type: "textarea" | "input";
61
- defaultValue: string;
62
60
  prefix: string | string[];
61
+ defaultValue: string;
62
+ type: "textarea" | "input";
63
63
  allowClear: boolean;
64
64
  split: string;
65
65
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
@@ -116,9 +116,9 @@ declare const Mention: {
116
116
  }, {
117
117
  disabled: boolean;
118
118
  data: (string | number | import("..").SelectOptionData | import("..").SelectOptionGroup)[];
119
- type: "textarea" | "input";
120
- defaultValue: string;
121
119
  prefix: string | string[];
120
+ defaultValue: string;
121
+ type: "textarea" | "input";
122
122
  allowClear: boolean;
123
123
  split: string;
124
124
  }>;
@@ -180,9 +180,9 @@ declare const Mention: {
180
180
  }, string, {
181
181
  disabled: boolean;
182
182
  data: (string | number | import("..").SelectOptionData | import("..").SelectOptionGroup)[];
183
- type: "textarea" | "input";
184
- defaultValue: string;
185
183
  prefix: string | string[];
184
+ defaultValue: string;
185
+ type: "textarea" | "input";
186
186
  allowClear: boolean;
187
187
  split: string;
188
188
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
@@ -85,9 +85,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
85
85
  }>, {
86
86
  disabled: boolean;
87
87
  data: (string | number | SelectOptionData | SelectOptionGroup)[];
88
- type: "textarea" | "input";
89
- defaultValue: string;
90
88
  prefix: string | string[];
89
+ defaultValue: string;
90
+ type: "textarea" | "input";
91
91
  allowClear: boolean;
92
92
  split: string;
93
93
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -36,8 +36,8 @@ declare const Radio: {
36
36
  change: (value: string | number | boolean, ev: Event) => true;
37
37
  }, import("vue").PublicProps, {
38
38
  disabled: boolean;
39
- type: "button" | "radio";
40
39
  modelValue: string | number | boolean;
40
+ type: "button" | "radio";
41
41
  value: string | number | boolean;
42
42
  defaultChecked: boolean;
43
43
  uninjectGroupContext: boolean;
@@ -109,8 +109,8 @@ declare const Radio: {
109
109
  onChange?: ((value: string | number | boolean, ev: Event) => any) | undefined;
110
110
  }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
111
111
  disabled: boolean;
112
- type: "button" | "radio";
113
112
  modelValue: string | number | boolean;
113
+ type: "button" | "radio";
114
114
  value: string | number | boolean;
115
115
  defaultChecked: boolean;
116
116
  uninjectGroupContext: boolean;
@@ -151,8 +151,8 @@ declare const Radio: {
151
151
  change: (value: string | number | boolean, ev: Event) => true;
152
152
  }, string, {
153
153
  disabled: boolean;
154
- type: "button" | "radio";
155
154
  modelValue: string | number | boolean;
155
+ type: "button" | "radio";
156
156
  value: string | number | boolean;
157
157
  defaultChecked: boolean;
158
158
  uninjectGroupContext: boolean;
@@ -250,9 +250,9 @@ declare const Radio: {
250
250
  onChange?: ((value: string | number | boolean, ev: Event) => any) | undefined;
251
251
  }>, {
252
252
  disabled: boolean;
253
- type: "button" | "radio";
254
253
  modelValue: string | number | boolean;
255
254
  defaultValue: string | number | boolean;
255
+ type: "button" | "radio";
256
256
  direction: "horizontal" | "vertical";
257
257
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
258
258
  install: (app: App, options?: ArcoOptions | undefined) => void;
@@ -62,9 +62,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
62
62
  onChange?: ((value: string | number | boolean, ev: Event) => any) | undefined;
63
63
  }>, {
64
64
  disabled: boolean;
65
- type: "button" | "radio";
66
65
  modelValue: string | number | boolean;
67
66
  defaultValue: string | number | boolean;
67
+ type: "button" | "radio";
68
68
  direction: "horizontal" | "vertical";
69
69
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
70
70
  export default _default;
@@ -57,8 +57,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
57
57
  onChange?: ((value: string | number | boolean, ev: Event) => any) | undefined;
58
58
  }>, {
59
59
  disabled: boolean;
60
- type: "button" | "radio";
61
60
  modelValue: string | number | boolean;
61
+ type: "button" | "radio";
62
62
  value: string | number | boolean;
63
63
  defaultChecked: boolean;
64
64
  uninjectGroupContext: boolean;
@@ -35,8 +35,8 @@ declare const Split: {
35
35
  }, import("vue").PublicProps, {
36
36
  disabled: boolean;
37
37
  size: string | number;
38
- component: string;
39
38
  direction: "horizontal" | "vertical";
39
+ component: string;
40
40
  defaultSize: string | number;
41
41
  }, true, {}, {}, {
42
42
  ResizeTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -111,8 +111,8 @@ declare const Split: {
111
111
  }, {}, {}, {}, {
112
112
  disabled: boolean;
113
113
  size: string | number;
114
- component: string;
115
114
  direction: "horizontal" | "vertical";
115
+ component: string;
116
116
  defaultSize: string | number;
117
117
  }>;
118
118
  __isFragment?: undefined;
@@ -151,8 +151,8 @@ declare const Split: {
151
151
  }, string, {
152
152
  disabled: boolean;
153
153
  size: string | number;
154
- component: string;
155
154
  direction: "horizontal" | "vertical";
155
+ component: string;
156
156
  defaultSize: string | number;
157
157
  }, {}, string, {}, {
158
158
  ResizeTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -40,8 +40,8 @@ declare const _default: import("vue").DefineComponent<{
40
40
  }>, {
41
41
  disabled: boolean;
42
42
  size: string | number;
43
- component: string;
44
43
  direction: "horizontal" | "vertical";
44
+ component: string;
45
45
  defaultSize: string | number;
46
46
  }, {}, {
47
47
  ResizeTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -79,8 +79,8 @@ declare const Switch: {
79
79
  blur: (ev: FocusEvent) => true;
80
80
  }, import("vue").PublicProps, {
81
81
  disabled: boolean;
82
- type: "round" | "circle" | "line";
83
82
  modelValue: string | number | boolean;
83
+ type: "round" | "circle" | "line";
84
84
  loading: boolean;
85
85
  defaultChecked: boolean;
86
86
  checkedValue: string | number | boolean;
@@ -166,8 +166,8 @@ declare const Switch: {
166
166
  handleBlur: (ev: FocusEvent) => void;
167
167
  }, {}, {}, {}, {
168
168
  disabled: boolean;
169
- type: "round" | "circle" | "line";
170
169
  modelValue: string | number | boolean;
170
+ type: "round" | "circle" | "line";
171
171
  loading: boolean;
172
172
  defaultChecked: boolean;
173
173
  checkedValue: string | number | boolean;
@@ -253,8 +253,8 @@ declare const Switch: {
253
253
  blur: (ev: FocusEvent) => true;
254
254
  }, string, {
255
255
  disabled: boolean;
256
- type: "round" | "circle" | "line";
257
256
  modelValue: string | number | boolean;
257
+ type: "round" | "circle" | "line";
258
258
  loading: boolean;
259
259
  defaultChecked: boolean;
260
260
  checkedValue: string | number | boolean;
@@ -123,8 +123,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
123
123
  onChange?: ((value: string | number | boolean, ev: Event) => any) | undefined;
124
124
  }>, {
125
125
  disabled: boolean;
126
- type: "round" | "circle" | "line";
127
126
  modelValue: string | number | boolean;
127
+ type: "round" | "circle" | "line";
128
128
  loading: boolean;
129
129
  defaultChecked: boolean;
130
130
  checkedValue: string | number | boolean;
@@ -355,8 +355,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
355
355
  change: (value: string | number | boolean, ev: Event) => true;
356
356
  }, import("vue").PublicProps, {
357
357
  disabled: boolean;
358
- type: "button" | "radio";
359
358
  modelValue: string | number | boolean;
359
+ type: "button" | "radio";
360
360
  value: string | number | boolean;
361
361
  defaultChecked: boolean;
362
362
  uninjectGroupContext: boolean;
@@ -428,8 +428,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
428
428
  onChange?: ((value: string | number | boolean, ev: Event) => any) | undefined;
429
429
  }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
430
430
  disabled: boolean;
431
- type: "button" | "radio";
432
431
  modelValue: string | number | boolean;
432
+ type: "button" | "radio";
433
433
  value: string | number | boolean;
434
434
  defaultChecked: boolean;
435
435
  uninjectGroupContext: boolean;
@@ -470,8 +470,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
470
470
  change: (value: string | number | boolean, ev: Event) => true;
471
471
  }, string, {
472
472
  disabled: boolean;
473
- type: "button" | "radio";
474
473
  modelValue: string | number | boolean;
474
+ type: "button" | "radio";
475
475
  value: string | number | boolean;
476
476
  defaultChecked: boolean;
477
477
  uninjectGroupContext: boolean;
@@ -569,9 +569,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
569
569
  onChange?: ((value: string | number | boolean, ev: Event) => any) | undefined;
570
570
  }>, {
571
571
  disabled: boolean;
572
- type: "button" | "radio";
573
572
  modelValue: string | number | boolean;
574
573
  defaultValue: string | number | boolean;
574
+ type: "button" | "radio";
575
575
  direction: "horizontal" | "vertical";
576
576
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
577
577
  install: (app: import("vue").App<any>, options?: import("../_utils/types").ArcoOptions | undefined) => void;
@@ -88,8 +88,8 @@ declare const Tabs: {
88
88
  position: import("./interface").TabsPosition;
89
89
  justify: boolean;
90
90
  type: import("./interface").TabsType;
91
- animation: boolean;
92
91
  direction: "horizontal" | "vertical";
92
+ animation: boolean;
93
93
  activeKey: string | number;
94
94
  defaultActiveKey: string | number;
95
95
  destroyOnHide: boolean;
@@ -186,8 +186,8 @@ declare const Tabs: {
186
186
  position: import("./interface").TabsPosition;
187
187
  justify: boolean;
188
188
  type: import("./interface").TabsType;
189
- animation: boolean;
190
189
  direction: "horizontal" | "vertical";
190
+ animation: boolean;
191
191
  activeKey: string | number;
192
192
  defaultActiveKey: string | number;
193
193
  destroyOnHide: boolean;
@@ -287,8 +287,8 @@ declare const Tabs: {
287
287
  position: import("./interface").TabsPosition;
288
288
  justify: boolean;
289
289
  type: import("./interface").TabsType;
290
- animation: boolean;
291
290
  direction: "horizontal" | "vertical";
291
+ animation: boolean;
292
292
  activeKey: string | number;
293
293
  defaultActiveKey: string | number;
294
294
  destroyOnHide: boolean;
package/es/tabs/tabs.d.ts CHANGED
@@ -153,8 +153,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
153
153
  position: TabsPosition;
154
154
  justify: boolean;
155
155
  type: TabsType;
156
- animation: boolean;
157
156
  direction: "horizontal" | "vertical";
157
+ animation: boolean;
158
158
  activeKey: string | number;
159
159
  defaultActiveKey: string | number;
160
160
  destroyOnHide: boolean;
@@ -137,9 +137,9 @@ declare const TimePicker: {
137
137
  position: "top" | "tl" | "tr" | "bottom" | "bl" | "br";
138
138
  disabled: boolean;
139
139
  unmountOnClose: boolean;
140
- type: "time" | "time-range";
141
140
  error: boolean;
142
141
  readonly: boolean;
142
+ type: "time" | "time-range";
143
143
  allowClear: boolean;
144
144
  format: string;
145
145
  disableConfirm: boolean;
@@ -2160,9 +2160,9 @@ declare const TimePicker: {
2160
2160
  position: "top" | "tl" | "tr" | "bottom" | "bl" | "br";
2161
2161
  disabled: boolean;
2162
2162
  unmountOnClose: boolean;
2163
- type: "time" | "time-range";
2164
2163
  error: boolean;
2165
2164
  readonly: boolean;
2165
+ type: "time" | "time-range";
2166
2166
  allowClear: boolean;
2167
2167
  format: string;
2168
2168
  disableConfirm: boolean;
@@ -2307,9 +2307,9 @@ declare const TimePicker: {
2307
2307
  position: "top" | "tl" | "tr" | "bottom" | "bl" | "br";
2308
2308
  disabled: boolean;
2309
2309
  unmountOnClose: boolean;
2310
- type: "time" | "time-range";
2311
2310
  error: boolean;
2312
2311
  readonly: boolean;
2312
+ type: "time" | "time-range";
2313
2313
  allowClear: boolean;
2314
2314
  format: string;
2315
2315
  disableConfirm: boolean;
@@ -216,9 +216,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
216
216
  position: "top" | "tl" | "tr" | "bottom" | "bl" | "br";
217
217
  disabled: boolean;
218
218
  unmountOnClose: boolean;
219
- type: "time" | "time-range";
220
219
  error: boolean;
221
220
  readonly: boolean;
221
+ type: "time" | "time-range";
222
222
  allowClear: boolean;
223
223
  format: string;
224
224
  disableConfirm: boolean;