@team_yumi/ramen 0.4.0-next.20231227-de405c4-09379fe933156a3b642c37fb112ad30d → 0.4.0-next.20231228-60938e2-0fe37d2506dfdb3a3a03d709d698f72b
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/core/xskeleton/index.d.ts +1 -1
- package/components/core/xtext/root.d.ts +28 -0
- package/index.css +167 -168
- package/index.js +2 -2
- package/models/Collections/IBoxBackgroundThone.d.ts +1 -1
- package/package.json +1 -1
- package/themes/default.theme.css +128 -116
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import Root from
|
|
1
|
+
import Root from './root';
|
|
2
2
|
export default Root;
|
|
@@ -1,18 +1,46 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Collections } from './../../../models';
|
|
3
3
|
export interface IProps {
|
|
4
|
+
/**
|
|
5
|
+
* Text content
|
|
6
|
+
*/
|
|
4
7
|
children?: React.ReactNode;
|
|
8
|
+
/**
|
|
9
|
+
* Text overflow can be normal or ellipsis
|
|
10
|
+
*/
|
|
5
11
|
textOverflow?: (typeof Collections.ITextOverflow)[number];
|
|
12
|
+
/**
|
|
13
|
+
* Line height can be normal, title or copy
|
|
14
|
+
*/
|
|
6
15
|
lineHeight?: (typeof Collections.ILineHeight)[number];
|
|
16
|
+
/**
|
|
17
|
+
* Font weight can be lighter, normal or bold
|
|
18
|
+
*/
|
|
7
19
|
weight?: (typeof Collections.IWeight)[number];
|
|
20
|
+
/**
|
|
21
|
+
* Font size can be 1, 2, 3, 4, 5, 6, 7, 8, 9, 10. Fewer means bigger
|
|
22
|
+
*/
|
|
8
23
|
fontSize?: (typeof Collections.IFontSize)[number];
|
|
24
|
+
/**
|
|
25
|
+
* Line clamp can be none, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ... 20
|
|
26
|
+
*/
|
|
9
27
|
lineClamp?: (typeof Collections.ILineClamp)[number];
|
|
28
|
+
/**
|
|
29
|
+
* Text align can be 'justify', 'left', 'center' or 'right'
|
|
30
|
+
*/
|
|
10
31
|
textAlign?: (typeof Collections.ITextAlign)[number];
|
|
32
|
+
/**
|
|
33
|
+
* Text color thone can be darkest, dark, medium, dim, light or lightest
|
|
34
|
+
*/
|
|
11
35
|
colorThone?: (typeof Collections.ITextColorThone)[number];
|
|
12
36
|
/**
|
|
13
37
|
* Text color can be any color from the palette fundamentals
|
|
14
38
|
*/
|
|
15
39
|
color?: (typeof Collections.IColor)[number];
|
|
40
|
+
/**
|
|
41
|
+
* If true, the content will be rendered with a skeleton effect
|
|
42
|
+
*/
|
|
43
|
+
skeleton?: boolean;
|
|
16
44
|
}
|
|
17
45
|
declare const XText: React.FC<IProps>;
|
|
18
46
|
export default XText;
|
package/index.css
CHANGED
|
@@ -103,23 +103,22 @@
|
|
|
103
103
|
gap: var(--xbox-padding-xl);
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
|
|
107
106
|
/* PDA Support GAP FIXED VALUES */
|
|
108
107
|
.root-module_xbox__6Wa3G.root-module_pda-support__rBZrl {
|
|
109
108
|
gap: var(--xbox-padding-none);
|
|
110
109
|
}
|
|
111
110
|
|
|
112
111
|
/* HORIZONATL GAP FIXED VALUES */
|
|
113
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-none__5SZka
|
|
112
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-none__5SZka > * {
|
|
114
113
|
margin-left: var(--xbox-padding-none);
|
|
115
114
|
margin-top: var(--xbox-padding-none);
|
|
116
115
|
}
|
|
117
116
|
|
|
118
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-xxs__2Pq9d
|
|
117
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-xxs__2Pq9d > *:not(:first-child) {
|
|
119
118
|
margin-left: var(--xbox-padding-xxs);
|
|
120
119
|
}
|
|
121
120
|
|
|
122
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-xxs__2Pq9d
|
|
121
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-xxs__2Pq9d > * {
|
|
123
122
|
margin-left: var(--xbox-padding-xxs);
|
|
124
123
|
margin-top: var(--xbox-padding-xxs);
|
|
125
124
|
}
|
|
@@ -129,11 +128,11 @@
|
|
|
129
128
|
margin-top: calc(-1 * var(--xbox-padding-xxs));
|
|
130
129
|
}
|
|
131
130
|
|
|
132
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-xs__SYU-p
|
|
131
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-xs__SYU-p > *:not(:first-child) {
|
|
133
132
|
margin-left: var(--xbox-padding-xs);
|
|
134
133
|
}
|
|
135
134
|
|
|
136
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-xs__SYU-p
|
|
135
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-xs__SYU-p > * {
|
|
137
136
|
margin-left: var(--xbox-padding-xs);
|
|
138
137
|
margin-top: var(--xbox-padding-xs);
|
|
139
138
|
}
|
|
@@ -143,11 +142,11 @@
|
|
|
143
142
|
margin-top: calc(-1 * var(--xbox-padding-xs));
|
|
144
143
|
}
|
|
145
144
|
|
|
146
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-s__ipYgr
|
|
145
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-s__ipYgr > *:not(:first-child) {
|
|
147
146
|
margin-left: var(--xbox-padding-s);
|
|
148
147
|
}
|
|
149
148
|
|
|
150
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-s__ipYgr
|
|
149
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-s__ipYgr > * {
|
|
151
150
|
margin-left: var(--xbox-padding-s);
|
|
152
151
|
margin-top: var(--xbox-padding-s);
|
|
153
152
|
}
|
|
@@ -157,11 +156,11 @@
|
|
|
157
156
|
margin-top: calc(-1 * var(--xbox-padding-s));
|
|
158
157
|
}
|
|
159
158
|
|
|
160
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-m__CMXzK
|
|
159
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-m__CMXzK > *:not(:first-child) {
|
|
161
160
|
margin-left: var(--xbox-padding-m);
|
|
162
161
|
}
|
|
163
162
|
|
|
164
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-m__CMXzK
|
|
163
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-m__CMXzK > * {
|
|
165
164
|
margin-left: var(--xbox-padding-m);
|
|
166
165
|
margin-top: var(--xbox-padding-m);
|
|
167
166
|
}
|
|
@@ -171,11 +170,11 @@
|
|
|
171
170
|
margin-top: calc(-1 * var(--xbox-padding-m));
|
|
172
171
|
}
|
|
173
172
|
|
|
174
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-l__FJTxi
|
|
173
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-l__FJTxi > *:not(:first-child) {
|
|
175
174
|
margin-left: var(--xbox-padding-l);
|
|
176
175
|
}
|
|
177
176
|
|
|
178
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-l__FJTxi
|
|
177
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-l__FJTxi > * {
|
|
179
178
|
margin-left: var(--xbox-padding-l);
|
|
180
179
|
margin-top: var(--xbox-padding-l);
|
|
181
180
|
}
|
|
@@ -185,11 +184,11 @@
|
|
|
185
184
|
margin-top: calc(-1 * var(--xbox-padding-l));
|
|
186
185
|
}
|
|
187
186
|
|
|
188
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-xl__taf3g
|
|
187
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_gap-xl__taf3g > *:not(:first-child) {
|
|
189
188
|
margin-left: var(--xbox-padding-xl);
|
|
190
189
|
}
|
|
191
190
|
|
|
192
|
-
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-xl__taf3g
|
|
191
|
+
.root-module_pda-support__rBZrl.root-module_orientation-horizontal__8h-SN.root-module_flexWrap__4U4l5.root-module_gap-xl__taf3g > * {
|
|
193
192
|
margin-left: var(--xbox-padding-xl);
|
|
194
193
|
margin-top: var(--xbox-padding-xl);
|
|
195
194
|
}
|
|
@@ -200,31 +199,31 @@
|
|
|
200
199
|
}
|
|
201
200
|
|
|
202
201
|
/* VERTICAL GAP FIXED VALUES */
|
|
203
|
-
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-none__5SZka
|
|
202
|
+
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-none__5SZka > *:not(:first-child) {
|
|
204
203
|
margin-top: var(--xbox-padding-none);
|
|
205
204
|
}
|
|
206
205
|
|
|
207
|
-
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-xxs__2Pq9d
|
|
206
|
+
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-xxs__2Pq9d > *:not(:first-child) {
|
|
208
207
|
margin-top: var(--xbox-padding-xxs);
|
|
209
208
|
}
|
|
210
209
|
|
|
211
|
-
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-xs__SYU-p
|
|
210
|
+
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-xs__SYU-p > *:not(:first-child) {
|
|
212
211
|
margin-top: var(--xbox-padding-xs);
|
|
213
212
|
}
|
|
214
213
|
|
|
215
|
-
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-s__ipYgr
|
|
214
|
+
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-s__ipYgr > *:not(:first-child) {
|
|
216
215
|
margin-top: var(--xbox-padding-s);
|
|
217
216
|
}
|
|
218
217
|
|
|
219
|
-
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-m__CMXzK
|
|
218
|
+
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-m__CMXzK > *:not(:first-child) {
|
|
220
219
|
margin-top: var(--xbox-padding-m);
|
|
221
220
|
}
|
|
222
221
|
|
|
223
|
-
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-l__FJTxi
|
|
222
|
+
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-l__FJTxi > *:not(:first-child) {
|
|
224
223
|
margin-top: var(--xbox-padding-l);
|
|
225
224
|
}
|
|
226
225
|
|
|
227
|
-
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-xl__taf3g
|
|
226
|
+
.root-module_pda-support__rBZrl.root-module_orientation-vertical__mSiJF.root-module_gap-xl__taf3g > *:not(:first-child) {
|
|
228
227
|
margin-top: var(--xbox-padding-xl);
|
|
229
228
|
}
|
|
230
229
|
|
|
@@ -395,7 +394,6 @@
|
|
|
395
394
|
display: none;
|
|
396
395
|
}
|
|
397
396
|
|
|
398
|
-
|
|
399
397
|
.root-module_background_thone-darkest__i0opu {
|
|
400
398
|
background-color: var(--color-neutral-dark);
|
|
401
399
|
}
|
|
@@ -424,37 +422,38 @@
|
|
|
424
422
|
background-color: var(--neutral-dark-30);
|
|
425
423
|
}
|
|
426
424
|
|
|
427
|
-
.root-
|
|
425
|
+
.root-module_background_thone-dark-10__UKKoN {
|
|
426
|
+
background-color: var(--neutral-dark-10);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.root-module_border_radius-xxs__fG-b3 {
|
|
428
430
|
border-radius: var(--xbox-border-small);
|
|
429
431
|
}
|
|
430
432
|
|
|
431
|
-
.root-module_border_radius-xs__6rvkQ{
|
|
433
|
+
.root-module_border_radius-xs__6rvkQ {
|
|
432
434
|
border-radius: var(--xbox-rounding-default);
|
|
433
435
|
}
|
|
434
436
|
|
|
435
|
-
.root-module_border_radius-s__HnVwV{
|
|
437
|
+
.root-module_border_radius-s__HnVwV {
|
|
436
438
|
border-radius: var(--xbox-rounding-s);
|
|
437
439
|
}
|
|
438
440
|
|
|
439
|
-
.root-module_border_radius-m__Cz-lB{
|
|
441
|
+
.root-module_border_radius-m__Cz-lB {
|
|
440
442
|
border-radius: var(--xbox-rounding-m);
|
|
441
443
|
}
|
|
442
444
|
|
|
443
|
-
.root-module_border_radius-l__PB9Hh{
|
|
445
|
+
.root-module_border_radius-l__PB9Hh {
|
|
444
446
|
border-radius: var(--xbox-rounding-l);
|
|
445
447
|
}
|
|
446
448
|
|
|
447
|
-
.root-module_border_radius-xl__rGaRy{
|
|
449
|
+
.root-module_border_radius-xl__rGaRy {
|
|
448
450
|
border-radius: var(--xbox-rounding-xl);
|
|
449
451
|
}
|
|
450
452
|
|
|
451
|
-
.root-module_border_radius-full__HuBVW{
|
|
453
|
+
.root-module_border_radius-full__HuBVW {
|
|
452
454
|
border-radius: var(--xbox-rounding-circle);
|
|
453
455
|
}
|
|
454
456
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
457
|
.root-module_xtext__IcpGn {
|
|
459
458
|
font-style: normal;
|
|
460
459
|
font-family: var(--xtext-font);
|
|
@@ -630,6 +629,142 @@
|
|
|
630
629
|
color: var(--xicon-color-turquoise);
|
|
631
630
|
}
|
|
632
631
|
|
|
632
|
+
.root-module_xskeleton__UmX7A {
|
|
633
|
+
background-color: var(--color-neutral-light);
|
|
634
|
+
display: inline-block;
|
|
635
|
+
height: 1em;
|
|
636
|
+
position: relative;
|
|
637
|
+
overflow: hidden;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.root-module_xskeleton__UmX7A::after {
|
|
641
|
+
position: absolute;
|
|
642
|
+
top: 0;
|
|
643
|
+
right: 0;
|
|
644
|
+
bottom: 0;
|
|
645
|
+
left: 0;
|
|
646
|
+
transform: translateX(-100%);
|
|
647
|
+
background: linear-gradient(110deg, #ececec 0%, #f5f5f5 20%, #ececec 60%, #ececec 0%);
|
|
648
|
+
animation: root-module_shimmer__ZfOg- 2s infinite;
|
|
649
|
+
background-size: 200% 100%;
|
|
650
|
+
content: "";
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
@keyframes root-module_shimmer__ZfOg- {
|
|
654
|
+
100% {
|
|
655
|
+
transform: translateX(100%);
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.root-module_xskeleton--icon__VY22L {
|
|
660
|
+
width: 24px;
|
|
661
|
+
height: 24px;
|
|
662
|
+
min-width: 24px;
|
|
663
|
+
min-height: 24px;
|
|
664
|
+
border-radius: 50%;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.root-module_xskeleton--text__6O-w6 {
|
|
668
|
+
border-radius: 8px;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-xs__iatOY {
|
|
672
|
+
height: var(--xbox-size-14);
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-s__-y2j2 {
|
|
676
|
+
height: var(--xbox-size-13);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-m__qSmGh {
|
|
680
|
+
height: var(--xbox-size-11);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-l__VbENw {
|
|
684
|
+
height: var(--xbox-size-10);
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-xl__W86iA {
|
|
688
|
+
height: var(--xbox-size-9);
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--width-s__FS3XR {
|
|
692
|
+
width: 25%;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--width-m__kuQiB {
|
|
696
|
+
width: 50%;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--width-l__9bZo- {
|
|
700
|
+
width: 75%;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--width-xl__7PVRT {
|
|
704
|
+
width: 100%;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.root-module_xskeleton--tag__Nsgdl {
|
|
708
|
+
min-width: 52px;
|
|
709
|
+
border-radius: 16px;
|
|
710
|
+
height: 24px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.root-module_xskeleton--image__H4Y7y {
|
|
714
|
+
border-radius: 16px;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-xs__iatOY {
|
|
718
|
+
height: var(--xbox-size-6);
|
|
719
|
+
width: var(--xbox-size-6);
|
|
720
|
+
min-height: var(--xbox-size-6);
|
|
721
|
+
min-width: var(--xbox-size-6);
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-s__-y2j2 {
|
|
725
|
+
height: var(--xbox-size-5);
|
|
726
|
+
width: var(--xbox-size-5);
|
|
727
|
+
min-width: var(--xbox-size-5);
|
|
728
|
+
min-height: var(--xbox-size-5);
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-m__qSmGh {
|
|
732
|
+
height: var(--xbox-size-4);
|
|
733
|
+
min-height: var(--xbox-size-4);
|
|
734
|
+
width: var(--xbox-size-4);
|
|
735
|
+
min-width: var(--xbox-size-4);
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-l__VbENw {
|
|
739
|
+
height: var(--xbox-size-3);
|
|
740
|
+
min-height: var(--xbox-size-3);
|
|
741
|
+
width: var(--xbox-size-3);
|
|
742
|
+
min-width: var(--xbox-size-3);
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-xl__W86iA {
|
|
746
|
+
height: var(--xbox-size-2);
|
|
747
|
+
min-height: var(--xbox-size-2);
|
|
748
|
+
width: var(--xbox-size-2);
|
|
749
|
+
min-width: var(--xbox-size-2);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--width-s__FS3XR {
|
|
753
|
+
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--width-m__kuQiB {
|
|
757
|
+
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--width-l__9bZo- {
|
|
761
|
+
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--width-xl__7PVRT {
|
|
765
|
+
width: 100%;
|
|
766
|
+
}
|
|
767
|
+
|
|
633
768
|
.root-module_x-icon__YwX20 {
|
|
634
769
|
display: inline-block;
|
|
635
770
|
box-sizing: content-box;
|
|
@@ -923,142 +1058,6 @@
|
|
|
923
1058
|
border-radius: var(--xbox-rounding-pill);
|
|
924
1059
|
}
|
|
925
1060
|
|
|
926
|
-
.root-module_xskeleton__UmX7A {
|
|
927
|
-
background-color: var(--color-neutral-light);
|
|
928
|
-
display: inline-block;
|
|
929
|
-
height: 1em;
|
|
930
|
-
position: relative;
|
|
931
|
-
overflow: hidden;
|
|
932
|
-
}
|
|
933
|
-
|
|
934
|
-
.root-module_xskeleton__UmX7A::after {
|
|
935
|
-
position: absolute;
|
|
936
|
-
top: 0;
|
|
937
|
-
right: 0;
|
|
938
|
-
bottom: 0;
|
|
939
|
-
left: 0;
|
|
940
|
-
transform: translateX(-100%);
|
|
941
|
-
background: linear-gradient(110deg, #ececec 0%, #f5f5f5 20%, #ececec 60%, #ececec 0%);
|
|
942
|
-
animation: root-module_shimmer__ZfOg- 2s infinite;
|
|
943
|
-
background-size: 200% 100%;
|
|
944
|
-
content: "";
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
@keyframes root-module_shimmer__ZfOg- {
|
|
948
|
-
100% {
|
|
949
|
-
transform: translateX(100%);
|
|
950
|
-
}
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
.root-module_xskeleton--icon__VY22L {
|
|
954
|
-
width: 24px;
|
|
955
|
-
height: 24px;
|
|
956
|
-
min-width: 24px;
|
|
957
|
-
min-height: 24px;
|
|
958
|
-
border-radius: 50%;
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
.root-module_xskeleton--text__6O-w6 {
|
|
962
|
-
border-radius: 8px;
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-xs__iatOY {
|
|
966
|
-
height: var(--xbox-size-14);
|
|
967
|
-
}
|
|
968
|
-
|
|
969
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-s__-y2j2 {
|
|
970
|
-
height: var(--xbox-size-13);
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-m__qSmGh {
|
|
974
|
-
height: var(--xbox-size-11);
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-l__VbENw {
|
|
978
|
-
height: var(--xbox-size-10);
|
|
979
|
-
}
|
|
980
|
-
|
|
981
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--size-xl__W86iA {
|
|
982
|
-
height: var(--xbox-size-9);
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--width-s__FS3XR {
|
|
986
|
-
width: 25%;
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--width-m__kuQiB {
|
|
990
|
-
width: 50%;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--width-l__9bZo- {
|
|
994
|
-
width: 75%;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
|
-
.root-module_xskeleton--text__6O-w6.root-module_xskeleton--width-xl__7PVRT {
|
|
998
|
-
width: 100%;
|
|
999
|
-
}
|
|
1000
|
-
|
|
1001
|
-
.root-module_xskeleton--tag__Nsgdl {
|
|
1002
|
-
min-width: 52px;
|
|
1003
|
-
border-radius: 16px;
|
|
1004
|
-
height: 24px;
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
.root-module_xskeleton--image__H4Y7y {
|
|
1008
|
-
border-radius: 16px;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-xs__iatOY {
|
|
1012
|
-
height: var(--xbox-size-6);
|
|
1013
|
-
width: var(--xbox-size-6);
|
|
1014
|
-
min-height: var(--xbox-size-6);
|
|
1015
|
-
min-width: var(--xbox-size-6);
|
|
1016
|
-
}
|
|
1017
|
-
|
|
1018
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-s__-y2j2 {
|
|
1019
|
-
height: var(--xbox-size-5);
|
|
1020
|
-
width: var(--xbox-size-5);
|
|
1021
|
-
min-width: var(--xbox-size-5);
|
|
1022
|
-
min-height: var(--xbox-size-5);
|
|
1023
|
-
}
|
|
1024
|
-
|
|
1025
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-m__qSmGh {
|
|
1026
|
-
height: var(--xbox-size-4);
|
|
1027
|
-
min-height: var(--xbox-size-4);
|
|
1028
|
-
width: var(--xbox-size-4);
|
|
1029
|
-
min-width: var(--xbox-size-4);
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-l__VbENw {
|
|
1033
|
-
height: var(--xbox-size-3);
|
|
1034
|
-
min-height: var(--xbox-size-3);
|
|
1035
|
-
width: var(--xbox-size-3);
|
|
1036
|
-
min-width: var(--xbox-size-3);
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--size-xl__W86iA {
|
|
1040
|
-
height: var(--xbox-size-2);
|
|
1041
|
-
min-height: var(--xbox-size-2);
|
|
1042
|
-
width: var(--xbox-size-2);
|
|
1043
|
-
min-width: var(--xbox-size-2);
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--width-s__FS3XR {
|
|
1047
|
-
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--width-m__kuQiB {
|
|
1051
|
-
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--width-l__9bZo- {
|
|
1055
|
-
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
.root-module_xskeleton--image__H4Y7y.root-module_xskeleton--width-xl__7PVRT {
|
|
1059
|
-
width: 100%;
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
1061
|
.root-module_xbuttonicon__4dXbb {
|
|
1063
1062
|
display: flex;
|
|
1064
1063
|
align-items: center;
|