polpo 0.1.12 → 0.1.13

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.
@@ -1,26 +1,26 @@
1
1
  /* src/components/line/line.styles.css */
2
- .line_styles_custom-line {
2
+ .custom-line {
3
3
  --color: attr(data-color, "currentColor");
4
4
  --size: attr(data-size, 1px);
5
5
  --spacing: attr(data-spacing, 1px);
6
6
  --dashSize: attr(data-dash-size, 1px);
7
- &.line_styles_horizontal,
8
- &.line_styles_vertical {
7
+ &.horizontal,
8
+ &.vertical {
9
9
  background: var(--color);
10
10
  display: inline-block;
11
11
  border-radius: 100px;
12
12
  }
13
- &.line_styles_horizontal {
13
+ &.horizontal {
14
14
  width: 100%;
15
15
  height: var(--size);
16
- &.line_styles_dotted {
16
+ &.dotted {
17
17
  background:
18
18
  radial-gradient(
19
19
  calc(var(--size) / 2) calc(var(--size) / 2),
20
20
  var(--color) 100%,
21
21
  transparent) 0 0 / calc(var(--spacing) + var(--size)) 100%;
22
22
  }
23
- &.line_styles_dashed {
23
+ &.dashed {
24
24
  background:
25
25
  repeating-linear-gradient(
26
26
  90deg,
@@ -30,17 +30,17 @@
30
30
  transparent calc(var(--spacing) + var(--dashSize)));
31
31
  }
32
32
  }
33
- &.line_styles_vertical {
33
+ &.vertical {
34
34
  height: 100%;
35
35
  width: var(--size);
36
- &.line_styles_dotted {
36
+ &.dotted {
37
37
  background:
38
38
  radial-gradient(
39
39
  calc(var(--size) / 2) calc(var(--size) / 2),
40
40
  var(--color) 100%,
41
41
  transparent) 0 0 / 100% calc(var(--spacing) + var(--size));
42
42
  }
43
- &.line_styles_dashed {
43
+ &.dashed {
44
44
  background:
45
45
  repeating-linear-gradient(
46
46
  0deg,
@@ -53,13 +53,13 @@
53
53
  }
54
54
 
55
55
  /* src/components/accordion/accordion.styles.css */
56
- .accordion_styles_accordion {
56
+ .accordion {
57
57
  display: grid;
58
58
  }
59
- .accordion_styles_accordion-item {
59
+ .accordion-item {
60
60
  display: grid;
61
61
  position: relative;
62
- .accordion_styles_accordion-header {
62
+ .accordion-header {
63
63
  display: grid;
64
64
  grid-template-columns: 1fr auto;
65
65
  align-items: center;
@@ -68,40 +68,40 @@
68
68
  position: sticky;
69
69
  top: 0;
70
70
  padding: 20px 0;
71
- &.accordion_styles_has-start-content {
71
+ &.has-start-content {
72
72
  grid-template-columns: auto 1fr auto;
73
73
  }
74
74
  }
75
- .accordion_styles_accordion-header-content {
75
+ .accordion-header-content {
76
76
  display: grid;
77
77
  }
78
- .accordion_styles_accordion-toggle-icon {
78
+ .accordion-toggle-icon {
79
79
  transition: all 300ms ease;
80
- &.accordion_styles_isOpen {
80
+ &.isOpen {
81
81
  transform: rotate(-90deg);
82
82
  }
83
83
  }
84
- .accordion_styles_accordion-body {
84
+ .accordion-body {
85
85
  padding: 10px 0 20px;
86
86
  }
87
87
  }
88
88
 
89
89
  /* src/components/cards/flip-card/flip-card.styles.css */
90
- .flip_card_styles_flip-card {
90
+ .flip-card {
91
91
  --cardZIndex: attr(data-zIndex);
92
92
  --flipSpeed: attr(data-flipSpeed, 500ms);
93
93
  --frontRotate: attr(data-frontRotate);
94
94
  --backRotate: attr(data-backRotate);
95
95
  perspective: 1000px;
96
96
  z-index: var(--cardZIndex);
97
- .flip_card_styles_flipper {
97
+ .flipper {
98
98
  height: 100%;
99
99
  position: relative;
100
100
  width: 100%;
101
101
  transform-style: preserve-3d;
102
102
  }
103
- .flip_card_styles_front,
104
- .flip_card_styles_back {
103
+ .front,
104
+ .back {
105
105
  -webkit-backface-visibility: hidden;
106
106
  backface-visibility: hidden;
107
107
  transform-style: preserve-3d;
@@ -111,30 +111,30 @@
111
111
  top: 0;
112
112
  width: 100%;
113
113
  }
114
- .flip_card_styles_front {
114
+ .front {
115
115
  position: relative;
116
116
  transform: var(--frontRotate);
117
117
  z-index: 2;
118
118
  }
119
- .flip_card_styles_back {
119
+ .back {
120
120
  position: absolute;
121
121
  transform: var(--backRotate);
122
122
  }
123
- .flip_card_styles_is-flipped {
124
- .flip_card_styles_front {
123
+ .is-flipped {
124
+ .front {
125
125
  position: absolute;
126
126
  }
127
- .flip_card_styles_back {
127
+ .back {
128
128
  position: relative;
129
129
  }
130
130
  }
131
131
  }
132
132
 
133
133
  /* src/components/cards/hover-card/hover-card.styles.css */
134
- .hover_card_styles_hover-card {
134
+ .hover-card {
135
135
  display: inline-block;
136
136
  transition: all 300ms ease;
137
- .hover_card_styles_card-hover-layer {
137
+ .card-hover-layer {
138
138
  transition: all 100ms ease;
139
139
  width: 100%;
140
140
  height: 100%;
@@ -143,118 +143,118 @@
143
143
  }
144
144
 
145
145
  /* src/components/typography/typography.styles.css */
146
- .typography_styles_typography {
146
+ .typography {
147
147
  margin: 0;
148
148
  padding: 0.5em 0 0.4em;
149
- &.typography_styles_primary {
149
+ &.primary {
150
150
  color: var(--primary-500);
151
151
  }
152
- &.typography_styles_secondary {
152
+ &.secondary {
153
153
  color: var(--secondary-500);
154
154
  }
155
- &.typography_styles_tertiary {
155
+ &.tertiary {
156
156
  color: var(--tertiary-500);
157
157
  }
158
- &.typography_styles_active {
158
+ &.active {
159
159
  color: var(--active-500);
160
160
  }
161
- &.typography_styles_alert {
161
+ &.alert {
162
162
  color: var(--alert-500);
163
163
  }
164
- &.typography_styles_warning {
164
+ &.warning {
165
165
  color: var(--warning-500);
166
166
  }
167
- &.typography_styles_info {
167
+ &.info {
168
168
  color: var(--info-500);
169
169
  }
170
- &.typography_styles_recommended-width {
170
+ &.recommended-width {
171
171
  max-width: 70ch;
172
172
  }
173
- &.typography_styles_code-family {
173
+ &.code-family {
174
174
  font-family: monospace;
175
175
  }
176
- &.typography_styles_no-padding {
176
+ &.no-padding {
177
177
  padding: 0;
178
178
  }
179
- &.typography_styles_nowrap {
179
+ &.nowrap {
180
180
  overflow: hidden;
181
181
  text-overflow: ellipsis;
182
182
  white-space: nowrap;
183
183
  }
184
- &.typography_styles_nowrap-max-lines {
184
+ &.nowrap-max-lines {
185
185
  overflow: hidden;
186
186
  display: -webkit-box;
187
187
  -webkit-box-orient: vertical;
188
188
  }
189
- &.typography_styles_nowrap-max-lines-2 {
189
+ &.nowrap-max-lines-2 {
190
190
  -webkit-line-clamp: 2;
191
191
  line-clamp: 2;
192
192
  }
193
- &.typography_styles_nowrap-max-lines-3 {
193
+ &.nowrap-max-lines-3 {
194
194
  -webkit-line-clamp: 3;
195
195
  line-clamp: 3;
196
196
  }
197
- &.typography_styles_nowrap-max-lines-4 {
197
+ &.nowrap-max-lines-4 {
198
198
  -webkit-line-clamp: 4;
199
199
  line-clamp: 4;
200
200
  }
201
- &.typography_styles_nowrap-max-lines-5 {
201
+ &.nowrap-max-lines-5 {
202
202
  -webkit-line-clamp: 5;
203
203
  line-clamp: 5;
204
204
  }
205
- &.typography_styles_hero {
205
+ &.hero {
206
206
  font-size: var(--typography-size-hero);
207
207
  line-height: var(--typography-line-height-header);
208
208
  font-weight: 700;
209
209
  }
210
- &.typography_styles_header1 {
210
+ &.header1 {
211
211
  font-size: var(--typography-size-header1);
212
212
  line-height: var(--typography-line-height-header);
213
213
  font-weight: 700;
214
214
  }
215
- &.typography_styles_header2 {
215
+ &.header2 {
216
216
  font-size: var(--typography-size-header2);
217
217
  line-height: var(--typography-line-height-header);
218
218
  font-weight: 700;
219
219
  }
220
- &.typography_styles_header3 {
220
+ &.header3 {
221
221
  font-size: var(--typography-size-header3);
222
222
  line-height: var(--typography-line-height-header);
223
223
  font-weight: 700;
224
224
  }
225
- &.typography_styles_header4 {
225
+ &.header4 {
226
226
  font-size: var(--typography-size-header4);
227
227
  line-height: var(--typography-line-height-header);
228
228
  font-weight: 700;
229
229
  }
230
- &.typography_styles_body {
230
+ &.body {
231
231
  font-size: var(--typography-size-body);
232
232
  line-height: var(--typography-line-height-common);
233
233
  font-weight: 400;
234
234
  }
235
- &.typography_styles_label {
235
+ &.label {
236
236
  font-size: var(--typography-size-label);
237
237
  line-height: var(--typography-line-height-common);
238
238
  font-weight: 400;
239
239
  }
240
- &.typography_styles_small {
240
+ &.small {
241
241
  font-size: var(--typography-size-small);
242
242
  line-height: var(--typography-line-height-common);
243
243
  font-weight: 400;
244
244
  }
245
- &.typography_styles_bold {
245
+ &.bold {
246
246
  font-weight: 700;
247
247
  }
248
- &.typography_styles_regular {
248
+ &.regular {
249
249
  font-weight: 400;
250
250
  }
251
- &.typography_styles_light {
251
+ &.light {
252
252
  font-weight: 300;
253
253
  }
254
254
  }
255
255
 
256
256
  /* src/components/ripple/ripple.styles.css */
257
- .ripple_styles_ripple {
257
+ .ripple {
258
258
  position: absolute;
259
259
  display: block;
260
260
  top: 0;
@@ -264,18 +264,18 @@
264
264
  overflow: hidden;
265
265
  border-radius: inherit;
266
266
  z-index: 1;
267
- .ripple_styles_ripple-effect {
267
+ .ripple-effect {
268
268
  position: absolute;
269
269
  transform: translate(-50%, -50%);
270
270
  border-radius: 50%;
271
271
  width: 0;
272
272
  height: 0;
273
273
  pointer-events: none;
274
- animation: ripple_styles_ripple-effect infinite;
274
+ animation: ripple-effect infinite;
275
275
  opacity: 0.4;
276
276
  }
277
277
  }
278
- @keyframes ripple_styles_ripple-effect {
278
+ @keyframes ripple-effect {
279
279
  to {
280
280
  width: 300px;
281
281
  height: 300px;
@@ -285,7 +285,7 @@
285
285
  }
286
286
 
287
287
  /* src/components/button/button.styles.css */
288
- .button_styles_button {
288
+ .button {
289
289
  --button-blur: 2px;
290
290
  --color: var(--neutral-800);
291
291
  --solid-background: var(--neutral-900);
@@ -315,39 +315,39 @@
315
315
  outline: none;
316
316
  transition: all 150ms ease;
317
317
  user-select: none;
318
- &.button_styles_icon {
318
+ &.icon {
319
319
  padding: 0.625em;
320
320
  }
321
- &.button_styles_full {
321
+ &.full {
322
322
  width: 100%;
323
323
  }
324
- &.button_styles_no-wrap {
324
+ &.no-wrap {
325
325
  white-space: nowrap;
326
326
  overflow: hidden;
327
327
  text-overflow: ellipsis;
328
328
  }
329
- &.button_styles_size-small {
329
+ &.size-small {
330
330
  font-size: var(--typography-size-small);
331
331
  }
332
- &.button_styles_size-regular {
332
+ &.size-regular {
333
333
  font-size: var(--typography-size-label);
334
334
  }
335
- &.button_styles_size-large {
335
+ &.size-large {
336
336
  font-size: var(--typography-size-body);
337
337
  }
338
- &.button_styles_radius-none {
338
+ &.radius-none {
339
339
  border-radius: 0;
340
340
  }
341
- &.button_styles_radius-small {
341
+ &.radius-small {
342
342
  border-radius: 0.25em;
343
343
  }
344
- &.button_styles_radius-medium {
344
+ &.radius-medium {
345
345
  border-radius: 0.5em;
346
346
  }
347
- &.button_styles_radius-large {
347
+ &.radius-large {
348
348
  border-radius: 1em;
349
349
  }
350
- &.button_styles_radius-full {
350
+ &.radius-full {
351
351
  border-radius: 100rem;
352
352
  }
353
353
  &:not(:disabled) {
@@ -366,14 +366,14 @@
366
366
  }
367
367
  }
368
368
  color: var(--color);
369
- .button_styles_ripple-effect {
369
+ .ripple-effect {
370
370
  background: var(--color);
371
371
  }
372
- &.button_styles_solid {
372
+ &.solid {
373
373
  background: var(--solid-background);
374
374
  color: var(--solid-text);
375
375
  backdrop-filter: blur(var(--button-blur));
376
- .button_styles_ripple-effect {
376
+ .ripple-effect {
377
377
  background: var(--solid-text);
378
378
  }
379
379
  &:focus-visible {
@@ -387,7 +387,7 @@
387
387
  background: var(--solid-active-background);
388
388
  }
389
389
  }
390
- &.button_styles_flat {
390
+ &.flat {
391
391
  background: var(--flat-background);
392
392
  backdrop-filter: blur(var(--button-blur));
393
393
  &:hover {
@@ -397,7 +397,7 @@
397
397
  background: var(--flat-active-background);
398
398
  }
399
399
  }
400
- &.button_styles_outlined {
400
+ &.outlined {
401
401
  background: transparent;
402
402
  border: 1px solid;
403
403
  &:hover {
@@ -407,7 +407,7 @@
407
407
  background: var(--outlined-active-background);
408
408
  }
409
409
  }
410
- &.button_styles_text {
410
+ &.text {
411
411
  background: transparent;
412
412
  &:hover {
413
413
  background: var(--text-hover-background);
@@ -420,7 +420,7 @@
420
420
  box-shadow: 0 0 0 0.3125em var(--shadow-color);
421
421
  background: var(--focus-background);
422
422
  }
423
- &.button_styles_primary {
423
+ &.primary {
424
424
  --color: var(--primary-500);
425
425
  --solid-background: var(--primary-500);
426
426
  --solid-text: var(--primary-50);
@@ -436,7 +436,7 @@
436
436
  --shadow-color: hsl(from var(--primary-500) h s l / 20%);
437
437
  --focus-background: hsl(from var(--primary-100) h s l / 20%);
438
438
  }
439
- &.button_styles_secondary {
439
+ &.secondary {
440
440
  --color: var(--secondary-500);
441
441
  --solid-background: var(--secondary-500);
442
442
  --solid-text: var(--secondary-50);
@@ -452,7 +452,7 @@
452
452
  --shadow-color: hsl(from var(--secondary-500) h s l / 20%);
453
453
  --focus-background: hsl(from var(--secondary-100) h s l / 20%);
454
454
  }
455
- &.button_styles_tertiary {
455
+ &.tertiary {
456
456
  --color: var(--tertiary-500);
457
457
  --solid-background: var(--tertiary-500);
458
458
  --solid-text: var(--tertiary-50);
@@ -468,7 +468,7 @@
468
468
  --shadow-color: hsl(from var(--tertiary-500) h s l / 20%);
469
469
  --focus-background: hsl(from var(--tertiary-100) h s l / 20%);
470
470
  }
471
- &.button_styles_active {
471
+ &.active {
472
472
  --color: var(--active-500);
473
473
  --solid-background: var(--active-500);
474
474
  --solid-text: var(--active-50);
@@ -484,7 +484,7 @@
484
484
  --shadow-color: hsl(from var(--active-500) h s l / 20%);
485
485
  --focus-background: hsl(from var(--active-100) h s l / 20%);
486
486
  }
487
- &.button_styles_warning {
487
+ &.warning {
488
488
  --color: var(--warning-500);
489
489
  --solid-background: var(--warning-500);
490
490
  --solid-text: var(--warning-50);
@@ -500,7 +500,7 @@
500
500
  --shadow-color: hsl(from var(--warning-500) h s l / 20%);
501
501
  --focus-background: hsl(from var(--warning-100) h s l / 20%);
502
502
  }
503
- &.button_styles_alert {
503
+ &.alert {
504
504
  --color: var(--alert-500);
505
505
  --solid-background: var(--alert-500);
506
506
  --solid-text: var(--alert-50);
@@ -516,7 +516,7 @@
516
516
  --shadow-color: hsl(from var(--alert-500) h s l / 20%);
517
517
  --focus-background: hsl(from var(--alert-100) h s l / 20%);
518
518
  }
519
- &.button_styles_info {
519
+ &.info {
520
520
  --color: var(--info-500);
521
521
  --solid-background: var(--info-500);
522
522
  --solid-text: var(--info-50);
@@ -536,21 +536,21 @@
536
536
  color: var(--neutral-200);
537
537
  pointer-events: none;
538
538
  }
539
- &.button_styles_solid:disabled {
539
+ &.solid:disabled {
540
540
  background: var(--neutral-200);
541
541
  color: var(--neutral-50);
542
542
  }
543
- &.button_styles_flat:disabled {
543
+ &.flat:disabled {
544
544
  background: hsl(from var(--neutral-50) h s l / 80%);
545
545
  }
546
- &.button_styles_outlined:disabled,
547
- &.button_styles_text:disabled {
546
+ &.outlined:disabled,
547
+ &.text:disabled {
548
548
  background: transparent;
549
549
  }
550
550
  }
551
551
 
552
552
  /* src/components/cursor/cursor.styles.css */
553
- .cursor_styles_cursor-overlay {
553
+ .cursor-overlay {
554
554
  position: fixed;
555
555
  top: 0;
556
556
  left: 0;
@@ -559,7 +559,7 @@
559
559
  cursor: none;
560
560
  pointer-events: none;
561
561
  }
562
- .cursor_styles_cursor {
562
+ .cursor {
563
563
  position: fixed;
564
564
  border-radius: 50%;
565
565
  z-index: 99999999;
@@ -568,7 +568,7 @@
568
568
  @media (any-pointer: coarse) {
569
569
  display: none;
570
570
  }
571
- &.cursor_styles_outer-circle {
571
+ &.outer-circle {
572
572
  margin-left: -15px;
573
573
  margin-top: -15px;
574
574
  width: 30px;
@@ -583,7 +583,7 @@
583
583
  height 0.3s ease-in-out,
584
584
  margin 0.3s ease-in-out,
585
585
  opacity 0.3s ease-in-out;
586
- &.cursor_styles_cursor-hover {
586
+ &.cursor-hover {
587
587
  margin-left: -40px;
588
588
  margin-top: -40px;
589
589
  width: 80px;
@@ -591,7 +591,7 @@
591
591
  background-color: var(--primary-500);
592
592
  opacity: 0.3;
593
593
  }
594
- &.cursor_styles_cursor-text {
594
+ &.cursor-text {
595
595
  margin-left: -2px;
596
596
  margin-top: -40px;
597
597
  width: 4px;
@@ -600,7 +600,7 @@
600
600
  opacity: 0.3;
601
601
  }
602
602
  }
603
- &.cursor_styles_inner-circle {
603
+ &.inner-circle {
604
604
  margin-left: -3px;
605
605
  margin-top: -3px;
606
606
  width: 6px;
@@ -609,14 +609,14 @@
609
609
  background-color: var(--primary-500);
610
610
  transition: opacity 0.3s ease-in-out;
611
611
  opacity: 1;
612
- &.cursor_styles_cursor-hover {
612
+ &.cursor-hover {
613
613
  opacity: 0;
614
614
  }
615
615
  }
616
616
  }
617
617
 
618
618
  /* src/components/form/checkbox/checkbox.styles.css */
619
- .checkbox_styles_checkbox {
619
+ .checkbox {
620
620
  border-radius: 40%;
621
621
  background: var(--background-paper);
622
622
  transition: all 300ms ease;
@@ -626,7 +626,7 @@
626
626
  outline: 1px solid;
627
627
  display: flex;
628
628
  position: relative;
629
- .checkbox_styles_checkbox-input {
629
+ .checkbox-input {
630
630
  position: absolute;
631
631
  top: 0;
632
632
  left: 0;
@@ -636,17 +636,17 @@
636
636
  opacity: 0;
637
637
  z-index: 2;
638
638
  }
639
- &.checkbox_styles_size-small {
639
+ &.size-small {
640
640
  font-size: 1em;
641
641
  }
642
- &.checkbox_styles_size-regular {
642
+ &.size-regular {
643
643
  font-size: 1.2em;
644
644
  }
645
- &.checkbox_styles_size-large {
645
+ &.size-large {
646
646
  font-size: 1.4em;
647
647
  }
648
648
  }
649
- .checkbox_styles_checkbox-fill {
649
+ .checkbox-fill {
650
650
  transition: all 200ms ease-out;
651
651
  border-radius: inherit;
652
652
  margin: auto;
@@ -657,14 +657,14 @@
657
657
  display: grid;
658
658
  place-content: center;
659
659
  place-items: center;
660
- .checkbox_styles_checkbox-icon {
660
+ .checkbox-icon {
661
661
  font-size: 0.7em;
662
662
  z-index: 1;
663
663
  opacity: 0;
664
664
  transition: opacity 300ms ease;
665
665
  }
666
666
  }
667
- .checkbox_styles_checkbox-container {
667
+ .checkbox-container {
668
668
  --color: var(--neutral-800);
669
669
  --color-icon: var(--neutral-50);
670
670
  --color-hover: hsl(from var(--neutral-800) h s l / 50%);
@@ -674,37 +674,37 @@
674
674
  align-items: center;
675
675
  gap: 0.5em;
676
676
  width: fit-content;
677
- .checkbox_styles_checkbox-label {
677
+ .checkbox-label {
678
678
  cursor: pointer;
679
679
  user-select: none;
680
680
  width: 100%;
681
681
  }
682
- .checkbox_styles_checkbox {
682
+ .checkbox {
683
683
  color: var(--color);
684
- &.checkbox_styles_is-checked {
685
- .checkbox_styles_checkbox-fill {
684
+ &.is-checked {
685
+ .checkbox-fill {
686
686
  width: 100%;
687
687
  height: 100%;
688
688
  background: var(--color);
689
689
  color: var(--color-icon);
690
690
  }
691
- .checkbox_styles_checkbox-icon {
691
+ .checkbox-icon {
692
692
  opacity: 1;
693
693
  }
694
694
  }
695
695
  }
696
- .checkbox_styles_checkbox:hover,
697
- &:has(.checkbox_styles_checkbox-label:hover) .checkbox_styles_checkbox {
696
+ .checkbox:hover,
697
+ &:has(.checkbox-label:hover) .checkbox {
698
698
  box-shadow: 0 0 0 0.3em var(--color-hover);
699
- .checkbox_styles_checkbox-fill {
699
+ .checkbox-fill {
700
700
  width: 20%;
701
701
  height: 20%;
702
702
  border-radius: 20%;
703
703
  background: var(--color-hover);
704
704
  color: var(--color-icon);
705
705
  }
706
- &:is(.checkbox_styles_is-checked) {
707
- .checkbox_styles_checkbox-fill {
706
+ &:is(.is-checked) {
707
+ .checkbox-fill {
708
708
  width: 100%;
709
709
  height: 100%;
710
710
  border-radius: inherit;
@@ -712,42 +712,42 @@
712
712
  }
713
713
  }
714
714
  }
715
- .checkbox_styles_checkbox:focus,
716
- &:has(.checkbox_styles_checkbox-input:focus) .checkbox_styles_checkbox,
717
- &:has(.checkbox_styles_checkbox-label:focus) .checkbox_styles_checkbox {
715
+ .checkbox:focus,
716
+ &:has(.checkbox-input:focus) .checkbox,
717
+ &:has(.checkbox-label:focus) .checkbox {
718
718
  box-shadow: 0 0 0 0.3em var(--color-hover);
719
719
  }
720
- &.checkbox_styles_color-primary {
720
+ &.color-primary {
721
721
  --color: var(--primary-500);
722
722
  --color-icon: var(--primary-50);
723
723
  --color-hover: hsl(from var(--primary-500) h s l / 50%);
724
724
  }
725
- &.checkbox_styles_color-secondary {
725
+ &.color-secondary {
726
726
  --color: var(--secondary-500);
727
727
  --color-icon: var(--secondary-50);
728
728
  --color-hover: hsl(from var(--secondary-500) h s l / 50%);
729
729
  }
730
- &.checkbox_styles_color-tertiary {
730
+ &.color-tertiary {
731
731
  --color: var(--tertiary-500);
732
732
  --color-icon: var(--tertiary-50);
733
733
  --color-hover: hsl(from var(--tertiary-500) h s l / 50%);
734
734
  }
735
- &.checkbox_styles_color-active {
735
+ &.color-active {
736
736
  --color: var(--active-500);
737
737
  --color-icon: var(--active-50);
738
738
  --color-hover: hsl(from var(--active-500) h s l / 50%);
739
739
  }
740
- &.checkbox_styles_color-warning {
740
+ &.color-warning {
741
741
  --color: var(--warning-500);
742
742
  --color-icon: var(--warning-50);
743
743
  --color-hover: hsl(from var(--warning-500) h s l / 50%);
744
744
  }
745
- &.checkbox_styles_color-alert {
745
+ &.color-alert {
746
746
  --color: var(--alert-500);
747
747
  --color-icon: var(--alert-50);
748
748
  --color-hover: hsl(from var(--alert-500) h s l / 50%);
749
749
  }
750
- &.checkbox_styles_color-info {
750
+ &.color-info {
751
751
  --color: var(--info-500);
752
752
  --color-icon: var(--info-50);
753
753
  --color-hover: hsl(from var(--info-500) h s l / 50%);
@@ -755,129 +755,129 @@
755
755
  }
756
756
 
757
757
  /* src/components/form/field/field.styles.css */
758
- .field_styles_form-field {
758
+ .form-field {
759
759
  display: grid;
760
760
  grid-auto-columns: auto;
761
761
  gap: 0.5em;
762
762
  transition: all 200ms ease;
763
- .field_styles_field-content {
763
+ .field-content {
764
764
  display: grid;
765
765
  grid-template-columns: auto 1fr auto;
766
766
  align-items: center;
767
767
  }
768
- .field_styles_field-left-icon,
769
- .field_styles_field-right-icon {
768
+ .field-left-icon,
769
+ .field-right-icon {
770
770
  font-size: 1em;
771
771
  }
772
- .field_styles_field-left-icon {
772
+ .field-left-icon {
773
773
  margin-right: 1em;
774
774
  }
775
- .field_styles_field-right-icon {
775
+ .field-right-icon {
776
776
  margin-left: 1em;
777
777
  }
778
- .field_styles_field-message {
778
+ .field-message {
779
779
  display: grid;
780
780
  grid-auto-flow: column;
781
781
  gap: 5px;
782
782
  align-items: center;
783
783
  justify-content: start;
784
784
  }
785
- &.field_styles_variant-content-border {
786
- .field_styles_field-content {
785
+ &.variant-content-border {
786
+ .field-content {
787
787
  border: 1px solid var(--border);
788
788
  border-radius: 4px;
789
789
  padding: 1em;
790
790
  background: var(--background);
791
791
  }
792
792
  }
793
- &.field_styles_variant-content-line {
794
- .field_styles_field-content {
793
+ &.variant-content-line {
794
+ .field-content {
795
795
  border-bottom: 1px solid;
796
796
  padding: 0.5em 0;
797
797
  }
798
798
  }
799
- &.field_styles_variant-full-border {
799
+ &.variant-full-border {
800
800
  border: 1px solid var(--border);
801
801
  border-radius: 4px;
802
802
  padding: 0.5em 0;
803
803
  background: var(--background);
804
- .field_styles_field-label,
805
- .field_styles_field-content,
806
- .field_styles_field-message {
804
+ .field-label,
805
+ .field-content,
806
+ .field-message {
807
807
  padding: 0 1em;
808
808
  }
809
809
  }
810
- &.field_styles_variant-inline {
810
+ &.variant-inline {
811
811
  grid-auto-flow: column;
812
812
  padding: 0.5em 0;
813
813
  align-items: center;
814
- .field_styles_field-label {
814
+ .field-label {
815
815
  width: auto;
816
816
  }
817
817
  }
818
- &.field_styles_error {
818
+ &.error {
819
819
  color: var(--alert-500);
820
820
  border-color: var(--alert-500);
821
821
  }
822
- &.field_styles_focus {
822
+ &.focus {
823
823
  color: var(--info-500);
824
824
  border-color: var(--info-500);
825
825
  }
826
- &.field_styles_error,
827
- &.field_styles_focus {
828
- .field_styles_field-left-icon,
829
- .field_styles_field-right-icon,
830
- .field_styles_field-children {
826
+ &.error,
827
+ &.focus {
828
+ .field-left-icon,
829
+ .field-right-icon,
830
+ .field-children {
831
831
  color: var(--foreground);
832
832
  border-color: var(--foreground);
833
833
  }
834
834
  }
835
- .field_styles_field-children > * {
835
+ .field-children > * {
836
836
  width: 100%;
837
837
  }
838
838
  }
839
839
 
840
840
  /* src/components/modals/modal/modal.styles.css */
841
- .modal_styles_modal {
841
+ .modal {
842
842
  position: fixed;
843
843
  z-index: 1001;
844
844
  pointer-events: none;
845
845
  }
846
- .modal_styles_modal-content {
846
+ .modal-content {
847
847
  background: var(--background-paper);
848
848
  pointer-events: initial;
849
- &.modal_styles_animation-fade-down {
850
- animation: modal_styles_fadeInDown 200ms ease;
851
- &.modal_styles_modal-close {
852
- animation: modal_styles_fadeOutUp 200ms ease;
849
+ &.animation-fade-down {
850
+ animation: fadeInDown 200ms ease;
851
+ &.modal-close {
852
+ animation: fadeOutUp 200ms ease;
853
853
  transform: translateY(-10px);
854
854
  opacity: 0;
855
855
  }
856
856
  }
857
- &.modal_styles_animation-bounce {
858
- animation: modal_styles_bounceIn 500ms ease;
859
- &.modal_styles_modal-close {
860
- animation: modal_styles_bounceOut 500ms ease;
857
+ &.animation-bounce {
858
+ animation: bounceIn 500ms ease;
859
+ &.modal-close {
860
+ animation: bounceOut 500ms ease;
861
861
  transform: scale3d(0.3, 0.3, 0.3);
862
862
  opacity: 0;
863
863
  }
864
864
  }
865
865
  }
866
- .modal_styles_modal-backdrop {
866
+ .modal-backdrop {
867
867
  position: fixed;
868
868
  width: 100%;
869
869
  height: 100%;
870
870
  top: 0;
871
871
  left: 0;
872
872
  z-index: 1000;
873
- animation: modal_styles_backdropOpen 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
874
- &.modal_styles_backdrop-close {
875
- animation: modal_styles_backdropClose 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
873
+ animation: backdropOpen 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
874
+ &.backdrop-close {
875
+ animation: backdropClose 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
876
876
  opacity: 0;
877
877
  transform: translateY(-10px);
878
878
  }
879
879
  }
880
- @keyframes modal_styles_backdropOpen {
880
+ @keyframes backdropOpen {
881
881
  from {
882
882
  opacity: 0;
883
883
  transform: translateY(-10px);
@@ -887,7 +887,7 @@
887
887
  transform: translateY(0);
888
888
  }
889
889
  }
890
- @keyframes modal_styles_backdropClose {
890
+ @keyframes backdropClose {
891
891
  from {
892
892
  opacity: 1;
893
893
  transform: translateY(0);
@@ -899,35 +899,35 @@
899
899
  }
900
900
 
901
901
  /* src/components/modals/action-modal/action-modal.styles.css */
902
- .action_modal_styles_action-modal {
902
+ .action-modal {
903
903
  background: transparent;
904
- .action_modal_styles_modal-content {
905
- &.action_modal_styles_shake-animation {
906
- animation: action_modal_styles_headShake 600ms linear;
904
+ .modal-content {
905
+ &.shake-animation {
906
+ animation: headShake 600ms linear;
907
907
  }
908
908
  }
909
909
  }
910
- .action_modal_styles_action-modal-content {
910
+ .action-modal-content {
911
911
  position: relative;
912
- .action_modal_styles_action-modal-body {
912
+ .action-modal-body {
913
913
  box-shadow: 0 0 10px -5px;
914
914
  border-radius: 10px;
915
915
  overflow: hidden;
916
916
  display: grid;
917
917
  }
918
- .action_modal_styles_action-modal-content {
918
+ .action-modal-content {
919
919
  background: var(--background);
920
920
  padding: 3em 4em 2em;
921
921
  display: grid;
922
922
  gap: 1em;
923
923
  }
924
- &.action_modal_styles_no-padding .action_modal_styles_action-modal-content {
924
+ &.no-padding .action-modal-content {
925
925
  padding: 2em 0 0;
926
926
  }
927
- &:has(.action_modal_styles_action-modal-icon) .action_modal_styles_action-modal-content {
927
+ &:has(.action-modal-icon) .action-modal-content {
928
928
  padding-top: 4em;
929
929
  }
930
- &.action_modal_styles_back-card {
930
+ &.back-card {
931
931
  &::before {
932
932
  content: "";
933
933
  position: absolute;
@@ -943,7 +943,7 @@
943
943
  transition: top 300ms cubic-bezier(0.81, -0.52, 0.42, 2.5);
944
944
  }
945
945
  }
946
- .action_modal_styles_action-modal-icon {
946
+ .action-modal-icon {
947
947
  position: absolute;
948
948
  top: 0;
949
949
  left: 50%;
@@ -964,7 +964,7 @@
964
964
  0 0 0 0 hsl(from var(--primary-500) h s l / 27%),
965
965
  0 0 0 0 hsl(from var(--primary-500) h s l / 14%);
966
966
  }
967
- .action_modal_styles_close-modal-button {
967
+ .close-modal-button {
968
968
  width: 1em;
969
969
  height: 1em;
970
970
  border-radius: 50%;
@@ -978,20 +978,20 @@
978
978
  transition: opacity 300ms ease;
979
979
  z-index: 1;
980
980
  }
981
- &.action_modal_styles_line-on-top {
982
- .action_modal_styles_action-modal-content {
981
+ &.line-on-top {
982
+ .action-modal-content {
983
983
  border-top: 5px solid var(--primary-500);
984
984
  }
985
985
  }
986
986
  &:hover {
987
- .action_modal_styles_action-modal-icon {
987
+ .action-modal-icon {
988
988
  box-shadow:
989
989
  0 0 0 7px hsl(from var(--primary-500) h s l / 53%),
990
990
  0 0 0 14px hsl(from var(--primary-500) h s l / 40%),
991
991
  0 0 0 21px hsl(from var(--primary-500) h s l / 27%),
992
992
  0 0 0 28px hsl(from var(--primary-500) h s l / 14%);
993
993
  }
994
- .action_modal_styles_close-modal-button {
994
+ .close-modal-button {
995
995
  opacity: 1;
996
996
  }
997
997
  &::before {
@@ -1001,14 +1001,14 @@
1001
1001
  }
1002
1002
 
1003
1003
  /* src/components/modals/aside-modal/aside-modal.styles.css */
1004
- .aside_modal_styles_aside-modal {
1004
+ .aside-modal {
1005
1005
  color: var(--foreground);
1006
1006
  overflow: auto;
1007
1007
  height: 100%;
1008
- .aside_modal_styles_aside-modal-content {
1008
+ .aside-modal-content {
1009
1009
  padding: 2em;
1010
1010
  }
1011
- .aside_modal_styles_close-modal-button {
1011
+ .close-modal-button {
1012
1012
  border-radius: 50%;
1013
1013
  cursor: pointer;
1014
1014
  display: grid;
@@ -1018,53 +1018,53 @@
1018
1018
  position: absolute;
1019
1019
  padding: 0.5em;
1020
1020
  }
1021
- &.aside_modal_styles_left {
1021
+ &.left {
1022
1022
  border-right: 4px solid var(--primary-500);
1023
- animation: aside_modal_styles_slideIn-left 300ms ease;
1024
- &.aside_modal_styles_modal-close {
1025
- animation: aside_modal_styles_slideOut-left 300ms ease;
1023
+ animation: slideIn-left 300ms ease;
1024
+ &.modal-close {
1025
+ animation: slideOut-left 300ms ease;
1026
1026
  transform: translateX(-100%);
1027
1027
  }
1028
- .aside_modal_styles_close-modal-button {
1028
+ .close-modal-button {
1029
1029
  top: 2em;
1030
1030
  left: 100%;
1031
1031
  transform: translate(calc(-50% + 2px));
1032
1032
  }
1033
1033
  }
1034
- &.aside_modal_styles_right {
1034
+ &.right {
1035
1035
  border-left: 4px solid var(--primary-500);
1036
- animation: aside_modal_styles_slideIn-right 300ms ease;
1037
- &.aside_modal_styles_modal-close {
1038
- animation: aside_modal_styles_slideOut-right 300ms ease;
1036
+ animation: slideIn-right 300ms ease;
1037
+ &.modal-close {
1038
+ animation: slideOut-right 300ms ease;
1039
1039
  transform: translateX(100%);
1040
1040
  }
1041
- .aside_modal_styles_close-modal-button {
1041
+ .close-modal-button {
1042
1042
  top: 2em;
1043
1043
  right: 100%;
1044
1044
  transform: translate(calc(50% - 2px));
1045
1045
  }
1046
1046
  }
1047
- &.aside_modal_styles_top {
1047
+ &.top {
1048
1048
  border-bottom: 4px solid var(--primary-500);
1049
- animation: aside_modal_styles_slideIn-top 300ms ease;
1050
- &.aside_modal_styles_modal-close {
1051
- animation: aside_modal_styles_slideOut-top 300ms ease;
1049
+ animation: slideIn-top 300ms ease;
1050
+ &.modal-close {
1051
+ animation: slideOut-top 300ms ease;
1052
1052
  transform: translateY(-100%);
1053
1053
  }
1054
- .aside_modal_styles_close-modal-button {
1054
+ .close-modal-button {
1055
1055
  bottom: 0;
1056
1056
  right: 2em;
1057
1057
  transform: translate(0, calc(50% - 2px));
1058
1058
  }
1059
1059
  }
1060
- &.aside_modal_styles_bottom {
1060
+ &.bottom {
1061
1061
  border-top: 4px solid var(--primary-500);
1062
- animation: aside_modal_styles_slideIn-bottom 300ms ease;
1063
- &.aside_modal_styles_modal-close {
1064
- animation: aside_modal_styles_slideOut-bottom 300ms ease;
1062
+ animation: slideIn-bottom 300ms ease;
1063
+ &.modal-close {
1064
+ animation: slideOut-bottom 300ms ease;
1065
1065
  transform: translateY(100%);
1066
1066
  }
1067
- .aside_modal_styles_close-modal-button {
1067
+ .close-modal-button {
1068
1068
  top: 0;
1069
1069
  right: 2em;
1070
1070
  transform: translate(0, calc(-50% + 2px));
@@ -1073,14 +1073,14 @@
1073
1073
  }
1074
1074
 
1075
1075
  /* src/components/modals/confirmation-modal/confirmation-modal.styles.css */
1076
- .confirmation_modal_styles_confirmation-modal {
1076
+ .confirmation-modal {
1077
1077
  display: grid;
1078
1078
  max-width: 450px;
1079
1079
  gap: 1em;
1080
1080
  place-content: center;
1081
1081
  justify-items: center;
1082
1082
  text-align: center;
1083
- .confirmation_modal_styles_confirmation-modal-actions {
1083
+ .confirmation-modal-actions {
1084
1084
  display: grid;
1085
1085
  grid-auto-flow: column;
1086
1086
  justify-content: center;
@@ -1089,7 +1089,7 @@
1089
1089
  }
1090
1090
 
1091
1091
  /* src/components/modals/menu/menu.styles.css */
1092
- .menu_styles_menu-modal {
1092
+ .menu-modal {
1093
1093
  border-radius: 0.5em;
1094
1094
  border: 1px solid var(--border);
1095
1095
  background: var(--background);
@@ -1097,7 +1097,7 @@
1097
1097
  user-select: none;
1098
1098
  position: relative;
1099
1099
  overflow-y: auto;
1100
- .menu_styles_menu-content {
1100
+ .menu-content {
1101
1101
  display: grid;
1102
1102
  gap: 0.2em;
1103
1103
  padding: 0;
@@ -1108,12 +1108,12 @@
1108
1108
  position: relative;
1109
1109
  overflow-y: auto;
1110
1110
  }
1111
- .menu_styles_divider {
1111
+ .divider {
1112
1112
  margin: 0.4em 0;
1113
1113
  color: var(--border);
1114
1114
  }
1115
1115
  }
1116
- .menu_styles_menu-label {
1116
+ .menu-label {
1117
1117
  background: var(--background);
1118
1118
  color: var(--foreground);
1119
1119
  font-weight: lighter;
@@ -1123,7 +1123,7 @@
1123
1123
  z-index: 10;
1124
1124
  pointer-events: none;
1125
1125
  }
1126
- .menu_styles_menu-option {
1126
+ .menu-option {
1127
1127
  padding: 0.2em 1em;
1128
1128
  border-radius: 0.3em;
1129
1129
  transition: all 300ms ease;
@@ -1133,19 +1133,19 @@
1133
1133
  outline: 0;
1134
1134
  margin: 0 0.2em;
1135
1135
  position: relative;
1136
- .menu_styles_ripple-effect {
1136
+ .ripple-effect {
1137
1137
  background: hsl(from var(--foreground) h s l / 31%);
1138
1138
  }
1139
1139
  &:first-child {
1140
1140
  margin-top: 5px;
1141
1141
  }
1142
- .menu_styles_option-icon {
1142
+ .option-icon {
1143
1143
  margin-right: 0.5em;
1144
1144
  }
1145
- .menu_styles_menu-checkbox {
1145
+ .menu-checkbox {
1146
1146
  width: 100%;
1147
1147
  }
1148
- &.menu_styles_is-disabled {
1148
+ &.is-disabled {
1149
1149
  opacity: 0.4;
1150
1150
  pointer-events: none;
1151
1151
  cursor: default;
@@ -1154,7 +1154,7 @@
1154
1154
  &:hover {
1155
1155
  background: hsl(from var(--background-paper) h s l / 25%);
1156
1156
  }
1157
- &.menu_styles_is-selected {
1157
+ &.is-selected {
1158
1158
  background: var(--background-paper);
1159
1159
  &:focus,
1160
1160
  &:hover {
@@ -1162,9 +1162,9 @@
1162
1162
  }
1163
1163
  }
1164
1164
  }
1165
- .menu_styles_menu-group {
1165
+ .menu-group {
1166
1166
  position: relative;
1167
- .menu_styles_menu-group-content {
1167
+ .menu-group-content {
1168
1168
  display: grid;
1169
1169
  gap: 0.2em;
1170
1170
  padding: 0;
@@ -1176,16 +1176,16 @@
1176
1176
  }
1177
1177
 
1178
1178
  /* src/components/form/input-color/input-color.styles.css */
1179
- .input_color_styles_input-color {
1179
+ .input-color {
1180
1180
  display: grid;
1181
1181
  grid-auto-flow: column;
1182
1182
  align-items: center;
1183
1183
  justify-content: start;
1184
1184
  gap: 0.5em;
1185
- .input_color_styles_input-color-value {
1185
+ .input-color-value {
1186
1186
  margin-left: 10px;
1187
1187
  }
1188
- .input_color_styles_color-input {
1188
+ .color-input {
1189
1189
  padding-right: 1em;
1190
1190
  border-radius: inherit;
1191
1191
  width: 100%;
@@ -1193,7 +1193,7 @@
1193
1193
  font-family: var(--typography-family-main) sans-serif;
1194
1194
  }
1195
1195
  }
1196
- .input_color_styles_input-color-box {
1196
+ .input-color-box {
1197
1197
  background: white;
1198
1198
  border-radius: 5px;
1199
1199
  border: 2px solid;
@@ -1213,7 +1213,7 @@
1213
1213
  z-index: -1;
1214
1214
  }
1215
1215
  }
1216
- .input_color_styles_input-color-selector {
1216
+ .input-color-selector {
1217
1217
  display: grid;
1218
1218
  gap: 10px;
1219
1219
  background: var(--background);
@@ -1222,19 +1222,19 @@
1222
1222
  border-radius: 0 18px 18px 18px;
1223
1223
  border: 1px solid;
1224
1224
  box-shadow: 0 5px 30px -5px var(--neutral-900);
1225
- .input_color_styles_react-colorful__pointer {
1225
+ .react-colorful__pointer {
1226
1226
  width: 1em;
1227
1227
  height: 1em;
1228
1228
  border-radius: 50%;
1229
1229
  }
1230
- .input_color_styles_react-colorful__hue-pointer,
1231
- .input_color_styles_react-colorful__alpha-pointer {
1230
+ .react-colorful__hue-pointer,
1231
+ .react-colorful__alpha-pointer {
1232
1232
  width: 8px;
1233
1233
  height: 100%;
1234
1234
  border-radius: 4px;
1235
1235
  border-width: 2px;
1236
1236
  }
1237
- .input_color_styles_color-input-container {
1237
+ .color-input-container {
1238
1238
  display: grid;
1239
1239
  grid-template-columns: 16px 1fr 16px;
1240
1240
  align-items: center;
@@ -1245,7 +1245,7 @@
1245
1245
  width: 100%;
1246
1246
  max-width: 200px;
1247
1247
  }
1248
- .input_color_styles_color-input {
1248
+ .color-input {
1249
1249
  padding: 0;
1250
1250
  border-radius: inherit;
1251
1251
  background: var(--background);
@@ -1259,15 +1259,15 @@
1259
1259
  }
1260
1260
 
1261
1261
  /* src/layouts/grid/grid.styles.css */
1262
- .grid_styles_grida {
1262
+ .grida {
1263
1263
  display: grid;
1264
1264
  }
1265
1265
 
1266
1266
  /* src/components/form/input-file/input-file.styles.css */
1267
- .input_file_styles_input-file-container {
1267
+ .input-file-container {
1268
1268
  display: grid;
1269
1269
  gap: 10px;
1270
- .input_file_styles_input-file--box {
1270
+ .input-file--box {
1271
1271
  border: 1px solid;
1272
1272
  border-radius: 5px;
1273
1273
  position: relative;
@@ -1279,7 +1279,7 @@
1279
1279
  background: var(--secondary-500);
1280
1280
  color: var(--secondary-50);
1281
1281
  align-items: center;
1282
- .input_file_styles_input-file--box--icon {
1282
+ .input-file--box--icon {
1283
1283
  width: 32px;
1284
1284
  height: 32px;
1285
1285
  border-radius: 5px;
@@ -1300,32 +1300,32 @@
1300
1300
  &:hover {
1301
1301
  background: var(--primary-50);
1302
1302
  color: var(--primary-500);
1303
- .input_file_styles_input-file--box--icon {
1303
+ .input-file--box--icon {
1304
1304
  background: var(--primary-500);
1305
1305
  color: var(--primary-50);
1306
1306
  }
1307
1307
  }
1308
1308
  }
1309
- .input_file_styles_input-file--files {
1309
+ .input-file--files {
1310
1310
  max-height: 280px;
1311
1311
  overflow-y: auto;
1312
1312
  border: 1px solid;
1313
1313
  border-radius: 5px;
1314
- .input_file_styles_input-file--files--content {
1314
+ .input-file--files--content {
1315
1315
  display: grid;
1316
1316
  }
1317
1317
  }
1318
- .input_file_styles_error {
1318
+ .error {
1319
1319
  color: tomato;
1320
1320
  }
1321
- .input_file_styles_total-info {
1321
+ .total-info {
1322
1322
  font-size: 1em;
1323
1323
  display: grid;
1324
1324
  grid-auto-flow: column;
1325
1325
  justify-content: end;
1326
1326
  align-items: center;
1327
1327
  gap: 0.5em;
1328
- .input_file_styles_total-info--delete {
1328
+ .total-info--delete {
1329
1329
  display: grid;
1330
1330
  place-content: center;
1331
1331
  height: 100%;
@@ -1343,7 +1343,7 @@
1343
1343
  }
1344
1344
  }
1345
1345
  }
1346
- .input_file_styles_input-file-card {
1346
+ .input-file-card {
1347
1347
  display: grid;
1348
1348
  grid-template-columns: 35px 1fr 35px;
1349
1349
  gap: 1em;
@@ -1354,11 +1354,11 @@
1354
1354
  border-bottom: 1px dashed;
1355
1355
  }
1356
1356
  &:hover {
1357
- .input_file_styles_file-card--delete {
1357
+ .file-card--delete {
1358
1358
  color: var(--primary-500);
1359
1359
  }
1360
1360
  }
1361
- .input_file_styles_file-card--image {
1361
+ .file-card--image {
1362
1362
  background: var(--primary-500);
1363
1363
  color: var(--primary-50);
1364
1364
  width: 32px;
@@ -1368,12 +1368,12 @@
1368
1368
  place-content: center;
1369
1369
  border: 1px solid;
1370
1370
  }
1371
- .input_file_styles_file-card--data {
1371
+ .file-card--data {
1372
1372
  display: grid;
1373
1373
  font-size: 0.7em;
1374
1374
  justify-content: start;
1375
1375
  }
1376
- .input_file_styles_file-card--delete {
1376
+ .file-card--delete {
1377
1377
  border-radius: 5px;
1378
1378
  display: grid;
1379
1379
  place-content: center;
@@ -1389,7 +1389,7 @@
1389
1389
  }
1390
1390
 
1391
1391
  /* src/components/form/radio/radio.styles.css */
1392
- .radio_styles_radio {
1392
+ .radio {
1393
1393
  border-radius: 50%;
1394
1394
  background: var(--background-paper);
1395
1395
  transition: all 300ms ease;
@@ -1399,7 +1399,7 @@
1399
1399
  display: flex;
1400
1400
  position: relative;
1401
1401
  padding: 2px;
1402
- .radio_styles_radio-input {
1402
+ .radio-input {
1403
1403
  position: absolute;
1404
1404
  top: 0;
1405
1405
  left: 0;
@@ -1409,98 +1409,98 @@
1409
1409
  opacity: 0;
1410
1410
  z-index: 1;
1411
1411
  }
1412
- &.radio_styles_size-small {
1412
+ &.size-small {
1413
1413
  font-size: 1em;
1414
1414
  }
1415
- &.radio_styles_size-regular {
1415
+ &.size-regular {
1416
1416
  font-size: 1.2em;
1417
1417
  }
1418
- &.radio_styles_size-large {
1418
+ &.size-large {
1419
1419
  font-size: 1.4em;
1420
1420
  }
1421
1421
  }
1422
- .radio_styles_radio-fill {
1422
+ .radio-fill {
1423
1423
  transition: all 200ms ease-out;
1424
1424
  border-radius: inherit;
1425
1425
  margin: auto;
1426
1426
  width: 0;
1427
1427
  height: 0;
1428
1428
  }
1429
- .radio_styles_radio-container {
1429
+ .radio-container {
1430
1430
  --color: var(--neutral-800);
1431
1431
  display: flex;
1432
1432
  align-items: center;
1433
1433
  gap: 1em;
1434
1434
  width: fit-content;
1435
- .radio_styles_radio-label {
1435
+ .radio-label {
1436
1436
  cursor: pointer;
1437
1437
  user-select: none;
1438
1438
  }
1439
- .radio_styles_radio {
1439
+ .radio {
1440
1440
  color: var(--color);
1441
- &.radio_styles_is-checked {
1442
- .radio_styles_radio-fill {
1441
+ &.is-checked {
1442
+ .radio-fill {
1443
1443
  width: 100%;
1444
1444
  height: 100%;
1445
1445
  background: var(--color);
1446
1446
  }
1447
1447
  }
1448
1448
  }
1449
- .radio_styles_radio:hover,
1450
- &:has(.radio_styles_radio-label:hover) .radio_styles_radio {
1449
+ .radio:hover,
1450
+ &:has(.radio-label:hover) .radio {
1451
1451
  box-shadow: 0 0 0 0.4em hsl(from var(--color) h s l / 50%);
1452
- .radio_styles_radio-fill {
1452
+ .radio-fill {
1453
1453
  width: 20%;
1454
1454
  height: 20%;
1455
1455
  background: hsl(from var(--color) h s l / 50%);
1456
1456
  }
1457
- &:is(.radio_styles_is-checked) {
1458
- .radio_styles_radio-fill {
1457
+ &:is(.is-checked) {
1458
+ .radio-fill {
1459
1459
  width: 80%;
1460
1460
  height: 80%;
1461
1461
  background: var(--color);
1462
1462
  }
1463
1463
  }
1464
1464
  }
1465
- &.radio_styles_color-primary {
1465
+ &.color-primary {
1466
1466
  --color: var(--primary-500);
1467
1467
  }
1468
- &.radio_styles_color-secondary {
1468
+ &.color-secondary {
1469
1469
  --color: var(--secondary-500);
1470
1470
  }
1471
- &.radio_styles_color-tertiary {
1471
+ &.color-tertiary {
1472
1472
  --color: var(--tertiary-500);
1473
1473
  }
1474
- &.radio_styles_color-active {
1474
+ &.color-active {
1475
1475
  --color: var(--active-500);
1476
1476
  }
1477
- &.radio_styles_color-warning {
1477
+ &.color-warning {
1478
1478
  --color: var(--warning-500);
1479
1479
  }
1480
- &.radio_styles_color-alert {
1480
+ &.color-alert {
1481
1481
  --color: var(--alert-500);
1482
1482
  }
1483
- &.radio_styles_color-info {
1483
+ &.color-info {
1484
1484
  --color: var(--info-500);
1485
1485
  }
1486
1486
  }
1487
1487
 
1488
1488
  /* src/components/infinity-scroll/infinity-scroll.styles.css */
1489
- .infinity_scroll_styles_infinity-scroll {
1489
+ .infinity-scroll {
1490
1490
  display: grid;
1491
1491
  place-content: start center;
1492
1492
  place-items: start center;
1493
- .infinity_scroll_styles_loading {
1493
+ .loading {
1494
1494
  width: 100%;
1495
1495
  height: 30px;
1496
1496
  display: grid;
1497
1497
  place-content: center;
1498
- .infinity_scroll_styles_loading--icon {
1499
- animation: infinity_scroll_styles_spin 0.5s linear infinite;
1498
+ .loading--icon {
1499
+ animation: spin 0.5s linear infinite;
1500
1500
  font-size: 20px;
1501
1501
  }
1502
1502
  }
1503
- .infinity_scroll_styles_empty-message {
1503
+ .empty-message {
1504
1504
  font-size: 0.8em;
1505
1505
  text-align: center;
1506
1506
  color: #a6a6a6;
@@ -1508,9 +1508,9 @@
1508
1508
  }
1509
1509
 
1510
1510
  /* src/components/form/select/select.styles.css */
1511
- .select_styles_select {
1511
+ .select {
1512
1512
  cursor: pointer;
1513
- .select_styles_icon-close {
1513
+ .icon-close {
1514
1514
  display: grid;
1515
1515
  place-content: center;
1516
1516
  align-self: center;
@@ -1522,7 +1522,7 @@
1522
1522
  background: hsl(from var(--foreground) h s l / 33%);
1523
1523
  }
1524
1524
  }
1525
- .select_styles_select-container {
1525
+ .select-container {
1526
1526
  display: grid;
1527
1527
  grid-template-columns: 1fr auto;
1528
1528
  gap: 0.5em;
@@ -1531,11 +1531,11 @@
1531
1531
  position: relative;
1532
1532
  cursor: pointer;
1533
1533
  user-select: none;
1534
- &.select_styles_three-columns {
1534
+ &.three-columns {
1535
1535
  grid-template-columns: 1fr auto auto;
1536
1536
  }
1537
1537
  }
1538
- .select_styles_input-button {
1538
+ .input-button {
1539
1539
  appearance: none;
1540
1540
  -webkit-appearance: none;
1541
1541
  -moz-appearance: none;
@@ -1554,39 +1554,39 @@
1554
1554
  -webkit-tap-highlight-color: transparent;
1555
1555
  padding: 0;
1556
1556
  grid-template-columns: 1fr auto;
1557
- &.select_styles_placeholder {
1557
+ &.placeholder {
1558
1558
  color: #919191;
1559
1559
  }
1560
1560
  }
1561
- .select_styles_select-caret-icon {
1561
+ .select-caret-icon {
1562
1562
  transition: transform 200ms ease;
1563
- &.select_styles_is-select-open {
1563
+ &.is-select-open {
1564
1564
  transform: rotate(180deg);
1565
1565
  }
1566
1566
  }
1567
1567
  }
1568
- .select_styles_select-options-menu {
1569
- .select_styles_select-menu-content {
1568
+ .select-options-menu {
1569
+ .select-menu-content {
1570
1570
  gap: 0;
1571
1571
  display: block;
1572
1572
  height: auto;
1573
1573
  overflow: initial;
1574
1574
  }
1575
1575
  }
1576
- .select_styles_select-options {
1576
+ .select-options {
1577
1577
  gap: 0;
1578
1578
  display: grid;
1579
1579
  grid-template-rows: 1fr;
1580
1580
  height: 100%;
1581
1581
  overflow: auto;
1582
- &.select_styles_with-search-query {
1582
+ &.with-search-query {
1583
1583
  grid-template-rows: auto 1fr;
1584
1584
  }
1585
- .select_styles_select-options-list-container {
1585
+ .select-options-list-container {
1586
1586
  height: 100%;
1587
1587
  overflow: auto;
1588
1588
  }
1589
- .select_styles_select-options-list {
1589
+ .select-options-list {
1590
1590
  display: grid;
1591
1591
  gap: 0.2em;
1592
1592
  padding: 0;
@@ -1595,11 +1595,11 @@
1595
1595
  align-content: start;
1596
1596
  }
1597
1597
  }
1598
- .select_styles_select-options-header {
1598
+ .select-options-header {
1599
1599
  background: var(--background);
1600
1600
  padding: 2px 5px;
1601
1601
  border-bottom: 1px solid var(--border);
1602
- .select_styles_input-search {
1602
+ .input-search {
1603
1603
  outline: none;
1604
1604
  padding: 0.8em 5px;
1605
1605
  font-size: var(--typography-size-label);
@@ -1608,12 +1608,12 @@
1608
1608
  }
1609
1609
 
1610
1610
  /* src/components/form/slider/slider.styles.css */
1611
- .slider_styles_input-slider {
1611
+ .input-slider {
1612
1612
  display: grid;
1613
1613
  grid-template-columns: 1fr 50px;
1614
1614
  align-items: center;
1615
1615
  gap: 10px;
1616
- .slider_styles_slider {
1616
+ .slider {
1617
1617
  appearance: none;
1618
1618
  -webkit-appearance: none;
1619
1619
  -moz-appearance: none;
@@ -1659,12 +1659,12 @@
1659
1659
  }
1660
1660
  }
1661
1661
  }
1662
- &:has(.slider_styles_slider-number:focus) .slider_styles_slider::-webkit-slider-thumb,
1663
- &:has(.slider_styles_slider-number:hover) .slider_styles_slider::-webkit-slider-thumb {
1662
+ &:has(.slider-number:focus) .slider::-webkit-slider-thumb,
1663
+ &:has(.slider-number:hover) .slider::-webkit-slider-thumb {
1664
1664
  background: var(--primary-500);
1665
1665
  box-shadow: 0 0 0 6px hsl(from var(--primary-500) h s l / 31%);
1666
1666
  }
1667
- .slider_styles_slider-number {
1667
+ .slider-number {
1668
1668
  transition: all 300ms ease;
1669
1669
  border: 1px solid;
1670
1670
  border-radius: 5px;
@@ -1683,22 +1683,22 @@
1683
1683
  margin: 0;
1684
1684
  }
1685
1685
  }
1686
- &.slider_styles_is-focus {
1687
- .slider_styles_slider-number {
1686
+ &.is-focus {
1687
+ .slider-number {
1688
1688
  color: var(--primary-500);
1689
1689
  }
1690
1690
  }
1691
1691
  }
1692
1692
 
1693
1693
  /* src/components/form/textarea/textarea.styles.css */
1694
- .textarea_styles_textarea {
1694
+ .textarea {
1695
1695
  border: 0;
1696
1696
  outline: 0;
1697
1697
  field-sizing: content;
1698
1698
  }
1699
1699
 
1700
1700
  /* src/components/tooltips/tooltip/tooltip.styles.css */
1701
- .tooltip_styles_tooltip {
1701
+ .tooltip {
1702
1702
  color: var(--foreground);
1703
1703
  font-size: var(--typography-size-small);
1704
1704
  line-height: 1em;
@@ -1721,10 +1721,10 @@
1721
1721
  border-bottom: 1px solid var(--foreground);
1722
1722
  border-radius: 0 0 3px 0;
1723
1723
  }
1724
- &.tooltip_styles_left {
1725
- animation: tooltip_styles_fadeInRight 250ms ease-out;
1726
- &.tooltip_styles_close-animation {
1727
- animation: tooltip_styles_fadeOutLeft 250ms ease-out;
1724
+ &.left {
1725
+ animation: fadeInRight 250ms ease-out;
1726
+ &.close-animation {
1727
+ animation: fadeOutLeft 250ms ease-out;
1728
1728
  transform: translateX(-10px);
1729
1729
  opacity: 0;
1730
1730
  }
@@ -1734,10 +1734,10 @@
1734
1734
  transform: translate(-50%, -50%) rotate(-45deg);
1735
1735
  }
1736
1736
  }
1737
- &.tooltip_styles_right {
1738
- animation: tooltip_styles_fadeInLeft 250ms ease-out;
1739
- &.tooltip_styles_close-animation {
1740
- animation: tooltip_styles_fadeOutRight 250ms ease-out;
1737
+ &.right {
1738
+ animation: fadeInLeft 250ms ease-out;
1739
+ &.close-animation {
1740
+ animation: fadeOutRight 250ms ease-out;
1741
1741
  transform: translateX(10px);
1742
1742
  opacity: 0;
1743
1743
  }
@@ -1747,10 +1747,10 @@
1747
1747
  transform: translate(50%, -50%) rotate(135deg);
1748
1748
  }
1749
1749
  }
1750
- &.tooltip_styles_top {
1751
- animation: tooltip_styles_fadeInDown 250ms ease-out;
1752
- &.tooltip_styles_close-animation {
1753
- animation: tooltip_styles_fadeOutUp 250ms ease-out;
1750
+ &.top {
1751
+ animation: fadeInDown 250ms ease-out;
1752
+ &.close-animation {
1753
+ animation: fadeOutUp 250ms ease-out;
1754
1754
  transform: translateY(-10px);
1755
1755
  opacity: 0;
1756
1756
  }
@@ -1760,10 +1760,10 @@
1760
1760
  transform: translate(-50%, -50%) rotate(45deg);
1761
1761
  }
1762
1762
  }
1763
- &.tooltip_styles_bottom {
1764
- animation: tooltip_styles_fadeInUp 250ms ease-out;
1765
- &.tooltip_styles_close-animation {
1766
- animation: tooltip_styles_fadeOutDown 250ms ease-out;
1763
+ &.bottom {
1764
+ animation: fadeInUp 250ms ease-out;
1765
+ &.close-animation {
1766
+ animation: fadeOutDown 250ms ease-out;
1767
1767
  transform: translateY(10px);
1768
1768
  opacity: 0;
1769
1769
  }
@@ -1776,7 +1776,7 @@
1776
1776
  }
1777
1777
 
1778
1778
  /* src/components/form/switch/switch.styles.css */
1779
- .switch_styles_switch-container {
1779
+ .switch-container {
1780
1780
  --width: attr(data-width);
1781
1781
  --dot-size: attr(data-dot-size);
1782
1782
  --dot-hover-size: attr(data-dot-hover-size);
@@ -1788,14 +1788,14 @@
1788
1788
  align-items: center;
1789
1789
  gap: 0.5em;
1790
1790
  width: fit-content;
1791
- .switch_styles_switch {
1791
+ .switch {
1792
1792
  width: calc(var(--width) + var(--padding) * 2);
1793
1793
  border-radius: 100em;
1794
1794
  background: var(--background-paper);
1795
1795
  padding: var(--padding);
1796
1796
  transition: all 300ms ease;
1797
1797
  position: relative;
1798
- .switch_styles_switch-dot {
1798
+ .switch-dot {
1799
1799
  width: var(--dot-size);
1800
1800
  height: var(--dot-size);
1801
1801
  border-radius: 100em;
@@ -1806,12 +1806,12 @@
1806
1806
  position: relative;
1807
1807
  z-index: 1;
1808
1808
  }
1809
- .switch_styles_switch-icon {
1809
+ .switch-icon {
1810
1810
  cursor: pointer;
1811
1811
  display: block;
1812
1812
  }
1813
- .switch_styles_switch-internal-left-icon,
1814
- .switch_styles_switch-internal-right-icon {
1813
+ .switch-internal-left-icon,
1814
+ .switch-internal-right-icon {
1815
1815
  width: var(--dot-size);
1816
1816
  height: var(--dot-size);
1817
1817
  position: absolute;
@@ -1821,33 +1821,33 @@
1821
1821
  color: var(--color-contrast);
1822
1822
  transition: all 300ms ease;
1823
1823
  }
1824
- .switch_styles_switch-internal-left-icon {
1824
+ .switch-internal-left-icon {
1825
1825
  left: var(--padding);
1826
1826
  }
1827
- .switch_styles_switch-internal-right-icon {
1827
+ .switch-internal-right-icon {
1828
1828
  right: var(--padding);
1829
1829
  }
1830
- &.switch_styles_is-checked {
1830
+ &.is-checked {
1831
1831
  background: var(--color);
1832
- .switch_styles_switch-dot {
1832
+ .switch-dot {
1833
1833
  margin-left: calc(var(--width) - var(--dot-size));
1834
1834
  background: color-mix(in hsl, var(--color), var(--color-contrast) 75%);
1835
1835
  }
1836
1836
  }
1837
- &:not(.switch_styles_is-readonly):has(input:disabled) {
1837
+ &:not(.is-readonly):has(input:disabled) {
1838
1838
  background: var(--background-disabled);
1839
- .switch_styles_switch-dot {
1839
+ .switch-dot {
1840
1840
  background: var(--foreground-disabled);
1841
1841
  }
1842
- .switch_styles_switch-internal-left-icon,
1843
- .switch_styles_switch-internal-right-icon {
1842
+ .switch-internal-left-icon,
1843
+ .switch-internal-right-icon {
1844
1844
  color: var(--foreground-disabled);
1845
1845
  }
1846
- &.switch_styles_is-checked {
1846
+ &.is-checked {
1847
1847
  background: var(--color-dark);
1848
1848
  }
1849
1849
  }
1850
- .switch_styles_switch-checkbox {
1850
+ .switch-checkbox {
1851
1851
  position: absolute;
1852
1852
  top: 0;
1853
1853
  left: 0;
@@ -1858,57 +1858,57 @@
1858
1858
  z-index: 3;
1859
1859
  }
1860
1860
  }
1861
- .switch_styles_switch-label {
1861
+ .switch-label {
1862
1862
  cursor: pointer;
1863
1863
  user-select: none;
1864
1864
  padding: 0 0.5em;
1865
1865
  }
1866
- .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)):hover .switch_styles_switch-dot,
1867
- &:has(.switch_styles_switch-icon:hover) .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)) .switch_styles_switch-dot,
1868
- &:has(.switch_styles_switch-label:hover) .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)) .switch_styles_switch-dot {
1866
+ .switch:not(:has(.is-readonly, input:disabled)):hover .switch-dot,
1867
+ &:has(.switch-icon:hover) .switch:not(:has(.is-readonly, input:disabled)) .switch-dot,
1868
+ &:has(.switch-label:hover) .switch:not(:has(.is-readonly, input:disabled)) .switch-dot {
1869
1869
  box-shadow: 0 0 0 calc(0.3 * var(--dot-size)) color-mix(in hsl, var(--color) 50%, var(--color-contrast));
1870
1870
  }
1871
- .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)):active .switch_styles_switch-dot,
1872
- &:has(.switch_styles_switch-icon:active) .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)) .switch_styles_switch-dot,
1873
- &:has(.switch_styles_switch-label:active) .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)) .switch_styles_switch-dot {
1871
+ .switch:not(:has(.is-readonly, input:disabled)):active .switch-dot,
1872
+ &:has(.switch-icon:active) .switch:not(:has(.is-readonly, input:disabled)) .switch-dot,
1873
+ &:has(.switch-label:active) .switch:not(:has(.is-readonly, input:disabled)) .switch-dot {
1874
1874
  width: var(--dot-hover-size);
1875
1875
  }
1876
- .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)).switch_styles_is-checked:active .switch_styles_switch-dot,
1877
- &:has(.switch_styles_switch-icon:active) .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)).switch_styles_is-checked .switch_styles_switch-dot,
1878
- &:has(.switch_styles_switch-label:active) .switch_styles_switch:not(:has(.switch_styles_is-readonly, input:disabled)).switch_styles_is-checked .switch_styles_switch-dot {
1876
+ .switch:not(:has(.is-readonly, input:disabled)).is-checked:active .switch-dot,
1877
+ &:has(.switch-icon:active) .switch:not(:has(.is-readonly, input:disabled)).is-checked .switch-dot,
1878
+ &:has(.switch-label:active) .switch:not(:has(.is-readonly, input:disabled)).is-checked .switch-dot {
1879
1879
  margin-left: calc(var(--width) - var(--dot-hover-size));
1880
1880
  }
1881
- &.switch_styles_color-primary {
1881
+ &.color-primary {
1882
1882
  --color: var(--primary-500);
1883
1883
  --color-dark: var(--primary-700);
1884
1884
  --color-contrast: var(--primary-50);
1885
1885
  }
1886
- &.switch_styles_color-secondary {
1886
+ &.color-secondary {
1887
1887
  --color: var(--secondary-500);
1888
1888
  --color-dark: var(--secondary-700);
1889
1889
  --color-contrast: var(--secondary-50);
1890
1890
  }
1891
- &.switch_styles_color-tertiary {
1891
+ &.color-tertiary {
1892
1892
  --color: var(--tertiary-500);
1893
1893
  --color-dark: var(--tertiary-700);
1894
1894
  --color-contrast: var(--tertiary-50);
1895
1895
  }
1896
- &.switch_styles_color-active {
1896
+ &.color-active {
1897
1897
  --color: var(--active-500);
1898
1898
  --color-dark: var(--active-700);
1899
1899
  --color-contrast: var(--active-50);
1900
1900
  }
1901
- &.switch_styles_color-warning {
1901
+ &.color-warning {
1902
1902
  --color: var(--warning-500);
1903
1903
  --color-dark: var(--warning-700);
1904
1904
  --color-contrast: var(--warning-50);
1905
1905
  }
1906
- &.switch_styles_color-alert {
1906
+ &.color-alert {
1907
1907
  --color: var(--alert-500);
1908
1908
  --color-dark: var(--alert-700);
1909
1909
  --color-contrast: var(--alert-50);
1910
1910
  }
1911
- &.switch_styles_color-info {
1911
+ &.color-info {
1912
1912
  --color: var(--info-500);
1913
1913
  --color-dark: var(--info-700);
1914
1914
  --color-contrast: var(--info-50);
@@ -1916,7 +1916,7 @@
1916
1916
  }
1917
1917
 
1918
1918
  /* src/components/smart-table/smart-table.styles.css */
1919
- .smart_table_styles_smart-table-container {
1919
+ .smart-table-container {
1920
1920
  border: 0 solid var(--primary-500);
1921
1921
  border-radius: 5px;
1922
1922
  overflow: auto;
@@ -1924,14 +1924,14 @@
1924
1924
  width: 100%;
1925
1925
  margin: auto;
1926
1926
  }
1927
- .smart_table_styles_smart-table {
1927
+ .smart-table {
1928
1928
  border-collapse: collapse;
1929
1929
  position: relative;
1930
1930
  width: 100%;
1931
- &.smart_table_styles_layout-fixed {
1931
+ &.layout-fixed {
1932
1932
  table-layout: fixed;
1933
1933
  }
1934
- &.smart_table_styles_layout-scrollable {
1934
+ &.layout-scrollable {
1935
1935
  table-layout: auto;
1936
1936
  }
1937
1937
  thead {
@@ -1949,11 +1949,11 @@
1949
1949
  tr {
1950
1950
  box-shadow: inset 0 0 0 0 var(--primary-500);
1951
1951
  transition: box-shadow 300ms ease;
1952
- &.smart_table_styles_row-selected,
1952
+ &.row-selected,
1953
1953
  &:hover {
1954
1954
  background: var(--background-paper);
1955
1955
  }
1956
- &.smart_table_styles_row-selected {
1956
+ &.row-selected {
1957
1957
  box-shadow: inset 10px 0 0 -5px var(--primary-500);
1958
1958
  }
1959
1959
  &:not(:last-child) {
@@ -1964,15 +1964,15 @@
1964
1964
  th {
1965
1965
  padding: 0.8em 1.2em;
1966
1966
  user-select: none;
1967
- &.smart_table_styles_sort-on-click {
1967
+ &.sort-on-click {
1968
1968
  cursor: pointer;
1969
1969
  }
1970
- .smart_table_styles_sort-icon {
1970
+ .sort-icon {
1971
1971
  width: 1em;
1972
1972
  display: block;
1973
1973
  }
1974
1974
  svg {
1975
- animation: smart_table_styles_fadeIn 300ms ease;
1975
+ animation: fadeIn 300ms ease;
1976
1976
  }
1977
1977
  path {
1978
1978
  transition: all 300ms ease;
@@ -1997,12 +1997,12 @@
1997
1997
  }
1998
1998
 
1999
1999
  /* src/components/tabs/tabs.styles.css */
2000
- .tabs_styles_tab {
2000
+ .tab {
2001
2001
  cursor: pointer;
2002
2002
  user-select: none;
2003
2003
  transition: all 300ms ease;
2004
2004
  }
2005
- .tabs_styles_tab-list {
2005
+ .tab-list {
2006
2006
  --color: var(--neutral-900);
2007
2007
  --color-contrast: var(--neutral-50);
2008
2008
  --inner-radius: 0;
@@ -2014,123 +2014,123 @@
2014
2014
  position: relative;
2015
2015
  font-size: var(--typography-size-label);
2016
2016
  border-radius: var(--outer-radius);
2017
- .tabs_styles_tab,
2018
- .tabs_styles_tabs-selector {
2017
+ .tab,
2018
+ .tabs-selector {
2019
2019
  border-radius: var(--inner-radius);
2020
2020
  }
2021
- &.tabs_styles_size-small {
2021
+ &.size-small {
2022
2022
  font-size: var(--typography-size-small);
2023
2023
  }
2024
- &.tabs_styles_size-medium {
2024
+ &.size-medium {
2025
2025
  font-size: var(--typography-size-label);
2026
2026
  }
2027
- &.tabs_styles_size-large {
2027
+ &.size-large {
2028
2028
  font-size: var(--typography-size-body);
2029
2029
  }
2030
- .tabs_styles_tabs-selector {
2030
+ .tabs-selector {
2031
2031
  position: absolute;
2032
2032
  background: var(--color);
2033
2033
  color: var(--color-contrast);
2034
2034
  border-radius: 1.5em;
2035
- &.tabs_styles_active {
2035
+ &.active {
2036
2036
  transition: all 300ms ease;
2037
2037
  }
2038
2038
  }
2039
- .tabs_styles_tab {
2039
+ .tab {
2040
2040
  border-radius: 1.5em;
2041
2041
  padding: 0.5em 1em;
2042
2042
  z-index: 1;
2043
2043
  text-align: center;
2044
- &.tabs_styles_is-open {
2044
+ &.is-open {
2045
2045
  color: var(--color-contrast);
2046
2046
  }
2047
- &:not(.tabs_styles_is-open):hover {
2047
+ &:not(.is-open):hover {
2048
2048
  color: var(--neutral-900);
2049
2049
  }
2050
2050
  }
2051
- &.tabs_styles_radius-none {
2051
+ &.radius-none {
2052
2052
  --outer-radius: 0;
2053
2053
  --inner-radius: 0;
2054
2054
  }
2055
- &.tabs_styles_radius-small {
2055
+ &.radius-small {
2056
2056
  --outer-radius: 0.5em;
2057
2057
  --inner-radius: 0.5em;
2058
2058
  }
2059
- &.tabs_styles_radius-medium {
2059
+ &.radius-medium {
2060
2060
  --outer-radius: 1em;
2061
2061
  --inner-radius: 0.8em;
2062
2062
  }
2063
- &.tabs_styles_radius-large {
2063
+ &.radius-large {
2064
2064
  --outer-radius: 1.5em;
2065
2065
  --inner-radius: 1.3em;
2066
2066
  }
2067
- &.tabs_styles_radius-full {
2067
+ &.radius-full {
2068
2068
  --outer-radius: 1.8em;
2069
2069
  --inner-radius: 1.6em;
2070
2070
  }
2071
- &.tabs_styles_vertical-direction {
2071
+ &.vertical-direction {
2072
2072
  grid-auto-flow: row;
2073
2073
  align-items: unset;
2074
2074
  align-content: start;
2075
2075
  }
2076
- &.tabs_styles_variant-solid {
2076
+ &.variant-solid {
2077
2077
  background: var(--background-paper);
2078
2078
  color: var(--foreground);
2079
2079
  padding: 0.5em;
2080
2080
  }
2081
- &.tabs_styles_variant-ghost {
2081
+ &.variant-ghost {
2082
2082
  border: 1px solid var(--color);
2083
2083
  padding: 0.5em;
2084
2084
  }
2085
- &.tabs_styles_variant-flat {
2085
+ &.variant-flat {
2086
2086
  }
2087
- &.tabs_styles_variant-line {
2087
+ &.variant-line {
2088
2088
  border-radius: 0;
2089
- &:not(.tabs_styles_vertical-direction) {
2089
+ &:not(.vertical-direction) {
2090
2090
  border-bottom: 2px solid var(--border);
2091
2091
  }
2092
- .tabs_styles_tabs-selector {
2092
+ .tabs-selector {
2093
2093
  border-radius: 0;
2094
2094
  }
2095
- .tabs_styles_tab {
2095
+ .tab {
2096
2096
  border-radius: 0;
2097
- &.tabs_styles_is-open {
2097
+ &.is-open {
2098
2098
  color: var(--color);
2099
2099
  }
2100
2100
  }
2101
2101
  }
2102
- &.tabs_styles_color-primary {
2102
+ &.color-primary {
2103
2103
  --color: var(--primary-500);
2104
2104
  --color-contrast: var(--primary-50);
2105
2105
  }
2106
- &.tabs_styles_color-secondary {
2106
+ &.color-secondary {
2107
2107
  --color: var(--secondary-500);
2108
2108
  --color-contrast: var(--secondary-50);
2109
2109
  }
2110
- &.tabs_styles_color-tertiary {
2110
+ &.color-tertiary {
2111
2111
  --color: var(--tertiary-500);
2112
2112
  --color-contrast: var(--tertiary-50);
2113
2113
  }
2114
- &.tabs_styles_color-active {
2114
+ &.color-active {
2115
2115
  --color: var(--active-500);
2116
2116
  --color-contrast: var(--active-50);
2117
2117
  }
2118
- &.tabs_styles_color-warning {
2118
+ &.color-warning {
2119
2119
  --color: var(--warning-500);
2120
2120
  --color-contrast: var(--warning-50);
2121
2121
  }
2122
- &.tabs_styles_color-alert {
2122
+ &.color-alert {
2123
2123
  --color: var(--alert-500);
2124
2124
  --color-contrast: var(--alert-50);
2125
2125
  }
2126
- &.tabs_styles_color-info {
2126
+ &.color-info {
2127
2127
  --color: var(--info-500);
2128
2128
  --color-contrast: var(--info-50);
2129
2129
  }
2130
2130
  }
2131
2131
 
2132
2132
  /* src/components/tag/tag.styles.css */
2133
- .tag_styles_tag {
2133
+ .tag {
2134
2134
  --background: attr(data-background, var(--primary-500));
2135
2135
  --text: attr(data-text, var(--primary-50));
2136
2136
  --background-selected: attr(data-background-selected, var(--primary-700));
@@ -2144,28 +2144,28 @@
2144
2144
  display: inline-block;
2145
2145
  font-size: var(--typography-size-label);
2146
2146
  user-select: none;
2147
- &.tag_styles_no-wrap {
2147
+ &.no-wrap {
2148
2148
  white-space: nowrap;
2149
2149
  overflow: hidden;
2150
2150
  text-overflow: ellipsis;
2151
2151
  }
2152
- &.tag_styles_rounded-none {
2152
+ &.rounded-none {
2153
2153
  border-radius: 0;
2154
2154
  }
2155
- &.tag_styles_rounded-small {
2155
+ &.rounded-small {
2156
2156
  border-radius: 0.25em;
2157
2157
  }
2158
- &.tag_styles_rounded-medium {
2158
+ &.rounded-medium {
2159
2159
  border-radius: 0.5em;
2160
2160
  }
2161
- &.tag_styles_rounded-large {
2161
+ &.rounded-large {
2162
2162
  border-radius: 1em;
2163
2163
  }
2164
- &.tag_styles_rounded-full {
2164
+ &.rounded-full {
2165
2165
  border-radius: 100rem;
2166
2166
  }
2167
2167
  &:hover,
2168
- &.tag_styles_is-selected {
2168
+ &.is-selected {
2169
2169
  background: var(--background-selected);
2170
2170
  color: var(--text-selected);
2171
2171
  }