@julingbase/jly-arco-design 0.0.4 → 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.
- package/README.md +12 -0
- package/dist/arco-vue.js +2454 -2434
- package/dist/arco-vue.js.map +1 -1
- package/dist/arco-vue.min.js +1296 -1294
- package/dist/arco-vue.min.js.map +1 -1
- package/es/_components/input-label/input-label.d.ts +2 -2
- package/es/_components/picker/input-range.d.ts +2 -2
- package/es/_components/picker/input.d.ts +2 -2
- package/es/_components/select-view/select-view.d.ts +1 -1
- package/es/_utils/style.d.ts +1 -1
- package/es/auto-complete/auto-complete.d.ts +3 -3
- package/es/auto-complete/index.d.ts +9 -9
- package/es/calendar/calendar.d.ts +1 -1
- package/es/calendar/index.d.ts +3 -3
- package/es/cascader/cascader-panel.d.ts +3 -3
- package/es/cascader/cascader.d.ts +6 -6
- package/es/cascader/index.d.ts +20 -20
- package/es/checkbox/checkbox-group.d.ts +2 -2
- package/es/checkbox/checkbox.d.ts +1 -1
- package/es/checkbox/index.d.ts +5 -5
- package/es/color-picker/color-picker.d.ts +1 -1
- package/es/color-picker/index.d.ts +3 -3
- package/es/date-picker/index.d.ts +6 -6
- package/es/date-picker/picker.d.ts +6 -6
- package/es/date-picker/range-picker.d.ts +6 -6
- package/es/form/form-item.d.ts +3 -3
- package/es/form/index.d.ts +3 -3
- package/es/input/index.d.ts +3969 -15
- package/es/input/input-password.d.ts +1324 -4
- package/es/input/input.d.ts +1324 -4
- package/es/input/input.js +39 -18
- package/es/input-number/index.d.ts +3 -3
- package/es/input-number/input-number.d.ts +1 -1
- package/es/input-tag/index.d.ts +18 -18
- package/es/input-tag/input-tag.d.ts +6 -6
- package/es/list/index.d.ts +3 -3
- package/es/list/list.d.ts +1 -1
- package/es/mention/index.d.ts +9 -9
- package/es/mention/mention.d.ts +3 -3
- package/es/menu/item.d.ts +1 -1
- package/es/menu/sub-menu-pop.d.ts +1 -1
- package/es/pagination/page-jumper.d.ts +3 -3
- package/es/pagination/page-options.d.ts +28 -28
- package/es/radio/index.d.ts +9 -9
- package/es/radio/radio-group.d.ts +3 -3
- package/es/radio/radio.d.ts +2 -2
- package/es/rate/index.d.ts +9 -9
- package/es/rate/rate.d.ts +3 -3
- package/es/select/index.d.ts +28 -28
- package/es/select/option.d.ts +5 -5
- package/es/select/select-dropdown.d.ts +1 -1
- package/es/select/select.d.ts +8 -8
- package/es/slider/index.d.ts +12 -12
- package/es/slider/slider-input.d.ts +3 -3
- package/es/slider/slider.d.ts +5 -5
- package/es/split/index.d.ts +3 -3
- package/es/split/split.d.ts +1 -1
- package/es/switch/index.d.ts +6 -6
- package/es/switch/switch.d.ts +2 -2
- package/es/table/table-operation-td.d.ts +14 -14
- package/es/tag/index.d.ts +3 -3
- package/es/tag/tag.d.ts +1 -1
- package/es/textarea/index.d.ts +6 -6
- package/es/textarea/textarea.d.ts +2 -2
- package/es/time-picker/index.d.ts +14 -14
- package/es/time-picker/time-picker.d.ts +6 -6
- package/es/transfer/index.d.ts +22 -22
- package/es/transfer/transfer-view.d.ts +8 -8
- package/es/transfer/transfer.d.ts +10 -10
- package/es/tree/base-node.d.ts +5 -5
- package/es/tree/transition-node-list.d.ts +5 -5
- package/es/tree-select/index.d.ts +8 -8
- package/es/tree-select/tree-select.d.ts +3 -3
- package/es/typography/edit-content.d.ts +11908 -46
- package/es/upload/index.d.ts +3 -3
- package/es/upload/upload.d.ts +1 -1
- package/es/verification-code/index.d.ts +6 -6
- package/es/verification-code/verification-code.d.ts +2 -2
- package/json/vetur-attributes.json +1989 -1989
- package/json/vetur-tags.json +725 -725
- package/json/web-types.json +4458 -4458
- package/lib/input/input.js +41 -20
- package/package.json +2 -2
package/es/upload/index.d.ts
CHANGED
|
@@ -116,8 +116,8 @@ declare const Upload: {
|
|
|
116
116
|
};
|
|
117
117
|
}>> & Readonly<{
|
|
118
118
|
onProgress?: ((fileItem: import("./interfaces").FileItem, ev?: ProgressEvent<EventTarget> | undefined) => any) | undefined;
|
|
119
|
-
onChange?: ((fileList: import("./interfaces").FileItem[], fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
120
119
|
onError?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
120
|
+
onChange?: ((fileList: import("./interfaces").FileItem[], fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
121
121
|
onSuccess?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
122
122
|
onPreview?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
123
123
|
onExceedLimit?: ((fileList: import("./interfaces").FileItem[], files: File[]) => any) | undefined;
|
|
@@ -285,8 +285,8 @@ declare const Upload: {
|
|
|
285
285
|
};
|
|
286
286
|
}>> & Readonly<{
|
|
287
287
|
onProgress?: ((fileItem: import("./interfaces").FileItem, ev?: ProgressEvent<EventTarget> | undefined) => any) | undefined;
|
|
288
|
-
onChange?: ((fileList: import("./interfaces").FileItem[], fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
289
288
|
onError?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
289
|
+
onChange?: ((fileList: import("./interfaces").FileItem[], fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
290
290
|
onSuccess?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
291
291
|
onPreview?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
292
292
|
onExceedLimit?: ((fileList: import("./interfaces").FileItem[], files: File[]) => any) | undefined;
|
|
@@ -443,8 +443,8 @@ declare const Upload: {
|
|
|
443
443
|
};
|
|
444
444
|
}>> & Readonly<{
|
|
445
445
|
onProgress?: ((fileItem: import("./interfaces").FileItem, ev?: ProgressEvent<EventTarget> | undefined) => any) | undefined;
|
|
446
|
-
onChange?: ((fileList: import("./interfaces").FileItem[], fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
447
446
|
onError?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
447
|
+
onChange?: ((fileList: import("./interfaces").FileItem[], fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
448
448
|
onSuccess?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
449
449
|
onPreview?: ((fileItem: import("./interfaces").FileItem) => any) | undefined;
|
|
450
450
|
onExceedLimit?: ((fileList: import("./interfaces").FileItem[], files: File[]) => any) | undefined;
|
package/es/upload/upload.d.ts
CHANGED
|
@@ -246,8 +246,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
246
246
|
};
|
|
247
247
|
}>> & Readonly<{
|
|
248
248
|
onProgress?: ((fileItem: FileItem, ev?: ProgressEvent<EventTarget> | undefined) => any) | undefined;
|
|
249
|
-
onChange?: ((fileList: FileItem[], fileItem: FileItem) => any) | undefined;
|
|
250
249
|
onError?: ((fileItem: FileItem) => any) | undefined;
|
|
250
|
+
onChange?: ((fileList: FileItem[], fileItem: FileItem) => any) | undefined;
|
|
251
251
|
onSuccess?: ((fileItem: FileItem) => any) | undefined;
|
|
252
252
|
onPreview?: ((fileItem: FileItem) => any) | undefined;
|
|
253
253
|
onExceedLimit?: ((fileList: FileItem[], files: File[]) => any) | undefined;
|
|
@@ -32,8 +32,8 @@ declare const VerificationCode: {
|
|
|
32
32
|
};
|
|
33
33
|
}>> & Readonly<{
|
|
34
34
|
onInput?: ((inputValue: string, index: number, ev: Event) => any) | undefined;
|
|
35
|
-
onChange?: ((value: string) => any) | undefined;
|
|
36
35
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
36
|
+
onChange?: ((value: string) => any) | undefined;
|
|
37
37
|
onFinish?: ((value: string) => any) | undefined;
|
|
38
38
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
39
39
|
'update:modelValue': (value: string) => true;
|
|
@@ -44,8 +44,8 @@ declare const VerificationCode: {
|
|
|
44
44
|
disabled: boolean;
|
|
45
45
|
length: number;
|
|
46
46
|
error: boolean;
|
|
47
|
-
readonly: boolean;
|
|
48
47
|
defaultValue: string;
|
|
48
|
+
readonly: boolean;
|
|
49
49
|
masked: boolean;
|
|
50
50
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
51
51
|
P: {};
|
|
@@ -84,15 +84,15 @@ declare const VerificationCode: {
|
|
|
84
84
|
};
|
|
85
85
|
}>> & Readonly<{
|
|
86
86
|
onInput?: ((inputValue: string, index: number, ev: Event) => any) | undefined;
|
|
87
|
-
onChange?: ((value: string) => any) | undefined;
|
|
88
87
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
88
|
+
onChange?: ((value: string) => any) | undefined;
|
|
89
89
|
onFinish?: ((value: string) => any) | undefined;
|
|
90
90
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
|
|
91
91
|
disabled: boolean;
|
|
92
92
|
length: number;
|
|
93
93
|
error: boolean;
|
|
94
|
-
readonly: boolean;
|
|
95
94
|
defaultValue: string;
|
|
95
|
+
readonly: boolean;
|
|
96
96
|
masked: boolean;
|
|
97
97
|
}>;
|
|
98
98
|
__isFragment?: undefined;
|
|
@@ -128,8 +128,8 @@ declare const VerificationCode: {
|
|
|
128
128
|
};
|
|
129
129
|
}>> & Readonly<{
|
|
130
130
|
onInput?: ((inputValue: string, index: number, ev: Event) => any) | undefined;
|
|
131
|
-
onChange?: ((value: string) => any) | undefined;
|
|
132
131
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
132
|
+
onChange?: ((value: string) => any) | undefined;
|
|
133
133
|
onFinish?: ((value: string) => any) | undefined;
|
|
134
134
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
135
135
|
'update:modelValue': (value: string) => true;
|
|
@@ -140,8 +140,8 @@ declare const VerificationCode: {
|
|
|
140
140
|
disabled: boolean;
|
|
141
141
|
length: number;
|
|
142
142
|
error: boolean;
|
|
143
|
-
readonly: boolean;
|
|
144
143
|
defaultValue: string;
|
|
144
|
+
readonly: boolean;
|
|
145
145
|
masked: boolean;
|
|
146
146
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
147
147
|
install: (app: App, options?: ArcoOptions | undefined) => void;
|
|
@@ -58,15 +58,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
58
58
|
};
|
|
59
59
|
}>> & Readonly<{
|
|
60
60
|
onInput?: ((inputValue: string, index: number, ev: Event) => any) | undefined;
|
|
61
|
-
onChange?: ((value: string) => any) | undefined;
|
|
62
61
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
62
|
+
onChange?: ((value: string) => any) | undefined;
|
|
63
63
|
onFinish?: ((value: string) => any) | undefined;
|
|
64
64
|
}>, {
|
|
65
65
|
disabled: boolean;
|
|
66
66
|
length: number;
|
|
67
67
|
error: boolean;
|
|
68
|
-
readonly: boolean;
|
|
69
68
|
defaultValue: string;
|
|
69
|
+
readonly: boolean;
|
|
70
70
|
masked: boolean;
|
|
71
71
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
72
72
|
export default _default;
|