@vtj/materials 0.10.1-alpha.5 → 0.10.1-alpha.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/dist/assets/antdv/index.umd.js +2 -2
- package/dist/assets/charts/index.umd.js +2 -2
- package/dist/assets/element/index.umd.js +2 -2
- package/dist/assets/ui/index.umd.js +2 -2
- package/dist/assets/uni-h5/index.umd.js +2 -2
- package/dist/assets/uni-ui/index.umd.js +3 -3
- package/dist/assets/vant/index.umd.js +2 -2
- package/dist/deps/@vtj/charts/index.umd.js +2 -2
- package/dist/deps/@vtj/icons/index.umd.js +2 -2
- package/dist/deps/@vtj/ui/index.umd.js +2 -2
- package/dist/deps/@vtj/utils/index.umd.js +2 -2
- package/dist/deps/uni-h5/style.css +1 -1
- package/dist/deps/uni-ui/index.umd.js +1 -1
- package/dist/deps/uni-ui/style.css +1 -1
- package/package.json +5 -5
- package/src/uni-h5/style.scss +0 -1
- package/src/uni-ui/components/badge.ts +5 -1
- package/src/uni-ui/components/breadcrumb.ts +76 -0
- package/src/uni-ui/components/calendar.ts +63 -0
- package/src/uni-ui/components/card.ts +113 -0
- package/src/uni-ui/components/collapse.ts +118 -0
- package/src/uni-ui/components/combox.ts +51 -0
- package/src/uni-ui/components/countdown.ts +92 -0
- package/src/uni-ui/components/dataCheckbox.ts +104 -0
- package/src/uni-ui/components/dataPicker.ts +146 -0
- package/src/uni-ui/components/dataSelect.ts +68 -0
- package/src/uni-ui/components/dateformat.ts +42 -0
- package/src/uni-ui/components/datetimePicker.ts +103 -0
- package/src/uni-ui/components/drawer.ts +38 -0
- package/src/uni-ui/components/easyinput.ts +159 -0
- package/src/uni-ui/components/fab.ts +89 -0
- package/src/uni-ui/components/fav.ts +65 -0
- package/src/uni-ui/components/filePicker.ts +127 -0
- package/src/uni-ui/components/forms.ts +209 -0
- package/src/uni-ui/components/goodsNav.ts +31 -0
- package/src/uni-ui/components/grid.ts +104 -0
- package/src/uni-ui/components/group.ts +50 -0
- package/src/uni-ui/components/icons.ts +47 -0
- package/src/uni-ui/components/index.ts +89 -1
- package/src/uni-ui/components/indexedList.ts +51 -0
- package/src/uni-ui/components/link.ts +60 -0
- package/src/uni-ui/components/list.ts +259 -0
- package/src/uni-ui/components/loadMore.ts +61 -0
- package/src/uni-ui/components/navbar.ts +121 -0
- package/src/uni-ui/components/noticeBar.ts +83 -0
- package/src/uni-ui/components/numberbox.ts +49 -0
- package/src/uni-ui/components/pagination.ts +59 -0
- package/src/uni-ui/components/popup.ts +206 -0
- package/src/uni-ui/components/rate.ts +89 -0
- package/src/uni-ui/components/row.ts +126 -0
- package/src/uni-ui/components/searchBar.ts +84 -0
- package/src/uni-ui/components/section.ts +68 -0
- package/src/uni-ui/components/segmentedControl.ts +48 -0
- package/src/uni-ui/components/steps.ts +55 -0
- package/src/uni-ui/components/swipeAction.ts +133 -0
- package/src/uni-ui/components/swiperDot.ts +114 -0
- package/src/uni-ui/components/table.ts +132 -0
- package/src/uni-ui/components/tag.ts +56 -0
- package/src/uni-ui/components/title.ts +49 -0
- package/src/uni-ui/components/tooltip.ts +32 -0
- package/src/uni-ui/components/transition.ts +49 -0
- package/src/uni-ui/index.ts +30 -13
- package/src/uni-ui/lib/uni-col/uni-col.vue +324 -0
- package/src/uni-ui/lib/uni-data-select/uni-data-select.vue +590 -0
- package/src/uni-ui/lib/uni-easyinput/common.js +54 -0
- package/src/uni-ui/lib/uni-easyinput/uni-easyinput.vue +790 -0
- package/src/uni-ui/lib/uni-forms-item/uni-forms-item.vue +630 -0
- package/src/uni-ui/lib/uni-goods-nav/i18n/en.json +6 -0
- package/src/uni-ui/lib/uni-goods-nav/i18n/index.js +8 -0
- package/src/uni-ui/lib/uni-goods-nav/i18n/zh-Hans.json +6 -0
- package/src/uni-ui/lib/uni-goods-nav/i18n/zh-Hant.json +6 -0
- package/src/uni-ui/lib/uni-goods-nav/uni-goods-nav.vue +231 -0
- package/src/uni-ui/lib/uni-icons/uni-icons.uvue +91 -0
- package/src/uni-ui/lib/uni-icons/uni-icons.vue +114 -0
- package/src/uni-ui/lib/uni-icons/uniicons.css +664 -0
- package/src/uni-ui/lib/uni-icons/uniicons.ttf +0 -0
- package/src/uni-ui/lib/uni-icons/uniicons_file.ts +664 -0
- package/src/uni-ui/lib/uni-icons/uniicons_file_vue.js +649 -0
- package/src/uni-ui/lib/uni-indexed-list/uni-indexed-list-item.vue +144 -0
- package/src/uni-ui/lib/uni-indexed-list/uni-indexed-list.vue +404 -0
- package/src/uni-ui/lib/uni-list/uni-list.vue +123 -0
- package/src/uni-ui/lib/uni-list/uni-refresh.vue +65 -0
- package/src/uni-ui/lib/uni-list/uni-refresh.wxs +87 -0
- package/src/uni-ui/lib/uni-popup-dialog/keypress.js +45 -0
- package/src/uni-ui/lib/uni-popup-dialog/uni-popup-dialog.vue +324 -0
- package/src/uni-ui/lib/uni-rate/uni-rate.vue +361 -0
- package/src/uni-ui/lib/uni-table/uni-table.vue +496 -0
- package/src/uni-ui/lib/uni-td/uni-td.vue +99 -0
- package/src/uni-ui/lib/uni-th/uni-th.vue +310 -283
- package/src/uni-ui/lib/uni-tr/uni-tr.vue +194 -170
- package/src/version.ts +2 -2
- package/dist/deps/@vtj/uni/index.umd.js +0 -7
@@ -0,0 +1,664 @@
|
|
1
|
+
|
2
|
+
.uniui-cart-filled:before {
|
3
|
+
content: "\e6d0";
|
4
|
+
}
|
5
|
+
|
6
|
+
.uniui-gift-filled:before {
|
7
|
+
content: "\e6c4";
|
8
|
+
}
|
9
|
+
|
10
|
+
.uniui-color:before {
|
11
|
+
content: "\e6cf";
|
12
|
+
}
|
13
|
+
|
14
|
+
.uniui-wallet:before {
|
15
|
+
content: "\e6b1";
|
16
|
+
}
|
17
|
+
|
18
|
+
.uniui-settings-filled:before {
|
19
|
+
content: "\e6ce";
|
20
|
+
}
|
21
|
+
|
22
|
+
.uniui-auth-filled:before {
|
23
|
+
content: "\e6cc";
|
24
|
+
}
|
25
|
+
|
26
|
+
.uniui-shop-filled:before {
|
27
|
+
content: "\e6cd";
|
28
|
+
}
|
29
|
+
|
30
|
+
.uniui-staff-filled:before {
|
31
|
+
content: "\e6cb";
|
32
|
+
}
|
33
|
+
|
34
|
+
.uniui-vip-filled:before {
|
35
|
+
content: "\e6c6";
|
36
|
+
}
|
37
|
+
|
38
|
+
.uniui-plus-filled:before {
|
39
|
+
content: "\e6c7";
|
40
|
+
}
|
41
|
+
|
42
|
+
.uniui-folder-add-filled:before {
|
43
|
+
content: "\e6c8";
|
44
|
+
}
|
45
|
+
|
46
|
+
.uniui-color-filled:before {
|
47
|
+
content: "\e6c9";
|
48
|
+
}
|
49
|
+
|
50
|
+
.uniui-tune-filled:before {
|
51
|
+
content: "\e6ca";
|
52
|
+
}
|
53
|
+
|
54
|
+
.uniui-calendar-filled:before {
|
55
|
+
content: "\e6c0";
|
56
|
+
}
|
57
|
+
|
58
|
+
.uniui-notification-filled:before {
|
59
|
+
content: "\e6c1";
|
60
|
+
}
|
61
|
+
|
62
|
+
.uniui-wallet-filled:before {
|
63
|
+
content: "\e6c2";
|
64
|
+
}
|
65
|
+
|
66
|
+
.uniui-medal-filled:before {
|
67
|
+
content: "\e6c3";
|
68
|
+
}
|
69
|
+
|
70
|
+
.uniui-fire-filled:before {
|
71
|
+
content: "\e6c5";
|
72
|
+
}
|
73
|
+
|
74
|
+
.uniui-refreshempty:before {
|
75
|
+
content: "\e6bf";
|
76
|
+
}
|
77
|
+
|
78
|
+
.uniui-location-filled:before {
|
79
|
+
content: "\e6af";
|
80
|
+
}
|
81
|
+
|
82
|
+
.uniui-person-filled:before {
|
83
|
+
content: "\e69d";
|
84
|
+
}
|
85
|
+
|
86
|
+
.uniui-personadd-filled:before {
|
87
|
+
content: "\e698";
|
88
|
+
}
|
89
|
+
|
90
|
+
.uniui-arrowthinleft:before {
|
91
|
+
content: "\e6d2";
|
92
|
+
}
|
93
|
+
|
94
|
+
.uniui-arrowthinup:before {
|
95
|
+
content: "\e6d3";
|
96
|
+
}
|
97
|
+
|
98
|
+
.uniui-arrowthindown:before {
|
99
|
+
content: "\e6d4";
|
100
|
+
}
|
101
|
+
|
102
|
+
.uniui-back:before {
|
103
|
+
content: "\e6b9";
|
104
|
+
}
|
105
|
+
|
106
|
+
.uniui-forward:before {
|
107
|
+
content: "\e6ba";
|
108
|
+
}
|
109
|
+
|
110
|
+
.uniui-arrow-right:before {
|
111
|
+
content: "\e6bb";
|
112
|
+
}
|
113
|
+
|
114
|
+
.uniui-arrow-left:before {
|
115
|
+
content: "\e6bc";
|
116
|
+
}
|
117
|
+
|
118
|
+
.uniui-arrow-up:before {
|
119
|
+
content: "\e6bd";
|
120
|
+
}
|
121
|
+
|
122
|
+
.uniui-arrow-down:before {
|
123
|
+
content: "\e6be";
|
124
|
+
}
|
125
|
+
|
126
|
+
.uniui-arrowthinright:before {
|
127
|
+
content: "\e6d1";
|
128
|
+
}
|
129
|
+
|
130
|
+
.uniui-down:before {
|
131
|
+
content: "\e6b8";
|
132
|
+
}
|
133
|
+
|
134
|
+
.uniui-bottom:before {
|
135
|
+
content: "\e6b8";
|
136
|
+
}
|
137
|
+
|
138
|
+
.uniui-arrowright:before {
|
139
|
+
content: "\e6d5";
|
140
|
+
}
|
141
|
+
|
142
|
+
.uniui-right:before {
|
143
|
+
content: "\e6b5";
|
144
|
+
}
|
145
|
+
|
146
|
+
.uniui-up:before {
|
147
|
+
content: "\e6b6";
|
148
|
+
}
|
149
|
+
|
150
|
+
.uniui-top:before {
|
151
|
+
content: "\e6b6";
|
152
|
+
}
|
153
|
+
|
154
|
+
.uniui-left:before {
|
155
|
+
content: "\e6b7";
|
156
|
+
}
|
157
|
+
|
158
|
+
.uniui-arrowup:before {
|
159
|
+
content: "\e6d6";
|
160
|
+
}
|
161
|
+
|
162
|
+
.uniui-eye:before {
|
163
|
+
content: "\e651";
|
164
|
+
}
|
165
|
+
|
166
|
+
.uniui-eye-filled:before {
|
167
|
+
content: "\e66a";
|
168
|
+
}
|
169
|
+
|
170
|
+
.uniui-eye-slash:before {
|
171
|
+
content: "\e6b3";
|
172
|
+
}
|
173
|
+
|
174
|
+
.uniui-eye-slash-filled:before {
|
175
|
+
content: "\e6b4";
|
176
|
+
}
|
177
|
+
|
178
|
+
.uniui-info-filled:before {
|
179
|
+
content: "\e649";
|
180
|
+
}
|
181
|
+
|
182
|
+
.uniui-reload:before {
|
183
|
+
content: "\e6b2";
|
184
|
+
}
|
185
|
+
|
186
|
+
.uniui-micoff-filled:before {
|
187
|
+
content: "\e6b0";
|
188
|
+
}
|
189
|
+
|
190
|
+
.uniui-map-pin-ellipse:before {
|
191
|
+
content: "\e6ac";
|
192
|
+
}
|
193
|
+
|
194
|
+
.uniui-map-pin:before {
|
195
|
+
content: "\e6ad";
|
196
|
+
}
|
197
|
+
|
198
|
+
.uniui-location:before {
|
199
|
+
content: "\e6ae";
|
200
|
+
}
|
201
|
+
|
202
|
+
.uniui-starhalf:before {
|
203
|
+
content: "\e683";
|
204
|
+
}
|
205
|
+
|
206
|
+
.uniui-star:before {
|
207
|
+
content: "\e688";
|
208
|
+
}
|
209
|
+
|
210
|
+
.uniui-star-filled:before {
|
211
|
+
content: "\e68f";
|
212
|
+
}
|
213
|
+
|
214
|
+
.uniui-calendar:before {
|
215
|
+
content: "\e6a0";
|
216
|
+
}
|
217
|
+
|
218
|
+
.uniui-fire:before {
|
219
|
+
content: "\e6a1";
|
220
|
+
}
|
221
|
+
|
222
|
+
.uniui-medal:before {
|
223
|
+
content: "\e6a2";
|
224
|
+
}
|
225
|
+
|
226
|
+
.uniui-font:before {
|
227
|
+
content: "\e6a3";
|
228
|
+
}
|
229
|
+
|
230
|
+
.uniui-gift:before {
|
231
|
+
content: "\e6a4";
|
232
|
+
}
|
233
|
+
|
234
|
+
.uniui-link:before {
|
235
|
+
content: "\e6a5";
|
236
|
+
}
|
237
|
+
|
238
|
+
.uniui-notification:before {
|
239
|
+
content: "\e6a6";
|
240
|
+
}
|
241
|
+
|
242
|
+
.uniui-staff:before {
|
243
|
+
content: "\e6a7";
|
244
|
+
}
|
245
|
+
|
246
|
+
.uniui-vip:before {
|
247
|
+
content: "\e6a8";
|
248
|
+
}
|
249
|
+
|
250
|
+
.uniui-folder-add:before {
|
251
|
+
content: "\e6a9";
|
252
|
+
}
|
253
|
+
|
254
|
+
.uniui-tune:before {
|
255
|
+
content: "\e6aa";
|
256
|
+
}
|
257
|
+
|
258
|
+
.uniui-auth:before {
|
259
|
+
content: "\e6ab";
|
260
|
+
}
|
261
|
+
|
262
|
+
.uniui-person:before {
|
263
|
+
content: "\e699";
|
264
|
+
}
|
265
|
+
|
266
|
+
.uniui-email-filled:before {
|
267
|
+
content: "\e69a";
|
268
|
+
}
|
269
|
+
|
270
|
+
.uniui-phone-filled:before {
|
271
|
+
content: "\e69b";
|
272
|
+
}
|
273
|
+
|
274
|
+
.uniui-phone:before {
|
275
|
+
content: "\e69c";
|
276
|
+
}
|
277
|
+
|
278
|
+
.uniui-email:before {
|
279
|
+
content: "\e69e";
|
280
|
+
}
|
281
|
+
|
282
|
+
.uniui-personadd:before {
|
283
|
+
content: "\e69f";
|
284
|
+
}
|
285
|
+
|
286
|
+
.uniui-chatboxes-filled:before {
|
287
|
+
content: "\e692";
|
288
|
+
}
|
289
|
+
|
290
|
+
.uniui-contact:before {
|
291
|
+
content: "\e693";
|
292
|
+
}
|
293
|
+
|
294
|
+
.uniui-chatbubble-filled:before {
|
295
|
+
content: "\e694";
|
296
|
+
}
|
297
|
+
|
298
|
+
.uniui-contact-filled:before {
|
299
|
+
content: "\e695";
|
300
|
+
}
|
301
|
+
|
302
|
+
.uniui-chatboxes:before {
|
303
|
+
content: "\e696";
|
304
|
+
}
|
305
|
+
|
306
|
+
.uniui-chatbubble:before {
|
307
|
+
content: "\e697";
|
308
|
+
}
|
309
|
+
|
310
|
+
.uniui-upload-filled:before {
|
311
|
+
content: "\e68e";
|
312
|
+
}
|
313
|
+
|
314
|
+
.uniui-upload:before {
|
315
|
+
content: "\e690";
|
316
|
+
}
|
317
|
+
|
318
|
+
.uniui-weixin:before {
|
319
|
+
content: "\e691";
|
320
|
+
}
|
321
|
+
|
322
|
+
.uniui-compose:before {
|
323
|
+
content: "\e67f";
|
324
|
+
}
|
325
|
+
|
326
|
+
.uniui-qq:before {
|
327
|
+
content: "\e680";
|
328
|
+
}
|
329
|
+
|
330
|
+
.uniui-download-filled:before {
|
331
|
+
content: "\e681";
|
332
|
+
}
|
333
|
+
|
334
|
+
.uniui-pyq:before {
|
335
|
+
content: "\e682";
|
336
|
+
}
|
337
|
+
|
338
|
+
.uniui-sound:before {
|
339
|
+
content: "\e684";
|
340
|
+
}
|
341
|
+
|
342
|
+
.uniui-trash-filled:before {
|
343
|
+
content: "\e685";
|
344
|
+
}
|
345
|
+
|
346
|
+
.uniui-sound-filled:before {
|
347
|
+
content: "\e686";
|
348
|
+
}
|
349
|
+
|
350
|
+
.uniui-trash:before {
|
351
|
+
content: "\e687";
|
352
|
+
}
|
353
|
+
|
354
|
+
.uniui-videocam-filled:before {
|
355
|
+
content: "\e689";
|
356
|
+
}
|
357
|
+
|
358
|
+
.uniui-spinner-cycle:before {
|
359
|
+
content: "\e68a";
|
360
|
+
}
|
361
|
+
|
362
|
+
.uniui-weibo:before {
|
363
|
+
content: "\e68b";
|
364
|
+
}
|
365
|
+
|
366
|
+
.uniui-videocam:before {
|
367
|
+
content: "\e68c";
|
368
|
+
}
|
369
|
+
|
370
|
+
.uniui-download:before {
|
371
|
+
content: "\e68d";
|
372
|
+
}
|
373
|
+
|
374
|
+
.uniui-help:before {
|
375
|
+
content: "\e679";
|
376
|
+
}
|
377
|
+
|
378
|
+
.uniui-navigate-filled:before {
|
379
|
+
content: "\e67a";
|
380
|
+
}
|
381
|
+
|
382
|
+
.uniui-plusempty:before {
|
383
|
+
content: "\e67b";
|
384
|
+
}
|
385
|
+
|
386
|
+
.uniui-smallcircle:before {
|
387
|
+
content: "\e67c";
|
388
|
+
}
|
389
|
+
|
390
|
+
.uniui-minus-filled:before {
|
391
|
+
content: "\e67d";
|
392
|
+
}
|
393
|
+
|
394
|
+
.uniui-micoff:before {
|
395
|
+
content: "\e67e";
|
396
|
+
}
|
397
|
+
|
398
|
+
.uniui-closeempty:before {
|
399
|
+
content: "\e66c";
|
400
|
+
}
|
401
|
+
|
402
|
+
.uniui-clear:before {
|
403
|
+
content: "\e66d";
|
404
|
+
}
|
405
|
+
|
406
|
+
.uniui-navigate:before {
|
407
|
+
content: "\e66e";
|
408
|
+
}
|
409
|
+
|
410
|
+
.uniui-minus:before {
|
411
|
+
content: "\e66f";
|
412
|
+
}
|
413
|
+
|
414
|
+
.uniui-image:before {
|
415
|
+
content: "\e670";
|
416
|
+
}
|
417
|
+
|
418
|
+
.uniui-mic:before {
|
419
|
+
content: "\e671";
|
420
|
+
}
|
421
|
+
|
422
|
+
.uniui-paperplane:before {
|
423
|
+
content: "\e672";
|
424
|
+
}
|
425
|
+
|
426
|
+
.uniui-close:before {
|
427
|
+
content: "\e673";
|
428
|
+
}
|
429
|
+
|
430
|
+
.uniui-help-filled:before {
|
431
|
+
content: "\e674";
|
432
|
+
}
|
433
|
+
|
434
|
+
.uniui-paperplane-filled:before {
|
435
|
+
content: "\e675";
|
436
|
+
}
|
437
|
+
|
438
|
+
.uniui-plus:before {
|
439
|
+
content: "\e676";
|
440
|
+
}
|
441
|
+
|
442
|
+
.uniui-mic-filled:before {
|
443
|
+
content: "\e677";
|
444
|
+
}
|
445
|
+
|
446
|
+
.uniui-image-filled:before {
|
447
|
+
content: "\e678";
|
448
|
+
}
|
449
|
+
|
450
|
+
.uniui-locked-filled:before {
|
451
|
+
content: "\e668";
|
452
|
+
}
|
453
|
+
|
454
|
+
.uniui-info:before {
|
455
|
+
content: "\e669";
|
456
|
+
}
|
457
|
+
|
458
|
+
.uniui-locked:before {
|
459
|
+
content: "\e66b";
|
460
|
+
}
|
461
|
+
|
462
|
+
.uniui-camera-filled:before {
|
463
|
+
content: "\e658";
|
464
|
+
}
|
465
|
+
|
466
|
+
.uniui-chat-filled:before {
|
467
|
+
content: "\e659";
|
468
|
+
}
|
469
|
+
|
470
|
+
.uniui-camera:before {
|
471
|
+
content: "\e65a";
|
472
|
+
}
|
473
|
+
|
474
|
+
.uniui-circle:before {
|
475
|
+
content: "\e65b";
|
476
|
+
}
|
477
|
+
|
478
|
+
.uniui-checkmarkempty:before {
|
479
|
+
content: "\e65c";
|
480
|
+
}
|
481
|
+
|
482
|
+
.uniui-chat:before {
|
483
|
+
content: "\e65d";
|
484
|
+
}
|
485
|
+
|
486
|
+
.uniui-circle-filled:before {
|
487
|
+
content: "\e65e";
|
488
|
+
}
|
489
|
+
|
490
|
+
.uniui-flag:before {
|
491
|
+
content: "\e65f";
|
492
|
+
}
|
493
|
+
|
494
|
+
.uniui-flag-filled:before {
|
495
|
+
content: "\e660";
|
496
|
+
}
|
497
|
+
|
498
|
+
.uniui-gear-filled:before {
|
499
|
+
content: "\e661";
|
500
|
+
}
|
501
|
+
|
502
|
+
.uniui-home:before {
|
503
|
+
content: "\e662";
|
504
|
+
}
|
505
|
+
|
506
|
+
.uniui-home-filled:before {
|
507
|
+
content: "\e663";
|
508
|
+
}
|
509
|
+
|
510
|
+
.uniui-gear:before {
|
511
|
+
content: "\e664";
|
512
|
+
}
|
513
|
+
|
514
|
+
.uniui-smallcircle-filled:before {
|
515
|
+
content: "\e665";
|
516
|
+
}
|
517
|
+
|
518
|
+
.uniui-map-filled:before {
|
519
|
+
content: "\e666";
|
520
|
+
}
|
521
|
+
|
522
|
+
.uniui-map:before {
|
523
|
+
content: "\e667";
|
524
|
+
}
|
525
|
+
|
526
|
+
.uniui-refresh-filled:before {
|
527
|
+
content: "\e656";
|
528
|
+
}
|
529
|
+
|
530
|
+
.uniui-refresh:before {
|
531
|
+
content: "\e657";
|
532
|
+
}
|
533
|
+
|
534
|
+
.uniui-cloud-upload:before {
|
535
|
+
content: "\e645";
|
536
|
+
}
|
537
|
+
|
538
|
+
.uniui-cloud-download-filled:before {
|
539
|
+
content: "\e646";
|
540
|
+
}
|
541
|
+
|
542
|
+
.uniui-cloud-download:before {
|
543
|
+
content: "\e647";
|
544
|
+
}
|
545
|
+
|
546
|
+
.uniui-cloud-upload-filled:before {
|
547
|
+
content: "\e648";
|
548
|
+
}
|
549
|
+
|
550
|
+
.uniui-redo:before {
|
551
|
+
content: "\e64a";
|
552
|
+
}
|
553
|
+
|
554
|
+
.uniui-images-filled:before {
|
555
|
+
content: "\e64b";
|
556
|
+
}
|
557
|
+
|
558
|
+
.uniui-undo-filled:before {
|
559
|
+
content: "\e64c";
|
560
|
+
}
|
561
|
+
|
562
|
+
.uniui-more:before {
|
563
|
+
content: "\e64d";
|
564
|
+
}
|
565
|
+
|
566
|
+
.uniui-more-filled:before {
|
567
|
+
content: "\e64e";
|
568
|
+
}
|
569
|
+
|
570
|
+
.uniui-undo:before {
|
571
|
+
content: "\e64f";
|
572
|
+
}
|
573
|
+
|
574
|
+
.uniui-images:before {
|
575
|
+
content: "\e650";
|
576
|
+
}
|
577
|
+
|
578
|
+
.uniui-paperclip:before {
|
579
|
+
content: "\e652";
|
580
|
+
}
|
581
|
+
|
582
|
+
.uniui-settings:before {
|
583
|
+
content: "\e653";
|
584
|
+
}
|
585
|
+
|
586
|
+
.uniui-search:before {
|
587
|
+
content: "\e654";
|
588
|
+
}
|
589
|
+
|
590
|
+
.uniui-redo-filled:before {
|
591
|
+
content: "\e655";
|
592
|
+
}
|
593
|
+
|
594
|
+
.uniui-list:before {
|
595
|
+
content: "\e644";
|
596
|
+
}
|
597
|
+
|
598
|
+
.uniui-mail-open-filled:before {
|
599
|
+
content: "\e63a";
|
600
|
+
}
|
601
|
+
|
602
|
+
.uniui-hand-down-filled:before {
|
603
|
+
content: "\e63c";
|
604
|
+
}
|
605
|
+
|
606
|
+
.uniui-hand-down:before {
|
607
|
+
content: "\e63d";
|
608
|
+
}
|
609
|
+
|
610
|
+
.uniui-hand-up-filled:before {
|
611
|
+
content: "\e63e";
|
612
|
+
}
|
613
|
+
|
614
|
+
.uniui-hand-up:before {
|
615
|
+
content: "\e63f";
|
616
|
+
}
|
617
|
+
|
618
|
+
.uniui-heart-filled:before {
|
619
|
+
content: "\e641";
|
620
|
+
}
|
621
|
+
|
622
|
+
.uniui-mail-open:before {
|
623
|
+
content: "\e643";
|
624
|
+
}
|
625
|
+
|
626
|
+
.uniui-heart:before {
|
627
|
+
content: "\e639";
|
628
|
+
}
|
629
|
+
|
630
|
+
.uniui-loop:before {
|
631
|
+
content: "\e633";
|
632
|
+
}
|
633
|
+
|
634
|
+
.uniui-pulldown:before {
|
635
|
+
content: "\e632";
|
636
|
+
}
|
637
|
+
|
638
|
+
.uniui-scan:before {
|
639
|
+
content: "\e62a";
|
640
|
+
}
|
641
|
+
|
642
|
+
.uniui-bars:before {
|
643
|
+
content: "\e627";
|
644
|
+
}
|
645
|
+
|
646
|
+
.uniui-checkbox:before {
|
647
|
+
content: "\e62b";
|
648
|
+
}
|
649
|
+
|
650
|
+
.uniui-checkbox-filled:before {
|
651
|
+
content: "\e62c";
|
652
|
+
}
|
653
|
+
|
654
|
+
.uniui-shop:before {
|
655
|
+
content: "\e62f";
|
656
|
+
}
|
657
|
+
|
658
|
+
.uniui-headphones:before {
|
659
|
+
content: "\e630";
|
660
|
+
}
|
661
|
+
|
662
|
+
.uniui-cart:before {
|
663
|
+
content: "\e631";
|
664
|
+
}
|
Binary file
|