@mc-markets/ui 1.0.78 → 1.0.80

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.
Files changed (38) hide show
  1. package/dist/components/Tabs/TabPane.vue.d.ts +42 -1
  2. package/dist/components/Tabs/TabPane.vue.d.ts.map +1 -1
  3. package/dist/components/Tabs/Tabs.vue.d.ts +49 -1
  4. package/dist/components/Tabs/Tabs.vue.d.ts.map +1 -1
  5. package/dist/components/Tag/Tag.vue.d.ts +12 -1
  6. package/dist/components/Tag/Tag.vue.d.ts.map +1 -1
  7. package/dist/index.cjs +1 -1
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.mjs +700 -542
  10. package/dist/index.mjs.map +1 -1
  11. package/dist/style.css +1 -1
  12. package/dist/styles/colorfont/iconfont.d.ts +1 -0
  13. package/dist/styles/colorfont/iconfont.d.ts.map +1 -0
  14. package/package.json +1 -1
  15. package/packages/components/Radio/Radio.vue +25 -88
  16. package/packages/components/Tabs/TabPane.vue +72 -12
  17. package/packages/components/Tabs/Tabs.vue +220 -12
  18. package/packages/components/Tag/Tag.vue +70 -1
  19. package/packages/styles/colorfont/demo.css +539 -0
  20. package/packages/styles/colorfont/demo_index.html +214 -0
  21. package/packages/styles/colorfont/iconfont.css +21 -0
  22. package/packages/styles/colorfont/iconfont.js +1 -0
  23. package/packages/styles/colorfont/iconfont.json +16 -0
  24. package/packages/styles/colorfont/iconfont.ttf +0 -0
  25. package/packages/styles/colorfont/iconfont.woff +0 -0
  26. package/packages/styles/colorfont/iconfont.woff2 +0 -0
  27. package/packages/styles/components/checkbox.scss +12 -8
  28. package/packages/styles/components/tabs.scss +73 -5
  29. package/packages/styles/components/tag.scss +39 -0
  30. package/packages/styles/font/demo.css +539 -539
  31. package/packages/styles/font/demo_index.html +2419 -2189
  32. package/packages/styles/font/iconfont.css +403 -363
  33. package/packages/styles/font/iconfont.js +1 -1
  34. package/packages/styles/font/iconfont.json +688 -618
  35. package/packages/styles/font/iconfont.ttf +0 -0
  36. package/packages/styles/font/iconfont.woff +0 -0
  37. package/packages/styles/font/iconfont.woff2 +0 -0
  38. package/packages/styles/index.scss +0 -2
@@ -1,363 +1,403 @@
1
- @font-face {
2
- font-family: "iconfont"; /* Project id 5007157 */
3
- src: url('./iconfont.woff2?t=1757404792101') format('woff2'),
4
- url('./iconfont.woff?t=1757404792101') format('woff'),
5
- url('./iconfont.ttf?t=1757404792101') format('truetype');
6
- }
7
-
8
- .iconfont {
9
- font-family: "iconfont" !important;
10
- font-size: 16px;
11
- font-style: normal;
12
- -webkit-font-smoothing: antialiased;
13
- -moz-osx-font-smoothing: grayscale;
14
- }
15
-
16
- .icon-withdraw:before {
17
- content: "\e7df";
18
- }
19
-
20
- .icon-deposit:before {
21
- content: "\e7e7";
22
- }
23
-
24
- .icon-switch-camera:before {
25
- content: "\e7e9";
26
- }
27
-
28
- .icon-receipt:before {
29
- content: "\e7e8";
30
- }
31
-
32
- .icon-shield-check:before {
33
- content: "\e7e0";
34
- }
35
-
36
- .icon-id-card:before {
37
- content: "\e7e1";
38
- }
39
-
40
- .icon-user-round:before {
41
- content: "\e7e2";
42
- }
43
-
44
- .icon-log-out:before {
45
- content: "\e7e3";
46
- }
47
-
48
- .icon-arrow-right-left:before {
49
- content: "\e7e4";
50
- }
51
-
52
- .icon-clipboard-minus:before {
53
- content: "\e7e5";
54
- }
55
-
56
- .icon-chart-pie:before {
57
- content: "\e7e6";
58
- }
59
-
60
- .icon-receipt-text:before {
61
- content: "\e7de";
62
- }
63
-
64
- .icon-brush-cleaning:before {
65
- content: "\e7dc";
66
- }
67
-
68
- .icon-arrow-down-to-line:before {
69
- content: "\e7db";
70
- }
71
-
72
- .icon-circle-check-filled:before {
73
- content: "\e7da";
74
- }
75
-
76
- .icon-square-check:before {
77
- content: "\e7d9";
78
- }
79
-
80
- .icon-square-check-empty:before {
81
- content: "\e7d8";
82
- }
83
-
84
- .icon-photosolid:before {
85
- content: "\e7d7";
86
- }
87
-
88
- .icon-customized:before {
89
- content: "\e7d6";
90
- }
91
-
92
- .icon-customize-newspaper:before {
93
- content: "\e7d5";
94
- }
95
-
96
- .icon-bell-ring:before {
97
- content: "\e7d4";
98
- }
99
-
100
- .icon-eye:before {
101
- content: "\e7d3";
102
- }
103
-
104
- .icon-bitcoin-convert:before {
105
- content: "\e7c7";
106
- }
107
-
108
- .icon-ellipsis-vertical:before {
109
- content: "\e7cd";
110
- }
111
-
112
- .icon-circle-help:before {
113
- content: "\e7ce";
114
- }
115
-
116
- .icon-gift:before {
117
- content: "\e7cf";
118
- }
119
-
120
- .icon-circle:before {
121
- content: "\e7d0";
122
- }
123
-
124
- .icon-circle-dollar-sign:before {
125
- content: "\e7d1";
126
- }
127
-
128
- .icon-chrome:before {
129
- content: "\e7d2";
130
- }
131
-
132
- .icon-alarm:before {
133
- content: "\e7b3";
134
- }
135
-
136
- .icon-refresh-cw:before {
137
- content: "\e7b4";
138
- }
139
-
140
- .icon-search:before {
141
- content: "\e7b5";
142
- }
143
-
144
- .icon-alert-circle:before {
145
- content: "\e7b6";
146
- }
147
-
148
- .icon-graph-filled:before {
149
- content: "\e7b7";
150
- }
151
-
152
- .icon-star-filled:before {
153
- content: "\e7b8";
154
- }
155
-
156
- .icon-lucide-x:before {
157
- content: "\e7b9";
158
- }
159
-
160
- .icon-plus:before {
161
- content: "\e7ba";
162
- }
163
-
164
- .icon-map-pin:before {
165
- content: "\e7bb";
166
- }
167
-
168
- .icon-loader-circle:before {
169
- content: "\e7bc";
170
- }
171
-
172
- .icon-image:before {
173
- content: "\e7bd";
174
- }
175
-
176
- .icon-lucide-image:before {
177
- content: "\e7be";
178
- }
179
-
180
- .icon-lucide-history:before {
181
- content: "\e7bf";
182
- }
183
-
184
- .icon-key-round:before {
185
- content: "\e7c0";
186
- }
187
-
188
- .icon-copy:before {
189
- content: "\e7c1";
190
- }
191
-
192
- .icon-headset:before {
193
- content: "\e7c2";
194
- }
195
-
196
- .icon-circle-x:before {
197
- content: "\e7c3";
198
- }
199
-
200
- .icon-circle-user:before {
201
- content: "\e7c4";
202
- }
203
-
204
- .icon-globe:before {
205
- content: "\e7c5";
206
- }
207
-
208
- .icon-compass:before {
209
- content: "\e7c6";
210
- }
211
-
212
- .icon-eye-off:before {
213
- content: "\e7c8";
214
- }
215
-
216
- .icon-layout-grid:before {
217
- content: "\e7c9";
218
- }
219
-
220
- .icon-heart-handshake:before {
221
- content: "\e7ca";
222
- }
223
-
224
- .icon-credit-card:before {
225
- content: "\e7cb";
226
- }
227
-
228
- .icon-earth:before {
229
- content: "\e7cc";
230
- }
231
-
232
- .icon-linear-trash:before {
233
- content: "\e7a3";
234
- }
235
-
236
- .icon-tabler_wallet_outline:before {
237
- content: "\e7a4";
238
- }
239
-
240
- .icon-pig-money:before {
241
- content: "\e7a5";
242
- }
243
-
244
- .icon-wallet-filled:before {
245
- content: "\e7a6";
246
- }
247
-
248
- .icon-star-outline:before {
249
- content: "\e7a7";
250
- }
251
-
252
- .icon-trending-up-down:before {
253
- content: "\e7a8";
254
- }
255
-
256
- .icon-monitor:before {
257
- content: "\e7a9";
258
- }
259
-
260
- .icon-graph-outline:before {
261
- content: "\e7aa";
262
- }
263
-
264
- .icon-home-filled:before {
265
- content: "\e7ab";
266
- }
267
-
268
- .icon-lucidecoins:before {
269
- content: "\e7ac";
270
- }
271
-
272
- .icon-square-pen:before {
273
- content: "\e7ad";
274
- }
275
-
276
- .icon-adjustments-horizontal:before {
277
- content: "\e7ae";
278
- }
279
-
280
- .icon-home-outline:before {
281
- content: "\e7af";
282
- }
283
-
284
- .icon-user-cog:before {
285
- content: "\e7b0";
286
- }
287
-
288
- .icon-minus:before {
289
- content: "\e7b1";
290
- }
291
-
292
- .icon-circle-check:before {
293
- content: "\e7b2";
294
- }
295
-
296
- .icon-customize-speakerphone:before {
297
- content: "\e7a2";
298
- }
299
-
300
- .icon-book-open-text:before {
301
- content: "\e797";
302
- }
303
-
304
- .icon-bitcoin-convert-filled:before {
305
- content: "\e798";
306
- }
307
-
308
- .icon-calendar-clock:before {
309
- content: "\e799";
310
- }
311
-
312
- .icon-check:before {
313
- content: "\e79a";
314
- }
315
-
316
- .icon-repeat-circle:before {
317
- content: "\e79b";
318
- }
319
-
320
- .icon-chevron-up:before {
321
- content: "\e79c";
322
- }
323
-
324
- .icon-customize-safe:before {
325
- content: "\e790";
326
- }
327
-
328
- .icon-chevron-right:before {
329
- content: "\e79d";
330
- }
331
-
332
- .icon-bitcoin-convert-utline:before {
333
- content: "\e79e";
334
- }
335
-
336
- .icon-arrow-left-right:before {
337
- content: "\e7a0";
338
- }
339
-
340
- .icon-customize:before {
341
- content: "\e7a1";
342
- }
343
-
344
- .icon-lucide-check:before {
345
- content: "\e794";
346
- }
347
-
348
- .icon-arrow-down-narrow-wide:before {
349
- content: "\e793";
350
- }
351
-
352
- .icon-money-send:before {
353
- content: "\e791";
354
- }
355
-
356
- .icon-chevron-left:before {
357
- content: "\e792";
358
- }
359
-
360
- .icon-chevron-down:before {
361
- content: "\e796";
362
- }
363
-
1
+ @font-face {
2
+ font-family: "iconfont"; /* Project id 5007157 */
3
+ src: url('./iconfont.woff2?t=1759047647370') format('woff2'),
4
+ url('./iconfont.woff?t=1759047647370') format('woff'),
5
+ url('./iconfont.ttf?t=1759047647370') format('truetype');
6
+ }
7
+
8
+ .iconfont {
9
+ font-family: "iconfont" !important;
10
+ font-size: 16px;
11
+ font-style: normal;
12
+ -webkit-font-smoothing: antialiased;
13
+ -moz-osx-font-smoothing: grayscale;
14
+ }
15
+
16
+ .icon-a-lucide_loader1:before {
17
+ content: "\e7f2";
18
+ }
19
+
20
+ .icon-lucide_circle-x-filled:before {
21
+ content: "\e7f1";
22
+ }
23
+
24
+ .icon-a-lucide_user-round-plus1:before {
25
+ content: "\e7f0";
26
+ }
27
+
28
+ .icon-a-lucide_file-check1:before {
29
+ content: "\e7ef";
30
+ }
31
+
32
+ .icon-a-lucide_external-link1:before {
33
+ content: "\e7ee";
34
+ }
35
+
36
+ .icon-a-iconsax_google1:before {
37
+ content: "\e7dd";
38
+ }
39
+
40
+ .icon-lucide_megaphone:before {
41
+ content: "\e7ea";
42
+ }
43
+
44
+ .icon-lucide_mail:before {
45
+ content: "\e7eb";
46
+ }
47
+
48
+ .icon-lucide_smartphone:before {
49
+ content: "\e7ec";
50
+ }
51
+
52
+ .icon-lucide_user:before {
53
+ content: "\e7ed";
54
+ }
55
+
56
+ .icon-withdraw:before {
57
+ content: "\e7df";
58
+ }
59
+
60
+ .icon-deposit:before {
61
+ content: "\e7e7";
62
+ }
63
+
64
+ .icon-switch-camera:before {
65
+ content: "\e7e9";
66
+ }
67
+
68
+ .icon-receipt:before {
69
+ content: "\e7e8";
70
+ }
71
+
72
+ .icon-shield-check:before {
73
+ content: "\e7e0";
74
+ }
75
+
76
+ .icon-id-card:before {
77
+ content: "\e7e1";
78
+ }
79
+
80
+ .icon-user-round:before {
81
+ content: "\e7e2";
82
+ }
83
+
84
+ .icon-log-out:before {
85
+ content: "\e7e3";
86
+ }
87
+
88
+ .icon-arrow-right-left:before {
89
+ content: "\e7e4";
90
+ }
91
+
92
+ .icon-clipboard-minus:before {
93
+ content: "\e7e5";
94
+ }
95
+
96
+ .icon-chart-pie:before {
97
+ content: "\e7e6";
98
+ }
99
+
100
+ .icon-receipt-text:before {
101
+ content: "\e7de";
102
+ }
103
+
104
+ .icon-brush-cleaning:before {
105
+ content: "\e7dc";
106
+ }
107
+
108
+ .icon-arrow-down-to-line:before {
109
+ content: "\e7db";
110
+ }
111
+
112
+ .icon-circle-check-filled:before {
113
+ content: "\e7da";
114
+ }
115
+
116
+ .icon-square-check:before {
117
+ content: "\e7d9";
118
+ }
119
+
120
+ .icon-square-check-empty:before {
121
+ content: "\e7d8";
122
+ }
123
+
124
+ .icon-photosolid:before {
125
+ content: "\e7d7";
126
+ }
127
+
128
+ .icon-customized:before {
129
+ content: "\e7d6";
130
+ }
131
+
132
+ .icon-customize-newspaper:before {
133
+ content: "\e7d5";
134
+ }
135
+
136
+ .icon-bell-ring:before {
137
+ content: "\e7d4";
138
+ }
139
+
140
+ .icon-eye:before {
141
+ content: "\e7d3";
142
+ }
143
+
144
+ .icon-bitcoin-convert:before {
145
+ content: "\e7c7";
146
+ }
147
+
148
+ .icon-ellipsis-vertical:before {
149
+ content: "\e7cd";
150
+ }
151
+
152
+ .icon-circle-help:before {
153
+ content: "\e7ce";
154
+ }
155
+
156
+ .icon-gift:before {
157
+ content: "\e7cf";
158
+ }
159
+
160
+ .icon-circle:before {
161
+ content: "\e7d0";
162
+ }
163
+
164
+ .icon-circle-dollar-sign:before {
165
+ content: "\e7d1";
166
+ }
167
+
168
+ .icon-chrome:before {
169
+ content: "\e7d2";
170
+ }
171
+
172
+ .icon-alarm:before {
173
+ content: "\e7b3";
174
+ }
175
+
176
+ .icon-refresh-cw:before {
177
+ content: "\e7b4";
178
+ }
179
+
180
+ .icon-search:before {
181
+ content: "\e7b5";
182
+ }
183
+
184
+ .icon-alert-circle:before {
185
+ content: "\e7b6";
186
+ }
187
+
188
+ .icon-graph-filled:before {
189
+ content: "\e7b7";
190
+ }
191
+
192
+ .icon-star-filled:before {
193
+ content: "\e7b8";
194
+ }
195
+
196
+ .icon-lucide-x:before {
197
+ content: "\e7b9";
198
+ }
199
+
200
+ .icon-plus:before {
201
+ content: "\e7ba";
202
+ }
203
+
204
+ .icon-map-pin:before {
205
+ content: "\e7bb";
206
+ }
207
+
208
+ .icon-loader-circle:before {
209
+ content: "\e7bc";
210
+ }
211
+
212
+ .icon-image:before {
213
+ content: "\e7bd";
214
+ }
215
+
216
+ .icon-lucide-image:before {
217
+ content: "\e7be";
218
+ }
219
+
220
+ .icon-lucide-history:before {
221
+ content: "\e7bf";
222
+ }
223
+
224
+ .icon-key-round:before {
225
+ content: "\e7c0";
226
+ }
227
+
228
+ .icon-copy:before {
229
+ content: "\e7c1";
230
+ }
231
+
232
+ .icon-headset:before {
233
+ content: "\e7c2";
234
+ }
235
+
236
+ .icon-circle-x:before {
237
+ content: "\e7c3";
238
+ }
239
+
240
+ .icon-circle-user:before {
241
+ content: "\e7c4";
242
+ }
243
+
244
+ .icon-globe:before {
245
+ content: "\e7c5";
246
+ }
247
+
248
+ .icon-compass:before {
249
+ content: "\e7c6";
250
+ }
251
+
252
+ .icon-eye-off:before {
253
+ content: "\e7c8";
254
+ }
255
+
256
+ .icon-layout-grid:before {
257
+ content: "\e7c9";
258
+ }
259
+
260
+ .icon-heart-handshake:before {
261
+ content: "\e7ca";
262
+ }
263
+
264
+ .icon-credit-card:before {
265
+ content: "\e7cb";
266
+ }
267
+
268
+ .icon-earth:before {
269
+ content: "\e7cc";
270
+ }
271
+
272
+ .icon-linear-trash:before {
273
+ content: "\e7a3";
274
+ }
275
+
276
+ .icon-tabler_wallet_outline:before {
277
+ content: "\e7a4";
278
+ }
279
+
280
+ .icon-pig-money:before {
281
+ content: "\e7a5";
282
+ }
283
+
284
+ .icon-wallet-filled:before {
285
+ content: "\e7a6";
286
+ }
287
+
288
+ .icon-star-outline:before {
289
+ content: "\e7a7";
290
+ }
291
+
292
+ .icon-trending-up-down:before {
293
+ content: "\e7a8";
294
+ }
295
+
296
+ .icon-monitor:before {
297
+ content: "\e7a9";
298
+ }
299
+
300
+ .icon-graph-outline:before {
301
+ content: "\e7aa";
302
+ }
303
+
304
+ .icon-home-filled:before {
305
+ content: "\e7ab";
306
+ }
307
+
308
+ .icon-lucidecoins:before {
309
+ content: "\e7ac";
310
+ }
311
+
312
+ .icon-square-pen:before {
313
+ content: "\e7ad";
314
+ }
315
+
316
+ .icon-adjustments-horizontal:before {
317
+ content: "\e7ae";
318
+ }
319
+
320
+ .icon-home-outline:before {
321
+ content: "\e7af";
322
+ }
323
+
324
+ .icon-user-cog:before {
325
+ content: "\e7b0";
326
+ }
327
+
328
+ .icon-minus:before {
329
+ content: "\e7b1";
330
+ }
331
+
332
+ .icon-circle-check:before {
333
+ content: "\e7b2";
334
+ }
335
+
336
+ .icon-customize-speakerphone:before {
337
+ content: "\e7a2";
338
+ }
339
+
340
+ .icon-book-open-text:before {
341
+ content: "\e797";
342
+ }
343
+
344
+ .icon-bitcoin-convert-filled:before {
345
+ content: "\e798";
346
+ }
347
+
348
+ .icon-calendar-clock:before {
349
+ content: "\e799";
350
+ }
351
+
352
+ .icon-check:before {
353
+ content: "\e79a";
354
+ }
355
+
356
+ .icon-repeat-circle:before {
357
+ content: "\e79b";
358
+ }
359
+
360
+ .icon-chevron-up:before {
361
+ content: "\e79c";
362
+ }
363
+
364
+ .icon-customize-safe:before {
365
+ content: "\e790";
366
+ }
367
+
368
+ .icon-chevron-right:before {
369
+ content: "\e79d";
370
+ }
371
+
372
+ .icon-bitcoin-convert-utline:before {
373
+ content: "\e79e";
374
+ }
375
+
376
+ .icon-arrow-left-right:before {
377
+ content: "\e7a0";
378
+ }
379
+
380
+ .icon-customize:before {
381
+ content: "\e7a1";
382
+ }
383
+
384
+ .icon-lucide-check:before {
385
+ content: "\e794";
386
+ }
387
+
388
+ .icon-arrow-down-narrow-wide:before {
389
+ content: "\e793";
390
+ }
391
+
392
+ .icon-money-send:before {
393
+ content: "\e791";
394
+ }
395
+
396
+ .icon-chevron-left:before {
397
+ content: "\e792";
398
+ }
399
+
400
+ .icon-chevron-down:before {
401
+ content: "\e796";
402
+ }
403
+