cc1-ui 0.0.1
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 +1 -0
- package/dist/autoimport.d.ts +18 -0
- package/dist/autoimport.js +160 -0
- package/dist/cc1-ui.js +86 -0
- package/dist/components/Button/index.vue.d.ts +292 -0
- package/dist/components/Button/style.css +166 -0
- package/dist/components/Circle/index.vue.d.ts +269 -0
- package/dist/components/Circle/style.css +17 -0
- package/dist/components/Icon/index.vue.d.ts +96 -0
- package/dist/components/Icon/style.css +0 -0
- package/dist/components/Mask/index.vue.d.ts +194 -0
- package/dist/components/Mask/style.css +30 -0
- package/dist/components/SIcon/index.vue.d.ts +135 -0
- package/dist/components/SIcon/style.css +0 -0
- package/dist/components/Scale/index.vue.d.ts +21 -0
- package/dist/components/Scale/style.css +19 -0
- package/dist/components/Select/index.vue.d.ts +49 -0
- package/dist/components/Select/style.css +78 -0
- package/dist/components/Switch/index.vue.d.ts +37 -0
- package/dist/components/Switch/style.css +39 -0
- package/dist/index-BGzY32VF.js +145 -0
- package/dist/index-BlU8Q4GS.js +184 -0
- package/dist/index-BvvdDtUd.js +56 -0
- package/dist/index-CpyM3z5X.js +185 -0
- package/dist/index-l4J1-e0K.js +50 -0
- package/dist/index-lDlR9NjA.js +169 -0
- package/dist/index-ti4E-Nv5.js +172 -0
- package/dist/index-ycYY--mh.js +79 -0
- package/dist/index.css +0 -0
- package/dist/index.d.ts +26 -0
- package/dist/vconf.d.ts +153 -0
- package/package.json +59 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--v-button-text: #fff;
|
|
3
|
+
--v-button-loading: #fff;
|
|
4
|
+
--v-button-primary: #39f;
|
|
5
|
+
--v-button-primary-hover: #187ee4;
|
|
6
|
+
--v-button-primary-disabled: #1d65acbc;
|
|
7
|
+
--v-button-success: #0c6;
|
|
8
|
+
--v-button-success-hover: #03ac57;
|
|
9
|
+
--v-button-success-disabled: #63af89bc;
|
|
10
|
+
--v-button-error: #f30;
|
|
11
|
+
--v-button-error-hover: #d92b00;
|
|
12
|
+
--v-button-error-disabled: #dc5432bc;
|
|
13
|
+
--v-button-warning: #f90;
|
|
14
|
+
--v-button-warning-hover: #d98405;
|
|
15
|
+
--v-button-warning-disabled: #e7b161bc;
|
|
16
|
+
}
|
|
17
|
+
.v-btn {
|
|
18
|
+
display: inline-block;
|
|
19
|
+
margin-bottom: 0;
|
|
20
|
+
font-weight: 400;
|
|
21
|
+
text-align: center;
|
|
22
|
+
vertical-align: middle;
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
border: 1px solid transparent;
|
|
25
|
+
white-space: nowrap;
|
|
26
|
+
user-select: none;
|
|
27
|
+
padding: 0 15px;
|
|
28
|
+
transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear, box-shadow 0.2s linear;
|
|
29
|
+
}
|
|
30
|
+
.v-btn,
|
|
31
|
+
.v-btn:active,
|
|
32
|
+
.v-btn:focus {
|
|
33
|
+
outline: 0;
|
|
34
|
+
}
|
|
35
|
+
.v-btn-small {
|
|
36
|
+
height: 20px;
|
|
37
|
+
font-size: 12px;
|
|
38
|
+
border-radius: 0px;
|
|
39
|
+
}
|
|
40
|
+
.v-btn-middle {
|
|
41
|
+
height: 30px;
|
|
42
|
+
font-size: 14px;
|
|
43
|
+
border-radius: 1px;
|
|
44
|
+
}
|
|
45
|
+
.v-btn-large {
|
|
46
|
+
height: 40px;
|
|
47
|
+
font-size: 16px;
|
|
48
|
+
border-radius: 2px;
|
|
49
|
+
}
|
|
50
|
+
.v-btn-long {
|
|
51
|
+
width: 100%;
|
|
52
|
+
}
|
|
53
|
+
.v-btn.v-btn-loading {
|
|
54
|
+
pointer-events: none;
|
|
55
|
+
position: relative;
|
|
56
|
+
}
|
|
57
|
+
.v-btn.v-btn-loading:before {
|
|
58
|
+
display: block;
|
|
59
|
+
}
|
|
60
|
+
.v-btn[disabled] {
|
|
61
|
+
cursor: no-drop;
|
|
62
|
+
}
|
|
63
|
+
.v-btn-primary {
|
|
64
|
+
color: var(--v-button-text);
|
|
65
|
+
background-color: var(--v-button-primary);
|
|
66
|
+
border-color: var(--v-button-primary);
|
|
67
|
+
}
|
|
68
|
+
.v-btn-primary:hover:not(:active, :disabled) {
|
|
69
|
+
background-color: var(--v-button-primary-hover);
|
|
70
|
+
border-color: var(--v-button-primary-hover);
|
|
71
|
+
}
|
|
72
|
+
.v-btn-primary:disabled {
|
|
73
|
+
background-color: var(--v-button-primary-disabled);
|
|
74
|
+
border-color: var(--v-button-primary-disabled);
|
|
75
|
+
}
|
|
76
|
+
.v-btn-primary-ghost {
|
|
77
|
+
color: var(--v-button-primary);
|
|
78
|
+
background-color: transparent;
|
|
79
|
+
}
|
|
80
|
+
.v-btn-primary-ghost:hover:not(:active, :disabled) {
|
|
81
|
+
color: var(--v-button-primary-hover);
|
|
82
|
+
background-color: transparent;
|
|
83
|
+
border-color: var(--v-button-primary-hover);
|
|
84
|
+
}
|
|
85
|
+
.v-btn-primary-ghost:disabled {
|
|
86
|
+
background-color: transparent;
|
|
87
|
+
border-color: var(--v-button-primary-disabled);
|
|
88
|
+
}
|
|
89
|
+
.v-btn-success {
|
|
90
|
+
color: var(--v-button-text);
|
|
91
|
+
background-color: var(--v-button-success);
|
|
92
|
+
border-color: var(--v-button-success);
|
|
93
|
+
}
|
|
94
|
+
.v-btn-success:hover:not(:active, :disabled) {
|
|
95
|
+
background-color: var(--v-button-success-hover);
|
|
96
|
+
border-color: var(--v-button-success-hover);
|
|
97
|
+
}
|
|
98
|
+
.v-btn-success:disabled {
|
|
99
|
+
background-color: var(--v-button-success-disabled);
|
|
100
|
+
border-color: var(--v-button-success-disabled);
|
|
101
|
+
}
|
|
102
|
+
.v-btn-success-ghost {
|
|
103
|
+
color: var(--v-button-success);
|
|
104
|
+
background-color: transparent;
|
|
105
|
+
}
|
|
106
|
+
.v-btn-success-ghost:hover:not(:active, :disabled) {
|
|
107
|
+
color: var(--v-button-success-hover);
|
|
108
|
+
background-color: transparent;
|
|
109
|
+
border-color: var(--v-button-success-hover);
|
|
110
|
+
}
|
|
111
|
+
.v-btn-success-ghost:disabled {
|
|
112
|
+
background-color: transparent;
|
|
113
|
+
border-color: var(--v-button-success-disabled);
|
|
114
|
+
}
|
|
115
|
+
.v-btn-error {
|
|
116
|
+
color: var(--v-button-text);
|
|
117
|
+
background-color: var(--v-button-error);
|
|
118
|
+
border-color: var(--v-button-error);
|
|
119
|
+
}
|
|
120
|
+
.v-btn-error:hover:not(:active, :disabled) {
|
|
121
|
+
background-color: var(--v-button-error-hover);
|
|
122
|
+
border-color: var(--v-button-error-hover);
|
|
123
|
+
}
|
|
124
|
+
.v-btn-error:disabled {
|
|
125
|
+
background-color: var(--v-button-error-disabled);
|
|
126
|
+
border-color: var(--v-button-error-disabled);
|
|
127
|
+
}
|
|
128
|
+
.v-btn-error-ghost {
|
|
129
|
+
color: var(--v-button-error);
|
|
130
|
+
background-color: transparent;
|
|
131
|
+
}
|
|
132
|
+
.v-btn-error-ghost:hover:not(:active, :disabled) {
|
|
133
|
+
color: var(--v-button-error-hover);
|
|
134
|
+
background-color: transparent;
|
|
135
|
+
border-color: var(--v-button-error-hover);
|
|
136
|
+
}
|
|
137
|
+
.v-btn-error-ghost:disabled {
|
|
138
|
+
background-color: transparent;
|
|
139
|
+
border-color: var(--v-button-error-disabled);
|
|
140
|
+
}
|
|
141
|
+
.v-btn-warning {
|
|
142
|
+
color: var(--v-button-text);
|
|
143
|
+
background-color: var(--v-button-warning);
|
|
144
|
+
border-color: var(--v-button-warning);
|
|
145
|
+
}
|
|
146
|
+
.v-btn-warning:hover:not(:active, :disabled) {
|
|
147
|
+
background-color: var(--v-button-warning-hover);
|
|
148
|
+
border-color: var(--v-button-warning-hover);
|
|
149
|
+
}
|
|
150
|
+
.v-btn-warning:disabled {
|
|
151
|
+
background-color: var(--v-button-warning-disabled);
|
|
152
|
+
border-color: var(--v-button-warning-disabled);
|
|
153
|
+
}
|
|
154
|
+
.v-btn-warning-ghost {
|
|
155
|
+
color: var(--v-button-warning);
|
|
156
|
+
background-color: transparent;
|
|
157
|
+
}
|
|
158
|
+
.v-btn-warning-ghost:hover:not(:active, :disabled) {
|
|
159
|
+
color: var(--v-button-warning-hover);
|
|
160
|
+
background-color: transparent;
|
|
161
|
+
border-color: var(--v-button-warning-hover);
|
|
162
|
+
}
|
|
163
|
+
.v-btn-warning-ghost:disabled {
|
|
164
|
+
background-color: transparent;
|
|
165
|
+
border-color: var(--v-button-warning-disabled);
|
|
166
|
+
}
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
declare const conf: {
|
|
2
|
+
r: number;
|
|
3
|
+
bgid: string;
|
|
4
|
+
runid: string;
|
|
5
|
+
successid: string;
|
|
6
|
+
total: number;
|
|
7
|
+
length: number;
|
|
8
|
+
status: number;
|
|
9
|
+
};
|
|
10
|
+
declare const getLength: () => number;
|
|
11
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
12
|
+
declare var __VLS_1: {
|
|
13
|
+
data: number;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
16
|
+
content?: (props: typeof __VLS_1) => any;
|
|
17
|
+
}>;
|
|
18
|
+
declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
19
|
+
/**
|
|
20
|
+
* 进度,0-100
|
|
21
|
+
*/
|
|
22
|
+
length: {
|
|
23
|
+
default: number;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* 背景色
|
|
27
|
+
*/
|
|
28
|
+
bgColor: {
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* 背景色-渐变
|
|
33
|
+
*/
|
|
34
|
+
bgColors: {
|
|
35
|
+
default: never[];
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* 底色
|
|
39
|
+
*/
|
|
40
|
+
runColor: {
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* 底色-渐变
|
|
45
|
+
*/
|
|
46
|
+
runColors: {
|
|
47
|
+
default: never[];
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* 进度色
|
|
51
|
+
*/
|
|
52
|
+
successColor: {
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* 进度色-渐变
|
|
57
|
+
*/
|
|
58
|
+
successColors: {
|
|
59
|
+
default: never[];
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* 进度条厚度
|
|
63
|
+
*/
|
|
64
|
+
strokeWidth: {
|
|
65
|
+
default: number;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* 进度条宽度
|
|
69
|
+
*/
|
|
70
|
+
width: {
|
|
71
|
+
default: number;
|
|
72
|
+
};
|
|
73
|
+
}>, {
|
|
74
|
+
conf: typeof conf;
|
|
75
|
+
getLength: typeof getLength;
|
|
76
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
77
|
+
/**
|
|
78
|
+
* 进度,0-100
|
|
79
|
+
*/
|
|
80
|
+
length: {
|
|
81
|
+
default: number;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* 背景色
|
|
85
|
+
*/
|
|
86
|
+
bgColor: {
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* 背景色-渐变
|
|
91
|
+
*/
|
|
92
|
+
bgColors: {
|
|
93
|
+
default: never[];
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* 底色
|
|
97
|
+
*/
|
|
98
|
+
runColor: {
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* 底色-渐变
|
|
103
|
+
*/
|
|
104
|
+
runColors: {
|
|
105
|
+
default: never[];
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* 进度色
|
|
109
|
+
*/
|
|
110
|
+
successColor: {
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* 进度色-渐变
|
|
115
|
+
*/
|
|
116
|
+
successColors: {
|
|
117
|
+
default: never[];
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* 进度条厚度
|
|
121
|
+
*/
|
|
122
|
+
strokeWidth: {
|
|
123
|
+
default: number;
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* 进度条宽度
|
|
127
|
+
*/
|
|
128
|
+
width: {
|
|
129
|
+
default: number;
|
|
130
|
+
};
|
|
131
|
+
}>> & Readonly<{}>, {
|
|
132
|
+
length: number;
|
|
133
|
+
width: number;
|
|
134
|
+
bgColor: string;
|
|
135
|
+
bgColors: never[];
|
|
136
|
+
runColor: string;
|
|
137
|
+
runColors: never[];
|
|
138
|
+
successColor: string;
|
|
139
|
+
successColors: never[];
|
|
140
|
+
strokeWidth: number;
|
|
141
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
142
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
143
|
+
/**
|
|
144
|
+
* 进度,0-100
|
|
145
|
+
*/
|
|
146
|
+
length: {
|
|
147
|
+
default: number;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* 背景色
|
|
151
|
+
*/
|
|
152
|
+
bgColor: {
|
|
153
|
+
default: string;
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* 背景色-渐变
|
|
157
|
+
*/
|
|
158
|
+
bgColors: {
|
|
159
|
+
default: never[];
|
|
160
|
+
};
|
|
161
|
+
/**
|
|
162
|
+
* 底色
|
|
163
|
+
*/
|
|
164
|
+
runColor: {
|
|
165
|
+
default: string;
|
|
166
|
+
};
|
|
167
|
+
/**
|
|
168
|
+
* 底色-渐变
|
|
169
|
+
*/
|
|
170
|
+
runColors: {
|
|
171
|
+
default: never[];
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* 进度色
|
|
175
|
+
*/
|
|
176
|
+
successColor: {
|
|
177
|
+
default: string;
|
|
178
|
+
};
|
|
179
|
+
/**
|
|
180
|
+
* 进度色-渐变
|
|
181
|
+
*/
|
|
182
|
+
successColors: {
|
|
183
|
+
default: never[];
|
|
184
|
+
};
|
|
185
|
+
/**
|
|
186
|
+
* 进度条厚度
|
|
187
|
+
*/
|
|
188
|
+
strokeWidth: {
|
|
189
|
+
default: number;
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* 进度条宽度
|
|
193
|
+
*/
|
|
194
|
+
width: {
|
|
195
|
+
default: number;
|
|
196
|
+
};
|
|
197
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
198
|
+
/**
|
|
199
|
+
* 进度,0-100
|
|
200
|
+
*/
|
|
201
|
+
length: {
|
|
202
|
+
default: number;
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* 背景色
|
|
206
|
+
*/
|
|
207
|
+
bgColor: {
|
|
208
|
+
default: string;
|
|
209
|
+
};
|
|
210
|
+
/**
|
|
211
|
+
* 背景色-渐变
|
|
212
|
+
*/
|
|
213
|
+
bgColors: {
|
|
214
|
+
default: never[];
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* 底色
|
|
218
|
+
*/
|
|
219
|
+
runColor: {
|
|
220
|
+
default: string;
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* 底色-渐变
|
|
224
|
+
*/
|
|
225
|
+
runColors: {
|
|
226
|
+
default: never[];
|
|
227
|
+
};
|
|
228
|
+
/**
|
|
229
|
+
* 进度色
|
|
230
|
+
*/
|
|
231
|
+
successColor: {
|
|
232
|
+
default: string;
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* 进度色-渐变
|
|
236
|
+
*/
|
|
237
|
+
successColors: {
|
|
238
|
+
default: never[];
|
|
239
|
+
};
|
|
240
|
+
/**
|
|
241
|
+
* 进度条厚度
|
|
242
|
+
*/
|
|
243
|
+
strokeWidth: {
|
|
244
|
+
default: number;
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* 进度条宽度
|
|
248
|
+
*/
|
|
249
|
+
width: {
|
|
250
|
+
default: number;
|
|
251
|
+
};
|
|
252
|
+
}>> & Readonly<{}>, {
|
|
253
|
+
length: number;
|
|
254
|
+
width: number;
|
|
255
|
+
bgColor: string;
|
|
256
|
+
bgColors: never[];
|
|
257
|
+
runColor: string;
|
|
258
|
+
runColors: never[];
|
|
259
|
+
successColor: string;
|
|
260
|
+
successColors: never[];
|
|
261
|
+
strokeWidth: number;
|
|
262
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
263
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
264
|
+
export default _default;
|
|
265
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
266
|
+
new (): {
|
|
267
|
+
$slots: S;
|
|
268
|
+
};
|
|
269
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.v-progress-circle-run-svg {
|
|
2
|
+
stroke-dashoffset: 0px;
|
|
3
|
+
transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray 0.3s ease 0s, stroke 0.3s ease 0s, stroke-width 0.06s ease 0.3s, opacity ease 0s;
|
|
4
|
+
transform-origin: center;
|
|
5
|
+
transform: rotateZ(90deg);
|
|
6
|
+
}
|
|
7
|
+
.v-progress-circle-text {
|
|
8
|
+
position: absolute;
|
|
9
|
+
top: 50%;
|
|
10
|
+
left: 50%;
|
|
11
|
+
color: #000000d9;
|
|
12
|
+
font-size: 12px;
|
|
13
|
+
line-height: 1;
|
|
14
|
+
white-space: normal;
|
|
15
|
+
text-align: center;
|
|
16
|
+
transform: translate(-50%, -50%);
|
|
17
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* 加载静态资源地址,如https://cdn.xx.xx/vicon或者/static/vicon
|
|
4
|
+
*/
|
|
5
|
+
url: {
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* 使用的图标库名称,默认为'ant'
|
|
10
|
+
*/
|
|
11
|
+
lib: {
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* 使用的图标名称,默认为'up'
|
|
16
|
+
*/
|
|
17
|
+
name: {
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* 使用的图标大小,默认为'20'
|
|
22
|
+
*/
|
|
23
|
+
size: {
|
|
24
|
+
default: any;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* 使用的图标颜色,默认为'currentColor'
|
|
28
|
+
*/
|
|
29
|
+
color: {
|
|
30
|
+
default: any;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* 如果为true,使用设计的图标颜色使得color属性无效。默认为false,一般用于多色或固定色图标
|
|
34
|
+
*/
|
|
35
|
+
nofill: {
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* 图标宽高显示单位,默认为px
|
|
40
|
+
*/
|
|
41
|
+
unit: {
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
45
|
+
/**
|
|
46
|
+
* 加载静态资源地址,如https://cdn.xx.xx/vicon或者/static/vicon
|
|
47
|
+
*/
|
|
48
|
+
url: {
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* 使用的图标库名称,默认为'ant'
|
|
53
|
+
*/
|
|
54
|
+
lib: {
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* 使用的图标名称,默认为'up'
|
|
59
|
+
*/
|
|
60
|
+
name: {
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* 使用的图标大小,默认为'20'
|
|
65
|
+
*/
|
|
66
|
+
size: {
|
|
67
|
+
default: any;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* 使用的图标颜色,默认为'currentColor'
|
|
71
|
+
*/
|
|
72
|
+
color: {
|
|
73
|
+
default: any;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* 如果为true,使用设计的图标颜色使得color属性无效。默认为false,一般用于多色或固定色图标
|
|
77
|
+
*/
|
|
78
|
+
nofill: {
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* 图标宽高显示单位,默认为px
|
|
83
|
+
*/
|
|
84
|
+
unit: {
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
}>> & Readonly<{}>, {
|
|
88
|
+
size: any;
|
|
89
|
+
name: string;
|
|
90
|
+
url: string;
|
|
91
|
+
lib: string;
|
|
92
|
+
color: any;
|
|
93
|
+
nofill: boolean;
|
|
94
|
+
unit: string;
|
|
95
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
96
|
+
export default _default;
|
|
File without changes
|