@vunk/form 1.1.71 → 1.1.72
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/components/button/src/ctx.d.ts +7 -7
- package/components/button/src/index.vue.d.ts +26 -26
- package/components/cascader/src/ctx.d.ts +3 -3
- package/components/cascader/src/index.vue.d.ts +29 -29
- package/components/checkbox/src/ctx.d.ts +6 -6
- package/components/checkbox/src/index.vue.d.ts +22 -22
- package/components/color-picker/src/ctx.d.ts +5 -5
- package/components/color-picker/src/index.vue.d.ts +15 -15
- package/components/date-picker/src/ctx.d.ts +5 -5
- package/components/date-picker/src/index.vue.d.ts +28 -28
- package/components/download-plus/index.css +74 -0
- package/components/download-plus/index.d.ts +4 -0
- package/components/download-plus/index.js +384 -0
- package/components/download-plus/src/api.d.ts +13 -0
- package/components/download-plus/src/api.js +1 -0
- package/components/download-plus/src/const.d.ts +9 -0
- package/components/download-plus/src/const.js +1 -0
- package/components/download-plus/src/ctx.d.ts +83 -0
- package/components/download-plus/src/ctx.js +1 -0
- package/components/download-plus/src/index.css +1 -0
- package/components/download-plus/src/index.vue.d.ts +198 -0
- package/components/download-plus/src/types.d.ts +17 -0
- package/components/download-plus/src/types.js +1 -0
- package/components/esri-input-geojson/src/ctx.d.ts +3 -3
- package/components/esri-input-geojson/src/index.vue.d.ts +23 -23
- package/components/form/src/ctx.d.ts +1 -1
- package/components/form/src/index.vue.d.ts +5 -5
- package/components/form-item/src/ctx.d.ts +1 -1
- package/components/form-item/src/index.vue.d.ts +3 -3
- package/components/geoinput/src/ctx.d.ts +1 -1
- package/components/geoinput/src/index.vue.d.ts +12 -12
- package/components/geoinput-read/src/core.vue.d.ts +29 -29
- package/components/geoinput-read/src/ctx.d.ts +7 -7
- package/components/geoinput-read/src/index.vue.d.ts +19 -19
- package/components/geoinput-update/src/ctx.d.ts +7 -7
- package/components/geoinput-update/src/index.vue.d.ts +31 -31
- package/components/input/src/ctx.d.ts +7 -7
- package/components/input/src/index.vue.d.ts +27 -27
- package/components/input-link/src/ctx.d.ts +1 -1
- package/components/input-link/src/index.vue.d.ts +12 -12
- package/components/input-number/src/ctx.d.ts +3 -3
- package/components/input-number/src/index.vue.d.ts +11 -11
- package/components/radio/src/ctx.d.ts +5 -5
- package/components/radio/src/index.vue.d.ts +19 -19
- package/components/select/src/ctx.d.ts +8 -8
- package/components/select/src/index.vue.d.ts +59 -59
- package/components/slider/src/ctx.d.ts +5 -5
- package/components/slider/src/index.vue.d.ts +19 -19
- package/components/switch/src/ctx.d.ts +5 -5
- package/components/switch/src/index.vue.d.ts +19 -19
- package/components/upload/src/ctx.d.ts +6 -6
- package/components/upload/src/index.vue.d.ts +17 -17
- package/components/upload-plus/index.css +2 -0
- package/components/upload-plus/index.js +39 -9
- package/components/upload-plus/src/api.js +6 -6
- package/components/upload-plus/src/ctx.d.ts +22 -6
- package/components/upload-plus/src/ctx.js +1 -1
- package/components/upload-plus/src/index.vue.d.ts +16 -15
- package/components/van-cascader/src/ctx.d.ts +1 -1
- package/components/van-cascader/src/index.vue.d.ts +19 -19
- package/components/var-datetime-picker/src/ctx.d.ts +1 -1
- package/components/var-datetime-picker/src/index.vue.d.ts +6 -6
- package/index.css +79 -0
- package/package.json +1 -1
|
@@ -20,11 +20,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
__epPropKey: true;
|
|
21
21
|
};
|
|
22
22
|
validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
23
|
-
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
24
|
-
readonly: {
|
|
25
|
-
type: BooleanConstructor;
|
|
26
|
-
default: any;
|
|
27
|
-
};
|
|
28
23
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
29
24
|
prop: {
|
|
30
25
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
@@ -32,6 +27,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
27
|
readonly validator: (val: unknown) => boolean;
|
|
33
28
|
__epPropKey: true;
|
|
34
29
|
};
|
|
30
|
+
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
35
31
|
rules: {
|
|
36
32
|
readonly type: import("vue").PropType<unknown>;
|
|
37
33
|
readonly required: false;
|
|
@@ -64,6 +60,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
64
60
|
type: BooleanConstructor;
|
|
65
61
|
default: boolean;
|
|
66
62
|
};
|
|
63
|
+
readonly: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: any;
|
|
66
|
+
};
|
|
67
67
|
labelPosition: {
|
|
68
68
|
type: import("vue").PropType<"right">;
|
|
69
69
|
default: string;
|
|
@@ -100,11 +100,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
100
100
|
__epPropKey: true;
|
|
101
101
|
};
|
|
102
102
|
validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
103
|
-
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
104
|
-
readonly: {
|
|
105
|
-
type: BooleanConstructor;
|
|
106
|
-
default: any;
|
|
107
|
-
};
|
|
108
103
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
109
104
|
prop: {
|
|
110
105
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
@@ -112,6 +107,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
112
107
|
readonly validator: (val: unknown) => boolean;
|
|
113
108
|
__epPropKey: true;
|
|
114
109
|
};
|
|
110
|
+
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
115
111
|
rules: {
|
|
116
112
|
readonly type: import("vue").PropType<unknown>;
|
|
117
113
|
readonly required: false;
|
|
@@ -144,6 +140,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
144
140
|
type: BooleanConstructor;
|
|
145
141
|
default: boolean;
|
|
146
142
|
};
|
|
143
|
+
readonly: {
|
|
144
|
+
type: BooleanConstructor;
|
|
145
|
+
default: any;
|
|
146
|
+
};
|
|
147
147
|
labelPosition: {
|
|
148
148
|
type: import("vue").PropType<"right">;
|
|
149
149
|
default: string;
|
|
@@ -155,20 +155,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
155
155
|
onBlur?: (event: FocusEvent) => any;
|
|
156
156
|
onActiveChange?: (val: string) => any;
|
|
157
157
|
}, {
|
|
158
|
-
disabled: boolean;
|
|
159
|
-
popperClass: string;
|
|
160
|
-
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
161
|
-
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
162
|
-
readonly: boolean;
|
|
163
158
|
label: string;
|
|
164
159
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
160
|
+
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
165
161
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
166
162
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
167
163
|
formItemSize: "default" | "small" | "large";
|
|
168
164
|
formItemSlots: import("../../form-item/src/types").FormItemSlots;
|
|
169
165
|
inline: boolean;
|
|
166
|
+
readonly: boolean;
|
|
170
167
|
labelPosition: "right";
|
|
168
|
+
disabled: boolean;
|
|
171
169
|
tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
170
|
+
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
171
|
+
popperClass: string;
|
|
172
172
|
showAlpha: boolean;
|
|
173
173
|
}, {}>;
|
|
174
174
|
export default _default;
|
|
@@ -5,11 +5,6 @@ export declare const props: {
|
|
|
5
5
|
type: PropType<DatePickerSlots>;
|
|
6
6
|
default: any;
|
|
7
7
|
};
|
|
8
|
-
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
9
|
-
readonly: {
|
|
10
|
-
type: BooleanConstructor;
|
|
11
|
-
default: any;
|
|
12
|
-
};
|
|
13
8
|
label: StringConstructor;
|
|
14
9
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
15
10
|
prop: {
|
|
@@ -18,6 +13,7 @@ export declare const props: {
|
|
|
18
13
|
readonly validator: (val: unknown) => boolean;
|
|
19
14
|
__epPropKey: true;
|
|
20
15
|
};
|
|
16
|
+
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
21
17
|
rules: {
|
|
22
18
|
readonly type: PropType<unknown>;
|
|
23
19
|
readonly required: false;
|
|
@@ -50,6 +46,10 @@ export declare const props: {
|
|
|
50
46
|
type: BooleanConstructor;
|
|
51
47
|
default: boolean;
|
|
52
48
|
};
|
|
49
|
+
readonly: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
default: any;
|
|
52
|
+
};
|
|
53
53
|
labelPosition: {
|
|
54
54
|
type: PropType<"right">;
|
|
55
55
|
default: string;
|
|
@@ -3,11 +3,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3
3
|
type: import("vue").PropType<import("./types").DatePickerSlots>;
|
|
4
4
|
default: any;
|
|
5
5
|
};
|
|
6
|
-
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
7
|
-
readonly: {
|
|
8
|
-
type: BooleanConstructor;
|
|
9
|
-
default: any;
|
|
10
|
-
};
|
|
11
6
|
label: StringConstructor;
|
|
12
7
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
13
8
|
prop: {
|
|
@@ -16,6 +11,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16
11
|
readonly validator: (val: unknown) => boolean;
|
|
17
12
|
__epPropKey: true;
|
|
18
13
|
};
|
|
14
|
+
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
19
15
|
rules: {
|
|
20
16
|
readonly type: import("vue").PropType<unknown>;
|
|
21
17
|
readonly required: false;
|
|
@@ -48,6 +44,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
44
|
type: BooleanConstructor;
|
|
49
45
|
default: boolean;
|
|
50
46
|
};
|
|
47
|
+
readonly: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: any;
|
|
50
|
+
};
|
|
51
51
|
labelPosition: {
|
|
52
52
|
type: import("vue").PropType<"right">;
|
|
53
53
|
default: string;
|
|
@@ -141,19 +141,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
141
141
|
}, {
|
|
142
142
|
formItemBindProps: import("vue").ComputedRef<{}>;
|
|
143
143
|
datePickerBindProps: import("vue").ComputedRef<{
|
|
144
|
-
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>;
|
|
145
|
-
placeholder: string;
|
|
146
|
-
disabled: boolean;
|
|
147
|
-
clearable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
148
|
-
popperClass: string;
|
|
149
|
-
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
150
|
-
modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType) | ((new (...args: any[]) => string | number | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType))[], unknown, unknown>;
|
|
151
|
-
popperOptions: {};
|
|
152
144
|
label: string;
|
|
145
|
+
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>;
|
|
153
146
|
name: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>;
|
|
147
|
+
disabled: boolean;
|
|
154
148
|
id: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>;
|
|
149
|
+
modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType) | ((new (...args: any[]) => string | number | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType))[], unknown, unknown>;
|
|
150
|
+
placeholder: string;
|
|
151
|
+
clearable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
155
152
|
prefixIcon: "";
|
|
156
153
|
tabindex: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
154
|
+
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
155
|
+
popperClass: string;
|
|
156
|
+
popperOptions: {};
|
|
157
157
|
clearIcon: unknown;
|
|
158
158
|
disabledDate: Function;
|
|
159
159
|
cellClassName: Function;
|
|
@@ -191,11 +191,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
191
191
|
type: import("vue").PropType<import("./types").DatePickerSlots>;
|
|
192
192
|
default: any;
|
|
193
193
|
};
|
|
194
|
-
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
195
|
-
readonly: {
|
|
196
|
-
type: BooleanConstructor;
|
|
197
|
-
default: any;
|
|
198
|
-
};
|
|
199
194
|
label: StringConstructor;
|
|
200
195
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
201
196
|
prop: {
|
|
@@ -204,6 +199,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
204
199
|
readonly validator: (val: unknown) => boolean;
|
|
205
200
|
__epPropKey: true;
|
|
206
201
|
};
|
|
202
|
+
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
207
203
|
rules: {
|
|
208
204
|
readonly type: import("vue").PropType<unknown>;
|
|
209
205
|
readonly required: false;
|
|
@@ -236,6 +232,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
236
232
|
type: BooleanConstructor;
|
|
237
233
|
default: boolean;
|
|
238
234
|
};
|
|
235
|
+
readonly: {
|
|
236
|
+
type: BooleanConstructor;
|
|
237
|
+
default: any;
|
|
238
|
+
};
|
|
239
239
|
labelPosition: {
|
|
240
240
|
type: import("vue").PropType<"right">;
|
|
241
241
|
default: string;
|
|
@@ -336,26 +336,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
336
336
|
"onCalendar-change"?: (...args: any[] | unknown[]) => any;
|
|
337
337
|
"onPanel-change"?: (...args: any[] | unknown[]) => any;
|
|
338
338
|
}, {
|
|
339
|
-
placeholder: string;
|
|
340
|
-
disabled: boolean;
|
|
341
|
-
clearable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
342
|
-
popperClass: string;
|
|
343
|
-
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
344
|
-
modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType) | ((new (...args: any[]) => string | number | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType))[], unknown, unknown>;
|
|
345
|
-
type: "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange";
|
|
346
|
-
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
347
|
-
popperOptions: {};
|
|
348
|
-
readonly: boolean;
|
|
349
339
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
340
|
+
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
350
341
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
351
342
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
343
|
+
type: "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange";
|
|
352
344
|
formItemSize: "default" | "small" | "large";
|
|
353
345
|
formItemSlots: import("../../form-item/src/types").FormItemSlots;
|
|
354
346
|
inline: boolean;
|
|
347
|
+
readonly: boolean;
|
|
355
348
|
labelPosition: "right";
|
|
356
349
|
name: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>;
|
|
350
|
+
disabled: boolean;
|
|
351
|
+
modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType) | ((new (...args: any[]) => string | number | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType))[], unknown, unknown>;
|
|
352
|
+
placeholder: string;
|
|
353
|
+
clearable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
357
354
|
prefixIcon: "";
|
|
358
355
|
tabindex: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
356
|
+
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
357
|
+
popperClass: string;
|
|
358
|
+
popperOptions: {};
|
|
359
359
|
shortcuts: unknown[];
|
|
360
360
|
arrowControl: boolean;
|
|
361
361
|
unlinkPanels: boolean;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
.vkf-download-plus{
|
|
4
|
+
--vkf-download-plus-height: 34px;
|
|
5
|
+
}
|
|
6
|
+
.vkf-download-plus-label{
|
|
7
|
+
position: relative;
|
|
8
|
+
}
|
|
9
|
+
.vkf-download-plus-cube-x,
|
|
10
|
+
.vkf-download-plus-msg-x
|
|
11
|
+
{
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: 0;
|
|
14
|
+
left: 0;
|
|
15
|
+
bottom: 0;
|
|
16
|
+
right: 0;
|
|
17
|
+
}
|
|
18
|
+
.vkf-download-plus-msg-x{
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
color: var(--el-color-success);
|
|
23
|
+
background: var(--el-bg-color);
|
|
24
|
+
animation-name: hide; /* 指定使用hide关键帧动画 */
|
|
25
|
+
animation-duration: 1s; /* 动画持续时间为2秒 */
|
|
26
|
+
animation-delay: 1s; /* 延迟2秒后开始动画 */
|
|
27
|
+
animation-fill-mode: forwards; /* 动画结束后保持最后一帧的状态 */
|
|
28
|
+
}
|
|
29
|
+
.vkf-download-plus-msg{
|
|
30
|
+
margin-left: 2px;
|
|
31
|
+
}
|
|
32
|
+
.vkf-download-plus-cube {
|
|
33
|
+
float: left;
|
|
34
|
+
height: 100%;
|
|
35
|
+
}
|
|
36
|
+
.vkf-download-plus-cube.error {
|
|
37
|
+
background: var(--el-color-danger);
|
|
38
|
+
}
|
|
39
|
+
.vkf-download-plus-cube .success{
|
|
40
|
+
background: var(--el-color-success);
|
|
41
|
+
}
|
|
42
|
+
.vkf-download-plus-cube .uploading{
|
|
43
|
+
background: var(--el-color-primary);
|
|
44
|
+
}
|
|
45
|
+
.vkf-download-plus-cube .error{
|
|
46
|
+
background: var(--el-color-danger);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.vkf-download-plus-btng >.el-button:first-child{
|
|
50
|
+
border-radius: 0;
|
|
51
|
+
}
|
|
52
|
+
.vkf-download-plus-btng >.el-button{
|
|
53
|
+
height: var(--vkf-download-plus-height);
|
|
54
|
+
}
|
|
55
|
+
.vkf-download-plus-main{
|
|
56
|
+
display: flex;
|
|
57
|
+
align-items: center;
|
|
58
|
+
border: var(--el-border);
|
|
59
|
+
border-radius: var(--el-border-radius-base);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.vkf-download-plus-label .el-input{
|
|
63
|
+
--el-input-border-color: transparent;
|
|
64
|
+
--el-input-focus-border-color: transparent;
|
|
65
|
+
--el-input-hover-border-color: transparent;
|
|
66
|
+
}
|
|
67
|
+
.vkf-download-plus-label .el-input.is-success .el-icon{
|
|
68
|
+
color: var(--el-color-success);
|
|
69
|
+
}
|
|
70
|
+
.vkf-download-plus-label .el-input.is-error .el-icon{
|
|
71
|
+
color: var(--el-color-danger);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
|