@rabelo-digital/ds-rd 1.1.1 → 1.1.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.
package/dist/index.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /* src/components/atoms/Button/Button.module.css */
2
- .button {
2
+ .Button_button {
3
3
  display: inline-flex;
4
4
  align-items: center;
5
5
  justify-content: center;
@@ -19,116 +19,116 @@
19
19
  white-space: nowrap;
20
20
  user-select: none;
21
21
  }
22
- .button:focus-visible {
22
+ .Button_button:focus-visible {
23
23
  outline: 2px solid var(--ds-color-border-focus);
24
24
  outline-offset: 2px;
25
25
  }
26
- .sm {
26
+ .Button_sm {
27
27
  padding: var(--ds-space-1) var(--ds-space-3);
28
28
  font-size: var(--ds-font-size-sm);
29
29
  min-height: 32px;
30
30
  }
31
- .md {
31
+ .Button_md {
32
32
  padding: var(--ds-space-2) var(--ds-space-4);
33
33
  font-size: var(--ds-font-size-md);
34
34
  min-height: 40px;
35
35
  }
36
- .lg {
36
+ .Button_lg {
37
37
  padding: var(--ds-space-3) var(--ds-space-6);
38
38
  font-size: var(--ds-font-size-lg);
39
39
  min-height: 48px;
40
40
  }
41
- .primary {
41
+ .Button_primary {
42
42
  background: var(--ds-color-primary);
43
43
  color: var(--ds-color-on-primary);
44
44
  border-color: var(--ds-color-primary);
45
45
  }
46
- .primary:hover:not(:disabled):not([aria-disabled=true]) {
46
+ .Button_primary:hover:not(:disabled):not([aria-disabled=true]) {
47
47
  background: var(--ds-color-primary-hover);
48
48
  border-color: var(--ds-color-primary-hover);
49
49
  }
50
- .primary:active:not(:disabled) {
50
+ .Button_primary:active:not(:disabled) {
51
51
  background: var(--ds-color-primary-active);
52
52
  border-color: var(--ds-color-primary-active);
53
53
  }
54
- .secondary {
54
+ .Button_secondary {
55
55
  background: var(--ds-color-secondary);
56
56
  color: var(--ds-color-on-secondary);
57
57
  border-color: var(--ds-color-secondary);
58
58
  }
59
- .secondary:hover:not(:disabled):not([aria-disabled=true]) {
59
+ .Button_secondary:hover:not(:disabled):not([aria-disabled=true]) {
60
60
  background: var(--ds-color-secondary-hover);
61
61
  border-color: var(--ds-color-secondary-hover);
62
62
  }
63
- .ghost {
63
+ .Button_ghost {
64
64
  background: transparent;
65
65
  color: var(--ds-color-primary);
66
66
  border-color: var(--ds-color-border);
67
67
  }
68
- .ghost:hover:not(:disabled):not([aria-disabled=true]) {
68
+ .Button_ghost:hover:not(:disabled):not([aria-disabled=true]) {
69
69
  background: var(--ds-color-primary-subtle);
70
70
  border-color: var(--ds-color-primary);
71
71
  }
72
- .danger {
72
+ .Button_danger {
73
73
  background: var(--ds-color-error);
74
74
  color: var(--ds-color-on-error);
75
75
  border-color: var(--ds-color-error);
76
76
  }
77
- .danger:hover:not(:disabled):not([aria-disabled=true]) {
77
+ .Button_danger:hover:not(:disabled):not([aria-disabled=true]) {
78
78
  background: var(--ds-color-error-hover);
79
79
  border-color: var(--ds-color-error-hover);
80
80
  }
81
- .button:disabled,
82
- .button[aria-disabled=true] {
81
+ .Button_button:disabled,
82
+ .Button_button[aria-disabled=true] {
83
83
  background: var(--ds-color-disabled-bg);
84
84
  color: var(--ds-color-disabled-text);
85
85
  border-color: var(--ds-color-disabled-border);
86
86
  cursor: not-allowed;
87
87
  pointer-events: none;
88
88
  }
89
- .loading {
89
+ .Button_loading {
90
90
  position: relative;
91
91
  cursor: wait;
92
92
  pointer-events: none;
93
93
  }
94
- .label {
94
+ .Button_label {
95
95
  display: inline-flex;
96
96
  align-items: center;
97
97
  gap: var(--ds-space-2);
98
98
  }
99
- .labelHidden {
99
+ .Button_labelHidden {
100
100
  visibility: hidden;
101
101
  }
102
- .spinner {
102
+ .Button_spinner {
103
103
  position: absolute;
104
104
  width: 1em;
105
105
  height: 1em;
106
106
  border: 2px solid currentColor;
107
107
  border-top-color: transparent;
108
108
  border-radius: var(--ds-radius-full);
109
- animation: spin 0.6s linear infinite;
109
+ animation: Button_spin 0.6s linear infinite;
110
110
  }
111
- @keyframes spin {
111
+ @keyframes Button_spin {
112
112
  to {
113
113
  transform: rotate(360deg);
114
114
  }
115
115
  }
116
116
 
117
117
  /* src/components/atoms/Input/Input.module.css */
118
- .wrapper {
118
+ .Input_wrapper {
119
119
  display: flex;
120
120
  flex-direction: column;
121
121
  gap: var(--ds-space-1);
122
122
  width: 100%;
123
123
  }
124
- .label {
124
+ .Input_label {
125
125
  font-family: var(--ds-font-family-base);
126
126
  font-size: var(--ds-font-size-sm);
127
127
  font-weight: var(--ds-font-weight-medium);
128
128
  color: var(--ds-color-text);
129
129
  line-height: var(--ds-line-height-normal);
130
130
  }
131
- .input {
131
+ .Input_input {
132
132
  width: 100%;
133
133
  font-family: var(--ds-font-family-base);
134
134
  font-size: var(--ds-font-size-md);
@@ -140,68 +140,68 @@
140
140
  outline: none;
141
141
  box-sizing: border-box;
142
142
  }
143
- .input::placeholder {
143
+ .Input_input::placeholder {
144
144
  color: var(--ds-color-text-subtle);
145
145
  }
146
- .input:hover:not(:disabled) {
146
+ .Input_input:hover:not(:disabled) {
147
147
  border-color: var(--ds-color-border-strong);
148
148
  }
149
- .input:focus {
149
+ .Input_input:focus {
150
150
  border-color: var(--ds-color-border-focus);
151
151
  box-shadow: 0 0 0 3px var(--ds-color-primary-muted);
152
152
  }
153
- .input:disabled {
153
+ .Input_input:disabled {
154
154
  background: var(--ds-color-disabled-bg);
155
155
  color: var(--ds-color-disabled-text);
156
156
  border-color: var(--ds-color-disabled-border);
157
157
  cursor: not-allowed;
158
158
  }
159
- .input.error {
159
+ .Input_input.Input_error {
160
160
  border-color: var(--ds-color-border-error);
161
161
  }
162
- .input.error:focus {
162
+ .Input_input.Input_error:focus {
163
163
  box-shadow: 0 0 0 3px var(--ds-color-error-muted);
164
164
  }
165
- .sm {
165
+ .Input_sm {
166
166
  padding: var(--ds-space-1) var(--ds-space-2);
167
167
  font-size: var(--ds-font-size-sm);
168
168
  min-height: 32px;
169
169
  }
170
- .md {
170
+ .Input_md {
171
171
  padding: var(--ds-space-2) var(--ds-space-3);
172
172
  font-size: var(--ds-font-size-md);
173
173
  min-height: 40px;
174
174
  }
175
- .lg {
175
+ .Input_lg {
176
176
  padding: var(--ds-space-3) var(--ds-space-4);
177
177
  font-size: var(--ds-font-size-lg);
178
178
  min-height: 48px;
179
179
  }
180
- .helperText {
180
+ .Input_helperText {
181
181
  font-size: var(--ds-font-size-xs);
182
182
  color: var(--ds-color-text-muted);
183
183
  line-height: var(--ds-line-height-normal);
184
184
  }
185
- .errorText {
185
+ .Input_errorText {
186
186
  font-size: var(--ds-font-size-xs);
187
187
  color: var(--ds-color-error);
188
188
  line-height: var(--ds-line-height-normal);
189
189
  }
190
190
 
191
191
  /* src/components/atoms/Textarea/Textarea.module.css */
192
- .wrapper {
192
+ .Textarea_wrapper {
193
193
  display: flex;
194
194
  flex-direction: column;
195
195
  gap: var(--ds-space-1);
196
196
  width: 100%;
197
197
  }
198
- .label {
198
+ .Textarea_label {
199
199
  font-family: var(--ds-font-family-base);
200
200
  font-size: var(--ds-font-size-sm);
201
201
  font-weight: var(--ds-font-weight-medium);
202
202
  color: var(--ds-color-text);
203
203
  }
204
- .textarea {
204
+ .Textarea_textarea {
205
205
  width: 100%;
206
206
  min-height: 100px;
207
207
  padding: var(--ds-space-2) var(--ds-space-3);
@@ -216,42 +216,42 @@
216
216
  transition: border-color var(--ds-motion-duration-fast) var(--ds-motion-easing-out), box-shadow var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
217
217
  box-sizing: border-box;
218
218
  }
219
- .textarea:focus {
219
+ .Textarea_textarea:focus {
220
220
  border-color: var(--ds-color-border-focus);
221
221
  box-shadow: 0 0 0 3px var(--ds-color-primary-muted);
222
222
  }
223
- .textarea:disabled {
223
+ .Textarea_textarea:disabled {
224
224
  background: var(--ds-color-disabled-bg);
225
225
  color: var(--ds-color-disabled-text);
226
226
  cursor: not-allowed;
227
227
  }
228
- .textarea.error {
228
+ .Textarea_textarea.Textarea_error {
229
229
  border-color: var(--ds-color-border-error);
230
230
  }
231
- .textarea.error:focus {
231
+ .Textarea_textarea.Textarea_error:focus {
232
232
  box-shadow: 0 0 0 3px var(--ds-color-error-muted);
233
233
  }
234
- .footer {
234
+ .Textarea_footer {
235
235
  display: flex;
236
236
  justify-content: space-between;
237
237
  align-items: flex-start;
238
238
  }
239
- .helperText {
239
+ .Textarea_helperText {
240
240
  font-size: var(--ds-font-size-xs);
241
241
  color: var(--ds-color-text-muted);
242
242
  }
243
- .errorText {
243
+ .Textarea_errorText {
244
244
  font-size: var(--ds-font-size-xs);
245
245
  color: var(--ds-color-error);
246
246
  }
247
- .counter {
247
+ .Textarea_counter {
248
248
  font-size: var(--ds-font-size-xs);
249
249
  color: var(--ds-color-text-muted);
250
250
  margin-left: auto;
251
251
  }
252
252
 
253
253
  /* src/components/atoms/Badge/Badge.module.css */
254
- .badge {
254
+ .Badge_badge {
255
255
  display: inline-flex;
256
256
  align-items: center;
257
257
  font-family: var(--ds-font-family-base);
@@ -259,41 +259,41 @@
259
259
  border-radius: var(--ds-radius-full);
260
260
  white-space: nowrap;
261
261
  }
262
- .sm {
262
+ .Badge_sm {
263
263
  padding: 2px var(--ds-space-2);
264
264
  font-size: var(--ds-font-size-xs);
265
265
  }
266
- .md {
266
+ .Badge_md {
267
267
  padding: var(--ds-space-1) var(--ds-space-2);
268
268
  font-size: var(--ds-font-size-sm);
269
269
  }
270
- .default {
270
+ .Badge_default {
271
271
  background: var(--ds-color-bg-muted);
272
272
  color: var(--ds-color-text);
273
273
  }
274
- .primary {
274
+ .Badge_primary {
275
275
  background: var(--ds-color-primary-muted);
276
276
  color: var(--ds-color-primary);
277
277
  }
278
- .success {
278
+ .Badge_success {
279
279
  background: var(--ds-color-success-muted);
280
280
  color: var(--ds-color-success);
281
281
  }
282
- .warning {
282
+ .Badge_warning {
283
283
  background: var(--ds-color-warning-muted);
284
284
  color: var(--ds-color-warning-hover);
285
285
  }
286
- .error {
286
+ .Badge_error {
287
287
  background: var(--ds-color-error-muted);
288
288
  color: var(--ds-color-error);
289
289
  }
290
- .info {
290
+ .Badge_info {
291
291
  background: var(--ds-color-info-muted);
292
292
  color: var(--ds-color-info);
293
293
  }
294
294
 
295
295
  /* src/components/atoms/Avatar/Avatar.module.css */
296
- .avatar {
296
+ .Avatar_avatar {
297
297
  display: inline-flex;
298
298
  align-items: center;
299
299
  justify-content: center;
@@ -304,53 +304,53 @@
304
304
  overflow: hidden;
305
305
  flex-shrink: 0;
306
306
  }
307
- .circle {
307
+ .Avatar_circle {
308
308
  border-radius: var(--ds-radius-full);
309
309
  }
310
- .square {
310
+ .Avatar_square {
311
311
  border-radius: var(--ds-radius-lg);
312
312
  }
313
- .xs {
313
+ .Avatar_xs {
314
314
  width: 24px;
315
315
  height: 24px;
316
316
  font-size: var(--ds-font-size-xs);
317
317
  }
318
- .sm {
318
+ .Avatar_sm {
319
319
  width: 32px;
320
320
  height: 32px;
321
321
  font-size: var(--ds-font-size-xs);
322
322
  }
323
- .md {
323
+ .Avatar_md {
324
324
  width: 40px;
325
325
  height: 40px;
326
326
  font-size: var(--ds-font-size-sm);
327
327
  }
328
- .lg {
328
+ .Avatar_lg {
329
329
  width: 56px;
330
330
  height: 56px;
331
331
  font-size: var(--ds-font-size-md);
332
332
  }
333
- .xl {
333
+ .Avatar_xl {
334
334
  width: 80px;
335
335
  height: 80px;
336
336
  font-size: var(--ds-font-size-xl);
337
337
  }
338
- .image {
338
+ .Avatar_image {
339
339
  width: 100%;
340
340
  height: 100%;
341
341
  object-fit: cover;
342
342
  }
343
- .initials {
343
+ .Avatar_initials {
344
344
  line-height: 1;
345
345
  }
346
346
 
347
347
  /* src/components/atoms/Checkbox/Checkbox.module.css */
348
- .wrapper {
348
+ .Checkbox_wrapper {
349
349
  display: flex;
350
350
  align-items: center;
351
351
  gap: var(--ds-space-2);
352
352
  }
353
- .root {
353
+ .Checkbox_root {
354
354
  width: 18px;
355
355
  height: 18px;
356
356
  border: 2px solid var(--ds-color-border-strong);
@@ -364,28 +364,28 @@
364
364
  transition: border-color var(--ds-motion-duration-fast) var(--ds-motion-easing-out), background var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
365
365
  outline: none;
366
366
  }
367
- .root[data-state=checked],
368
- .root[data-state=indeterminate] {
367
+ .Checkbox_root[data-state=checked],
368
+ .Checkbox_root[data-state=indeterminate] {
369
369
  background: var(--ds-color-primary);
370
370
  border-color: var(--ds-color-primary);
371
371
  color: var(--ds-color-on-primary);
372
372
  }
373
- .root:focus-visible {
373
+ .Checkbox_root:focus-visible {
374
374
  outline: 2px solid var(--ds-color-border-focus);
375
375
  outline-offset: 2px;
376
376
  }
377
- .root:disabled {
377
+ .Checkbox_root:disabled {
378
378
  background: var(--ds-color-disabled-bg);
379
379
  border-color: var(--ds-color-disabled-border);
380
380
  cursor: not-allowed;
381
381
  }
382
- .indicator {
382
+ .Checkbox_indicator {
383
383
  display: flex;
384
384
  align-items: center;
385
385
  justify-content: center;
386
386
  color: currentColor;
387
387
  }
388
- .label {
388
+ .Checkbox_label {
389
389
  font-size: var(--ds-font-size-sm);
390
390
  color: var(--ds-color-text);
391
391
  cursor: pointer;
@@ -393,24 +393,24 @@
393
393
  }
394
394
 
395
395
  /* src/components/atoms/Radio/Radio.module.css */
396
- .group {
396
+ .Radio_group {
397
397
  display: flex;
398
398
  }
399
- .vertical {
399
+ .Radio_vertical {
400
400
  flex-direction: column;
401
401
  gap: var(--ds-space-2);
402
402
  }
403
- .horizontal {
403
+ .Radio_horizontal {
404
404
  flex-direction: row;
405
405
  flex-wrap: wrap;
406
406
  gap: var(--ds-space-4);
407
407
  }
408
- .item {
408
+ .Radio_item {
409
409
  display: flex;
410
410
  align-items: center;
411
411
  gap: var(--ds-space-2);
412
412
  }
413
- .radio {
413
+ .Radio_radio {
414
414
  width: 18px;
415
415
  height: 18px;
416
416
  border-radius: var(--ds-radius-full);
@@ -424,43 +424,43 @@
424
424
  outline: none;
425
425
  transition: border-color var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
426
426
  }
427
- .radio[data-state=checked] {
427
+ .Radio_radio[data-state=checked] {
428
428
  border-color: var(--ds-color-primary);
429
429
  }
430
- .radio:focus-visible {
430
+ .Radio_radio:focus-visible {
431
431
  outline: 2px solid var(--ds-color-border-focus);
432
432
  outline-offset: 2px;
433
433
  }
434
- .radio:disabled {
434
+ .Radio_radio:disabled {
435
435
  background: var(--ds-color-disabled-bg);
436
436
  border-color: var(--ds-color-disabled-border);
437
437
  cursor: not-allowed;
438
438
  }
439
- .indicator {
439
+ .Radio_indicator {
440
440
  width: 8px;
441
441
  height: 8px;
442
442
  border-radius: var(--ds-radius-full);
443
443
  background: var(--ds-color-primary);
444
444
  }
445
- .label {
445
+ .Radio_label {
446
446
  font-size: var(--ds-font-size-sm);
447
447
  color: var(--ds-color-text);
448
448
  cursor: pointer;
449
449
  }
450
450
 
451
451
  /* src/components/atoms/Select/Select.module.css */
452
- .wrapper {
452
+ .Select_wrapper {
453
453
  display: flex;
454
454
  flex-direction: column;
455
455
  gap: var(--ds-space-1);
456
456
  width: 100%;
457
457
  }
458
- .label {
458
+ .Select_label {
459
459
  font-size: var(--ds-font-size-sm);
460
460
  font-weight: var(--ds-font-weight-medium);
461
461
  color: var(--ds-color-text);
462
462
  }
463
- .trigger {
463
+ .Select_trigger {
464
464
  display: flex;
465
465
  align-items: center;
466
466
  justify-content: space-between;
@@ -475,41 +475,41 @@
475
475
  outline: none;
476
476
  transition: border-color var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
477
477
  }
478
- .trigger:hover:not(:disabled) {
478
+ .Select_trigger:hover:not(:disabled) {
479
479
  border-color: var(--ds-color-border-strong);
480
480
  }
481
- .trigger:focus {
481
+ .Select_trigger:focus {
482
482
  border-color: var(--ds-color-border-focus);
483
483
  box-shadow: 0 0 0 3px var(--ds-color-primary-muted);
484
484
  }
485
- .trigger[data-disabled] {
485
+ .Select_trigger[data-disabled] {
486
486
  background: var(--ds-color-disabled-bg);
487
487
  color: var(--ds-color-disabled-text);
488
488
  cursor: not-allowed;
489
489
  }
490
- .trigger.error {
490
+ .Select_trigger.Select_error {
491
491
  border-color: var(--ds-color-border-error);
492
492
  }
493
- .sm {
493
+ .Select_sm {
494
494
  padding: var(--ds-space-1) var(--ds-space-2);
495
495
  font-size: var(--ds-font-size-sm);
496
496
  min-height: 32px;
497
497
  }
498
- .md {
498
+ .Select_md {
499
499
  padding: var(--ds-space-2) var(--ds-space-3);
500
500
  font-size: var(--ds-font-size-md);
501
501
  min-height: 40px;
502
502
  }
503
- .lg {
503
+ .Select_lg {
504
504
  padding: var(--ds-space-3) var(--ds-space-4);
505
505
  font-size: var(--ds-font-size-lg);
506
506
  min-height: 48px;
507
507
  }
508
- .icon {
508
+ .Select_icon {
509
509
  color: var(--ds-color-text-muted);
510
510
  flex-shrink: 0;
511
511
  }
512
- .content {
512
+ .Select_content {
513
513
  background: var(--ds-color-surface);
514
514
  border: 1px solid var(--ds-color-border);
515
515
  border-radius: var(--ds-radius-lg);
@@ -519,10 +519,10 @@
519
519
  max-height: var(--radix-select-content-available-height);
520
520
  overflow: hidden;
521
521
  }
522
- .viewport {
522
+ .Select_viewport {
523
523
  padding: var(--ds-space-1);
524
524
  }
525
- .item {
525
+ .Select_item {
526
526
  display: flex;
527
527
  align-items: center;
528
528
  justify-content: space-between;
@@ -536,28 +536,28 @@
536
536
  transition: background var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
537
537
  user-select: none;
538
538
  }
539
- .item[data-highlighted] {
539
+ .Select_item[data-highlighted] {
540
540
  background: var(--ds-color-primary-subtle);
541
541
  color: var(--ds-color-primary);
542
542
  }
543
- .item[data-disabled] {
543
+ .Select_item[data-disabled] {
544
544
  color: var(--ds-color-disabled-text);
545
545
  cursor: not-allowed;
546
546
  }
547
- .itemIndicator {
547
+ .Select_itemIndicator {
548
548
  color: var(--ds-color-primary);
549
549
  }
550
- .errorText {
550
+ .Select_errorText {
551
551
  font-size: var(--ds-font-size-xs);
552
552
  color: var(--ds-color-error);
553
553
  }
554
- .helperText {
554
+ .Select_helperText {
555
555
  font-size: var(--ds-font-size-xs);
556
556
  color: var(--ds-color-text-muted);
557
557
  }
558
558
 
559
559
  /* src/components/atoms/Tooltip/Tooltip.module.css */
560
- .content {
560
+ .Tooltip_content {
561
561
  background: var(--ds-color-text);
562
562
  color: var(--ds-color-text-inverse);
563
563
  font-family: var(--ds-font-family-base);
@@ -568,12 +568,12 @@
568
568
  box-shadow: var(--ds-elevation-md);
569
569
  z-index: var(--ds-z-tooltip);
570
570
  max-width: 250px;
571
- animation: fadeIn var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
571
+ animation: Tooltip_fadeIn var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
572
572
  }
573
- .arrow {
573
+ .Tooltip_arrow {
574
574
  fill: var(--ds-color-text);
575
575
  }
576
- @keyframes fadeIn {
576
+ @keyframes Tooltip_fadeIn {
577
577
  from {
578
578
  opacity: 0;
579
579
  transform: scale(0.96);
@@ -585,7 +585,7 @@
585
585
  }
586
586
 
587
587
  /* src/components/atoms/SocialIcons/SocialIcons.module.css */
588
- .list {
588
+ .SocialIcons_list {
589
589
  display: flex;
590
590
  gap: var(--ds-space-2);
591
591
  list-style: none;
@@ -593,7 +593,7 @@
593
593
  padding: 0;
594
594
  flex-wrap: wrap;
595
595
  }
596
- .link {
596
+ .SocialIcons_link {
597
597
  display: inline-flex;
598
598
  align-items: center;
599
599
  justify-content: center;
@@ -603,48 +603,49 @@
603
603
  transition: color var(--ds-motion-duration-fast) var(--ds-motion-easing-out), background var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
604
604
  text-decoration: none;
605
605
  }
606
- .link:hover {
606
+ .SocialIcons_link:hover {
607
607
  color: var(--ds-color-primary);
608
608
  background: var(--ds-color-primary-subtle);
609
609
  }
610
- .link:focus-visible {
610
+ .SocialIcons_link:focus-visible {
611
611
  outline: 2px solid var(--ds-color-border-focus);
612
612
  outline-offset: 2px;
613
613
  }
614
- .sm {
614
+ .SocialIcons_sm {
615
615
  width: 32px;
616
616
  height: 32px;
617
617
  font-size: 14px;
618
618
  }
619
- .md {
619
+ .SocialIcons_md {
620
620
  width: 40px;
621
621
  height: 40px;
622
622
  font-size: 16px;
623
623
  }
624
- .lg {
624
+ .SocialIcons_lg {
625
625
  width: 48px;
626
626
  height: 48px;
627
627
  font-size: 20px;
628
628
  }
629
629
 
630
630
  /* src/components/molecules/Card/Card.module.css */
631
- .card {
631
+ .Card_card {
632
632
  background: var(--ds-color-surface);
633
633
  border: 1px solid var(--ds-color-border);
634
- overflow: hidden;
634
+ min-width: 0;
635
635
  }
636
- .header {
636
+ .Card_header {
637
637
  padding: var(--ds-space-4) var(--ds-space-6);
638
638
  border-bottom: 1px solid var(--ds-color-border-muted);
639
639
  font-weight: var(--ds-font-weight-semibold);
640
640
  font-size: var(--ds-font-size-lg);
641
641
  color: var(--ds-color-text);
642
642
  }
643
- .body {
643
+ .Card_body {
644
644
  padding: var(--ds-space-6);
645
645
  color: var(--ds-color-text);
646
+ min-width: 0;
646
647
  }
647
- .footer {
648
+ .Card_footer {
648
649
  padding: var(--ds-space-4) var(--ds-space-6);
649
650
  border-top: 1px solid var(--ds-color-border-muted);
650
651
  background: var(--ds-color-bg-subtle);
@@ -654,14 +655,14 @@
654
655
  }
655
656
 
656
657
  /* src/components/molecules/Modal/Modal.module.css */
657
- .overlay {
658
+ .Modal_overlay {
658
659
  position: fixed;
659
660
  inset: 0;
660
661
  background: var(--ds-color-bg-overlay);
661
662
  z-index: var(--ds-z-overlay);
662
- animation: overlayIn var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
663
+ animation: Modal_overlayIn var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
663
664
  }
664
- .content {
665
+ .Modal_content {
665
666
  position: fixed;
666
667
  top: 50%;
667
668
  left: 50%;
@@ -674,28 +675,28 @@
674
675
  overflow-y: auto;
675
676
  display: flex;
676
677
  flex-direction: column;
677
- animation: contentIn var(--ds-motion-duration-normal) var(--ds-motion-easing-spring);
678
+ animation: Modal_contentIn var(--ds-motion-duration-normal) var(--ds-motion-easing-spring);
678
679
  }
679
- .sm {
680
+ .Modal_sm {
680
681
  width: min(400px, 90vw);
681
682
  }
682
- .md {
683
+ .Modal_md {
683
684
  width: min(560px, 90vw);
684
685
  }
685
- .lg {
686
+ .Modal_lg {
686
687
  width: min(720px, 90vw);
687
688
  }
688
- .xl {
689
+ .Modal_xl {
689
690
  width: min(900px, 90vw);
690
691
  }
691
- .full {
692
+ .Modal_full {
692
693
  width: calc(100vw - 32px);
693
694
  height: calc(100vh - 32px);
694
695
  top: 16px;
695
696
  left: 16px;
696
697
  transform: none;
697
698
  }
698
- .header {
699
+ .Modal_header {
699
700
  display: flex;
700
701
  align-items: center;
701
702
  justify-content: space-between;
@@ -703,23 +704,23 @@
703
704
  padding: var(--ds-space-4) var(--ds-space-6);
704
705
  border-bottom: 1px solid var(--ds-color-border-muted);
705
706
  }
706
- .title {
707
+ .Modal_title {
707
708
  font-family: var(--ds-font-family-heading);
708
709
  font-size: var(--ds-font-size-xl);
709
710
  font-weight: var(--ds-font-weight-semibold);
710
711
  color: var(--ds-color-text);
711
712
  margin: 0;
712
713
  }
713
- .description {
714
+ .Modal_description {
714
715
  padding: var(--ds-space-2) var(--ds-space-6) 0;
715
716
  font-size: var(--ds-font-size-sm);
716
717
  color: var(--ds-color-text-muted);
717
718
  }
718
- .body {
719
+ .Modal_body {
719
720
  padding: var(--ds-space-6);
720
721
  flex: 1;
721
722
  }
722
- .close {
723
+ .Modal_close {
723
724
  display: flex;
724
725
  align-items: center;
725
726
  justify-content: center;
@@ -733,15 +734,15 @@
733
734
  transition: background var(--ds-motion-duration-fast) var(--ds-motion-easing-out), color var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
734
735
  flex-shrink: 0;
735
736
  }
736
- .close:hover {
737
+ .Modal_close:hover {
737
738
  background: var(--ds-color-bg-subtle);
738
739
  color: var(--ds-color-text);
739
740
  }
740
- .close:focus-visible {
741
+ .Modal_close:focus-visible {
741
742
  outline: 2px solid var(--ds-color-border-focus);
742
743
  outline-offset: 2px;
743
744
  }
744
- @keyframes overlayIn {
745
+ @keyframes Modal_overlayIn {
745
746
  from {
746
747
  opacity: 0;
747
748
  }
@@ -749,7 +750,7 @@
749
750
  opacity: 1;
750
751
  }
751
752
  }
752
- @keyframes contentIn {
753
+ @keyframes Modal_contentIn {
753
754
  from {
754
755
  opacity: 0;
755
756
  transform: translate(-50%, -48%) scale(0.96);
@@ -761,14 +762,14 @@
761
762
  }
762
763
 
763
764
  /* src/components/molecules/Drawer/Drawer.module.css */
764
- .overlay {
765
+ .Drawer_overlay {
765
766
  position: fixed;
766
767
  inset: 0;
767
768
  background: var(--ds-color-bg-overlay);
768
769
  z-index: var(--ds-z-overlay);
769
- animation: fadeIn var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
770
+ animation: Drawer_fadeIn var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
770
771
  }
771
- .content {
772
+ .Drawer_content {
772
773
  position: fixed;
773
774
  background: var(--ds-color-surface);
774
775
  box-shadow: var(--ds-elevation-xl);
@@ -777,52 +778,52 @@
777
778
  flex-direction: column;
778
779
  overflow-y: auto;
779
780
  }
780
- .right {
781
+ .Drawer_right {
781
782
  top: 0;
782
783
  right: 0;
783
784
  bottom: 0;
784
785
  width: min(480px, 90vw);
785
- animation: slideInRight var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
786
+ animation: Drawer_slideInRight var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
786
787
  }
787
- .left {
788
+ .Drawer_left {
788
789
  top: 0;
789
790
  left: 0;
790
791
  bottom: 0;
791
792
  width: min(480px, 90vw);
792
- animation: slideInLeft var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
793
+ animation: Drawer_slideInLeft var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
793
794
  }
794
- .top {
795
+ .Drawer_top {
795
796
  top: 0;
796
797
  left: 0;
797
798
  right: 0;
798
799
  height: min(360px, 60vh);
799
- animation: slideInTop var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
800
+ animation: Drawer_slideInTop var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
800
801
  }
801
- .bottom {
802
+ .Drawer_bottom {
802
803
  bottom: 0;
803
804
  left: 0;
804
805
  right: 0;
805
806
  height: min(360px, 60vh);
806
- animation: slideInBottom var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
807
+ animation: Drawer_slideInBottom var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
807
808
  }
808
- .header {
809
+ .Drawer_header {
809
810
  display: flex;
810
811
  align-items: center;
811
812
  justify-content: space-between;
812
813
  padding: var(--ds-space-4) var(--ds-space-6);
813
814
  border-bottom: 1px solid var(--ds-color-border-muted);
814
815
  }
815
- .title {
816
+ .Drawer_title {
816
817
  font-size: var(--ds-font-size-xl);
817
818
  font-weight: var(--ds-font-weight-semibold);
818
819
  color: var(--ds-color-text);
819
820
  margin: 0;
820
821
  }
821
- .body {
822
+ .Drawer_body {
822
823
  padding: var(--ds-space-6);
823
824
  flex: 1;
824
825
  }
825
- .close {
826
+ .Drawer_close {
826
827
  display: flex;
827
828
  align-items: center;
828
829
  justify-content: center;
@@ -834,15 +835,15 @@
834
835
  color: var(--ds-color-text-muted);
835
836
  cursor: pointer;
836
837
  }
837
- .close:hover {
838
+ .Drawer_close:hover {
838
839
  background: var(--ds-color-bg-subtle);
839
840
  color: var(--ds-color-text);
840
841
  }
841
- .close:focus-visible {
842
+ .Drawer_close:focus-visible {
842
843
  outline: 2px solid var(--ds-color-border-focus);
843
844
  outline-offset: 2px;
844
845
  }
845
- @keyframes fadeIn {
846
+ @keyframes Drawer_fadeIn {
846
847
  from {
847
848
  opacity: 0;
848
849
  }
@@ -850,7 +851,7 @@
850
851
  opacity: 1;
851
852
  }
852
853
  }
853
- @keyframes slideInRight {
854
+ @keyframes Drawer_slideInRight {
854
855
  from {
855
856
  transform: translateX(100%);
856
857
  }
@@ -858,7 +859,7 @@
858
859
  transform: translateX(0);
859
860
  }
860
861
  }
861
- @keyframes slideInLeft {
862
+ @keyframes Drawer_slideInLeft {
862
863
  from {
863
864
  transform: translateX(-100%);
864
865
  }
@@ -866,7 +867,7 @@
866
867
  transform: translateX(0);
867
868
  }
868
869
  }
869
- @keyframes slideInTop {
870
+ @keyframes Drawer_slideInTop {
870
871
  from {
871
872
  transform: translateY(-100%);
872
873
  }
@@ -874,7 +875,7 @@
874
875
  transform: translateY(0);
875
876
  }
876
877
  }
877
- @keyframes slideInBottom {
878
+ @keyframes Drawer_slideInBottom {
878
879
  from {
879
880
  transform: translateY(100%);
880
881
  }
@@ -884,16 +885,16 @@
884
885
  }
885
886
 
886
887
  /* src/components/molecules/Tabs/Tabs.module.css */
887
- .root {
888
+ .Tabs_root {
888
889
  display: flex;
889
890
  flex-direction: column;
890
891
  }
891
- .list {
892
+ .Tabs_list {
892
893
  display: flex;
893
894
  border-bottom: 2px solid var(--ds-color-border);
894
895
  gap: 0;
895
896
  }
896
- .trigger {
897
+ .Tabs_trigger {
897
898
  padding: var(--ds-space-2) var(--ds-space-4);
898
899
  font-family: var(--ds-font-family-base);
899
900
  font-size: var(--ds-font-size-sm);
@@ -907,42 +908,42 @@
907
908
  transition: color var(--ds-motion-duration-fast) var(--ds-motion-easing-out), border-color var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
908
909
  outline: none;
909
910
  }
910
- .trigger:hover:not([disabled]) {
911
+ .Tabs_trigger:hover:not([disabled]) {
911
912
  color: var(--ds-color-text);
912
913
  }
913
- .trigger[data-state=active] {
914
+ .Tabs_trigger[data-state=active] {
914
915
  color: var(--ds-color-primary);
915
916
  border-bottom-color: var(--ds-color-primary);
916
917
  }
917
- .trigger[disabled] {
918
+ .Tabs_trigger[disabled] {
918
919
  color: var(--ds-color-disabled-text);
919
920
  cursor: not-allowed;
920
921
  }
921
- .trigger:focus-visible {
922
+ .Tabs_trigger:focus-visible {
922
923
  outline: 2px solid var(--ds-color-border-focus);
923
924
  outline-offset: 2px;
924
925
  border-radius: var(--ds-radius-sm);
925
926
  }
926
- .content {
927
+ .Tabs_content {
927
928
  padding: var(--ds-space-6) 0;
928
929
  }
929
930
 
930
931
  /* src/components/molecules/Accordion/Accordion.module.css */
931
- .root {
932
+ .Accordion_root {
932
933
  border: 1px solid var(--ds-color-border);
933
934
  border-radius: var(--ds-radius-lg);
934
935
  overflow: hidden;
935
936
  }
936
- .item {
937
+ .Accordion_item {
937
938
  border-bottom: 1px solid var(--ds-color-border);
938
939
  }
939
- .item:last-child {
940
+ .Accordion_item:last-child {
940
941
  border-bottom: none;
941
942
  }
942
- .item[data-disabled] {
943
+ .Accordion_item[data-disabled] {
943
944
  opacity: 0.5;
944
945
  }
945
- .trigger {
946
+ .Accordion_trigger {
946
947
  display: flex;
947
948
  align-items: center;
948
949
  justify-content: space-between;
@@ -960,35 +961,35 @@
960
961
  transition: background var(--ds-motion-duration-fast) var(--ds-motion-easing-out);
961
962
  outline: none;
962
963
  }
963
- .trigger:hover {
964
+ .Accordion_trigger:hover {
964
965
  background: var(--ds-color-bg-subtle);
965
966
  }
966
- .trigger:focus-visible {
967
+ .Accordion_trigger:focus-visible {
967
968
  outline: 2px solid var(--ds-color-border-focus);
968
969
  outline-offset: -2px;
969
970
  }
970
- .chevron {
971
+ .Accordion_chevron {
971
972
  flex-shrink: 0;
972
973
  transition: transform var(--ds-motion-duration-normal) var(--ds-motion-easing-in-out);
973
974
  }
974
- .trigger[data-state=open] .chevron {
975
+ .Accordion_trigger[data-state=open] .Accordion_chevron {
975
976
  transform: rotate(180deg);
976
977
  }
977
- .content {
978
+ .Accordion_content {
978
979
  overflow: hidden;
979
980
  }
980
- .content[data-state=open] {
981
- animation: slideDown var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
981
+ .Accordion_content[data-state=open] {
982
+ animation: Accordion_slideDown var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
982
983
  }
983
- .content[data-state=closed] {
984
- animation: slideUp var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
984
+ .Accordion_content[data-state=closed] {
985
+ animation: Accordion_slideUp var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
985
986
  }
986
- .contentInner {
987
+ .Accordion_contentInner {
987
988
  padding: 0 var(--ds-space-6) var(--ds-space-4);
988
989
  color: var(--ds-color-text-muted);
989
990
  font-size: var(--ds-font-size-md);
990
991
  }
991
- @keyframes slideDown {
992
+ @keyframes Accordion_slideDown {
992
993
  from {
993
994
  height: 0;
994
995
  }
@@ -996,7 +997,7 @@
996
997
  height: var(--radix-accordion-content-height);
997
998
  }
998
999
  }
999
- @keyframes slideUp {
1000
+ @keyframes Accordion_slideUp {
1000
1001
  from {
1001
1002
  height: var(--radix-accordion-content-height);
1002
1003
  }
@@ -1006,7 +1007,7 @@
1006
1007
  }
1007
1008
 
1008
1009
  /* src/components/molecules/Toast/Toast.module.css */
1009
- .viewport {
1010
+ .Toast_viewport {
1010
1011
  position: fixed;
1011
1012
  bottom: var(--ds-space-6);
1012
1013
  right: var(--ds-space-6);
@@ -1021,53 +1022,53 @@
1021
1022
  margin: 0;
1022
1023
  outline: none;
1023
1024
  }
1024
- .root {
1025
+ .Toast_root {
1025
1026
  background: var(--ds-color-surface);
1026
1027
  border-radius: var(--ds-radius-lg);
1027
1028
  box-shadow: var(--ds-elevation-lg);
1028
1029
  border-left: 4px solid;
1029
- animation: slideIn var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
1030
+ animation: Toast_slideIn var(--ds-motion-duration-normal) var(--ds-motion-easing-out);
1030
1031
  }
1031
- .root[data-state=closed] {
1032
- animation: slideOut var(--ds-motion-duration-normal) var(--ds-motion-easing-in);
1032
+ .Toast_root[data-state=closed] {
1033
+ animation: Toast_slideOut var(--ds-motion-duration-normal) var(--ds-motion-easing-in);
1033
1034
  }
1034
- .default {
1035
+ .Toast_default {
1035
1036
  border-color: var(--ds-color-border-strong);
1036
1037
  }
1037
- .success {
1038
+ .Toast_success {
1038
1039
  border-color: var(--ds-color-success);
1039
1040
  }
1040
- .warning {
1041
+ .Toast_warning {
1041
1042
  border-color: var(--ds-color-warning);
1042
1043
  }
1043
- .error {
1044
+ .Toast_error {
1044
1045
  border-color: var(--ds-color-error);
1045
1046
  }
1046
- .info {
1047
+ .Toast_info {
1047
1048
  border-color: var(--ds-color-info);
1048
1049
  }
1049
- .content {
1050
+ .Toast_content {
1050
1051
  display: flex;
1051
1052
  align-items: flex-start;
1052
1053
  gap: var(--ds-space-3);
1053
1054
  padding: var(--ds-space-4);
1054
1055
  }
1055
- .text {
1056
+ .Toast_text {
1056
1057
  flex: 1;
1057
1058
  min-width: 0;
1058
1059
  }
1059
- .title {
1060
+ .Toast_title {
1060
1061
  font-size: var(--ds-font-size-sm);
1061
1062
  font-weight: var(--ds-font-weight-semibold);
1062
1063
  color: var(--ds-color-text);
1063
1064
  margin: 0;
1064
1065
  }
1065
- .description {
1066
+ .Toast_description {
1066
1067
  font-size: var(--ds-font-size-xs);
1067
1068
  color: var(--ds-color-text-muted);
1068
1069
  margin-top: var(--ds-space-1);
1069
1070
  }
1070
- .close {
1071
+ .Toast_close {
1071
1072
  display: flex;
1072
1073
  align-items: center;
1073
1074
  justify-content: center;
@@ -1081,14 +1082,14 @@
1081
1082
  flex-shrink: 0;
1082
1083
  padding: 0;
1083
1084
  }
1084
- .close:hover {
1085
+ .Toast_close:hover {
1085
1086
  background: var(--ds-color-bg-subtle);
1086
1087
  }
1087
- .close:focus-visible {
1088
+ .Toast_close:focus-visible {
1088
1089
  outline: 2px solid var(--ds-color-border-focus);
1089
1090
  outline-offset: 2px;
1090
1091
  }
1091
- @keyframes slideIn {
1092
+ @keyframes Toast_slideIn {
1092
1093
  from {
1093
1094
  transform: translateX(calc(100% + var(--ds-space-6)));
1094
1095
  opacity: 0;
@@ -1098,7 +1099,7 @@
1098
1099
  opacity: 1;
1099
1100
  }
1100
1101
  }
1101
- @keyframes slideOut {
1102
+ @keyframes Toast_slideOut {
1102
1103
  from {
1103
1104
  transform: translateX(0);
1104
1105
  opacity: 1;
@@ -1110,33 +1111,33 @@
1110
1111
  }
1111
1112
 
1112
1113
  /* src/components/molecules/Table/Table.module.css */
1113
- .wrapper {
1114
+ .Table_wrapper {
1114
1115
  width: 100%;
1115
1116
  overflow-x: auto;
1116
1117
  border: 1px solid var(--ds-color-border);
1117
1118
  border-radius: var(--ds-radius-lg);
1118
1119
  }
1119
- .table {
1120
+ .Table_table {
1120
1121
  width: 100%;
1121
1122
  border-collapse: collapse;
1122
1123
  font-family: var(--ds-font-family-base);
1123
1124
  font-size: var(--ds-font-size-sm);
1124
1125
  }
1125
- .caption {
1126
+ .Table_caption {
1126
1127
  padding: var(--ds-space-3) var(--ds-space-4);
1127
1128
  text-align: left;
1128
1129
  font-size: var(--ds-font-size-sm);
1129
1130
  color: var(--ds-color-text-muted);
1130
1131
  }
1131
- .head {
1132
+ .Table_head {
1132
1133
  background: var(--ds-color-bg-subtle);
1133
1134
  }
1134
- .stickyHeader .head {
1135
+ .Table_stickyHeader .Table_head {
1135
1136
  position: sticky;
1136
1137
  top: 0;
1137
1138
  z-index: var(--ds-z-raised);
1138
1139
  }
1139
- .th {
1140
+ .Table_th {
1140
1141
  padding: var(--ds-space-3) var(--ds-space-4);
1141
1142
  text-align: left;
1142
1143
  font-weight: var(--ds-font-weight-semibold);
@@ -1144,16 +1145,16 @@
1144
1145
  border-bottom: 2px solid var(--ds-color-border);
1145
1146
  white-space: nowrap;
1146
1147
  }
1147
- .td {
1148
+ .Table_td {
1148
1149
  padding: var(--ds-space-3) var(--ds-space-4);
1149
1150
  color: var(--ds-color-text);
1150
1151
  border-bottom: 1px solid var(--ds-color-border-muted);
1151
1152
  vertical-align: middle;
1152
1153
  }
1153
- .row:last-child .td {
1154
+ .Table_row:last-child .Table_td {
1154
1155
  border-bottom: none;
1155
1156
  }
1156
- .body .row:hover {
1157
+ .Table_body .Table_row:hover {
1157
1158
  background: var(--ds-color-bg-subtle);
1158
1159
  }
1159
- /*# sourceMappingURL=index.css.map */
1160
+ /*# sourceMappingURL=index.css.map */