@julingbase/jly-arco-design 0.0.6 → 0.0.7
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/README.md +6 -0
- package/dist/arco-vue.js +1 -1
- package/dist/arco-vue.js.map +1 -1
- package/dist/arco-vue.min.js +1 -1
- package/dist/arco-vue.min.js.map +1 -1
- package/es/_components/picker/input-range.d.ts +2 -2
- package/es/_components/picker/input.d.ts +1 -1
- package/es/_utils/style.d.ts +1 -1
- package/es/date-picker/index.d.ts +3 -3
- package/es/date-picker/picker.d.ts +2 -2
- package/es/date-picker/range-picker.d.ts +3 -3
- package/es/input/index.d.ts +4 -4
- package/es/input/input-password.d.ts +1 -1
- package/es/input/input.d.ts +1 -1
- package/es/mention/index.d.ts +3 -3
- package/es/mention/mention.d.ts +1 -1
- package/es/message/message.d.ts +1 -1
- package/es/radio/index.d.ts +4 -4
- package/es/radio/radio-group.d.ts +1 -1
- package/es/radio/radio.d.ts +1 -1
- package/es/switch/index.d.ts +3 -3
- package/es/switch/switch.d.ts +1 -1
- package/es/table/table-operation-td.d.ts +4 -4
- package/es/time-picker/index.d.ts +9 -9
- package/es/time-picker/time-picker.d.ts +4 -4
- package/es/typography/edit-content.d.ts +12 -12
- package/es/upload/index.d.ts +3 -3
- package/es/upload/upload.d.ts +2 -2
- package/es/upload/upload.js +1 -1
- package/json/vetur-attributes.json +1842 -1842
- package/json/vetur-tags.json +743 -743
- package/json/web-types.json +4025 -4025
- package/lib/upload/upload.js +1 -1
- package/package.json +2 -2
|
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
63
63
|
}, {}, {}, {
|
|
64
64
|
focus(index?: number | undefined): void;
|
|
65
65
|
blur(): void;
|
|
66
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
66
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex")[], "clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
67
67
|
size: {
|
|
68
68
|
type: PropType<"mini" | "medium" | "large" | "small">;
|
|
69
69
|
};
|
|
@@ -104,9 +104,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
104
104
|
}>> & Readonly<{
|
|
105
105
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
106
106
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
107
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
107
108
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
108
109
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
109
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
110
110
|
}>, {
|
|
111
111
|
disabled: boolean | boolean[];
|
|
112
112
|
placeholder: string[];
|
|
@@ -48,7 +48,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
48
48
|
}, {}, {}, {
|
|
49
49
|
focus(): void;
|
|
50
50
|
blur(): void;
|
|
51
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "
|
|
51
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "press-enter" | "change")[], "clear" | "blur" | "press-enter" | "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
52
52
|
size: {
|
|
53
53
|
type: PropType<"mini" | "medium" | "large" | "small">;
|
|
54
54
|
};
|
package/es/_utils/style.d.ts
CHANGED
|
@@ -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 |
|
|
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;
|
|
@@ -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;
|
|
410
411
|
modelValue?: import("../time-picker/interface").TimeValue | import("../time-picker/interface").TimeValue[] | undefined;
|
|
411
412
|
placeholder?: string | string[] | undefined;
|
|
412
413
|
error?: boolean | undefined;
|
|
413
414
|
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;
|
|
@@ -4143,7 +4143,7 @@ declare const DatePicker: {
|
|
|
4143
4143
|
}, {}, {}, {
|
|
4144
4144
|
focus(index?: number | undefined): void;
|
|
4145
4145
|
blur(): void;
|
|
4146
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
4146
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex")[], "clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4147
4147
|
size: {
|
|
4148
4148
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
4149
4149
|
};
|
|
@@ -4184,9 +4184,9 @@ declare const DatePicker: {
|
|
|
4184
4184
|
}>> & Readonly<{
|
|
4185
4185
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4186
4186
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
4187
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
4187
4188
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
4188
4189
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
4189
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
4190
4190
|
}>, {
|
|
4191
4191
|
disabled: boolean | boolean[];
|
|
4192
4192
|
placeholder: string[];
|
|
@@ -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;
|
|
139
140
|
modelValue?: import("../time-picker/interface").TimeValue | import("../time-picker/interface").TimeValue[] | undefined;
|
|
140
141
|
placeholder?: string | string[] | undefined;
|
|
141
142
|
error?: boolean | undefined;
|
|
142
143
|
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;
|
|
@@ -406,7 +406,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
406
406
|
}, {}, {}, {
|
|
407
407
|
focus(): void;
|
|
408
408
|
blur(): void;
|
|
409
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "
|
|
409
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "press-enter" | "change")[], "clear" | "blur" | "press-enter" | "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
410
410
|
size: {
|
|
411
411
|
type: PropType<"mini" | "medium" | "large" | "small">;
|
|
412
412
|
};
|
|
@@ -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;
|
|
154
155
|
modelValue?: import("../time-picker/interface").TimeValue | import("../time-picker/interface").TimeValue[] | undefined;
|
|
155
156
|
placeholder?: string | string[] | undefined;
|
|
156
157
|
error?: boolean | undefined;
|
|
157
158
|
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;
|
|
@@ -3887,7 +3887,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3887
3887
|
}, {}, {}, {
|
|
3888
3888
|
focus(index?: number | undefined): void;
|
|
3889
3889
|
blur(): void;
|
|
3890
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
3890
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex")[], "clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3891
3891
|
size: {
|
|
3892
3892
|
type: PropType<"mini" | "medium" | "large" | "small">;
|
|
3893
3893
|
};
|
|
@@ -3928,9 +3928,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3928
3928
|
}>> & Readonly<{
|
|
3929
3929
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3930
3930
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
3931
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
3931
3932
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
3932
3933
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
3933
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
3934
3934
|
}>, {
|
|
3935
3935
|
disabled: boolean | boolean[];
|
|
3936
3936
|
placeholder: string[];
|
package/es/input/index.d.ts
CHANGED
|
@@ -89,10 +89,10 @@ declare const Input: {
|
|
|
89
89
|
blur: (ev: FocusEvent) => true;
|
|
90
90
|
}, import("vue").PublicProps, {
|
|
91
91
|
disabled: boolean;
|
|
92
|
+
type: "text" | "password";
|
|
92
93
|
error: boolean;
|
|
93
94
|
defaultValue: string;
|
|
94
95
|
readonly: boolean;
|
|
95
|
-
type: "text" | "password";
|
|
96
96
|
allowClear: boolean;
|
|
97
97
|
maxLength: number | {
|
|
98
98
|
length: number;
|
|
@@ -1486,10 +1486,10 @@ declare const Input: {
|
|
|
1486
1486
|
blur(): void;
|
|
1487
1487
|
}, {
|
|
1488
1488
|
disabled: boolean;
|
|
1489
|
+
type: "text" | "password";
|
|
1489
1490
|
error: boolean;
|
|
1490
1491
|
defaultValue: string;
|
|
1491
1492
|
readonly: boolean;
|
|
1492
|
-
type: "text" | "password";
|
|
1493
1493
|
allowClear: boolean;
|
|
1494
1494
|
maxLength: number | {
|
|
1495
1495
|
length: number;
|
|
@@ -1586,10 +1586,10 @@ declare const Input: {
|
|
|
1586
1586
|
blur: (ev: FocusEvent) => true;
|
|
1587
1587
|
}, string, {
|
|
1588
1588
|
disabled: boolean;
|
|
1589
|
+
type: "text" | "password";
|
|
1589
1590
|
error: boolean;
|
|
1590
1591
|
defaultValue: string;
|
|
1591
1592
|
readonly: boolean;
|
|
1592
|
-
type: "text" | "password";
|
|
1593
1593
|
allowClear: boolean;
|
|
1594
1594
|
maxLength: number | {
|
|
1595
1595
|
length: number;
|
|
@@ -3177,10 +3177,10 @@ declare const Input: {
|
|
|
3177
3177
|
onPressEnter?: ((ev: KeyboardEvent) => any) | undefined;
|
|
3178
3178
|
}>, {
|
|
3179
3179
|
disabled: boolean;
|
|
3180
|
+
type: "text" | "password";
|
|
3180
3181
|
error: boolean;
|
|
3181
3182
|
defaultValue: string;
|
|
3182
3183
|
readonly: boolean;
|
|
3183
|
-
type: "text" | "password";
|
|
3184
3184
|
allowClear: boolean;
|
|
3185
3185
|
maxLength: number | {
|
|
3186
3186
|
length: number;
|
|
@@ -215,10 +215,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
215
215
|
onPressEnter?: ((ev: KeyboardEvent) => any) | undefined;
|
|
216
216
|
}>, {
|
|
217
217
|
disabled: boolean;
|
|
218
|
+
type: "text" | "password";
|
|
218
219
|
error: boolean;
|
|
219
220
|
defaultValue: string;
|
|
220
221
|
readonly: boolean;
|
|
221
|
-
type: "text" | "password";
|
|
222
222
|
allowClear: boolean;
|
|
223
223
|
maxLength: number | {
|
|
224
224
|
length: number;
|
package/es/input/input.d.ts
CHANGED
|
@@ -143,10 +143,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
143
143
|
onPressEnter?: ((ev: KeyboardEvent) => any) | undefined;
|
|
144
144
|
}>, {
|
|
145
145
|
disabled: boolean;
|
|
146
|
+
type: "text" | "password";
|
|
146
147
|
error: boolean;
|
|
147
148
|
defaultValue: string;
|
|
148
149
|
readonly: boolean;
|
|
149
|
-
type: "text" | "password";
|
|
150
150
|
allowClear: boolean;
|
|
151
151
|
maxLength: number | {
|
|
152
152
|
length: number;
|
package/es/mention/index.d.ts
CHANGED
|
@@ -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";
|
|
60
61
|
prefix: string | string[];
|
|
61
62
|
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";
|
|
119
120
|
prefix: string | string[];
|
|
120
121
|
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";
|
|
183
184
|
prefix: string | string[];
|
|
184
185
|
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 & {
|
package/es/mention/mention.d.ts
CHANGED
|
@@ -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";
|
|
88
89
|
prefix: string | string[];
|
|
89
90
|
defaultValue: string;
|
|
90
|
-
type: "textarea" | "input";
|
|
91
91
|
allowClear: boolean;
|
|
92
92
|
split: string;
|
|
93
93
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/es/message/message.d.ts
CHANGED
|
@@ -61,8 +61,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
61
61
|
type: "normal" | "error" | "loading" | "success" | "warning" | "info";
|
|
62
62
|
closable: boolean;
|
|
63
63
|
showIcon: boolean;
|
|
64
|
-
resetOnHover: boolean;
|
|
65
64
|
resetOnUpdate: boolean;
|
|
65
|
+
resetOnHover: boolean;
|
|
66
66
|
}, {}, {
|
|
67
67
|
AIconHover: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
68
68
|
prefix: {
|
package/es/radio/index.d.ts
CHANGED
|
@@ -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
|
-
modelValue: string | number | boolean;
|
|
40
39
|
type: "button" | "radio";
|
|
40
|
+
modelValue: string | number | boolean;
|
|
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
|
-
modelValue: string | number | boolean;
|
|
113
112
|
type: "button" | "radio";
|
|
113
|
+
modelValue: string | number | boolean;
|
|
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
|
-
modelValue: string | number | boolean;
|
|
155
154
|
type: "button" | "radio";
|
|
155
|
+
modelValue: string | number | boolean;
|
|
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";
|
|
253
254
|
modelValue: string | number | boolean;
|
|
254
255
|
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";
|
|
65
66
|
modelValue: string | number | boolean;
|
|
66
67
|
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;
|
package/es/radio/radio.d.ts
CHANGED
|
@@ -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
|
-
modelValue: string | number | boolean;
|
|
61
60
|
type: "button" | "radio";
|
|
61
|
+
modelValue: string | number | boolean;
|
|
62
62
|
value: string | number | boolean;
|
|
63
63
|
defaultChecked: boolean;
|
|
64
64
|
uninjectGroupContext: boolean;
|
package/es/switch/index.d.ts
CHANGED
|
@@ -79,8 +79,8 @@ declare const Switch: {
|
|
|
79
79
|
blur: (ev: FocusEvent) => true;
|
|
80
80
|
}, import("vue").PublicProps, {
|
|
81
81
|
disabled: boolean;
|
|
82
|
-
modelValue: string | number | boolean;
|
|
83
82
|
type: "round" | "circle" | "line";
|
|
83
|
+
modelValue: string | number | boolean;
|
|
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
|
-
modelValue: string | number | boolean;
|
|
170
169
|
type: "round" | "circle" | "line";
|
|
170
|
+
modelValue: string | number | boolean;
|
|
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
|
-
modelValue: string | number | boolean;
|
|
257
256
|
type: "round" | "circle" | "line";
|
|
257
|
+
modelValue: string | number | boolean;
|
|
258
258
|
loading: boolean;
|
|
259
259
|
defaultChecked: boolean;
|
|
260
260
|
checkedValue: string | number | boolean;
|
package/es/switch/switch.d.ts
CHANGED
|
@@ -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
|
-
modelValue: string | number | boolean;
|
|
127
126
|
type: "round" | "circle" | "line";
|
|
127
|
+
modelValue: string | number | boolean;
|
|
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
|
-
modelValue: string | number | boolean;
|
|
359
358
|
type: "button" | "radio";
|
|
359
|
+
modelValue: string | number | boolean;
|
|
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
|
-
modelValue: string | number | boolean;
|
|
432
431
|
type: "button" | "radio";
|
|
432
|
+
modelValue: string | number | boolean;
|
|
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
|
-
modelValue: string | number | boolean;
|
|
474
473
|
type: "button" | "radio";
|
|
474
|
+
modelValue: string | number | boolean;
|
|
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";
|
|
572
573
|
modelValue: string | number | boolean;
|
|
573
574
|
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;
|
|
@@ -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";
|
|
140
141
|
error: boolean;
|
|
141
142
|
readonly: boolean;
|
|
142
|
-
type: "time" | "time-range";
|
|
143
143
|
allowClear: boolean;
|
|
144
144
|
format: string;
|
|
145
145
|
disableConfirm: boolean;
|
|
@@ -755,7 +755,7 @@ declare const TimePicker: {
|
|
|
755
755
|
}, {}, {}, {
|
|
756
756
|
focus(): void;
|
|
757
757
|
blur(): void;
|
|
758
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "
|
|
758
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "press-enter" | "change")[], "clear" | "blur" | "press-enter" | "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
759
759
|
size: {
|
|
760
760
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
761
761
|
};
|
|
@@ -910,7 +910,7 @@ declare const TimePicker: {
|
|
|
910
910
|
}, {}, {}, {
|
|
911
911
|
focus(index?: number | undefined): void;
|
|
912
912
|
blur(): void;
|
|
913
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
913
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex")[], "clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
914
914
|
size: {
|
|
915
915
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
916
916
|
};
|
|
@@ -951,9 +951,9 @@ declare const TimePicker: {
|
|
|
951
951
|
}>> & Readonly<{
|
|
952
952
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
953
953
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
954
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
954
955
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
955
956
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
956
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
957
957
|
}>, {
|
|
958
958
|
disabled: boolean | boolean[];
|
|
959
959
|
placeholder: string[];
|
|
@@ -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";
|
|
2163
2164
|
error: boolean;
|
|
2164
2165
|
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";
|
|
2310
2311
|
error: boolean;
|
|
2311
2312
|
readonly: boolean;
|
|
2312
|
-
type: "time" | "time-range";
|
|
2313
2313
|
allowClear: boolean;
|
|
2314
2314
|
format: string;
|
|
2315
2315
|
disableConfirm: boolean;
|
|
@@ -2925,7 +2925,7 @@ declare const TimePicker: {
|
|
|
2925
2925
|
}, {}, {}, {
|
|
2926
2926
|
focus(): void;
|
|
2927
2927
|
blur(): void;
|
|
2928
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "
|
|
2928
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "press-enter" | "change")[], "clear" | "blur" | "press-enter" | "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2929
2929
|
size: {
|
|
2930
2930
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
2931
2931
|
};
|
|
@@ -3080,7 +3080,7 @@ declare const TimePicker: {
|
|
|
3080
3080
|
}, {}, {}, {
|
|
3081
3081
|
focus(index?: number | undefined): void;
|
|
3082
3082
|
blur(): void;
|
|
3083
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
3083
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex")[], "clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3084
3084
|
size: {
|
|
3085
3085
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
3086
3086
|
};
|
|
@@ -3121,9 +3121,9 @@ declare const TimePicker: {
|
|
|
3121
3121
|
}>> & Readonly<{
|
|
3122
3122
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3123
3123
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
3124
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
3124
3125
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
3125
3126
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
3126
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
3127
3127
|
}>, {
|
|
3128
3128
|
disabled: boolean | boolean[];
|
|
3129
3129
|
placeholder: string[];
|
|
@@ -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";
|
|
219
220
|
error: boolean;
|
|
220
221
|
readonly: boolean;
|
|
221
|
-
type: "time" | "time-range";
|
|
222
222
|
allowClear: boolean;
|
|
223
223
|
format: string;
|
|
224
224
|
disableConfirm: boolean;
|
|
@@ -834,7 +834,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
834
834
|
}, {}, {}, {
|
|
835
835
|
focus(): void;
|
|
836
836
|
blur(): void;
|
|
837
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "
|
|
837
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "press-enter" | "change")[], "clear" | "blur" | "press-enter" | "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
838
838
|
size: {
|
|
839
839
|
type: PropType<"mini" | "medium" | "large" | "small">;
|
|
840
840
|
};
|
|
@@ -989,7 +989,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
989
989
|
}, {}, {}, {
|
|
990
990
|
focus(index?: number | undefined): void;
|
|
991
991
|
blur(): void;
|
|
992
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
992
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex")[], "clear" | "press-enter" | "change" | "focused-index-change" | "update:focusedIndex", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
993
993
|
size: {
|
|
994
994
|
type: PropType<"mini" | "medium" | "large" | "small">;
|
|
995
995
|
};
|
|
@@ -1030,9 +1030,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1030
1030
|
}>> & Readonly<{
|
|
1031
1031
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1032
1032
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
1033
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
1033
1034
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
1034
1035
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
1035
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
1036
1036
|
}>, {
|
|
1037
1037
|
disabled: boolean | boolean[];
|
|
1038
1038
|
placeholder: string[];
|