@fjyueke/arco-mcp 1.0.1 → 1.0.2

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 (62) hide show
  1. package/dist/index.js +113 -1
  2. package/metaData/components/action-sheet/style.md +57 -0
  3. package/metaData/components/avatar/style.md +147 -0
  4. package/metaData/components/badge/style.md +74 -0
  5. package/metaData/components/button/style.md +151 -0
  6. package/metaData/components/carousel/style.md +208 -0
  7. package/metaData/components/cell/style.md +123 -0
  8. package/metaData/components/checkbox/style.md +62 -0
  9. package/metaData/components/circle-progress/style.md +52 -0
  10. package/metaData/components/collapse/style.md +53 -0
  11. package/metaData/components/context-provider/style.md +1 -0
  12. package/metaData/components/count-down/style.md +7 -0
  13. package/metaData/components/date-picker/style.md +27 -0
  14. package/metaData/components/dialog/style.md +271 -0
  15. package/metaData/components/divider/style.md +68 -0
  16. package/metaData/components/dropdown/style.md +108 -0
  17. package/metaData/components/dropdown-menu/style.md +60 -0
  18. package/metaData/components/ellipsis/style.md +31 -0
  19. package/metaData/components/form/style.md +105 -0
  20. package/metaData/components/grid/style.md +109 -0
  21. package/metaData/components/image/style.md +144 -0
  22. package/metaData/components/image-picker/style.md +116 -0
  23. package/metaData/components/image-preview/style.md +103 -0
  24. package/metaData/components/index-bar/style.md +122 -0
  25. package/metaData/components/input/style.md +108 -0
  26. package/metaData/components/keyboard/style.md +80 -0
  27. package/metaData/components/load-more/style.md +7 -0
  28. package/metaData/components/loading/style.md +102 -0
  29. package/metaData/components/masking/style.md +30 -0
  30. package/metaData/components/nav-bar/style.md +112 -0
  31. package/metaData/components/notice-bar/style.md +124 -0
  32. package/metaData/components/notify/style.md +40 -0
  33. package/metaData/components/pagination/style.md +105 -0
  34. package/metaData/components/picker/style.md +46 -0
  35. package/metaData/components/picker-view/style.md +75 -0
  36. package/metaData/components/popover/style.md +226 -0
  37. package/metaData/components/popup/style.md +115 -0
  38. package/metaData/components/popup-swiper/style.md +10 -0
  39. package/metaData/components/portal/style.md +1 -0
  40. package/metaData/components/progress/style.md +114 -0
  41. package/metaData/components/pull-refresh/style.md +86 -0
  42. package/metaData/components/radio/style.md +57 -0
  43. package/metaData/components/rate/style.md +63 -0
  44. package/metaData/components/search-bar/style.md +115 -0
  45. package/metaData/components/show-monitor/style.md +1 -0
  46. package/metaData/components/skeleton/style.md +147 -0
  47. package/metaData/components/slider/style.md +292 -0
  48. package/metaData/components/stepper/style.md +85 -0
  49. package/metaData/components/steps/style.md +304 -0
  50. package/metaData/components/sticky/style.md +5 -0
  51. package/metaData/components/swipe-action/style.md +89 -0
  52. package/metaData/components/swipe-load/style.md +29 -0
  53. package/metaData/components/switch/style.md +158 -0
  54. package/metaData/components/tab-bar/style.md +57 -0
  55. package/metaData/components/tabs/style.md +436 -0
  56. package/metaData/components/tag/style.md +133 -0
  57. package/metaData/components/textarea/style.md +37 -0
  58. package/metaData/components/toast/style.md +93 -0
  59. package/metaData/components/transition/style.md +28 -0
  60. package/metaData/components/uploader/style.md +86 -0
  61. package/metaData/tokens.json +2358 -0
  62. package/package.json +1 -1
@@ -0,0 +1,436 @@
1
+ @import "../../../style/mixin.less";
2
+
3
+ .@{prefix}-tabs {
4
+ display: flex;
5
+ overflow: hidden;
6
+ .use-var(color, font-color);
7
+
8
+ &-top {
9
+ flex-direction: column;
10
+ }
11
+
12
+ &-bottom {
13
+ flex-direction: column-reverse;
14
+ }
15
+
16
+ &-top,
17
+ &-bottom {
18
+ &.full-screen {
19
+ height: 100%;
20
+ }
21
+ }
22
+
23
+ &-left,
24
+ &-right {
25
+ height: 100%;
26
+ }
27
+
28
+ &-left {
29
+ flex-direction: row;
30
+ }
31
+
32
+ &-right {
33
+ flex-direction: row-reverse;
34
+ }
35
+ }
36
+
37
+ .@{prefix}-tab-cell-container {
38
+
39
+ &-wrap {
40
+ flex: 0 0 auto;
41
+ position: relative;
42
+ .use-var(background, tabs-tab-bar-background);
43
+
44
+ &.horizontal {
45
+ .use-var(width, tabs-tab-bar-width);
46
+ height: 100%;
47
+ }
48
+
49
+ &.vertical {
50
+ .use-var(height, tabs-tab-bar-height);
51
+ width: 100%;
52
+
53
+ &.type-card {
54
+ .use-var(height, tabs-tab-bar-card-height);
55
+ }
56
+
57
+ &.type-tag,
58
+ &.type-tag-divide {
59
+ .use-var(height, tabs-tab-bar-tag-height);
60
+ }
61
+ }
62
+ }
63
+
64
+ &-inner {
65
+ width: inherit;
66
+ height: inherit;
67
+ overflow: hidden;
68
+
69
+ &.has-divider {
70
+
71
+ &.pos-top {
72
+ .hairline-var(line-color, bottom);
73
+ }
74
+
75
+ &.pos-bottom {
76
+ .hairline-var(line-color, top);
77
+ }
78
+
79
+ &.pos-left {
80
+ .hairline-var(line-color, right);
81
+ }
82
+
83
+ &.pos-right {
84
+ .hairline-var(line-color, left);
85
+ }
86
+ }
87
+
88
+ &.fixed {
89
+ position: fixed;
90
+ left: 0;
91
+ width: 100%;
92
+ z-index: @fixed-z-index;
93
+ background: inherit;
94
+
95
+ &.pos-top {
96
+ top: 0;
97
+ }
98
+
99
+ &.pos-bottom {
100
+ bottom: 0;
101
+ }
102
+ }
103
+
104
+ &.type-tag,
105
+ &.type-tag-divide {
106
+
107
+ &.vertical {
108
+ .use-var(padding, tabs-tab-bar-tag-vertical-padding, "", 0);
109
+ }
110
+ }
111
+ }
112
+ position: relative;
113
+ display: flex;
114
+ align-items: center;
115
+ flex-wrap: nowrap;
116
+ visibility: hidden;
117
+ width: inherit;
118
+ height: inherit;
119
+
120
+ &.horizontal {
121
+ flex-direction: column;
122
+ }
123
+
124
+ &.vertical {
125
+
126
+ &.arrange-start,
127
+ &.overflow {
128
+ justify-content: flex-start;
129
+ }
130
+
131
+ &.arrange-center:not(.overflow) {
132
+ justify-content: center;
133
+ }
134
+
135
+ &.arrange-end:not(.overflow) {
136
+ justify-content: flex-end;
137
+ }
138
+
139
+ .fake-padding {
140
+ height: 100%;
141
+ flex: 0 0 auto;
142
+ }
143
+ }
144
+
145
+ &.shown {
146
+ visibility: visible;
147
+ }
148
+
149
+ &.type-line,
150
+ &.type-tag {
151
+ overflow: scroll;
152
+
153
+ &::-webkit-scrollbar {
154
+ display: none;
155
+ }
156
+
157
+ &.vertical {
158
+ box-sizing: content-box;
159
+ .use-var(padding-bottom, scroller-buffer);
160
+ }
161
+ }
162
+
163
+ &.type-card {
164
+ .use-var(border, tabs-tab-bar-card-color, 1PX solid);
165
+ .use-var(border-radius, tabs-tab-bar-card-border-radius);
166
+ }
167
+
168
+ &.type-tag,
169
+ &.type-tag-divide {
170
+
171
+ &.vertical {
172
+ height: 100%;
173
+ }
174
+ }
175
+ }
176
+
177
+ .@{prefix}-tab-cell-underline {
178
+ // ios 奇葩机型 用will-change会有下拉刷新不同步问题
179
+ // 不提升合成层又会有残影问题 因此用translateZ来提升
180
+ @keyframes caterpillarX {
181
+
182
+ 0% {
183
+ transform: scaleX(1) translateZ(0);
184
+ }
185
+
186
+ 50% {
187
+ transform: scaleX(2) translateZ(0);
188
+ }
189
+
190
+ 100% {
191
+ transform: scaleX(1) translateZ(0);
192
+ }
193
+ }
194
+ @keyframes caterpillarY {
195
+
196
+ 0% {
197
+ transform: scaleY(1) translateZ(0);
198
+ }
199
+
200
+ 50% {
201
+ transform: scaleY(2) translateZ(0);
202
+ }
203
+
204
+ 100% {
205
+ transform: scaleY(1) translateZ(0);
206
+ }
207
+ }
208
+ position: absolute;
209
+ z-index: 1;
210
+ transform: translateZ(0);
211
+ transition-property: all;
212
+ transition-timing-function: cubic-bezier(.445, .05, .55, .95);
213
+ overflow: visible;
214
+ opacity: 0;
215
+ display: flex;
216
+ align-items: center;
217
+ justify-content: center;
218
+
219
+ &.show {
220
+ opacity: 1;
221
+ }
222
+
223
+ .pos-top &,
224
+ .pos-bottom & {
225
+ left: 0;
226
+ .use-var(width, tabs-underline-size);
227
+ .use-var(height, tabs-underline-thick);
228
+ }
229
+
230
+ .pos-top & {
231
+ bottom: 0;
232
+ }
233
+
234
+ .pos-top.type-line & {
235
+ .use-var(bottom, scroller-buffer);
236
+ }
237
+
238
+ .pos-bottom & {
239
+ top: 0;
240
+ }
241
+
242
+ .pos-left &,
243
+ .pos-right & {
244
+ top: 0;
245
+ .use-var(height, tabs-underline-size);
246
+ .use-var(width, tabs-underline-thick);
247
+ }
248
+
249
+ .pos-left & {
250
+ left: 0;
251
+ }
252
+
253
+ .pos-right & {
254
+ right: 0;
255
+ }
256
+
257
+ &-inner {
258
+ flex: 0 0 auto;
259
+ width: 100%;
260
+ height: 100%;
261
+ transition: inherit;
262
+ .use-var(border-radius, tabs-underline-border-radius);
263
+ .use-var(background-color, tabs-underline-color);
264
+
265
+ &.caterpillar {
266
+
267
+ &:not(.custom-animate) {
268
+
269
+ &.vertical {
270
+ animation-name: caterpillarX;
271
+ }
272
+
273
+ &.horizontal {
274
+ animation-name: caterpillarY;
275
+ }
276
+ }
277
+ // fix: js计算部分以linear计算,这里对齐避免抖动
278
+ animation-timing-function: linear;
279
+ }
280
+ }
281
+ }
282
+
283
+ .@{prefix}-tab-cell {
284
+ .use-var(font-size, tabs-tab-bar-font-size);
285
+ display: flex;
286
+ flex-direction: column;
287
+ align-items: center;
288
+ justify-content: center;
289
+ position: relative;
290
+ text-align: center;
291
+
292
+ &.no-shrink {
293
+ flex-shrink: 0;
294
+ }
295
+
296
+ &.vertical {
297
+ height: 100%;
298
+
299
+ &.line,
300
+ &.tag {
301
+ display: inline-flex;
302
+ vertical-align: middle;
303
+ }
304
+
305
+ &.line-divide,
306
+ &.card,
307
+ &.tag-divide {
308
+ flex: 1;
309
+ }
310
+
311
+ &:not(.custom) {
312
+
313
+ &.line:not(.last) {
314
+ .use-var-with-rtl(margin-right, tabs-tab-bar-line-gutter);
315
+ }
316
+
317
+ &.line,
318
+ &.line-divide {
319
+
320
+ &.active {
321
+ .text-medium();
322
+ .use-var(color, tabs-tab-bar-line-active-color);
323
+ }
324
+ }
325
+
326
+ &.card {
327
+ .use-var(color, tabs-tab-bar-card-color);
328
+
329
+ &.active {
330
+ .use-var(background, tabs-tab-bar-card-color);
331
+ .use-var(color, tabs-tab-bar-card-text-color);
332
+ .text-medium();
333
+ }
334
+
335
+ &:not(:last-child) {
336
+ .use-var-with-rtl(border-right, tabs-tab-bar-card-color, 1PX solid);
337
+ }
338
+
339
+ &:first-of-type {
340
+ .use-var-with-rtl(border-top-left-radius, tabs-tab-bar-card-border-radius);
341
+ .use-var-with-rtl(border-bottom-left-radius, tabs-tab-bar-card-border-radius);
342
+ }
343
+
344
+ &:last-of-type {
345
+ .use-var-with-rtl(border-top-right-radius, tabs-tab-bar-card-border-radius);
346
+ .use-var-with-rtl(border-bottom-right-radius, tabs-tab-bar-card-border-radius);
347
+ }
348
+ }
349
+
350
+ &.card,
351
+ &.tag-divide {
352
+
353
+ &.android {
354
+ .rem(padding-top, 2);
355
+ }
356
+ }
357
+
358
+ &.tag,
359
+ &.tag-divide {
360
+ .use-var(padding, tabs-tab-bar-tag-padding);
361
+ .rem(border-radius, 100);
362
+ .use-var(background, tabs-tab-bar-tag-background);
363
+ .use-var(color, tabs-tab-bar-tag-text-color);
364
+
365
+ &:not(.last) {
366
+ .use-var-with-rtl(margin-right, tabs-tab-bar-tag-gutter);
367
+ }
368
+
369
+ &.active {
370
+ .use-var(background, tabs-tab-bar-tag-active-background);
371
+ .use-var(color, tabs-tab-bar-tag-active-text-color);
372
+ .text-medium();
373
+ }
374
+ }
375
+ }
376
+ }
377
+
378
+ &.horizontal {
379
+ .use-var(height, tabs-tab-bar-horizontal-height);
380
+
381
+ &.active {
382
+ .text-medium();
383
+ .use-var(color, tabs-tab-bar-line-active-color);
384
+ }
385
+ }
386
+ }
387
+
388
+ .@{prefix}-tab-pane-container {
389
+
390
+ &.mode-swipe {
391
+ display: flex;
392
+ align-items: flex-start;
393
+ transition-property: all;
394
+ transition-timing-function: ease-out;
395
+ }
396
+
397
+ &.mode-swipe-energy-saving {
398
+ position: relative;
399
+ overflow: hidden;
400
+ }
401
+
402
+ &.full-screen {
403
+ flex: 1;
404
+ overflow: hidden;
405
+ }
406
+
407
+ &.horizontal {
408
+ flex: 1;
409
+ flex-direction: column;
410
+ }
411
+
412
+ &.mode-scroll-horizontal {
413
+ overflow-x: auto;
414
+ white-space: nowrap;
415
+ }
416
+ }
417
+
418
+ .@{prefix}-tab-pane {
419
+ width: 100%;
420
+ flex: 1;
421
+ overflow: auto;
422
+
423
+ .mode-scroll-horizontal & {
424
+ width: auto;
425
+ display: inline-block;
426
+ vertical-align: middle;
427
+ }
428
+
429
+ &.mode-swipe.full-screen {
430
+ height: 100%;
431
+ }
432
+ }
433
+
434
+ .@{prefix}-tab-pane-extra {
435
+ position: absolute;
436
+ }
@@ -0,0 +1,133 @@
1
+ @import "../../../style/mixin.less";
2
+
3
+ .@{prefix}-tag {
4
+ display: inline-flex;
5
+ justify-items: center;
6
+ justify-content: center;
7
+ align-items: center;
8
+ vertical-align: middle;
9
+ box-sizing: border-box;
10
+ border: none;
11
+ .use-var(border-radius, tag-border-radius);
12
+ .use-var(font-size, tag-font-size);
13
+ border-width: 1PX;
14
+ border-style: solid;
15
+
16
+ &.size-small {
17
+ .use-var(height, tag-small-size-height);
18
+ .use-var(padding, tag-small-size-padding, 0);
19
+
20
+ .tag-text {
21
+ transform: scale(.8333);
22
+ .rem(margin-left, -2);
23
+ .rem(margin-right, -2);
24
+ }
25
+ }
26
+
27
+ &.size-medium {
28
+ .use-var(height, tag-medium-size-height);
29
+ .use-var(padding, tag-medium-size-padding, 0);
30
+ }
31
+
32
+ &.size-large {
33
+ .use-var(height, tag-large-size-height);
34
+ .use-var(padding, tag-large-size-padding, 0);
35
+ }
36
+
37
+ &.filleted {
38
+ .use-var(padding, tag-filleted-padding, 0);
39
+ border-radius: 100px;
40
+ }
41
+
42
+ &.half-border:not(&-solid) {
43
+
44
+ &:not(.filleted) {
45
+ .onepx-border(all, inherit, @tag-border-radius, 1PX, inherit);
46
+ // bugfix: 一些情况border-style会和border-width合并为border属性
47
+ // border-style: inherit时合并后为 border: 1PX inherit 语法有问题 这里复写一下
48
+
49
+ &::after {
50
+ border: inherit;
51
+ border-width: 1PX;
52
+ }
53
+ }
54
+
55
+ &.filleted {
56
+ .onepx-border(all, inherit, 100px, 1PX, inherit);
57
+
58
+ &::after {
59
+ border: inherit;
60
+ border-width: 1PX;
61
+ }
62
+ }
63
+ }
64
+
65
+ .tag-text {
66
+ vertical-align: middle;
67
+ font-size: inherit;
68
+ }
69
+ .@{prefix}-icon:not(.tag-close-icon) {
70
+ vertical-align: middle;
71
+ .use-var-with-rtl(margin-right, tag-icon-margin-right);
72
+ .use-var(font-size, tag-icon-font-size);
73
+ }
74
+
75
+ .tag-close-wrap {
76
+ font-size: 0;
77
+ }
78
+
79
+ .tag-close-icon {
80
+ vertical-align: middle;
81
+ .use-var-with-rtl(margin-left, tag-icon-close-margin-left);
82
+ .use-var(font-size, tag-icon-font-size);
83
+ }
84
+
85
+ &.android {
86
+
87
+ .tag-text {
88
+ .rem(padding-top, 1);
89
+ }
90
+ }
91
+
92
+ &&-primary {
93
+ .use-var(color, tag-primary-color);
94
+ .use-var(background, tag-primary-background-color);
95
+ .use-var(border-color, tag-primary-border-color);
96
+ }
97
+
98
+ &&-hollow {
99
+ .use-var(color, tag-hollow-color);
100
+ background: transparent;
101
+ .use-var(border-color, tag-hollow-border-color);
102
+ }
103
+
104
+ &&-solid {
105
+ .use-var(color, tag-solid-color);
106
+ .use-var(background, tag-solid-background-color);
107
+ border-width: 0;
108
+ }
109
+ }
110
+
111
+ .@{prefix}-tag-list {
112
+ margin-bottom: -1 * @tag-list-vertical-gutter;
113
+ .@{prefix}-tag {
114
+ vertical-align: top;
115
+
116
+ &:not(:last-child) {
117
+ .use-var-with-rtl(margin-right, tag-list-horizontal-gutter);
118
+ }
119
+ .use-var(margin-bottom, tag-list-vertical-gutter);
120
+ }
121
+
122
+ .tag-list-add-wrap {
123
+ font-size: 0;
124
+ display: inline-block;
125
+ }
126
+
127
+ .tag-list-add {
128
+ .use-var(margin-bottom, tag-list-vertical-gutter);
129
+ .use-var(border-color, tag-list-add-border-color);
130
+ .use-var(background, tag-list-add-background);
131
+ .use-var(color, tag-list-add-color);
132
+ }
133
+ }
@@ -0,0 +1,37 @@
1
+ @import "../../../style/mixin.less";
2
+
3
+ .@{prefix}-textarea {
4
+ display: inline-block;
5
+ width: 100%;
6
+ height: 100%;
7
+ resize: none;
8
+ .use-var(font-size, textarea-font-size);
9
+ .use-var(line-height, textarea-line-height);
10
+ .use-var(caret-color, input-caret-color);
11
+
12
+ &::placeholder {
13
+ .use-var(color, input-placeholder-color);
14
+ }
15
+
16
+ &.fake-textarea {
17
+ position: fixed;
18
+ bottom: 100%;
19
+ left: 0;
20
+ visibility: hidden;
21
+ }
22
+ }
23
+
24
+ .@{prefix}-input-container {
25
+
26
+ .statistic-text {
27
+ position: absolute;
28
+ .rem(bottom, 16);
29
+ .rem(right, 16);
30
+ .use-var(font-size, textarea-statistic-font-size);
31
+ .use-var(color, textarea-statistic-color);
32
+
33
+ &.exceed {
34
+ .use-var(color, danger-color);
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,93 @@
1
+ @import "../../../style/mixin.less";
2
+
3
+ .@{prefix}-toast {
4
+
5
+ &-wrapper {
6
+ .full-screen();
7
+ z-index: @full-screen-z-index + 1;
8
+ display: flex;
9
+ justify-content: center;
10
+ .use-var(padding, toast-safe-padding);
11
+
12
+ &.no-event {
13
+ pointer-events: none;
14
+ }
15
+
16
+ &.from-center {
17
+ align-items: center;
18
+ }
19
+
20
+ &.from-top {
21
+ align-items: flex-start;
22
+ .use-var(padding-top, toast-from-top-position);
23
+ }
24
+
25
+ &.from-bottom {
26
+ align-items: flex-end;
27
+ .use-var(padding-bottom, toast-from-bottom-position);
28
+ }
29
+ }
30
+
31
+ &-inner {
32
+ .use-var(background, toast-background);
33
+ .use-var(color, toast-text-color);
34
+ .use-var(font-size, toast-font-size);
35
+ .use-var(line-height, toast-line-height);
36
+ .use-var(border-radius, toast-border-radius);
37
+ flex-direction: column;
38
+ display: flex;
39
+ align-items: center;
40
+ justify-content: center;
41
+ pointer-events: initial;
42
+
43
+ &.horizontal {
44
+ flex-direction: row;
45
+ .use-var(padding, toast-horizontal-padding);
46
+ .@{prefix}-icon {
47
+ flex: 0 0 auto;
48
+ .use-var(font-size, toast-horizontal-icon-size);
49
+ }
50
+ .@{prefix}-toast-loading-wrapper + .@{prefix}-toast-content,
51
+ .@{prefix}-icon + .@{prefix}-toast-content {
52
+ .use-var(margin-left, toast-horizontal-icon-content-gutter);
53
+ }
54
+ }
55
+
56
+ &.vertical {
57
+ .use-var(padding, toast-vertical-padding);
58
+ .@{prefix}-icon {
59
+ .use-var(font-size, toast-vertical-icon-size);
60
+ }
61
+ .@{prefix}-toast-loading-wrapper + .@{prefix}-toast-content,
62
+ .@{prefix}-icon + .@{prefix}-toast-content {
63
+ .use-var(margin-top, toast-vertical-icon-content-gutter);
64
+ }
65
+ }
66
+ .@{prefix}-loading {
67
+ .set-loading-color-var(mask-content-color);
68
+
69
+ &.arc .arc-bg {
70
+ .use-var(stroke, toast-loading-arc-background-color);
71
+ }
72
+ }
73
+ }
74
+
75
+ &-loading-wrapper {
76
+ display: flex;
77
+ position: relative;
78
+ }
79
+
80
+ &-loading-inner {
81
+ position: absolute;
82
+ top: 50%;
83
+ left: 50%;
84
+ transform: translate(-50%, -50%);
85
+ .use-var(font-size, toast-loading-inner-font-size);
86
+ }
87
+
88
+ &-content {
89
+ width: 100%;
90
+ text-align: center;
91
+ white-space: pre-line;
92
+ }
93
+ }
@@ -0,0 +1,28 @@
1
+ @import "../../../style/mixin.less";
2
+
3
+ .@{prefix}-fade {
4
+
5
+ &-enter {
6
+ opacity: 0;
7
+ }
8
+
9
+ &-enter-active {
10
+ opacity: 1;
11
+ transition-property: opacity;
12
+ .use-transition-var(builtin-transition-fade-enter-duration, transition-fade-duration);
13
+ }
14
+
15
+ &-exit {
16
+ opacity: 1;
17
+ }
18
+
19
+ &-exit-active {
20
+ opacity: 0;
21
+ transition-property: opacity;
22
+ .use-transition-var(builtin-transition-fade-exit-duration, transition-fade-duration);
23
+ }
24
+
25
+ &-exit-done {
26
+ display: none;
27
+ }
28
+ }