@mond-design-system/react 1.0.0-alpha.3 → 1.0.0-alpha.4

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,103 +1,103 @@
1
- /* src/components/Text/Text.module.css */
2
- .Text_text {
1
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Text/Text.module.css?mds-scoped */
2
+ .mds-Text__text {
3
3
  margin: 0;
4
4
  }
5
- .Text_variant-body {
5
+ .mds-Text__variant-body {
6
6
  font: var(--mds-type-body);
7
7
  }
8
- .Text_variant-label {
8
+ .mds-Text__variant-label {
9
9
  font: var(--mds-type-label);
10
10
  }
11
- .Text_variant-note {
11
+ .mds-Text__variant-note {
12
12
  font: var(--mds-type-note);
13
13
  }
14
- .Text_variant-meta {
14
+ .mds-Text__variant-meta {
15
15
  font: var(--mds-type-meta);
16
16
  }
17
- .Text_variant-eyebrow {
17
+ .mds-Text__variant-eyebrow {
18
18
  font: var(--mds-type-eyebrow);
19
19
  letter-spacing: var(--mds-tracking-eyebrow);
20
20
  text-transform: uppercase;
21
21
  }
22
- .Text_tone-primary {
22
+ .mds-Text__tone-primary {
23
23
  color: var(--mds-text-primary);
24
24
  }
25
- .Text_tone-secondary {
25
+ .mds-Text__tone-secondary {
26
26
  color: var(--mds-text-secondary);
27
27
  }
28
- .Text_tone-muted {
28
+ .mds-Text__tone-muted {
29
29
  color: var(--mds-text-muted);
30
30
  }
31
- .Text_tone-inverse {
31
+ .mds-Text__tone-inverse {
32
32
  color: var(--mds-text-inverse);
33
33
  }
34
- .Text_tone-accent {
34
+ .mds-Text__tone-accent {
35
35
  color: var(--mds-text-accent);
36
36
  }
37
- .Text_tone-on-media {
37
+ .mds-Text__tone-on-media {
38
38
  color: var(--mds-text-on-media);
39
39
  }
40
- .Text_tone-danger {
40
+ .mds-Text__tone-danger {
41
41
  color: var(--mds-status-danger);
42
42
  }
43
- .Text_tone-warning {
43
+ .mds-Text__tone-warning {
44
44
  color: var(--mds-status-warning);
45
45
  }
46
- .Text_tone-success {
46
+ .mds-Text__tone-success {
47
47
  color: var(--mds-status-success);
48
48
  }
49
- .Text_align-left {
49
+ .mds-Text__align-left {
50
50
  text-align: left;
51
51
  }
52
- .Text_align-center {
52
+ .mds-Text__align-center {
53
53
  text-align: center;
54
54
  }
55
- .Text_align-right {
55
+ .mds-Text__align-right {
56
56
  text-align: right;
57
57
  }
58
- .Text_truncate {
58
+ .mds-Text__truncate {
59
59
  overflow: hidden;
60
60
  white-space: nowrap;
61
61
  text-overflow: ellipsis;
62
62
  }
63
63
 
64
- /* src/components/Heading/Heading.module.css */
65
- .Heading_heading {
64
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Heading/Heading.module.css?mds-scoped */
65
+ .mds-Heading__heading {
66
66
  margin: 0;
67
67
  }
68
- .Heading_variant-display {
68
+ .mds-Heading__variant-display {
69
69
  font: var(--mds-type-display);
70
70
  letter-spacing: var(--mds-tracking-display);
71
71
  }
72
- .Heading_variant-title {
72
+ .mds-Heading__variant-title {
73
73
  font: var(--mds-type-title);
74
74
  }
75
- .Heading_variant-subtitle {
75
+ .mds-Heading__variant-subtitle {
76
76
  font: var(--mds-type-subtitle);
77
77
  }
78
- .Heading_tone-primary {
78
+ .mds-Heading__tone-primary {
79
79
  color: var(--mds-text-primary);
80
80
  }
81
- .Heading_tone-secondary {
81
+ .mds-Heading__tone-secondary {
82
82
  color: var(--mds-text-secondary);
83
83
  }
84
- .Heading_tone-inverse {
84
+ .mds-Heading__tone-inverse {
85
85
  color: var(--mds-text-inverse);
86
86
  }
87
- .Heading_tone-accent {
87
+ .mds-Heading__tone-accent {
88
88
  color: var(--mds-text-accent);
89
89
  }
90
- .Heading_tone-on-media {
90
+ .mds-Heading__tone-on-media {
91
91
  color: var(--mds-text-on-media);
92
92
  }
93
93
 
94
- /* src/components/Spinner/Spinner.module.css */
95
- @keyframes Spinner_spin {
94
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Spinner/Spinner.module.css?mds-scoped */
95
+ @keyframes mds-Spinner__spin {
96
96
  to {
97
97
  transform: rotate(360deg);
98
98
  }
99
99
  }
100
- .Spinner_spinner {
100
+ .mds-Spinner__spinner {
101
101
  display: inline-block;
102
102
  flex: none;
103
103
  width: var(--spinner-size);
@@ -105,32 +105,32 @@
105
105
  border: var(--spinner-border) solid var(--mds-border-strong);
106
106
  border-top-color: currentcolor;
107
107
  border-radius: var(--mds-radius-pill);
108
- animation: Spinner_spin 0.7s linear infinite;
108
+ animation: mds-Spinner__spin 0.7s linear infinite;
109
109
  }
110
110
 
111
- /* src/components/Icon/Icon.module.css */
112
- .Icon_icon {
111
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Icon/Icon.module.css?mds-scoped */
112
+ .mds-Icon__icon {
113
113
  display: inline-flex;
114
114
  align-items: center;
115
115
  justify-content: center;
116
116
  flex: none;
117
117
  color: inherit;
118
118
  }
119
- .Icon_size-sm {
119
+ .mds-Icon__size-sm {
120
120
  width: var(--mds-icon-sm);
121
121
  height: var(--mds-icon-sm);
122
122
  }
123
- .Icon_size-md {
123
+ .mds-Icon__size-md {
124
124
  width: var(--mds-icon-md);
125
125
  height: var(--mds-icon-md);
126
126
  }
127
- .Icon_size-lg {
127
+ .mds-Icon__size-lg {
128
128
  width: var(--mds-icon-lg);
129
129
  height: var(--mds-icon-lg);
130
130
  }
131
131
 
132
- /* src/components/Button/Button.module.css */
133
- .Button_button {
132
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Button/Button.module.css?mds-scoped */
133
+ .mds-Button__button {
134
134
  display: inline-flex;
135
135
  align-items: center;
136
136
  justify-content: center;
@@ -145,126 +145,140 @@
145
145
  text-decoration: none;
146
146
  transition: background-color var(--mds-transition-control), color var(--mds-transition-control);
147
147
  }
148
- .Button_size-sm {
148
+ .mds-Button__size-sm {
149
149
  height: var(--mds-control-h-sm);
150
150
  padding: 0 var(--mds-space-3);
151
151
  font-size: var(--mds-text-sm);
152
152
  }
153
- .Button_size-md {
153
+ .mds-Button__size-md {
154
154
  height: var(--mds-control-h-md);
155
155
  padding: 0 var(--mds-space-4);
156
156
  font-size: var(--mds-text-base);
157
157
  }
158
- .Button_size-lg {
158
+ .mds-Button__size-lg {
159
159
  height: var(--mds-control-h-lg);
160
160
  padding: 0 var(--mds-space-5);
161
161
  font-size: var(--mds-text-lg);
162
162
  }
163
- .Button_variant-primary {
163
+ .mds-Button__variant-primary {
164
164
  background: var(--mds-action-bg);
165
165
  color: var(--mds-action-fg);
166
166
  }
167
- .Button_variant-primary:hover:not(:disabled) {
167
+ .mds-Button__variant-primary:hover:not(:disabled) {
168
168
  background: var(--mds-action-bg-hover);
169
169
  }
170
- .Button_variant-primary:active:not(:disabled) {
170
+ .mds-Button__variant-primary:active:not(:disabled) {
171
171
  background: var(--mds-action-bg-active);
172
172
  }
173
- .Button_variant-secondary {
173
+ .mds-Button__variant-secondary {
174
174
  background: transparent;
175
175
  color: var(--mds-text-primary);
176
176
  border-color: var(--mds-control-border);
177
177
  }
178
- .Button_variant-ghost {
178
+ .mds-Button__variant-ghost {
179
179
  background: transparent;
180
180
  color: var(--mds-text-primary);
181
181
  }
182
- .Button_variant-secondary:hover:not(:disabled),
183
- .Button_variant-ghost:hover:not(:disabled) {
182
+ .mds-Button__variant-secondary:hover:not(:disabled),
183
+ .mds-Button__variant-ghost:hover:not(:disabled) {
184
184
  background: var(--mds-surface-sunken);
185
185
  }
186
- .Button_variant-highlight {
186
+ .mds-Button__variant-highlight {
187
187
  background: var(--mds-highlight);
188
188
  color: var(--mds-highlight-contrast);
189
189
  }
190
- .Button_variant-highlight:hover:not(:disabled) {
190
+ .mds-Button__variant-highlight:hover:not(:disabled) {
191
191
  background: var(--mds-highlight-hover);
192
192
  }
193
- .Button_variant-danger {
193
+ .mds-Button__variant-danger {
194
194
  background: var(--mds-status-danger);
195
195
  color: var(--mds-status-danger-contrast);
196
196
  }
197
- .Button_variant-danger:hover:not(:disabled) {
197
+ .mds-Button__variant-danger:hover:not(:disabled) {
198
198
  filter: brightness(0.94);
199
199
  }
200
- .Button_button:disabled {
200
+ .mds-Button__variant-warning {
201
+ background: var(--mds-status-warning);
202
+ color: var(--mds-status-warning-contrast);
203
+ }
204
+ .mds-Button__variant-warning:hover:not(:disabled) {
205
+ filter: brightness(0.94);
206
+ }
207
+ .mds-Button__button:disabled {
201
208
  background: var(--mds-action-disabled-bg);
202
209
  color: var(--mds-action-disabled-fg);
203
210
  border-color: transparent;
204
211
  cursor: not-allowed;
205
212
  }
206
- .Button_fullWidth {
213
+ .mds-Button__fullWidth {
207
214
  width: 100%;
208
215
  }
209
- .Button_icon-only {
216
+ .mds-Button__icon-only {
210
217
  padding: 0;
211
218
  border-radius: var(--mds-radius-pill);
212
219
  }
213
- .Button_icon-only.Button_size-sm {
220
+ .mds-Button__icon-only.mds-Button__size-sm {
214
221
  width: var(--mds-control-h-sm);
215
222
  }
216
- .Button_icon-only.Button_size-md {
223
+ .mds-Button__icon-only.mds-Button__size-md {
217
224
  width: var(--mds-control-h-md);
218
225
  }
219
- .Button_icon-only.Button_size-lg {
226
+ .mds-Button__icon-only.mds-Button__size-lg {
220
227
  width: var(--mds-control-h-lg);
221
228
  }
222
229
 
223
- /* src/components/Link/Link.module.css */
224
- .Link_link {
230
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Link/Link.module.css?mds-scoped */
231
+ .mds-Link__link {
225
232
  color: var(--mds-text-accent);
226
233
  border-radius: var(--mds-radius-1);
227
234
  transition: color var(--mds-transition-control);
228
235
  }
229
- .Link_variant-inline {
236
+ button.mds-Link__link {
237
+ border: none;
238
+ background: none;
239
+ padding: 0;
240
+ font: inherit;
241
+ cursor: pointer;
242
+ }
243
+ .mds-Link__variant-inline {
230
244
  text-decoration: underline;
231
245
  text-underline-offset: 0.15em;
232
246
  }
233
- .Link_variant-standalone {
247
+ .mds-Link__variant-standalone {
234
248
  text-decoration: none;
235
249
  font-weight: var(--mds-weight-medium);
236
250
  }
237
- .Link_link:hover {
251
+ .mds-Link__link:hover {
238
252
  color: var(--mds-accent-hover);
239
253
  }
240
- .Link_variant-plain {
254
+ .mds-Link__variant-plain {
241
255
  color: inherit;
242
256
  font-weight: inherit;
243
257
  text-decoration: none;
244
258
  }
245
- .Link_variant-plain:hover {
259
+ .mds-Link__variant-plain:hover {
246
260
  color: inherit;
247
261
  text-decoration: underline;
248
262
  text-underline-offset: 0.15em;
249
263
  }
250
- .Link_size-xs {
264
+ .mds-Link__size-xs {
251
265
  font-size: var(--mds-text-xs);
252
266
  }
253
- .Link_size-sm {
267
+ .mds-Link__size-sm {
254
268
  font-size: var(--mds-text-sm);
255
269
  }
256
- .Link_size-base {
270
+ .mds-Link__size-base {
257
271
  font-size: var(--mds-text-base);
258
272
  }
259
- .Link_size-lg {
273
+ .mds-Link__size-lg {
260
274
  font-size: var(--mds-text-lg);
261
275
  }
262
- .Link_size-xl {
276
+ .mds-Link__size-xl {
263
277
  font-size: var(--mds-text-xl);
264
278
  }
265
279
 
266
- /* src/components/Avatar/Avatar.module.css */
267
- .Avatar_avatar {
280
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Avatar/Avatar.module.css?mds-scoped */
281
+ .mds-Avatar__avatar {
268
282
  display: inline-flex;
269
283
  align-items: center;
270
284
  justify-content: center;
@@ -277,74 +291,74 @@
277
291
  font-weight: var(--mds-weight-semibold);
278
292
  user-select: none;
279
293
  }
280
- .Avatar_size-xs {
294
+ .mds-Avatar__size-xs {
281
295
  width: var(--mds-avatar-xs);
282
296
  height: var(--mds-avatar-xs);
283
297
  font-size: var(--mds-text-xs);
284
298
  }
285
- .Avatar_size-sm {
299
+ .mds-Avatar__size-sm {
286
300
  width: var(--mds-avatar-sm);
287
301
  height: var(--mds-avatar-sm);
288
302
  font-size: var(--mds-text-xs);
289
303
  }
290
- .Avatar_size-md {
304
+ .mds-Avatar__size-md {
291
305
  width: var(--mds-avatar-md);
292
306
  height: var(--mds-avatar-md);
293
307
  font-size: var(--mds-text-sm);
294
308
  }
295
- .Avatar_size-lg {
309
+ .mds-Avatar__size-lg {
296
310
  width: var(--mds-avatar-lg);
297
311
  height: var(--mds-avatar-lg);
298
312
  font-size: var(--mds-text-xl);
299
313
  }
300
- .Avatar_size-xl {
314
+ .mds-Avatar__size-xl {
301
315
  width: var(--mds-avatar-xl);
302
316
  height: var(--mds-avatar-xl);
303
317
  font-size: var(--mds-text-2xl);
304
318
  }
305
- .Avatar_tone-1 {
319
+ .mds-Avatar__tone-1 {
306
320
  background: var(--mds-avatar-tone-1);
307
321
  color: var(--mds-text-primary);
308
322
  }
309
- .Avatar_tone-2 {
323
+ .mds-Avatar__tone-2 {
310
324
  background: var(--mds-avatar-tone-2);
311
325
  color: var(--mds-text-primary);
312
326
  }
313
- .Avatar_tone-3 {
327
+ .mds-Avatar__tone-3 {
314
328
  background: var(--mds-avatar-tone-3);
315
329
  color: var(--mds-text-primary);
316
330
  }
317
- .Avatar_tone-4 {
331
+ .mds-Avatar__tone-4 {
318
332
  background: var(--mds-avatar-tone-4);
319
333
  color: var(--mds-text-primary);
320
334
  }
321
- .Avatar_tone-5 {
335
+ .mds-Avatar__tone-5 {
322
336
  background: var(--mds-avatar-tone-5);
323
337
  color: var(--mds-text-primary);
324
338
  }
325
- .Avatar_image {
339
+ .mds-Avatar__image {
326
340
  width: 100%;
327
341
  height: 100%;
328
342
  object-fit: cover;
329
343
  }
330
- .Avatar_initials {
344
+ .mds-Avatar__initials {
331
345
  line-height: 1;
332
346
  }
333
347
 
334
- /* src/components/AvatarGroup/AvatarGroup.module.css */
335
- .AvatarGroup_group {
348
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/AvatarGroup/AvatarGroup.module.css?mds-scoped */
349
+ .mds-AvatarGroup__group {
336
350
  display: inline-flex;
337
351
  align-items: center;
338
352
  }
339
- .AvatarGroup_item {
353
+ .mds-AvatarGroup__item {
340
354
  display: inline-flex;
341
355
  border-radius: var(--mds-radius-avatar);
342
356
  box-shadow: 0 0 0 var(--mds-focus-width) var(--mds-surface-card);
343
357
  }
344
- .AvatarGroup_item + .AvatarGroup_item {
358
+ .mds-AvatarGroup__item + .mds-AvatarGroup__item {
345
359
  margin-left: calc(-1 * var(--mds-space-2));
346
360
  }
347
- .AvatarGroup_overflow {
361
+ .mds-AvatarGroup__overflow {
348
362
  align-items: center;
349
363
  justify-content: center;
350
364
  flex: none;
@@ -354,24 +368,34 @@
354
368
  font-weight: var(--mds-weight-semibold);
355
369
  user-select: none;
356
370
  }
357
- .AvatarGroup_size-sm {
371
+ .mds-AvatarGroup__size-xs {
372
+ width: var(--mds-avatar-xs);
373
+ height: var(--mds-avatar-xs);
374
+ font-size: var(--mds-text-xs);
375
+ }
376
+ .mds-AvatarGroup__size-sm {
358
377
  width: var(--mds-avatar-sm);
359
378
  height: var(--mds-avatar-sm);
360
379
  font-size: var(--mds-text-xs);
361
380
  }
362
- .AvatarGroup_size-md {
381
+ .mds-AvatarGroup__size-md {
363
382
  width: var(--mds-avatar-md);
364
383
  height: var(--mds-avatar-md);
365
384
  font-size: var(--mds-text-sm);
366
385
  }
367
- .AvatarGroup_size-lg {
386
+ .mds-AvatarGroup__size-lg {
368
387
  width: var(--mds-avatar-lg);
369
388
  height: var(--mds-avatar-lg);
370
389
  font-size: var(--mds-text-xl);
371
390
  }
391
+ .mds-AvatarGroup__size-xl {
392
+ width: var(--mds-avatar-xl);
393
+ height: var(--mds-avatar-xl);
394
+ font-size: var(--mds-text-2xl);
395
+ }
372
396
 
373
- /* src/components/Badge/Badge.module.css */
374
- .Badge_badge {
397
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Badge/Badge.module.css?mds-scoped */
398
+ .mds-Badge__badge {
375
399
  display: inline-flex;
376
400
  align-items: center;
377
401
  justify-content: center;
@@ -383,33 +407,33 @@
383
407
  font-weight: var(--mds-weight-semibold);
384
408
  white-space: nowrap;
385
409
  }
386
- .Badge_tone-neutral {
410
+ .mds-Badge__tone-neutral {
387
411
  background: var(--mds-surface-sunken);
388
412
  color: var(--mds-text-primary);
389
413
  }
390
- .Badge_tone-accent {
414
+ .mds-Badge__tone-accent {
391
415
  background: var(--mds-accent-soft);
392
416
  color: var(--mds-text-primary);
393
417
  }
394
- .Badge_tone-highlight {
418
+ .mds-Badge__tone-highlight {
395
419
  background: var(--mds-highlight);
396
420
  color: var(--mds-highlight-contrast);
397
421
  }
398
- .Badge_tone-danger {
422
+ .mds-Badge__tone-danger {
399
423
  background: var(--mds-status-danger-soft);
400
424
  color: var(--mds-text-primary);
401
425
  }
402
- .Badge_tone-warning {
426
+ .mds-Badge__tone-warning {
403
427
  background: var(--mds-status-warning-soft);
404
428
  color: var(--mds-text-primary);
405
429
  }
406
- .Badge_tone-success {
430
+ .mds-Badge__tone-success {
407
431
  background: var(--mds-status-success-soft);
408
432
  color: var(--mds-text-primary);
409
433
  }
410
434
 
411
- /* src/components/Chip/Chip.module.css */
412
- .Chip_chip {
435
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Chip/Chip.module.css?mds-scoped */
436
+ .mds-Chip__chip {
413
437
  display: inline-flex;
414
438
  align-items: center;
415
439
  gap: var(--mds-gap-hairline);
@@ -420,89 +444,89 @@
420
444
  cursor: default;
421
445
  transition: var(--mds-transition-control);
422
446
  }
423
- .Chip_variant-soft {
447
+ .mds-Chip__variant-soft {
424
448
  background: var(--mds-accent-soft);
425
449
  border: var(--mds-border-width) solid transparent;
426
450
  color: var(--mds-text-accent);
427
451
  }
428
- .Chip_variant-outline {
452
+ .mds-Chip__variant-outline {
429
453
  background: transparent;
430
454
  border: var(--mds-border-width) solid var(--mds-border-subtle);
431
455
  color: var(--mds-text-secondary);
432
456
  }
433
- .Chip_variant-highlight {
457
+ .mds-Chip__variant-highlight {
434
458
  background: var(--mds-highlight);
435
459
  border: var(--mds-border-width) solid transparent;
436
460
  color: var(--mds-highlight-contrast);
437
461
  }
438
- .Chip_selected {
462
+ .mds-Chip__selected {
439
463
  background: var(--mds-accent);
440
464
  border-color: transparent;
441
465
  color: var(--mds-accent-contrast);
442
466
  }
443
- .Chip_interactive {
467
+ .mds-Chip__interactive {
444
468
  cursor: pointer;
445
469
  }
446
- .Chip_interactive:not(.Chip_selected):hover {
470
+ .mds-Chip__interactive:not(.mds-Chip__selected):hover {
447
471
  filter: brightness(0.97);
448
472
  }
449
- .Chip_disabled {
473
+ .mds-Chip__disabled {
450
474
  opacity: 0.5;
451
475
  }
452
476
 
453
- /* src/components/Chip/ChipGroup.module.css */
454
- .ChipGroup_group {
477
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Chip/ChipGroup.module.css?mds-scoped */
478
+ .mds-ChipGroup__group {
455
479
  display: flex;
456
480
  flex-wrap: wrap;
457
481
  align-items: center;
458
482
  }
459
- .ChipGroup_gap-hairline {
483
+ .mds-ChipGroup__gap-hairline {
460
484
  gap: var(--mds-gap-hairline);
461
485
  }
462
- .ChipGroup_gap-tight {
486
+ .mds-ChipGroup__gap-tight {
463
487
  gap: var(--mds-gap-tight);
464
488
  }
465
- .ChipGroup_gap-base {
489
+ .mds-ChipGroup__gap-base {
466
490
  gap: var(--mds-gap);
467
491
  }
468
492
 
469
- /* src/components/Chip/ChipBar.module.css */
470
- .ChipBar_bar {
493
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Chip/ChipBar.module.css?mds-scoped */
494
+ .mds-ChipBar__bar {
471
495
  display: flex;
472
496
  align-items: center;
473
497
  overflow-x: auto;
474
498
  scrollbar-width: none;
475
499
  min-width: 0;
476
500
  }
477
- .ChipBar_gap-hairline {
501
+ .mds-ChipBar__gap-hairline {
478
502
  gap: var(--mds-gap-hairline);
479
503
  }
480
- .ChipBar_gap-tight {
504
+ .mds-ChipBar__gap-tight {
481
505
  gap: var(--mds-gap-tight);
482
506
  }
483
- .ChipBar_gap-base {
507
+ .mds-ChipBar__gap-base {
484
508
  gap: var(--mds-gap);
485
509
  }
486
- .ChipBar_bordered {
510
+ .mds-ChipBar__bordered {
487
511
  padding: var(--mds-space-1) var(--mds-space-3);
488
512
  border-radius: var(--mds-radius-pill);
489
513
  border: var(--mds-border-width) solid var(--mds-border-subtle);
490
514
  background: var(--mds-surface-sunken);
491
515
  }
492
- .ChipBar_fade {
516
+ .mds-ChipBar__fade {
493
517
  mask-image:
494
518
  linear-gradient(
495
519
  to right,
496
520
  black calc(100% - var(--mds-space-6)),
497
521
  transparent);
498
522
  }
499
- .ChipBar_item {
523
+ .mds-ChipBar__item {
500
524
  flex: none;
501
525
  display: flex;
502
526
  }
503
527
 
504
- /* src/components/CountButton/CountButton.module.css */
505
- .CountButton_button {
528
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/CountButton/CountButton.module.css?mds-scoped */
529
+ .mds-CountButton__button {
506
530
  display: inline-flex;
507
531
  align-items: center;
508
532
  gap: var(--mds-gap-hairline);
@@ -516,56 +540,56 @@
516
540
  cursor: pointer;
517
541
  transition: var(--mds-transition-control);
518
542
  }
519
- .CountButton_button:hover:not(:disabled) {
543
+ .mds-CountButton__button:hover:not(:disabled) {
520
544
  background: var(--mds-surface-sunken);
521
545
  }
522
- .CountButton_button:active:not(:disabled) {
546
+ .mds-CountButton__button:active:not(:disabled) {
523
547
  background: var(--mds-surface-selected);
524
548
  }
525
- .CountButton_button:disabled {
549
+ .mds-CountButton__button:disabled {
526
550
  cursor: default;
527
551
  opacity: 0.6;
528
552
  }
529
- .CountButton_tone-accent {
553
+ .mds-CountButton__tone-accent {
530
554
  color: var(--mds-accent);
531
555
  }
532
- .CountButton_tone-danger {
556
+ .mds-CountButton__tone-danger {
533
557
  color: var(--mds-status-danger);
534
558
  }
535
- .CountButton_glyph {
559
+ .mds-CountButton__glyph {
536
560
  display: inline-flex;
537
561
  align-items: center;
538
562
  }
539
563
 
540
- /* src/components/Field/Field.module.css */
541
- .Field_field {
564
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Field/Field.module.css?mds-scoped */
565
+ .mds-Field__field {
542
566
  display: flex;
543
567
  flex-direction: column;
544
568
  gap: var(--mds-gap-hairline);
545
569
  }
546
- .Field_label {
570
+ .mds-Field__label {
547
571
  font: var(--mds-type-label);
548
572
  color: var(--mds-text-primary);
549
573
  }
550
- .Field_required {
574
+ .mds-Field__required {
551
575
  color: var(--mds-status-danger);
552
576
  margin-left: var(--mds-space-1);
553
577
  }
554
- .Field_message {
578
+ .mds-Field__message {
555
579
  font: var(--mds-type-note);
556
580
  color: var(--mds-text-secondary);
557
581
  }
558
- .Field_error {
582
+ .mds-Field__error {
559
583
  color: var(--mds-status-danger);
560
584
  }
561
585
 
562
- /* src/components/Select/Select.module.css */
563
- .Select_wrap {
586
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Select/Select.module.css?mds-scoped */
587
+ .mds-Select__wrap {
564
588
  position: relative;
565
589
  display: inline-flex;
566
590
  width: 100%;
567
591
  }
568
- .Select_select {
592
+ .mds-Select__select {
569
593
  appearance: none;
570
594
  width: 100%;
571
595
  border: var(--mds-border-width) solid var(--mds-control-border);
@@ -576,30 +600,30 @@
576
600
  cursor: pointer;
577
601
  transition: border-color var(--mds-transition-control);
578
602
  }
579
- .Select_select:disabled {
603
+ .mds-Select__select:disabled {
580
604
  background: var(--mds-action-disabled-bg);
581
605
  color: var(--mds-action-disabled-fg);
582
606
  cursor: not-allowed;
583
607
  }
584
- .Select_select[aria-invalid=true] {
608
+ .mds-Select__select[aria-invalid=true] {
585
609
  border-color: var(--mds-status-danger);
586
610
  }
587
- .Select_size-sm {
611
+ .mds-Select__size-sm {
588
612
  height: var(--mds-control-h-sm);
589
613
  padding: 0 var(--mds-space-7) 0 var(--mds-space-2);
590
614
  font-size: var(--mds-text-sm);
591
615
  }
592
- .Select_size-md {
616
+ .mds-Select__size-md {
593
617
  height: var(--mds-control-h-md);
594
618
  padding: 0 var(--mds-space-8) 0 var(--mds-space-3);
595
619
  font-size: var(--mds-text-base);
596
620
  }
597
- .Select_size-lg {
621
+ .mds-Select__size-lg {
598
622
  height: var(--mds-control-h-lg);
599
623
  padding: 0 var(--mds-space-8) 0 var(--mds-space-4);
600
624
  font-size: var(--mds-text-base);
601
625
  }
602
- .Select_chevron {
626
+ .mds-Select__chevron {
603
627
  position: absolute;
604
628
  right: var(--mds-space-2);
605
629
  top: 50%;
@@ -610,45 +634,47 @@
610
634
  pointer-events: none;
611
635
  }
612
636
 
613
- /* src/components/Overlay/Overlay.module.css */
614
- .Overlay_scrim {
637
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Overlay/Overlay.module.css?mds-scoped */
638
+ .mds-Overlay__scrim {
615
639
  position: fixed;
616
640
  inset: 0;
641
+ height: var(--mds-vvh, 100dvh);
617
642
  display: flex;
618
643
  background: var(--mds-scrim);
619
644
  opacity: 0;
620
645
  transition: opacity var(--mds-dur-base) var(--mds-ease-standard);
621
646
  }
622
- .Overlay_scrim[data-open] {
647
+ .mds-Overlay__scrim[data-open] {
623
648
  opacity: 1;
624
649
  }
625
- .Overlay_variant-modal {
650
+ .mds-Overlay__variant-modal {
626
651
  z-index: var(--mds-z-modal);
627
652
  align-items: center;
628
653
  justify-content: center;
629
654
  padding: var(--mds-pad-page-x);
630
655
  }
631
- .Overlay_variant-sheet {
656
+ .mds-Overlay__variant-sheet {
632
657
  z-index: var(--mds-z-sheet);
633
658
  align-items: flex-end;
634
659
  }
635
660
 
636
- /* src/components/Sheet/Sheet.module.css */
637
- .Sheet_panel {
661
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Sheet/Sheet.module.css?mds-scoped */
662
+ .mds-Sheet__panel {
638
663
  display: flex;
639
664
  flex-direction: column;
640
665
  width: 100%;
641
- max-height: 85dvh;
666
+ max-height: 85%;
667
+ padding-bottom: var(--mds-safe-bottom);
642
668
  background: var(--mds-surface-raised);
643
669
  border-radius: var(--mds-radius-sheet) var(--mds-radius-sheet) 0 0;
644
670
  box-shadow: var(--mds-elevation-sheet);
645
671
  transform: translateY(100%);
646
672
  transition: var(--mds-transition-sheet);
647
673
  }
648
- .Sheet_panel[data-open] {
674
+ .mds-Sheet__panel[data-open] {
649
675
  transform: none;
650
676
  }
651
- .Sheet_header {
677
+ .mds-Sheet__header {
652
678
  display: flex;
653
679
  align-items: center;
654
680
  gap: var(--mds-gap);
@@ -656,21 +682,44 @@
656
682
  font: var(--mds-type-subtitle);
657
683
  color: var(--mds-text-primary);
658
684
  }
659
- .Sheet_body {
685
+ .mds-Sheet__body {
660
686
  flex: 1;
661
687
  overflow-y: auto;
662
688
  padding: var(--mds-pad-card);
663
689
  }
664
- .Sheet_footer {
690
+ .mds-Sheet__footer {
665
691
  display: flex;
666
692
  align-items: center;
667
693
  justify-content: flex-end;
668
694
  gap: var(--mds-gap);
669
695
  padding: 0 var(--mds-pad-card) var(--mds-pad-card);
670
696
  }
697
+ .mds-Sheet__headerTitle {
698
+ flex: 1;
699
+ min-width: 0;
700
+ }
701
+ .mds-Sheet__close {
702
+ display: inline-flex;
703
+ align-items: center;
704
+ justify-content: center;
705
+ flex: none;
706
+ width: var(--mds-tap-min);
707
+ height: var(--mds-tap-min);
708
+ margin: calc((var(--mds-tap-min) - var(--mds-icon-lg)) / -2);
709
+ margin-left: 0;
710
+ border: none;
711
+ border-radius: var(--mds-radius-pill);
712
+ background: transparent;
713
+ color: var(--mds-text-secondary);
714
+ cursor: pointer;
715
+ }
716
+ .mds-Sheet__closeGlyph {
717
+ width: var(--mds-icon-sm);
718
+ height: var(--mds-icon-sm);
719
+ }
671
720
 
672
- /* src/components/DateTimePicker/DateTimePicker.module.css */
673
- .DateTimePicker_trigger {
721
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/DateTimePicker/DateTimePicker.module.css?mds-scoped */
722
+ .mds-DateTimePicker__trigger {
674
723
  display: flex;
675
724
  align-items: center;
676
725
  gap: var(--mds-gap-tight);
@@ -686,67 +735,67 @@
686
735
  cursor: pointer;
687
736
  transition: var(--mds-transition-control);
688
737
  }
689
- .DateTimePicker_trigger:disabled {
738
+ .mds-DateTimePicker__trigger:disabled {
690
739
  cursor: default;
691
740
  opacity: 0.5;
692
741
  }
693
- .DateTimePicker_hasValue {
742
+ .mds-DateTimePicker__hasValue {
694
743
  color: var(--mds-text-primary);
695
744
  }
696
- .DateTimePicker_triggerLabel {
745
+ .mds-DateTimePicker__triggerLabel {
697
746
  overflow: hidden;
698
747
  text-overflow: ellipsis;
699
748
  white-space: nowrap;
700
749
  }
701
- .DateTimePicker_glyph {
750
+ .mds-DateTimePicker__glyph {
702
751
  flex: none;
703
752
  width: var(--mds-icon-sm);
704
753
  height: var(--mds-icon-sm);
705
754
  }
706
- .DateTimePicker_timeRow {
755
+ .mds-DateTimePicker__timeRow {
707
756
  display: flex;
708
757
  align-items: center;
709
758
  gap: var(--mds-gap-tight);
710
759
  margin-bottom: var(--mds-stack-group);
711
760
  color: var(--mds-text-secondary);
712
761
  }
713
- .DateTimePicker_grow {
762
+ .mds-DateTimePicker__grow {
714
763
  flex: 1;
715
764
  }
716
- .DateTimePicker_meridiem {
765
+ .mds-DateTimePicker__meridiem {
717
766
  flex: none;
718
767
  }
719
- .DateTimePicker_colon {
768
+ .mds-DateTimePicker__colon {
720
769
  color: var(--mds-text-muted);
721
770
  }
722
- .DateTimePicker_calendarHeader {
771
+ .mds-DateTimePicker__calendarHeader {
723
772
  display: flex;
724
773
  align-items: center;
725
774
  justify-content: space-between;
726
775
  margin-bottom: var(--mds-gap-tight);
727
776
  }
728
- .DateTimePicker_monthLabel {
777
+ .mds-DateTimePicker__monthLabel {
729
778
  font: var(--mds-type-subtitle);
730
779
  color: var(--mds-text-primary);
731
780
  }
732
- .DateTimePicker_weekdays {
781
+ .mds-DateTimePicker__weekdays {
733
782
  display: grid;
734
783
  grid-template-columns: repeat(7, 1fr);
735
784
  margin-bottom: var(--mds-space-1);
736
785
  }
737
- .DateTimePicker_weekday {
786
+ .mds-DateTimePicker__weekday {
738
787
  text-align: center;
739
788
  font: var(--mds-type-meta);
740
789
  color: var(--mds-text-muted);
741
790
  }
742
- .DateTimePicker_grid {
791
+ .mds-DateTimePicker__grid {
743
792
  display: grid;
744
793
  grid-template-columns: repeat(7, 1fr);
745
794
  grid-auto-rows: var(--mds-tap-min);
746
795
  min-height: calc(6 * var(--mds-tap-min));
747
796
  align-items: stretch;
748
797
  }
749
- .DateTimePicker_day {
798
+ .mds-DateTimePicker__day {
750
799
  border: none;
751
800
  background: transparent;
752
801
  border-radius: var(--mds-radius-control);
@@ -755,31 +804,31 @@
755
804
  cursor: pointer;
756
805
  transition: var(--mds-transition-control);
757
806
  }
758
- .DateTimePicker_day:hover:not(:disabled) {
807
+ .mds-DateTimePicker__day:hover:not(:disabled) {
759
808
  background: var(--mds-surface-sunken);
760
809
  }
761
- .DateTimePicker_day:disabled {
810
+ .mds-DateTimePicker__day:disabled {
762
811
  color: var(--mds-text-muted);
763
812
  opacity: 0.5;
764
813
  cursor: default;
765
814
  }
766
- .DateTimePicker_today {
815
+ .mds-DateTimePicker__today {
767
816
  font-weight: var(--mds-weight-semibold);
768
817
  color: var(--mds-text-accent);
769
818
  }
770
- .DateTimePicker_selected {
819
+ .mds-DateTimePicker__selected {
771
820
  background: var(--mds-accent);
772
821
  color: var(--mds-accent-contrast);
773
822
  }
774
- .DateTimePicker_selected:hover:not(:disabled) {
823
+ .mds-DateTimePicker__selected:hover:not(:disabled) {
775
824
  background: var(--mds-accent-hover);
776
825
  }
777
- .DateTimePicker_outside {
826
+ .mds-DateTimePicker__outside {
778
827
  visibility: hidden;
779
828
  }
780
829
 
781
- /* src/components/Tag/Tag.module.css */
782
- .Tag_tag {
830
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Tag/Tag.module.css?mds-scoped */
831
+ .mds-Tag__tag {
783
832
  display: inline-flex;
784
833
  align-items: center;
785
834
  gap: var(--mds-gap-hairline);
@@ -791,12 +840,12 @@
791
840
  font: var(--mds-type-label);
792
841
  white-space: nowrap;
793
842
  }
794
- .Tag_tone-accent {
843
+ .mds-Tag__tone-accent {
795
844
  background: var(--mds-accent-soft);
796
845
  border-color: transparent;
797
846
  color: var(--mds-text-primary);
798
847
  }
799
- .Tag_remove {
848
+ .mds-Tag__remove {
800
849
  display: inline-flex;
801
850
  align-items: center;
802
851
  justify-content: center;
@@ -810,49 +859,49 @@
810
859
  color: inherit;
811
860
  cursor: pointer;
812
861
  }
813
- .Tag_remove:hover {
862
+ .mds-Tag__remove:hover {
814
863
  background: var(--mds-surface-sunken);
815
864
  }
816
- .Tag_removeGlyph {
865
+ .mds-Tag__removeGlyph {
817
866
  width: var(--mds-icon-sm);
818
867
  height: var(--mds-icon-sm);
819
868
  }
820
869
 
821
- /* src/components/Divider/Divider.module.css */
822
- .Divider_divider {
870
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Divider/Divider.module.css?mds-scoped */
871
+ .mds-Divider__divider {
823
872
  background: var(--mds-border-subtle);
824
873
  flex: none;
825
874
  }
826
- .Divider_horizontal {
875
+ .mds-Divider__horizontal {
827
876
  height: var(--mds-border-width);
828
877
  width: 100%;
829
878
  }
830
- .Divider_vertical {
879
+ .mds-Divider__vertical {
831
880
  width: var(--mds-border-width);
832
881
  align-self: stretch;
833
882
  }
834
883
 
835
- /* src/components/Skeleton/Skeleton.module.css */
836
- .Skeleton_skeleton {
884
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Skeleton/Skeleton.module.css?mds-scoped */
885
+ .mds-Skeleton__skeleton {
837
886
  display: block;
838
887
  background: var(--mds-surface-sunken);
839
- animation: Skeleton_pulse var(--mds-dur-pulse) var(--mds-ease-standard) infinite;
888
+ animation: mds-Skeleton__pulse var(--mds-dur-pulse) var(--mds-ease-standard) infinite;
840
889
  width: var(--skeleton-w, 100%);
841
890
  }
842
- .Skeleton_variant-text {
891
+ .mds-Skeleton__variant-text {
843
892
  height: var(--skeleton-h, 1em);
844
893
  border-radius: var(--mds-radius-1);
845
894
  }
846
- .Skeleton_variant-rect {
895
+ .mds-Skeleton__variant-rect {
847
896
  height: var(--skeleton-h, var(--mds-space-10));
848
897
  border-radius: var(--mds-radius-media);
849
898
  }
850
- .Skeleton_variant-circle {
899
+ .mds-Skeleton__variant-circle {
851
900
  width: var(--skeleton-w, var(--mds-avatar-md));
852
901
  height: var(--skeleton-h, var(--mds-avatar-md));
853
902
  border-radius: var(--mds-radius-pill);
854
903
  }
855
- @keyframes Skeleton_pulse {
904
+ @keyframes mds-Skeleton__pulse {
856
905
  0%, 100% {
857
906
  opacity: 1;
858
907
  }
@@ -861,8 +910,8 @@
861
910
  }
862
911
  }
863
912
 
864
- /* src/components/ProgressBar/ProgressBar.module.css */
865
- .ProgressBar_track {
913
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/ProgressBar/ProgressBar.module.css?mds-scoped */
914
+ .mds-ProgressBar__track {
866
915
  display: block;
867
916
  width: 100%;
868
917
  height: var(--mds-space-2);
@@ -870,7 +919,7 @@
870
919
  background: var(--mds-surface-sunken);
871
920
  overflow: hidden;
872
921
  }
873
- .ProgressBar_fill {
922
+ .mds-ProgressBar__fill {
874
923
  display: block;
875
924
  height: 100%;
876
925
  width: var(--progress, 0%);
@@ -878,11 +927,11 @@
878
927
  background: var(--mds-accent);
879
928
  transition: width var(--mds-transition-control);
880
929
  }
881
- .ProgressBar_indeterminate .ProgressBar_fill {
930
+ .mds-ProgressBar__indeterminate .mds-ProgressBar__fill {
882
931
  width: 40%;
883
- animation: ProgressBar_slide var(--mds-dur-pulse) var(--mds-ease-standard) infinite;
932
+ animation: mds-ProgressBar__slide var(--mds-dur-pulse) var(--mds-ease-standard) infinite;
884
933
  }
885
- @keyframes ProgressBar_slide {
934
+ @keyframes mds-ProgressBar__slide {
886
935
  from {
887
936
  transform: translateX(-100%);
888
937
  }
@@ -891,8 +940,8 @@
891
940
  }
892
941
  }
893
942
 
894
- /* src/components/Input/Input.module.css */
895
- .Input_input {
943
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Input/Input.module.css?mds-scoped */
944
+ .mds-Input__input {
896
945
  width: 100%;
897
946
  border: var(--mds-border-width) solid var(--mds-control-border);
898
947
  border-radius: var(--mds-radius-control);
@@ -901,38 +950,38 @@
901
950
  font-family: var(--mds-font-body);
902
951
  transition: border-color var(--mds-transition-control);
903
952
  }
904
- .Input_input::placeholder {
953
+ .mds-Input__input::placeholder {
905
954
  color: var(--mds-text-muted);
906
955
  }
907
- .Input_input:disabled {
956
+ .mds-Input__input:disabled {
908
957
  background: var(--mds-action-disabled-bg);
909
958
  color: var(--mds-action-disabled-fg);
910
959
  cursor: not-allowed;
911
960
  }
912
- .Input_input[aria-invalid=true] {
961
+ .mds-Input__input[aria-invalid=true] {
913
962
  border-color: var(--mds-status-danger);
914
963
  }
915
- .Input_size-sm {
964
+ .mds-Input__size-sm {
916
965
  height: var(--mds-control-h-sm);
917
966
  padding: 0 var(--mds-space-2);
918
967
  font-size: var(--mds-text-sm);
919
968
  }
920
- .Input_size-md {
969
+ .mds-Input__size-md {
921
970
  height: var(--mds-control-h-md);
922
971
  padding: 0 var(--mds-space-3);
923
972
  font-size: var(--mds-text-base);
924
973
  }
925
- .Input_size-lg {
974
+ .mds-Input__size-lg {
926
975
  height: var(--mds-control-h-lg);
927
976
  padding: 0 var(--mds-space-4);
928
977
  font-size: var(--mds-text-base);
929
978
  }
930
- .Input_iconWrap {
979
+ .mds-Input__iconWrap {
931
980
  position: relative;
932
981
  display: block;
933
982
  width: 100%;
934
983
  }
935
- .Input_icon {
984
+ .mds-Input__icon {
936
985
  position: absolute;
937
986
  top: 50%;
938
987
  transform: translateY(-50%);
@@ -940,29 +989,29 @@
940
989
  color: var(--mds-text-muted);
941
990
  pointer-events: none;
942
991
  }
943
- .Input_iconLeft {
992
+ .mds-Input__iconLeft {
944
993
  left: var(--mds-space-3);
945
994
  }
946
- .Input_iconRight {
995
+ .mds-Input__iconRight {
947
996
  right: var(--mds-space-3);
948
997
  }
949
- .Input_with-icon-left {
998
+ .mds-Input__with-icon-left {
950
999
  padding-left: calc(var(--mds-space-3) + var(--mds-icon-md) + var(--mds-space-2));
951
1000
  }
952
- .Input_with-icon-right {
1001
+ .mds-Input__with-icon-right {
953
1002
  padding-right: calc(var(--mds-space-3) + var(--mds-icon-md) + var(--mds-space-2));
954
1003
  }
955
1004
 
956
- /* src/components/PasswordInput/PasswordInput.module.css */
957
- .PasswordInput_wrap {
1005
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/PasswordInput/PasswordInput.module.css?mds-scoped */
1006
+ .mds-PasswordInput__wrap {
958
1007
  position: relative;
959
1008
  display: block;
960
1009
  }
961
- .PasswordInput_input {
1010
+ .mds-PasswordInput__input {
962
1011
  width: 100%;
963
1012
  padding-right: calc(var(--mds-control-h-md) + var(--mds-space-1));
964
1013
  }
965
- .PasswordInput_toggle {
1014
+ .mds-PasswordInput__toggle {
966
1015
  position: absolute;
967
1016
  top: 0;
968
1017
  right: 0;
@@ -980,12 +1029,12 @@
980
1029
  cursor: pointer;
981
1030
  transition: color var(--mds-transition-control);
982
1031
  }
983
- .PasswordInput_toggle:hover {
1032
+ .mds-PasswordInput__toggle:hover {
984
1033
  color: var(--mds-text-primary);
985
1034
  }
986
1035
 
987
- /* src/components/Textarea/Textarea.module.css */
988
- .Textarea_textarea {
1036
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Textarea/Textarea.module.css?mds-scoped */
1037
+ .mds-Textarea__textarea {
989
1038
  width: 100%;
990
1039
  padding: var(--mds-space-2) var(--mds-space-3);
991
1040
  border: var(--mds-border-width) solid var(--mds-control-border);
@@ -998,41 +1047,41 @@
998
1047
  resize: vertical;
999
1048
  transition: border-color var(--mds-transition-control);
1000
1049
  }
1001
- .Textarea_textarea::placeholder {
1050
+ .mds-Textarea__textarea::placeholder {
1002
1051
  color: var(--mds-text-muted);
1003
1052
  }
1004
- .Textarea_textarea:disabled {
1053
+ .mds-Textarea__textarea:disabled {
1005
1054
  background: var(--mds-action-disabled-bg);
1006
1055
  color: var(--mds-action-disabled-fg);
1007
1056
  cursor: not-allowed;
1008
1057
  resize: none;
1009
1058
  }
1010
- .Textarea_textarea[aria-invalid=true] {
1059
+ .mds-Textarea__textarea[aria-invalid=true] {
1011
1060
  border-color: var(--mds-status-danger);
1012
1061
  }
1013
- .Textarea_wrap {
1062
+ .mds-Textarea__wrap {
1014
1063
  display: flex;
1015
1064
  flex-direction: column;
1016
1065
  align-items: flex-end;
1017
1066
  gap: var(--mds-gap-hairline);
1018
1067
  }
1019
- .Textarea_count {
1068
+ .mds-Textarea__count {
1020
1069
  font: var(--mds-type-meta);
1021
1070
  color: var(--mds-text-muted);
1022
1071
  }
1023
1072
 
1024
- /* src/components/Checkbox/Checkbox.module.css */
1025
- .Checkbox_root {
1073
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Checkbox/Checkbox.module.css?mds-scoped */
1074
+ .mds-Checkbox__root {
1026
1075
  display: inline-flex;
1027
1076
  align-items: center;
1028
1077
  gap: var(--mds-gap-tight);
1029
1078
  cursor: pointer;
1030
1079
  min-height: var(--mds-tap-min);
1031
1080
  }
1032
- .Checkbox_root:has(.Checkbox_box:disabled) {
1081
+ .mds-Checkbox__root:has(.mds-Checkbox__box:disabled) {
1033
1082
  cursor: not-allowed;
1034
1083
  }
1035
- .Checkbox_box {
1084
+ .mds-Checkbox__box {
1036
1085
  appearance: none;
1037
1086
  flex: none;
1038
1087
  margin: 0;
@@ -1047,11 +1096,11 @@
1047
1096
  cursor: inherit;
1048
1097
  transition: var(--mds-transition-control);
1049
1098
  }
1050
- .Checkbox_box:checked {
1099
+ .mds-Checkbox__box:checked {
1051
1100
  background: var(--mds-action-bg);
1052
1101
  border-color: var(--mds-action-bg);
1053
1102
  }
1054
- .Checkbox_box:checked::after {
1103
+ .mds-Checkbox__box:checked::after {
1055
1104
  content: "";
1056
1105
  width: 0.32em;
1057
1106
  height: 0.6em;
@@ -1060,33 +1109,33 @@
1060
1109
  border-width: 0 calc(var(--mds-border-width) * 2) calc(var(--mds-border-width) * 2) 0;
1061
1110
  transform: rotate(45deg);
1062
1111
  }
1063
- .Checkbox_box:disabled {
1112
+ .mds-Checkbox__box:disabled {
1064
1113
  background: var(--mds-action-disabled-bg);
1065
1114
  border-color: var(--mds-border-strong);
1066
1115
  }
1067
- .Checkbox_box:disabled:checked::after {
1116
+ .mds-Checkbox__box:disabled:checked::after {
1068
1117
  border-color: var(--mds-action-disabled-fg);
1069
1118
  }
1070
- .Checkbox_label {
1119
+ .mds-Checkbox__label {
1071
1120
  font: var(--mds-type-label);
1072
1121
  color: var(--mds-text-primary);
1073
1122
  }
1074
- .Checkbox_box:disabled ~ .Checkbox_label {
1123
+ .mds-Checkbox__box:disabled ~ .mds-Checkbox__label {
1075
1124
  color: var(--mds-action-disabled-fg);
1076
1125
  }
1077
1126
 
1078
- /* src/components/Radio/Radio.module.css */
1079
- .Radio_root {
1127
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Radio/Radio.module.css?mds-scoped */
1128
+ .mds-Radio__root {
1080
1129
  display: inline-flex;
1081
1130
  align-items: center;
1082
1131
  gap: var(--mds-gap-tight);
1083
1132
  cursor: pointer;
1084
1133
  min-height: var(--mds-tap-min);
1085
1134
  }
1086
- .Radio_root:has(.Radio_dot:disabled) {
1135
+ .mds-Radio__root:has(.mds-Radio__dot:disabled) {
1087
1136
  cursor: not-allowed;
1088
1137
  }
1089
- .Radio_dot {
1138
+ .mds-Radio__dot {
1090
1139
  appearance: none;
1091
1140
  flex: none;
1092
1141
  margin: 0;
@@ -1100,43 +1149,43 @@
1100
1149
  cursor: inherit;
1101
1150
  transition: var(--mds-transition-control);
1102
1151
  }
1103
- .Radio_dot:checked {
1152
+ .mds-Radio__dot:checked {
1104
1153
  border-color: var(--mds-action-bg);
1105
1154
  }
1106
- .Radio_dot:checked::after {
1155
+ .mds-Radio__dot:checked::after {
1107
1156
  content: "";
1108
1157
  width: 50%;
1109
1158
  height: 50%;
1110
1159
  border-radius: var(--mds-radius-pill);
1111
1160
  background: var(--mds-action-bg);
1112
1161
  }
1113
- .Radio_dot:disabled {
1162
+ .mds-Radio__dot:disabled {
1114
1163
  background: var(--mds-action-disabled-bg);
1115
1164
  border-color: var(--mds-border-strong);
1116
1165
  }
1117
- .Radio_dot:disabled:checked::after {
1166
+ .mds-Radio__dot:disabled:checked::after {
1118
1167
  background: var(--mds-action-disabled-fg);
1119
1168
  }
1120
- .Radio_label {
1169
+ .mds-Radio__label {
1121
1170
  font: var(--mds-type-label);
1122
1171
  color: var(--mds-text-primary);
1123
1172
  }
1124
- .Radio_dot:disabled ~ .Radio_label {
1173
+ .mds-Radio__dot:disabled ~ .mds-Radio__label {
1125
1174
  color: var(--mds-action-disabled-fg);
1126
1175
  }
1127
1176
 
1128
- /* src/components/Switch/Switch.module.css */
1129
- .Switch_root {
1177
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Switch/Switch.module.css?mds-scoped */
1178
+ .mds-Switch__root {
1130
1179
  display: inline-flex;
1131
1180
  align-items: center;
1132
1181
  gap: var(--mds-gap-tight);
1133
1182
  cursor: pointer;
1134
1183
  min-height: var(--mds-tap-min);
1135
1184
  }
1136
- .Switch_root:has(.Switch_track:disabled) {
1185
+ .mds-Switch__root:has(.mds-Switch__track:disabled) {
1137
1186
  cursor: not-allowed;
1138
1187
  }
1139
- .Switch_track {
1188
+ .mds-Switch__track {
1140
1189
  appearance: none;
1141
1190
  flex: none;
1142
1191
  margin: 0;
@@ -1148,7 +1197,7 @@
1148
1197
  cursor: inherit;
1149
1198
  transition: background-color var(--mds-transition-control);
1150
1199
  }
1151
- .Switch_track::after {
1200
+ .mds-Switch__track::after {
1152
1201
  content: "";
1153
1202
  position: absolute;
1154
1203
  top: 50%;
@@ -1160,24 +1209,24 @@
1160
1209
  background: var(--mds-surface-card);
1161
1210
  transition: transform var(--mds-transition-control);
1162
1211
  }
1163
- .Switch_track:checked {
1212
+ .mds-Switch__track:checked {
1164
1213
  background: var(--mds-action-bg);
1165
1214
  }
1166
- .Switch_track:checked::after {
1215
+ .mds-Switch__track:checked::after {
1167
1216
  transform: translateY(-50%) translateX(calc(var(--mds-switch-w) - var(--mds-switch-knob) - 2 * var(--mds-space-1)));
1168
1217
  }
1169
- .Switch_track:disabled {
1218
+ .mds-Switch__track:disabled {
1170
1219
  background: var(--mds-action-disabled-bg);
1171
1220
  }
1172
- .Switch_track:disabled::after {
1221
+ .mds-Switch__track:disabled::after {
1173
1222
  background: var(--mds-action-disabled-fg);
1174
1223
  }
1175
- .Switch_trackWrap {
1224
+ .mds-Switch__trackWrap {
1176
1225
  position: relative;
1177
1226
  display: inline-flex;
1178
1227
  flex: none;
1179
1228
  }
1180
- .Switch_spinner {
1229
+ .mds-Switch__spinner {
1181
1230
  position: absolute;
1182
1231
  top: 50%;
1183
1232
  left: 50%;
@@ -1185,28 +1234,28 @@
1185
1234
  color: var(--mds-text-secondary);
1186
1235
  pointer-events: none;
1187
1236
  }
1188
- .Switch_label {
1237
+ .mds-Switch__label {
1189
1238
  font: var(--mds-type-label);
1190
1239
  color: var(--mds-text-primary);
1191
1240
  }
1192
- .Switch_root:has(.Switch_track:disabled) .Switch_label {
1241
+ .mds-Switch__root:has(.mds-Switch__track:disabled) .mds-Switch__label {
1193
1242
  color: var(--mds-action-disabled-fg);
1194
1243
  }
1195
1244
 
1196
- /* src/components/SegmentedControl/SegmentedControl.module.css */
1197
- .SegmentedControl_group {
1245
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/SegmentedControl/SegmentedControl.module.css?mds-scoped */
1246
+ .mds-SegmentedControl__group {
1198
1247
  display: inline-flex;
1199
1248
  padding: var(--mds-space-1);
1200
1249
  gap: var(--mds-space-1);
1201
1250
  background: var(--mds-surface-sunken);
1202
1251
  border-radius: var(--mds-radius-control);
1203
1252
  }
1204
- .SegmentedControl_segment {
1253
+ .mds-SegmentedControl__segment {
1205
1254
  display: inline-flex;
1206
1255
  position: relative;
1207
1256
  cursor: pointer;
1208
1257
  }
1209
- .SegmentedControl_input {
1258
+ .mds-SegmentedControl__input {
1210
1259
  appearance: none;
1211
1260
  margin: 0;
1212
1261
  position: absolute;
@@ -1216,7 +1265,7 @@
1216
1265
  opacity: 0;
1217
1266
  cursor: inherit;
1218
1267
  }
1219
- .SegmentedControl_face {
1268
+ .mds-SegmentedControl__face {
1220
1269
  display: inline-flex;
1221
1270
  align-items: center;
1222
1271
  justify-content: center;
@@ -1228,35 +1277,35 @@
1228
1277
  white-space: nowrap;
1229
1278
  transition: var(--mds-transition-control);
1230
1279
  }
1231
- .SegmentedControl_input:checked + .SegmentedControl_face {
1280
+ .mds-SegmentedControl__input:checked + .mds-SegmentedControl__face {
1232
1281
  background: var(--mds-surface-card);
1233
1282
  color: var(--mds-text-primary);
1234
1283
  box-shadow: var(--mds-elevation-card);
1235
1284
  }
1236
- .SegmentedControl_input:disabled + .SegmentedControl_face {
1285
+ .mds-SegmentedControl__input:disabled + .mds-SegmentedControl__face {
1237
1286
  color: var(--mds-action-disabled-fg);
1238
1287
  cursor: not-allowed;
1239
1288
  }
1240
- .SegmentedControl_input:disabled:checked + .SegmentedControl_face {
1289
+ .mds-SegmentedControl__input:disabled:checked + .mds-SegmentedControl__face {
1241
1290
  background: var(--mds-action-disabled-bg);
1242
1291
  box-shadow: none;
1243
1292
  }
1244
- .SegmentedControl_segment:has(.SegmentedControl_input:disabled) {
1293
+ .mds-SegmentedControl__segment:has(.mds-SegmentedControl__input:disabled) {
1245
1294
  cursor: not-allowed;
1246
1295
  }
1247
- .SegmentedControl_input:focus-visible + .SegmentedControl_face {
1296
+ .mds-SegmentedControl__input:focus-visible + .mds-SegmentedControl__face {
1248
1297
  outline: var(--mds-focus-width) solid var(--mds-focus-ring-color);
1249
1298
  outline-offset: var(--mds-focus-offset);
1250
1299
  }
1251
1300
 
1252
- /* src/components/SearchField/SearchField.module.css */
1253
- .SearchField_wrap {
1301
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/SearchField/SearchField.module.css?mds-scoped */
1302
+ .mds-SearchField__wrap {
1254
1303
  position: relative;
1255
1304
  display: inline-flex;
1256
1305
  align-items: center;
1257
1306
  width: 100%;
1258
1307
  }
1259
- .SearchField_glass {
1308
+ .mds-SearchField__glass {
1260
1309
  position: absolute;
1261
1310
  left: var(--mds-space-3);
1262
1311
  width: var(--mds-icon-sm);
@@ -1264,7 +1313,7 @@
1264
1313
  color: var(--mds-text-muted);
1265
1314
  pointer-events: none;
1266
1315
  }
1267
- .SearchField_input {
1316
+ .mds-SearchField__input {
1268
1317
  width: 100%;
1269
1318
  height: var(--mds-control-h-md);
1270
1319
  padding: 0 var(--mds-space-9) 0 var(--mds-space-8);
@@ -1276,13 +1325,13 @@
1276
1325
  font-size: var(--mds-text-base);
1277
1326
  transition: border-color var(--mds-transition-control);
1278
1327
  }
1279
- .SearchField_input::placeholder {
1328
+ .mds-SearchField__input::placeholder {
1280
1329
  color: var(--mds-text-muted);
1281
1330
  }
1282
- .SearchField_input::-webkit-search-cancel-button {
1331
+ .mds-SearchField__input::-webkit-search-cancel-button {
1283
1332
  display: none;
1284
1333
  }
1285
- .SearchField_clear {
1334
+ .mds-SearchField__clear {
1286
1335
  position: absolute;
1287
1336
  right: var(--mds-space-2);
1288
1337
  display: inline-flex;
@@ -1296,16 +1345,16 @@
1296
1345
  color: var(--mds-text-secondary);
1297
1346
  cursor: pointer;
1298
1347
  }
1299
- .SearchField_clear:hover {
1348
+ .mds-SearchField__clear:hover {
1300
1349
  background: var(--mds-surface-sunken);
1301
1350
  }
1302
- .SearchField_clearGlyph {
1351
+ .mds-SearchField__clearGlyph {
1303
1352
  width: var(--mds-icon-sm);
1304
1353
  height: var(--mds-icon-sm);
1305
1354
  }
1306
1355
 
1307
- /* src/components/List/List.module.css */
1308
- .List_group {
1356
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/List/List.module.css?mds-scoped */
1357
+ .mds-List__group {
1309
1358
  list-style: none;
1310
1359
  margin: 0;
1311
1360
  padding: 0;
@@ -1314,32 +1363,45 @@
1314
1363
  border-radius: var(--mds-radius-card);
1315
1364
  overflow: hidden;
1316
1365
  }
1317
- .List_group > .List_item + .List_item {
1366
+ .mds-List__labelledGroup {
1367
+ display: flex;
1368
+ flex-direction: column;
1369
+ gap: var(--mds-space-2);
1370
+ }
1371
+ .mds-List__label {
1372
+ padding-inline: var(--mds-pad-card);
1373
+ font-weight: var(--mds-weight-semibold);
1374
+ font-size: var(--mds-text-xs);
1375
+ text-transform: uppercase;
1376
+ letter-spacing: 0.06em;
1377
+ color: var(--mds-text-secondary);
1378
+ }
1379
+ .mds-List__group > .mds-List__item + .mds-List__item {
1318
1380
  border-top: var(--mds-border-width) solid var(--mds-border-subtle);
1319
1381
  }
1320
- .List_surface-card,
1321
- .List_surface-sunken,
1322
- .List_surface-accent {
1382
+ .mds-List__surface-card,
1383
+ .mds-List__surface-sunken,
1384
+ .mds-List__surface-accent {
1323
1385
  border: var(--mds-border-width) solid var(--mds-border-subtle);
1324
1386
  border-radius: var(--mds-radius-card);
1325
1387
  }
1326
- .List_surface-card {
1388
+ .mds-List__surface-card {
1327
1389
  background: var(--mds-surface-card);
1328
1390
  }
1329
- .List_surface-sunken {
1391
+ .mds-List__surface-sunken {
1330
1392
  background: var(--mds-surface-sunken);
1331
1393
  }
1332
- .List_surface-accent {
1394
+ .mds-List__surface-accent {
1333
1395
  border-left-width: var(--mds-edge-width);
1334
1396
  border-left-color: var(--mds-accent);
1335
1397
  background: var(--mds-accent-soft);
1336
1398
  }
1337
- .List_surface-plain {
1399
+ .mds-List__surface-plain {
1338
1400
  background: transparent;
1339
1401
  border: 0;
1340
1402
  border-radius: 0;
1341
1403
  }
1342
- .List_row {
1404
+ .mds-List__row {
1343
1405
  display: flex;
1344
1406
  align-items: center;
1345
1407
  gap: var(--mds-gap);
@@ -1350,40 +1412,40 @@
1350
1412
  color: inherit;
1351
1413
  text-decoration: none;
1352
1414
  }
1353
- .List_interactive {
1415
+ .mds-List__interactive {
1354
1416
  border: none;
1355
1417
  background: transparent;
1356
1418
  font: inherit;
1357
1419
  cursor: pointer;
1358
1420
  transition: background-color var(--mds-transition-control);
1359
1421
  }
1360
- .List_interactive:hover {
1422
+ .mds-List__interactive:hover {
1361
1423
  background: var(--mds-surface-sunken);
1362
1424
  }
1363
- .List_leading,
1364
- .List_trailing {
1425
+ .mds-List__leading,
1426
+ .mds-List__trailing {
1365
1427
  display: inline-flex;
1366
1428
  flex: none;
1367
1429
  align-items: center;
1368
1430
  }
1369
- .List_text {
1431
+ .mds-List__text {
1370
1432
  display: flex;
1371
1433
  flex-direction: column;
1372
1434
  gap: var(--mds-gap-hairline);
1373
1435
  min-width: 0;
1374
1436
  flex: 1;
1375
1437
  }
1376
- .List_title {
1438
+ .mds-List__title {
1377
1439
  font: var(--mds-type-label);
1378
1440
  color: var(--mds-text-primary);
1379
1441
  }
1380
- .List_description {
1442
+ .mds-List__description {
1381
1443
  font: var(--mds-type-note);
1382
1444
  color: var(--mds-text-secondary);
1383
1445
  }
1384
1446
 
1385
- /* src/components/EmptyState/EmptyState.module.css */
1386
- .EmptyState_root {
1447
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/EmptyState/EmptyState.module.css?mds-scoped */
1448
+ .mds-EmptyState__root {
1387
1449
  display: flex;
1388
1450
  flex-direction: column;
1389
1451
  align-items: center;
@@ -1391,21 +1453,21 @@
1391
1453
  gap: var(--mds-stack-item);
1392
1454
  padding: var(--mds-space-10) var(--mds-pad-card);
1393
1455
  }
1394
- .EmptyState_icon {
1456
+ .mds-EmptyState__icon {
1395
1457
  display: inline-flex;
1396
1458
  color: var(--mds-text-muted);
1397
1459
  }
1398
- .EmptyState_action {
1460
+ .mds-EmptyState__action {
1399
1461
  margin-top: var(--mds-space-2);
1400
1462
  }
1401
1463
 
1402
- /* src/components/Tabs/Tabs.module.css */
1403
- .Tabs_list {
1464
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Tabs/Tabs.module.css?mds-scoped */
1465
+ .mds-Tabs__list {
1404
1466
  display: flex;
1405
1467
  gap: var(--mds-space-1);
1406
1468
  border-bottom: var(--mds-border-width) solid var(--mds-border-subtle);
1407
1469
  }
1408
- .Tabs_tab {
1470
+ .mds-Tabs__tab {
1409
1471
  border: none;
1410
1472
  background: transparent;
1411
1473
  padding: var(--mds-space-2) var(--mds-space-3);
@@ -1417,21 +1479,21 @@
1417
1479
  white-space: nowrap;
1418
1480
  transition: color var(--mds-transition-control);
1419
1481
  }
1420
- .Tabs_tab:hover {
1482
+ .mds-Tabs__tab:hover {
1421
1483
  color: var(--mds-text-primary);
1422
1484
  }
1423
- .Tabs_selected {
1485
+ .mds-Tabs__selected {
1424
1486
  color: var(--mds-text-primary);
1425
1487
  border-bottom-color: var(--mds-accent);
1426
1488
  }
1427
- .Tabs_panel {
1489
+ .mds-Tabs__panel {
1428
1490
  padding-top: var(--mds-stack-item);
1429
1491
  }
1430
1492
 
1431
- /* src/components/Toast/Toast.module.css */
1432
- .Toast_viewport {
1493
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Toast/Toast.module.css?mds-scoped */
1494
+ .mds-Toast__viewport {
1433
1495
  position: fixed;
1434
- bottom: var(--mds-space-4);
1496
+ bottom: calc(var(--mds-space-4) + var(--mds-safe-bottom));
1435
1497
  left: 50%;
1436
1498
  transform: translateX(-50%);
1437
1499
  z-index: var(--mds-z-toast);
@@ -1441,7 +1503,7 @@
1441
1503
  width: min(var(--mds-modal-w), calc(100vw - 2 * var(--mds-space-4)));
1442
1504
  pointer-events: none;
1443
1505
  }
1444
- .Toast_toast {
1506
+ .mds-Toast__toast {
1445
1507
  display: flex;
1446
1508
  align-items: flex-start;
1447
1509
  gap: var(--mds-gap);
@@ -1452,28 +1514,28 @@
1452
1514
  box-shadow: var(--mds-elevation-modal);
1453
1515
  pointer-events: auto;
1454
1516
  }
1455
- .Toast_tone-success {
1517
+ .mds-Toast__tone-success {
1456
1518
  border-left-color: var(--mds-status-success);
1457
1519
  }
1458
- .Toast_tone-danger {
1520
+ .mds-Toast__tone-danger {
1459
1521
  border-left-color: var(--mds-status-danger);
1460
1522
  }
1461
- .Toast_body {
1523
+ .mds-Toast__body {
1462
1524
  display: flex;
1463
1525
  flex-direction: column;
1464
1526
  gap: var(--mds-gap-hairline);
1465
1527
  flex: 1;
1466
1528
  min-width: 0;
1467
1529
  }
1468
- .Toast_title {
1530
+ .mds-Toast__title {
1469
1531
  font: var(--mds-type-label);
1470
1532
  color: var(--mds-text-primary);
1471
1533
  }
1472
- .Toast_description {
1534
+ .mds-Toast__description {
1473
1535
  font: var(--mds-type-note);
1474
1536
  color: var(--mds-text-secondary);
1475
1537
  }
1476
- .Toast_close {
1538
+ .mds-Toast__close {
1477
1539
  display: inline-flex;
1478
1540
  align-items: center;
1479
1541
  justify-content: center;
@@ -1486,107 +1548,107 @@
1486
1548
  color: var(--mds-text-secondary);
1487
1549
  cursor: pointer;
1488
1550
  }
1489
- .Toast_close:hover {
1551
+ .mds-Toast__close:hover {
1490
1552
  background: var(--mds-surface-sunken);
1491
1553
  }
1492
- .Toast_closeGlyph {
1554
+ .mds-Toast__closeGlyph {
1493
1555
  width: var(--mds-icon-sm);
1494
1556
  height: var(--mds-icon-sm);
1495
1557
  }
1496
1558
 
1497
- /* src/components/Stack/Stack.module.css */
1498
- .Stack_stack {
1559
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Stack/Stack.module.css?mds-scoped */
1560
+ .mds-Stack__stack {
1499
1561
  display: flex;
1500
1562
  flex-direction: column;
1501
1563
  }
1502
- .Stack_gap-hairline {
1564
+ .mds-Stack__gap-hairline {
1503
1565
  gap: var(--mds-gap-hairline);
1504
1566
  }
1505
- .Stack_gap-tight {
1567
+ .mds-Stack__gap-tight {
1506
1568
  gap: var(--mds-gap-tight);
1507
1569
  }
1508
- .Stack_gap-base {
1570
+ .mds-Stack__gap-base {
1509
1571
  gap: var(--mds-gap);
1510
1572
  }
1511
- .Stack_gap-loose {
1573
+ .mds-Stack__gap-loose {
1512
1574
  gap: var(--mds-gap-loose);
1513
1575
  }
1514
- .Stack_gap-section {
1576
+ .mds-Stack__gap-section {
1515
1577
  gap: var(--mds-stack-section);
1516
1578
  }
1517
- .Stack_align-start {
1579
+ .mds-Stack__align-start {
1518
1580
  align-items: flex-start;
1519
1581
  }
1520
- .Stack_align-center {
1582
+ .mds-Stack__align-center {
1521
1583
  align-items: center;
1522
1584
  }
1523
- .Stack_align-end {
1585
+ .mds-Stack__align-end {
1524
1586
  align-items: flex-end;
1525
1587
  }
1526
- .Stack_align-stretch {
1588
+ .mds-Stack__align-stretch {
1527
1589
  align-items: stretch;
1528
1590
  }
1529
1591
 
1530
- /* src/components/Inline/Inline.module.css */
1531
- .Inline_inline {
1592
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Inline/Inline.module.css?mds-scoped */
1593
+ .mds-Inline__inline {
1532
1594
  display: flex;
1533
1595
  flex-direction: row;
1534
1596
  }
1535
- .Inline_gap-hairline {
1597
+ .mds-Inline__gap-hairline {
1536
1598
  gap: var(--mds-gap-hairline);
1537
1599
  }
1538
- .Inline_gap-tight {
1600
+ .mds-Inline__gap-tight {
1539
1601
  gap: var(--mds-gap-tight);
1540
1602
  }
1541
- .Inline_gap-base {
1603
+ .mds-Inline__gap-base {
1542
1604
  gap: var(--mds-gap);
1543
1605
  }
1544
- .Inline_gap-loose {
1606
+ .mds-Inline__gap-loose {
1545
1607
  gap: var(--mds-gap-loose);
1546
1608
  }
1547
- .Inline_align-start {
1609
+ .mds-Inline__align-start {
1548
1610
  align-items: flex-start;
1549
1611
  }
1550
- .Inline_align-center {
1612
+ .mds-Inline__align-center {
1551
1613
  align-items: center;
1552
1614
  }
1553
- .Inline_align-end {
1615
+ .mds-Inline__align-end {
1554
1616
  align-items: flex-end;
1555
1617
  }
1556
- .Inline_align-baseline {
1618
+ .mds-Inline__align-baseline {
1557
1619
  align-items: baseline;
1558
1620
  }
1559
- .Inline_justify-start {
1621
+ .mds-Inline__justify-start {
1560
1622
  justify-content: flex-start;
1561
1623
  }
1562
- .Inline_justify-center {
1624
+ .mds-Inline__justify-center {
1563
1625
  justify-content: center;
1564
1626
  }
1565
- .Inline_justify-end {
1627
+ .mds-Inline__justify-end {
1566
1628
  justify-content: flex-end;
1567
1629
  }
1568
- .Inline_justify-between {
1630
+ .mds-Inline__justify-between {
1569
1631
  justify-content: space-between;
1570
1632
  }
1571
- .Inline_wrap {
1633
+ .mds-Inline__wrap {
1572
1634
  flex-wrap: wrap;
1573
1635
  }
1574
1636
 
1575
- /* src/components/Container/Container.module.css */
1576
- .Container_container {
1637
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Container/Container.module.css?mds-scoped */
1638
+ .mds-Container__container {
1577
1639
  width: 100%;
1578
1640
  margin-inline: auto;
1579
1641
  padding-inline: var(--mds-pad-page-x);
1580
1642
  }
1581
- .Container_width-content {
1643
+ .mds-Container__width-content {
1582
1644
  max-width: var(--mds-content-max);
1583
1645
  }
1584
- .Container_width-wide {
1646
+ .mds-Container__width-wide {
1585
1647
  max-width: var(--mds-content-max-wide);
1586
1648
  }
1587
1649
 
1588
- /* src/components/Card/Card.module.css */
1589
- .Card_card {
1650
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Card/Card.module.css?mds-scoped */
1651
+ .mds-Card__card {
1590
1652
  display: flex;
1591
1653
  flex-direction: column;
1592
1654
  background: var(--mds-surface-card);
@@ -1596,12 +1658,18 @@
1596
1658
  color: inherit;
1597
1659
  text-decoration: none;
1598
1660
  }
1599
- .Card_variant-raised {
1661
+ .mds-Card__variant-raised {
1600
1662
  border-color: transparent;
1601
1663
  background: var(--mds-surface-raised);
1602
1664
  box-shadow: var(--mds-elevation-raised);
1603
1665
  }
1604
- .Card_interactive {
1666
+ .mds-Card__variant-sunken {
1667
+ background: var(--mds-surface-sunken);
1668
+ }
1669
+ .mds-Card__emphasis {
1670
+ border: var(--mds-border-emphasis) solid var(--mds-accent);
1671
+ }
1672
+ .mds-Card__interactive {
1605
1673
  padding: 0;
1606
1674
  margin: 0;
1607
1675
  font: inherit;
@@ -1609,10 +1677,10 @@
1609
1677
  cursor: pointer;
1610
1678
  transition: box-shadow var(--mds-transition-surface), background-color var(--mds-transition-surface);
1611
1679
  }
1612
- .Card_interactive:hover {
1680
+ .mds-Card__interactive:hover {
1613
1681
  box-shadow: var(--mds-elevation-hover);
1614
1682
  }
1615
- .Card_header {
1683
+ .mds-Card__header {
1616
1684
  display: flex;
1617
1685
  align-items: center;
1618
1686
  gap: var(--mds-gap);
@@ -1620,19 +1688,19 @@
1620
1688
  font: var(--mds-type-subtitle);
1621
1689
  color: var(--mds-text-primary);
1622
1690
  }
1623
- .Card_body {
1691
+ .mds-Card__body {
1624
1692
  flex: 1;
1625
1693
  padding: var(--mds-pad-card);
1626
1694
  }
1627
- .Card_footer {
1695
+ .mds-Card__footer {
1628
1696
  display: flex;
1629
1697
  align-items: center;
1630
1698
  gap: var(--mds-gap);
1631
1699
  padding: 0 var(--mds-pad-card) var(--mds-pad-card);
1632
1700
  }
1633
1701
 
1634
- /* src/components/Modal/Modal.module.css */
1635
- .Modal_panel {
1702
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Modal/Modal.module.css?mds-scoped */
1703
+ .mds-Modal__panel {
1636
1704
  display: flex;
1637
1705
  flex-direction: column;
1638
1706
  width: 100%;
@@ -1645,11 +1713,11 @@
1645
1713
  transform: scale(0.96);
1646
1714
  transition: opacity var(--mds-dur-base) var(--mds-ease-standard), transform var(--mds-dur-base) var(--mds-ease-standard);
1647
1715
  }
1648
- .Modal_panel[data-open] {
1716
+ .mds-Modal__panel[data-open] {
1649
1717
  opacity: 1;
1650
1718
  transform: none;
1651
1719
  }
1652
- .Modal_header {
1720
+ .mds-Modal__header {
1653
1721
  display: flex;
1654
1722
  align-items: center;
1655
1723
  gap: var(--mds-gap);
@@ -1657,12 +1725,12 @@
1657
1725
  font: var(--mds-type-subtitle);
1658
1726
  color: var(--mds-text-primary);
1659
1727
  }
1660
- .Modal_body {
1728
+ .mds-Modal__body {
1661
1729
  flex: 1;
1662
1730
  overflow-y: auto;
1663
1731
  padding: var(--mds-pad-card);
1664
1732
  }
1665
- .Modal_footer {
1733
+ .mds-Modal__footer {
1666
1734
  display: flex;
1667
1735
  align-items: center;
1668
1736
  justify-content: flex-end;
@@ -1670,28 +1738,38 @@
1670
1738
  padding: 0 var(--mds-pad-card) var(--mds-pad-card);
1671
1739
  }
1672
1740
 
1673
- /* src/components/ConfirmDialog/ConfirmDialog.module.css */
1674
- .ConfirmDialog_description {
1741
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/ConfirmDialog/ConfirmDialog.module.css?mds-scoped */
1742
+ .mds-ConfirmDialog__description {
1675
1743
  margin: 0;
1676
1744
  font: var(--mds-type-body);
1677
1745
  color: var(--mds-text-secondary);
1678
1746
  }
1747
+ .mds-ConfirmDialog__error {
1748
+ margin: 0;
1749
+ font: var(--mds-type-body);
1750
+ color: var(--mds-status-danger);
1751
+ }
1679
1752
 
1680
- /* src/components/Screen/Screen.module.css */
1681
- .Screen_screen {
1753
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Screen/Screen.module.css?mds-scoped */
1754
+ .mds-Screen__screen {
1682
1755
  display: flex;
1683
1756
  flex-direction: column;
1684
- min-height: 100dvh;
1757
+ height: 100%;
1758
+ min-height: 0;
1685
1759
  background: var(--mds-surface-page);
1686
1760
  }
1687
- .Screen_content {
1761
+ .mds-Screen__content {
1688
1762
  flex: 1;
1763
+ min-height: 0;
1689
1764
  overflow-y: auto;
1690
1765
  padding: var(--mds-pad-page-y) var(--mds-pad-page-x);
1691
1766
  }
1767
+ .mds-Screen__content.mds-Screen__flush {
1768
+ padding: 0;
1769
+ }
1692
1770
 
1693
- /* src/components/AppBar/AppBar.module.css */
1694
- .AppBar_bar {
1771
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/AppBar/AppBar.module.css?mds-scoped */
1772
+ .mds-AppBar__bar {
1695
1773
  position: sticky;
1696
1774
  top: 0;
1697
1775
  z-index: var(--mds-z-header);
@@ -1703,7 +1781,7 @@
1703
1781
  background: var(--mds-surface-page);
1704
1782
  border-bottom: var(--mds-border-width) solid var(--mds-border-subtle);
1705
1783
  }
1706
- .AppBar_title {
1784
+ .mds-AppBar__title {
1707
1785
  flex: 1;
1708
1786
  min-width: 0;
1709
1787
  overflow: hidden;
@@ -1713,14 +1791,31 @@
1713
1791
  white-space: nowrap;
1714
1792
  text-overflow: ellipsis;
1715
1793
  }
1716
- .AppBar_slot {
1794
+ .mds-AppBar__text {
1795
+ flex: 1;
1796
+ min-width: 0;
1797
+ display: flex;
1798
+ flex-direction: column;
1799
+ }
1800
+ .mds-AppBar__text .mds-AppBar__title {
1801
+ flex: none;
1802
+ }
1803
+ .mds-AppBar__subtitle {
1804
+ min-width: 0;
1805
+ overflow: hidden;
1806
+ font: var(--mds-type-note);
1807
+ color: var(--mds-text-secondary);
1808
+ white-space: nowrap;
1809
+ text-overflow: ellipsis;
1810
+ }
1811
+ .mds-AppBar__slot {
1717
1812
  display: flex;
1718
1813
  align-items: center;
1719
1814
  gap: var(--mds-gap-hairline);
1720
1815
  }
1721
1816
 
1722
- /* src/components/TabBar/TabBar.module.css */
1723
- .TabBar_bar {
1817
+ /* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/TabBar/TabBar.module.css?mds-scoped */
1818
+ .mds-TabBar__bar {
1724
1819
  position: sticky;
1725
1820
  bottom: 0;
1726
1821
  z-index: var(--mds-z-tabbar);
@@ -1729,9 +1824,9 @@
1729
1824
  height: var(--mds-tabbar-h);
1730
1825
  background: var(--mds-surface-page);
1731
1826
  border-top: var(--mds-border-width) solid var(--mds-border-subtle);
1732
- padding-bottom: env(safe-area-inset-bottom);
1827
+ padding-bottom: var(--mds-safe-bottom);
1733
1828
  }
1734
- .TabBar_item {
1829
+ .mds-TabBar__item {
1735
1830
  flex: 1;
1736
1831
  display: flex;
1737
1832
  flex-direction: column;
@@ -1748,17 +1843,48 @@
1748
1843
  text-decoration: none;
1749
1844
  transition: color var(--mds-transition-control);
1750
1845
  }
1751
- .TabBar_item:hover {
1846
+ .mds-TabBar__item:hover {
1752
1847
  color: var(--mds-text-secondary);
1753
1848
  }
1754
- .TabBar_active,
1755
- .TabBar_active:hover {
1849
+ .mds-TabBar__active,
1850
+ .mds-TabBar__active:hover {
1756
1851
  color: var(--mds-text-accent);
1757
1852
  }
1758
- .TabBar_icon {
1853
+ .mds-TabBar__icon {
1854
+ position: relative;
1759
1855
  display: inline-flex;
1760
1856
  }
1761
- .TabBar_label {
1857
+ .mds-TabBar__badge {
1858
+ position: absolute;
1859
+ top: var(--mds-dot-offset-y);
1860
+ right: var(--mds-dot-offset-x);
1861
+ width: var(--mds-dot);
1862
+ height: var(--mds-dot);
1863
+ border-radius: var(--mds-radius-pill);
1864
+ background: var(--mds-status-danger);
1865
+ box-shadow: 0 0 0 var(--mds-dot-ring) var(--mds-surface-page);
1866
+ }
1867
+ .mds-TabBar__label {
1762
1868
  line-height: 1;
1763
1869
  }
1870
+ .mds-TabBar__action {
1871
+ flex: none;
1872
+ align-self: flex-start;
1873
+ width: var(--mds-tabbar-action);
1874
+ height: var(--mds-tabbar-action);
1875
+ margin-top: calc(-1 * var(--mds-tabbar-action-lift));
1876
+ border: none;
1877
+ border-radius: var(--mds-radius-pill);
1878
+ background: var(--mds-accent);
1879
+ color: var(--mds-accent-contrast);
1880
+ display: inline-flex;
1881
+ align-items: center;
1882
+ justify-content: center;
1883
+ box-shadow: var(--mds-elevation-raised);
1884
+ cursor: pointer;
1885
+ transition: background-color var(--mds-transition-control);
1886
+ }
1887
+ .mds-TabBar__action:hover {
1888
+ background: var(--mds-accent-hover);
1889
+ }
1764
1890
  /*# sourceMappingURL=index.css.map */