@boostdev/design-system-components 0.1.17 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/AGENTS.md +65 -27
  2. package/README.md +64 -29
  3. package/dist/client.cjs +412 -241
  4. package/dist/client.css +1380 -1186
  5. package/dist/client.d.cts +43 -16
  6. package/dist/client.d.ts +43 -16
  7. package/dist/client.js +414 -245
  8. package/dist/index.cjs +412 -241
  9. package/dist/index.css +1380 -1186
  10. package/dist/index.d.cts +43 -16
  11. package/dist/index.d.ts +43 -16
  12. package/dist/index.js +414 -245
  13. package/package.json +9 -4
  14. package/src/components/interaction/Button/Button.mdx +2 -5
  15. package/src/components/interaction/Button/Button.module.css +74 -44
  16. package/src/components/interaction/Button/Button.stories.tsx +4 -4
  17. package/src/components/interaction/Button/Button.tsx +5 -5
  18. package/src/components/interaction/Button/index.ts +1 -0
  19. package/src/components/interaction/Command/Command.module.css +53 -38
  20. package/src/components/interaction/Command/Command.spec.tsx +24 -0
  21. package/src/components/interaction/Command/Command.tsx +5 -0
  22. package/src/components/interaction/Dialog/Dialog.mdx +2 -2
  23. package/src/components/interaction/Dialog/Dialog.module.css +20 -10
  24. package/src/components/interaction/Dialog/Dialog.spec.tsx +19 -0
  25. package/src/components/interaction/Dialog/Dialog.tsx +22 -0
  26. package/src/components/interaction/Drawer/Drawer.module.css +13 -11
  27. package/src/components/interaction/Drawer/Drawer.spec.tsx +30 -0
  28. package/src/components/interaction/Drawer/Drawer.tsx +7 -3
  29. package/src/components/interaction/DropdownMenu/DropdownMenu.module.css +24 -19
  30. package/src/components/interaction/DropdownMenu/DropdownMenu.stories.tsx +4 -4
  31. package/src/components/interaction/Popover/Popover.module.css +17 -12
  32. package/src/components/interaction/Popover/Popover.spec.tsx +25 -4
  33. package/src/components/interaction/Popover/Popover.stories.tsx +1 -1
  34. package/src/components/interaction/Popover/Popover.tsx +5 -2
  35. package/src/components/interaction/Rating/Rating.module.css +3 -3
  36. package/src/components/interaction/Toast/Toast.module.css +19 -19
  37. package/src/components/interaction/Toast/Toast.tsx +1 -1
  38. package/src/components/interaction/form/Checkbox/Checkbox.mdx +2 -2
  39. package/src/components/interaction/form/Checkbox/Checkbox.module.css +22 -18
  40. package/src/components/interaction/form/Checkbox/Checkbox.tsx +2 -2
  41. package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css +29 -0
  42. package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.spec.tsx +87 -0
  43. package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.stories.tsx +62 -0
  44. package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx +46 -0
  45. package/src/components/interaction/form/CheckboxGroup/index.ts +2 -0
  46. package/src/components/interaction/form/Combobox/Combobox.module.css +44 -34
  47. package/src/components/interaction/form/Combobox/Combobox.tsx +0 -1
  48. package/src/components/interaction/form/FileInput/FileInput.module.css +24 -16
  49. package/src/components/interaction/form/FileInput/FileInput.tsx +5 -2
  50. package/src/components/interaction/form/FormInput/FormInput.module.css +21 -16
  51. package/src/components/interaction/form/FormInput/FormInput.tsx +3 -0
  52. package/src/components/interaction/form/NumberInput/NumberInput.module.css +25 -19
  53. package/src/components/interaction/form/NumberInput/NumberInput.tsx +5 -2
  54. package/src/components/interaction/form/Radio/Radio.mdx +3 -3
  55. package/src/components/interaction/form/Radio/Radio.module.css +28 -24
  56. package/src/components/interaction/form/Radio/Radio.stories.tsx +1 -1
  57. package/src/components/interaction/form/Radio/Radio.tsx +2 -2
  58. package/src/components/interaction/form/RadioGroup/RadioGroup.module.css +29 -0
  59. package/src/components/interaction/form/RadioGroup/RadioGroup.spec.tsx +75 -0
  60. package/src/components/interaction/form/RadioGroup/RadioGroup.stories.tsx +64 -0
  61. package/src/components/interaction/form/RadioGroup/RadioGroup.tsx +46 -0
  62. package/src/components/interaction/form/RadioGroup/index.ts +2 -0
  63. package/src/components/interaction/form/SegmentedControl/SegmentedControl.mdx +5 -5
  64. package/src/components/interaction/form/SegmentedControl/SegmentedControl.module.css +26 -26
  65. package/src/components/interaction/form/SegmentedControl/SegmentedControl.tsx +4 -0
  66. package/src/components/interaction/form/Select/Select.module.css +24 -19
  67. package/src/components/interaction/form/Select/Select.tsx +3 -0
  68. package/src/components/interaction/form/Slider/Slider.mdx +1 -1
  69. package/src/components/interaction/form/Slider/Slider.module.css +24 -24
  70. package/src/components/interaction/form/Slider/Slider.tsx +1 -0
  71. package/src/components/interaction/form/Switch/Switch.mdx +4 -4
  72. package/src/components/interaction/form/Switch/Switch.module.css +22 -16
  73. package/src/components/interaction/form/Switch/Switch.tsx +1 -1
  74. package/src/components/interaction/form/Textarea/Textarea.module.css +23 -18
  75. package/src/components/interaction/form/Textarea/Textarea.tsx +3 -0
  76. package/src/components/interaction/form/atoms/InputContainer.module.css +2 -2
  77. package/src/components/interaction/form/atoms/Label.module.css +2 -2
  78. package/src/components/interaction/form/atoms/Message.module.css +2 -2
  79. package/src/components/layout/ButtonGroup/ButtonGroup.module.css +2 -2
  80. package/src/components/layout/ButtonGroup/ButtonGroup.stories.tsx +2 -2
  81. package/src/components/layout/ButtonGroup/ButtonGroup.tsx +8 -3
  82. package/src/components/layout/ButtonGroup/index.ts +1 -0
  83. package/src/components/layout/Card/Card.module.css +30 -16
  84. package/src/components/layout/Card/Card.tsx +1 -1
  85. package/src/components/layout/IconWrapper/IconWrapper.mdx +2 -2
  86. package/src/components/layout/IconWrapper/IconWrapper.module.css +5 -5
  87. package/src/components/layout/IconWrapper/IconWrapper.tsx +4 -3
  88. package/src/components/layout/IconWrapper/index.ts +1 -0
  89. package/src/components/layout/SectionHeader/SectionHeader.module.css +23 -23
  90. package/src/components/layout/SectionHeader/SectionHeader.spec.tsx +2 -2
  91. package/src/components/layout/SectionHeader/SectionHeader.tsx +2 -2
  92. package/src/components/ui/Accordion/Accordion.module.css +23 -18
  93. package/src/components/ui/Alert/Alert.module.css +31 -27
  94. package/src/components/ui/Avatar/Avatar.module.css +6 -6
  95. package/src/components/ui/Avatar/Avatar.tsx +1 -1
  96. package/src/components/ui/Badge/Badge.mdx +2 -2
  97. package/src/components/ui/Badge/Badge.module.css +15 -15
  98. package/src/components/ui/Breadcrumb/Breadcrumb.module.css +11 -11
  99. package/src/components/ui/Calendar/Calendar.module.css +39 -29
  100. package/src/components/ui/Calendar/Calendar.tsx +6 -2
  101. package/src/components/ui/Carousel/Carousel.module.css +15 -10
  102. package/src/components/ui/Carousel/Carousel.stories.tsx +1 -1
  103. package/src/components/ui/Collapsible/Collapsible.mdx +6 -6
  104. package/src/components/ui/Collapsible/Collapsible.module.css +18 -18
  105. package/src/components/ui/DescriptionList/DescriptionList.module.css +8 -8
  106. package/src/components/ui/Link/Link.module.css +14 -14
  107. package/src/components/ui/Loading/Loading.module.css +8 -2
  108. package/src/components/ui/NotificationBanner/NotificationBanner.module.css +27 -23
  109. package/src/components/ui/Pagination/Pagination.module.css +22 -17
  110. package/src/components/ui/Progress/Progress.mdx +1 -1
  111. package/src/components/ui/Progress/Progress.module.css +10 -10
  112. package/src/components/ui/ProgressCircle/ProgressCircle.module.css +8 -8
  113. package/src/components/ui/Separator/Separator.module.css +1 -1
  114. package/src/components/ui/Separator/Separator.tsx +1 -1
  115. package/src/components/ui/Skeleton/Skeleton.module.css +5 -5
  116. package/src/components/ui/SkipLink/SkipLink.module.css +17 -12
  117. package/src/components/ui/Table/Table.module.css +35 -30
  118. package/src/components/ui/Table/Table.tsx +2 -1
  119. package/src/components/ui/Tabs/Tabs.module.css +17 -17
  120. package/src/components/ui/Tabs/Tabs.tsx +0 -1
  121. package/src/components/ui/Tooltip/Tooltip.module.css +12 -12
  122. package/src/components/ui/Tooltip/Tooltip.spec.tsx +3 -3
  123. package/src/components/ui/Tooltip/Tooltip.tsx +10 -2
  124. package/src/components/ui/Typography/Typography.module.css +18 -18
  125. package/src/css/bdc.css +61 -0
  126. package/src/css/index.css +5 -0
  127. package/src/index.ts +7 -0
  128. package/src/stories/DesignSystem/Borders.mdx +158 -0
  129. package/src/stories/DesignSystem/Colors.mdx +196 -0
  130. package/src/stories/DesignSystem/Elevation.mdx +127 -0
  131. package/src/stories/DesignSystem/Grid.mdx +140 -0
  132. package/src/stories/DesignSystem/Motion.mdx +96 -0
  133. package/src/stories/DesignSystem/Overview.mdx +99 -0
  134. package/src/stories/DesignSystem/Spacing.mdx +74 -0
  135. package/src/stories/DesignSystem/Typography.mdx +110 -0
  136. package/src/stories/Introduction.css +2 -2
  137. package/src/stories/Introduction.mdx +7 -7
package/dist/index.css CHANGED
@@ -1,74 +1,78 @@
1
1
  /* src/components/ui/Accordion/Accordion.module.css */
2
2
  @layer component {
3
- .bds0117Accordion-accordion {
3
+ .bds100Accordion-accordion {
4
4
  display: flex;
5
5
  flex-direction: column;
6
- border: 1px solid var(--color_bg--subtle);
7
- border-radius: var(--border_radius--s);
6
+ border: var(--accordion_border, none);
7
+ --bdc_color: var(--bds-bg--subtle);
8
+ --bdc_radius: var(--bds-border_radius--s);
9
+ outline: var(--bdc_width) solid var(--bdc_color);
10
+ outline-offset: var(--bdc_offset);
11
+ border-radius: var(--accordion_radius, var(--bdc_radius));
8
12
  overflow: hidden;
9
13
  }
10
- .bds0117Accordion-item {
11
- border-bottom: 1px solid var(--color_bg--subtle);
14
+ .bds100Accordion-item {
15
+ border-bottom: 1px solid var(--bds-bg--subtle);
12
16
  }
13
- .bds0117Accordion-item:last-child {
17
+ .bds100Accordion-item:last-child {
14
18
  border-bottom: none;
15
19
  }
16
- .bds0117Accordion-heading {
20
+ .bds100Accordion-heading {
17
21
  margin: 0;
18
22
  }
19
- .bds0117Accordion-trigger {
23
+ .bds100Accordion-trigger {
20
24
  all: unset;
21
25
  display: flex;
22
26
  align-items: center;
23
27
  justify-content: space-between;
24
28
  width: 100%;
25
- padding: var(--space_m);
26
- font-family: var(--font_family--body);
27
- font-size: var(--font_size--body);
28
- font-weight: var(--font_weight--semibold);
29
- color: var(--color_on-bg);
29
+ padding: var(--bds-space_m);
30
+ font-family: var(--bds-font_family--body);
31
+ font-size: var(--bds-font_size--body);
32
+ font-weight: var(--bds-font_weight--semibold);
33
+ color: var(--bds-on-bg);
30
34
  cursor: pointer;
31
- transition: var(--animation_transition);
35
+ transition: var(--bds-animation_transition);
32
36
  box-sizing: border-box;
33
37
  }
34
- .bds0117Accordion-trigger:disabled {
38
+ .bds100Accordion-trigger:disabled {
35
39
  opacity: 0.4;
36
40
  cursor: not-allowed;
37
41
  }
38
- .bds0117Accordion-trigger:focus-visible {
39
- outline: var(--outline_default);
40
- outline-offset: calc(var(--outline_offset) * -1);
41
- border-radius: var(--border_radius--xs);
42
+ .bds100Accordion-trigger:focus-visible {
43
+ outline: var(--bds-outline_default);
44
+ outline-offset: calc(var(--bds-outline_offset) * -1);
45
+ border-radius: var(--bds-border_radius--xs);
42
46
  }
43
47
  @media (hover: hover) and (pointer: fine) {
44
- .bds0117Accordion-trigger:not(:disabled):hover {
45
- background-color: var(--color_bg--subtle);
48
+ .bds100Accordion-trigger:not(:disabled):hover {
49
+ background-color: var(--bds-bg--subtle);
46
50
  }
47
51
  }
48
- .bds0117Accordion-triggerLabel {
52
+ .bds100Accordion-triggerLabel {
49
53
  flex: 1;
50
54
  text-align: start;
51
55
  }
52
- .bds0117Accordion-chevron {
56
+ .bds100Accordion-chevron {
53
57
  width: 1.25rem;
54
58
  height: 1.25rem;
55
59
  flex-shrink: 0;
56
- transition: transform var(--animation_transition-duration) var(--animation_easing);
60
+ transition: transform var(--bds-animation_transition-duration) var(--bds-animation_easing);
57
61
  }
58
- .bds0117Accordion-item.bds0117Accordion---open .bds0117Accordion-chevron {
62
+ .bds100Accordion-item.bds100Accordion---open .bds100Accordion-chevron {
59
63
  transform: rotate(180deg);
60
64
  }
61
- .bds0117Accordion-panel {
65
+ .bds100Accordion-panel {
62
66
  overflow: hidden;
63
67
  }
64
- .bds0117Accordion-panelContent {
65
- padding: 0 var(--space_m) var(--space_m);
66
- color: var(--color_on-bg);
67
- font-size: var(--font_size--body);
68
- line-height: var(--font_line-height--body);
68
+ .bds100Accordion-panelContent {
69
+ padding: 0 var(--bds-space_m) var(--bds-space_m);
70
+ color: var(--bds-on-bg);
71
+ font-size: var(--bds-font_size--body);
72
+ line-height: var(--bds-font_line-height--body);
69
73
  }
70
74
  @media (prefers-reduced-motion: reduce) {
71
- .bds0117Accordion-chevron {
75
+ .bds100Accordion-chevron {
72
76
  transition: none;
73
77
  }
74
78
  }
@@ -76,55 +80,55 @@
76
80
 
77
81
  /* src/components/ui/Alert/Alert.module.css */
78
82
  @layer component {
79
- .bds0117Alert-alert {
83
+ .bds100Alert-alert {
80
84
  display: flex;
81
85
  align-items: flex-start;
82
- gap: var(--space_s);
83
- padding: var(--space_m);
84
- border-radius: var(--border_radius--s);
85
- border-inline-start: var(--space_s) solid var(--alert_border, var(--color_blue));
86
- background-color: var(--alert_bg, var(--color_blue--subtle));
87
- color: var(--alert_text, var(--color_on-blue--subtle));
88
- font-size: var(--font_size--body);
89
- line-height: var(--font_line-height--body);
90
- }
91
- .bds0117Alert---variant_info {
92
- --alert_bg: var(--color_blue--subtle);
93
- --alert_text: var(--color_on-blue--subtle);
94
- --alert_border: var(--color_blue);
95
- }
96
- .bds0117Alert---variant_success {
97
- --alert_bg: var(--color_success--subtle);
98
- --alert_text: var(--color_on-success--subtle);
99
- --alert_border: var(--color_success);
100
- }
101
- .bds0117Alert---variant_warning {
102
- --alert_bg: var(--color_orange--subtle);
103
- --alert_text: var(--color_on-orange--subtle);
104
- --alert_border: var(--color_warning);
105
- }
106
- .bds0117Alert---variant_error {
107
- --alert_bg: rgb(from var(--color_error) r g b / 12%);
108
- --alert_text: var(--color_on-bg);
109
- --alert_border: var(--color_error);
110
- }
111
- .bds0117Alert-icon {
86
+ gap: var(--bds-space_s);
87
+ padding: var(--bds-space_m);
88
+ border-radius: var(--bds-border_radius--s);
89
+ border-inline-start: var(--bds-space_s) solid var(--alert_border, var(--bds-blue));
90
+ background-color: var(--alert_bg, var(--bds-blue--subtle));
91
+ color: var(--alert_text, var(--bds-on-blue--subtle));
92
+ font-size: var(--bds-font_size--body);
93
+ line-height: var(--bds-font_line-height--body);
94
+ }
95
+ .bds100Alert---variant_info {
96
+ --alert_bg: var(--bds-blue--subtle);
97
+ --alert_text: var(--bds-on-blue--subtle);
98
+ --alert_border: var(--bds-blue);
99
+ }
100
+ .bds100Alert---variant_success {
101
+ --alert_bg: var(--bds-success--subtle);
102
+ --alert_text: var(--bds-on-success--subtle);
103
+ --alert_border: var(--bds-success);
104
+ }
105
+ .bds100Alert---variant_warning {
106
+ --alert_bg: var(--bds-orange--subtle);
107
+ --alert_text: var(--bds-on-orange--subtle);
108
+ --alert_border: var(--bds-warning);
109
+ }
110
+ .bds100Alert---variant_error {
111
+ --alert_bg: rgb(from var(--bds-error) r g b / 12%);
112
+ --alert_text: var(--bds-on-bg);
113
+ --alert_border: var(--bds-error);
114
+ }
115
+ .bds100Alert-icon {
112
116
  display: flex;
113
117
  align-items: center;
114
118
  flex-shrink: 0;
115
119
  margin-block-start: 0.1em;
116
120
  }
117
- .bds0117Alert-content {
121
+ .bds100Alert-content {
118
122
  flex: 1;
119
123
  display: flex;
120
124
  flex-direction: column;
121
- gap: var(--space_xxs);
125
+ gap: var(--bds-space_xxs);
122
126
  }
123
- .bds0117Alert-title {
124
- font-weight: var(--font_weight--semibold);
125
- font-size: var(--font_size--body);
127
+ .bds100Alert-title {
128
+ font-weight: var(--bds-font_weight--semibold);
129
+ font-size: var(--bds-font_size--body);
126
130
  }
127
- .bds0117Alert-dismiss {
131
+ .bds100Alert-dismiss {
128
132
  all: unset;
129
133
  display: flex;
130
134
  align-items: center;
@@ -132,20 +136,23 @@
132
136
  flex-shrink: 0;
133
137
  cursor: pointer;
134
138
  color: currentcolor;
135
- transition: var(--animation_transition);
136
- border: 1px solid currentcolor;
139
+ transition: var(--bds-animation_transition);
140
+ border: var(--alert_dismiss-border, none);
137
141
  border-radius: 50%;
142
+ --bdc_color: currentcolor;
143
+ outline: var(--bdc_width) solid var(--bdc_color);
144
+ outline-offset: var(--bdc_offset);
138
145
  }
139
- .bds0117Alert-dismiss svg {
146
+ .bds100Alert-dismiss svg {
140
147
  width: 1rem;
141
148
  height: 1rem;
142
149
  }
143
- .bds0117Alert-dismiss:focus-visible {
144
- outline: var(--outline_default);
145
- outline-offset: var(--outline_offset);
150
+ .bds100Alert-dismiss:focus-visible {
151
+ outline: var(--bds-outline_default);
152
+ outline-offset: var(--bds-outline_offset);
146
153
  }
147
154
  @media (hover: hover) and (pointer: fine) {
148
- .bds0117Alert-dismiss:hover {
155
+ .bds100Alert-dismiss:hover {
149
156
  opacity: 0.7;
150
157
  }
151
158
  }
@@ -153,7 +160,7 @@
153
160
 
154
161
  /* src/components/ui/Avatar/Avatar.module.css */
155
162
  @layer component {
156
- .bds0117Avatar-avatar {
163
+ .bds100Avatar-avatar {
157
164
  display: inline-flex;
158
165
  align-items: center;
159
166
  justify-content: center;
@@ -163,181 +170,181 @@
163
170
  overflow: hidden;
164
171
  flex-shrink: 0;
165
172
  }
166
- .bds0117Avatar-avatar.bds0117Avatar---fallback {
167
- background-color: var(--avatar_bg, var(--color_blue));
168
- color: var(--avatar_text, var(--color_on-blue));
169
- font-weight: var(--font_weight--semibold);
173
+ .bds100Avatar-avatar.bds100Avatar---fallback {
174
+ background-color: var(--avatar_bg, var(--bds-blue));
175
+ color: var(--avatar_text, var(--bds-on-blue));
176
+ font-weight: var(--bds-font_weight--semibold);
170
177
  }
171
- .bds0117Avatar-avatar.bds0117Avatar---size_small {
178
+ .bds100Avatar-avatar.bds100Avatar---size_small {
172
179
  --avatar_size: 2em;
173
180
  }
174
- .bds0117Avatar-avatar.bds0117Avatar---size_medium {
181
+ .bds100Avatar-avatar.bds100Avatar---size_medium {
175
182
  --avatar_size: 3em;
176
183
  }
177
- .bds0117Avatar-avatar.bds0117Avatar---size_large {
184
+ .bds100Avatar-avatar.bds100Avatar---size_large {
178
185
  --avatar_size: 4.5em;
179
186
  }
180
- .bds0117Avatar-image {
187
+ .bds100Avatar-image {
181
188
  width: 100%;
182
189
  height: 100%;
183
190
  object-fit: cover;
184
191
  display: block;
185
192
  }
186
- .bds0117Avatar-initials {
193
+ .bds100Avatar-initials {
187
194
  line-height: 1;
188
195
  user-select: none;
189
- font-size: var(--font_size--body);
196
+ font-size: var(--bds-font_size--body);
190
197
  }
191
- .bds0117Avatar-avatar.bds0117Avatar---size_small .bds0117Avatar-initials {
192
- font-size: var(--font_size--body--s);
198
+ .bds100Avatar-avatar.bds100Avatar---size_small .bds100Avatar-initials {
199
+ font-size: var(--bds-font_size--body--s);
193
200
  }
194
- .bds0117Avatar-avatar.bds0117Avatar---size_large .bds0117Avatar-initials {
195
- font-size: var(--font_size--heading-3);
201
+ .bds100Avatar-avatar.bds100Avatar---size_large .bds100Avatar-initials {
202
+ font-size: var(--bds-font_size--heading-3);
196
203
  }
197
204
  }
198
205
 
199
206
  /* src/components/ui/Badge/Badge.module.css */
200
207
  @layer component {
201
- .bds0117Badge-badge {
208
+ .bds100Badge-badge {
202
209
  display: inline-flex;
203
210
  align-items: center;
204
211
  justify-content: center;
205
- padding: var(--space_xxs) var(--space_xs);
212
+ padding: var(--bds-space_xxs) var(--bds-space_xs);
206
213
  border-radius: var(--badge_radius, 2em);
207
- font-size: var(--badge_font-size, var(--font_size--body--s));
208
- font-weight: var(--font_weight--semibold);
214
+ font-size: var(--badge_font-size, var(--bds-font_size--body--s));
215
+ font-weight: var(--bds-font_weight--semibold);
209
216
  line-height: 1;
210
217
  white-space: nowrap;
211
- background-color: var(--badge_bg, var(--color_blue));
212
- color: var(--badge_text, var(--color_on-blue));
218
+ background-color: var(--badge_bg, var(--bds-blue));
219
+ color: var(--badge_text, var(--bds-on-blue));
213
220
  }
214
- .bds0117Badge---variant_primary {
215
- --badge_bg: var(--color_interactive);
216
- --badge_text: var(--color_on-interactive);
221
+ .bds100Badge---variant_primary {
222
+ --badge_bg: var(--bds-interactive);
223
+ --badge_text: var(--bds-on-interactive);
217
224
  }
218
- .bds0117Badge---variant_secondary {
219
- --badge_bg: var(--color_bg);
220
- --badge_text: var(--color_on-bg);
225
+ .bds100Badge---variant_secondary {
226
+ --badge_bg: var(--bds-bg);
227
+ --badge_text: var(--bds-on-bg);
221
228
  }
222
- .bds0117Badge---variant_success {
223
- --badge_bg: var(--color_success);
224
- --badge_text: var(--color_on-success);
229
+ .bds100Badge---variant_success {
230
+ --badge_bg: var(--bds-success);
231
+ --badge_text: var(--bds-on-success);
225
232
  }
226
- .bds0117Badge---variant_error {
227
- --badge_bg: var(--color_error);
228
- --badge_text: var(--color_on-error);
233
+ .bds100Badge---variant_error {
234
+ --badge_bg: var(--bds-error);
235
+ --badge_text: var(--bds-on-error);
229
236
  }
230
- .bds0117Badge---variant_warning {
231
- --badge_bg: var(--color_warning);
232
- --badge_text: var(--color_on-warning);
237
+ .bds100Badge---variant_warning {
238
+ --badge_bg: var(--bds-warning);
239
+ --badge_text: var(--bds-on-warning);
233
240
  }
234
241
  }
235
242
 
236
243
  /* src/components/ui/Breadcrumb/Breadcrumb.module.css */
237
244
  @layer component {
238
- .bds0117Breadcrumb-breadcrumb {
239
- font-size: var(--font_size--body--s);
245
+ .bds100Breadcrumb-breadcrumb {
246
+ font-size: var(--bds-font_size--body--s);
240
247
  }
241
- .bds0117Breadcrumb-list {
248
+ .bds100Breadcrumb-list {
242
249
  display: flex;
243
250
  flex-wrap: wrap;
244
251
  align-items: center;
245
- gap: var(--space_xxs);
252
+ gap: var(--bds-space_xxs);
246
253
  list-style: none;
247
254
  margin: 0;
248
255
  padding: 0;
249
256
  }
250
- .bds0117Breadcrumb-item {
257
+ .bds100Breadcrumb-item {
251
258
  display: flex;
252
259
  align-items: center;
253
- gap: var(--space_xxs);
260
+ gap: var(--bds-space_xxs);
254
261
  }
255
- .bds0117Breadcrumb-link {
256
- color: var(--color_interactive);
262
+ .bds100Breadcrumb-link {
263
+ color: var(--bds-interactive);
257
264
  text-decoration: none;
258
- transition: var(--animation_transition);
265
+ transition: var(--bds-animation_transition);
259
266
  }
260
- .bds0117Breadcrumb-link:focus-visible {
261
- outline: var(--outline_default);
262
- outline-offset: var(--outline_offset);
263
- border-radius: var(--border_radius--xs);
267
+ .bds100Breadcrumb-link:focus-visible {
268
+ outline: var(--bds-outline_default);
269
+ outline-offset: var(--bds-outline_offset);
270
+ border-radius: var(--bds-border_radius--xs);
264
271
  }
265
272
  @media (hover: hover) and (pointer: fine) {
266
- .bds0117Breadcrumb-link:hover {
273
+ .bds100Breadcrumb-link:hover {
267
274
  text-decoration: underline;
268
275
  text-underline-offset: 0.2em;
269
276
  }
270
277
  }
271
- .bds0117Breadcrumb-separator {
272
- color: var(--color_on-bg--subtle);
278
+ .bds100Breadcrumb-separator {
279
+ color: var(--bds-on-bg--subtle);
273
280
  user-select: none;
274
281
  }
275
- .bds0117Breadcrumb-current {
276
- color: var(--color_on-bg--subtle);
277
- font-weight: var(--font_weight--semibold);
282
+ .bds100Breadcrumb-current {
283
+ color: var(--bds-on-bg--subtle);
284
+ font-weight: var(--bds-font_weight--semibold);
278
285
  }
279
286
  }
280
287
 
281
288
  /* src/components/ui/Collapsible/Collapsible.module.css */
282
289
  @layer component {
283
- .bds0117Collapsible-collapsible {
284
- border: var(--collapsible_border-width, 1px) solid var(--collapsible_border-color, var(--color_bg--subtle));
285
- border-radius: var(--collapsible_border-radius, var(--border_radius--m));
290
+ .bds100Collapsible-collapsible {
291
+ border: var(--collapsible_border-width, 1px) solid var(--collapsible_border-color, var(--bds-bg--subtle));
292
+ border-radius: var(--collapsible_border-radius, var(--bds-border_radius--m));
286
293
  overflow: hidden;
287
294
  }
288
- .bds0117Collapsible-summary {
295
+ .bds100Collapsible-summary {
289
296
  list-style: none;
290
297
  display: flex;
291
298
  align-items: center;
292
299
  justify-content: space-between;
293
- gap: var(--space_m);
294
- padding: var(--space_m);
300
+ gap: var(--bds-space_m);
301
+ padding: var(--bds-space_m);
295
302
  cursor: pointer;
296
- font-weight: var(--font_weight--semibold);
297
- font-size: var(--font_size--body);
298
- color: var(--collapsible_color, var(--color_on-bg));
299
- background-color: var(--collapsible_bg, var(--color_bg));
303
+ font-weight: var(--bds-font_weight--semibold);
304
+ font-size: var(--bds-font_size--body);
305
+ color: var(--collapsible_color, var(--bds-on-bg));
306
+ background-color: var(--collapsible_bg, var(--bds-bg));
300
307
  user-select: none;
301
- transition: var(--animation_transition);
308
+ transition: var(--bds-animation_transition);
302
309
  }
303
- .bds0117Collapsible-summary::-webkit-details-marker {
310
+ .bds100Collapsible-summary::-webkit-details-marker {
304
311
  display: none;
305
312
  }
306
- .bds0117Collapsible-summary:focus-visible {
307
- outline: var(--outline_default);
308
- outline-offset: calc(var(--outline_offset) * -1);
313
+ .bds100Collapsible-summary:focus-visible {
314
+ outline: var(--bds-outline_default);
315
+ outline-offset: calc(var(--bds-outline_offset) * -1);
309
316
  }
310
317
  @media (hover: hover) and (pointer: fine) {
311
- .bds0117Collapsible-summary:hover {
312
- background-color: var(--collapsible_bg--hover, var(--color_bg--subtle));
318
+ .bds100Collapsible-summary:hover {
319
+ background-color: var(--collapsible_bg--hover, var(--bds-bg--subtle));
313
320
  }
314
321
  }
315
- .bds0117Collapsible-collapsible[open] > .bds0117Collapsible-summary {
316
- border-block-end: var(--collapsible_border-width, 1px) solid var(--collapsible_border-color, var(--color_bg--subtle));
322
+ .bds100Collapsible-collapsible[open] > .bds100Collapsible-summary {
323
+ border-block-end: var(--collapsible_border-width, 1px) solid var(--collapsible_border-color, var(--bds-bg--subtle));
317
324
  }
318
- .bds0117Collapsible-summaryContent {
325
+ .bds100Collapsible-summaryContent {
319
326
  flex: 1;
320
327
  }
321
- .bds0117Collapsible-icon {
328
+ .bds100Collapsible-icon {
322
329
  width: 0.5rem;
323
330
  height: 0.5rem;
324
331
  border-right: 2px solid currentcolor;
325
332
  border-bottom: 2px solid currentcolor;
326
333
  transform: rotate(45deg);
327
334
  flex-shrink: 0;
328
- transition: transform var(--animation_transition-duration) var(--animation_easing);
335
+ transition: transform var(--bds-animation_transition-duration) var(--bds-animation_easing);
329
336
  }
330
- .bds0117Collapsible-collapsible[open] > .bds0117Collapsible-summary .bds0117Collapsible-icon {
337
+ .bds100Collapsible-collapsible[open] > .bds100Collapsible-summary .bds100Collapsible-icon {
331
338
  transform: rotate(-135deg);
332
339
  }
333
- .bds0117Collapsible-content {
334
- padding: var(--space_m);
335
- color: var(--collapsible_on-color, var(--color_on-bg));
336
- font-size: var(--font_size--body);
337
- line-height: var(--font_line-height--body);
340
+ .bds100Collapsible-content {
341
+ padding: var(--bds-space_m);
342
+ color: var(--collapsible_on-color, var(--bds-on-bg));
343
+ font-size: var(--bds-font_size--body);
344
+ line-height: var(--bds-font_line-height--body);
338
345
  }
339
346
  @media (prefers-reduced-motion: reduce) {
340
- .bds0117Collapsible-icon {
347
+ .bds100Collapsible-icon {
341
348
  transition: none;
342
349
  }
343
350
  }
@@ -345,28 +352,32 @@
345
352
 
346
353
  /* src/components/ui/Calendar/Calendar.module.css */
347
354
  @layer component {
348
- .bds0117Calendar-calendar {
355
+ .bds100Calendar-calendar {
349
356
  display: inline-flex;
350
357
  flex-direction: column;
351
- gap: var(--space_s);
352
- background-color: var(--color_bg);
353
- border: 1px solid var(--color_bg--subtle);
354
- border-radius: var(--border_radius--m);
355
- padding: var(--space_m);
356
- box-shadow: var(--shadow_s);
358
+ gap: var(--bds-space_s);
359
+ background-color: var(--bds-bg);
360
+ border: var(--calendar_border, none);
361
+ --bdc_color: var(--bds-bg--subtle);
362
+ --bdc_radius: var(--bds-border_radius--m);
363
+ outline: var(--bdc_width) solid var(--bdc_color);
364
+ outline-offset: var(--bdc_offset);
365
+ border-radius: var(--calendar_radius, var(--bdc_radius));
366
+ padding: var(--bds-space_m);
367
+ box-shadow: var(--calendar_shadow, var(--bds-shadow_s));
357
368
  width: 20rem;
358
369
  }
359
- .bds0117Calendar-header {
370
+ .bds100Calendar-header {
360
371
  display: flex;
361
372
  align-items: center;
362
373
  justify-content: space-between;
363
374
  }
364
- .bds0117Calendar-monthYear {
365
- font-size: var(--font_size--body);
366
- font-weight: var(--font_weight--semibold);
367
- color: var(--color_on-bg);
375
+ .bds100Calendar-monthYear {
376
+ font-size: var(--bds-font_size--body);
377
+ font-weight: var(--bds-font_weight--semibold);
378
+ color: var(--bds-on-bg);
368
379
  }
369
- .bds0117Calendar-navBtn {
380
+ .bds100Calendar-navBtn {
370
381
  all: unset;
371
382
  display: flex;
372
383
  align-items: center;
@@ -375,38 +386,38 @@
375
386
  height: 2rem;
376
387
  border-radius: 50%;
377
388
  cursor: pointer;
378
- color: var(--color_on-bg);
379
- transition: var(--animation_transition);
389
+ color: var(--bds-on-bg);
390
+ transition: var(--bds-animation_transition);
380
391
  }
381
- .bds0117Calendar-navBtn svg {
392
+ .bds100Calendar-navBtn svg {
382
393
  width: 1rem;
383
394
  height: 1rem;
384
395
  }
385
- .bds0117Calendar-navBtn:focus-visible {
386
- outline: var(--outline_default);
387
- outline-offset: var(--outline_offset);
396
+ .bds100Calendar-navBtn:focus-visible {
397
+ outline: var(--bds-outline_default);
398
+ outline-offset: var(--bds-outline_offset);
388
399
  }
389
400
  @media (hover: hover) and (pointer: fine) {
390
- .bds0117Calendar-navBtn:hover {
391
- background-color: var(--color_bg--subtle);
401
+ .bds100Calendar-navBtn:hover {
402
+ background-color: var(--bds-bg--subtle);
392
403
  }
393
404
  }
394
- .bds0117Calendar-grid {
405
+ .bds100Calendar-grid {
395
406
  border-collapse: collapse;
396
407
  width: 100%;
397
408
  table-layout: fixed;
398
409
  }
399
- .bds0117Calendar-weekday {
400
- font-size: var(--font_size--body--s);
401
- font-weight: var(--font_weight--semibold);
402
- color: var(--color_on-bg--muted);
410
+ .bds100Calendar-weekday {
411
+ font-size: var(--bds-font_size--body--s);
412
+ font-weight: var(--bds-font_weight--semibold);
413
+ color: var(--bds-on-bg);
403
414
  text-align: center;
404
- padding-block-end: var(--space_xs);
415
+ padding-block-end: var(--bds-space_xs);
405
416
  }
406
- .bds0117Calendar-empty {
417
+ .bds100Calendar-empty {
407
418
  padding: 0;
408
419
  }
409
- .bds0117Calendar-day {
420
+ .bds100Calendar-day {
410
421
  all: unset;
411
422
  display: flex;
412
423
  align-items: center;
@@ -414,36 +425,39 @@
414
425
  width: 100%;
415
426
  aspect-ratio: 1;
416
427
  border-radius: 50%;
417
- font-size: var(--font_size--body--s);
418
- color: var(--color_on-bg);
428
+ font-size: var(--bds-font_size--body--s);
429
+ color: var(--bds-on-bg);
419
430
  cursor: pointer;
420
- transition: var(--animation_transition);
431
+ transition: var(--bds-animation_transition);
421
432
  box-sizing: border-box;
422
433
  }
423
- .bds0117Calendar-day:focus-visible {
424
- outline: var(--outline_default);
425
- outline-offset: var(--outline_offset);
434
+ .bds100Calendar-day:focus-visible {
435
+ outline: var(--bds-outline_default);
436
+ outline-offset: var(--bds-outline_offset);
426
437
  }
427
438
  @media (hover: hover) and (pointer: fine) {
428
- .bds0117Calendar-day:not(.bds0117Calendar-disabled, .bds0117Calendar-selected):hover {
429
- background-color: var(--color_bg--subtle);
439
+ .bds100Calendar-day:not(.bds100Calendar-disabled, .bds100Calendar-selected):hover {
440
+ background-color: var(--bds-bg--subtle);
430
441
  }
431
442
  }
432
- .bds0117Calendar-today {
433
- border: 2px solid var(--color_interactive);
434
- font-weight: var(--font_weight--semibold);
443
+ .bds100Calendar-today {
444
+ font-weight: var(--bds-font_weight--semibold);
445
+ --bdc_color: var(--bds-interactive);
446
+ border: var(--calendar_today-border, none);
447
+ outline: var(--bdc_width) solid var(--bdc_color);
448
+ outline-offset: var(--bdc_offset);
435
449
  }
436
- .bds0117Calendar-selected {
437
- background-color: var(--color_interactive);
438
- color: var(--color_on-interactive);
439
- font-weight: var(--font_weight--semibold);
450
+ .bds100Calendar-selected {
451
+ background-color: var(--bds-interactive);
452
+ color: var(--bds-on-interactive);
453
+ font-weight: var(--bds-font_weight--semibold);
440
454
  }
441
- .bds0117Calendar-disabled {
455
+ .bds100Calendar-disabled {
442
456
  opacity: 0.35;
443
457
  cursor: not-allowed;
444
458
  }
445
459
  @media (prefers-reduced-motion: reduce) {
446
- .bds0117Calendar-day {
460
+ .bds100Calendar-day {
447
461
  transition: none;
448
462
  }
449
463
  }
@@ -451,29 +465,29 @@
451
465
 
452
466
  /* src/components/ui/Carousel/Carousel.module.css */
453
467
  @layer component {
454
- .bds0117Carousel-carousel {
468
+ .bds100Carousel-carousel {
455
469
  position: relative;
456
470
  display: flex;
457
471
  align-items: center;
458
- gap: var(--space_xs);
472
+ gap: var(--bds-space_xs);
459
473
  }
460
- .bds0117Carousel-track {
474
+ .bds100Carousel-track {
461
475
  display: flex;
462
- gap: var(--space_m);
476
+ gap: var(--bds-space_m);
463
477
  overflow-x: auto;
464
478
  scroll-snap-type: x mandatory;
465
479
  scrollbar-width: none;
466
480
  flex: 1;
467
481
  scroll-behavior: smooth;
468
482
  }
469
- .bds0117Carousel-track::-webkit-scrollbar {
483
+ .bds100Carousel-track::-webkit-scrollbar {
470
484
  display: none;
471
485
  }
472
- .bds0117Carousel-slide {
486
+ .bds100Carousel-slide {
473
487
  scroll-snap-align: start;
474
488
  flex-shrink: 0;
475
489
  }
476
- .bds0117Carousel-navBtn {
490
+ .bds100Carousel-navBtn {
477
491
  all: unset;
478
492
  display: flex;
479
493
  align-items: center;
@@ -481,29 +495,32 @@
481
495
  width: 2.5rem;
482
496
  height: 2.5rem;
483
497
  border-radius: 50%;
484
- background-color: var(--color_bg);
485
- border: 1px solid var(--color_on-bg);
486
- color: var(--color_on-bg);
498
+ background-color: var(--bds-bg);
499
+ color: var(--bds-on-bg);
500
+ --bdc_color: var(--bds-on-bg);
501
+ border: none;
502
+ outline: var(--bdc_width) solid var(--bdc_color);
503
+ outline-offset: var(--bdc_offset);
487
504
  cursor: pointer;
488
505
  flex-shrink: 0;
489
- transition: var(--animation_transition);
490
- box-shadow: var(--shadow_s);
506
+ transition: var(--bds-animation_transition);
507
+ box-shadow: var(--bds-shadow_s);
491
508
  }
492
- .bds0117Carousel-navBtn svg {
509
+ .bds100Carousel-navBtn svg {
493
510
  width: 1.25rem;
494
511
  height: 1.25rem;
495
512
  }
496
- .bds0117Carousel-navBtn:focus-visible {
497
- outline: var(--outline_default);
498
- outline-offset: var(--outline_offset);
513
+ .bds100Carousel-navBtn:focus-visible {
514
+ outline: var(--bds-outline_default);
515
+ outline-offset: var(--bds-outline_offset);
499
516
  }
500
517
  @media (hover: hover) and (pointer: fine) {
501
- .bds0117Carousel-navBtn:hover {
502
- background-color: var(--color_bg--subtle);
518
+ .bds100Carousel-navBtn:hover {
519
+ background-color: var(--bds-bg--subtle);
503
520
  }
504
521
  }
505
522
  @media (prefers-reduced-motion: reduce) {
506
- .bds0117Carousel-track {
523
+ .bds100Carousel-track {
507
524
  scroll-behavior: auto;
508
525
  }
509
526
  }
@@ -511,85 +528,85 @@
511
528
 
512
529
  /* src/components/ui/DescriptionList/DescriptionList.module.css */
513
530
  @layer component {
514
- .bds0117DescriptionList-list {
531
+ .bds100DescriptionList-list {
515
532
  display: flex;
516
533
  flex-direction: column;
517
- gap: var(--space_s);
534
+ gap: var(--bds-space_s);
518
535
  margin: 0;
519
536
  padding: 0;
520
- font-size: var(--font_size--body);
521
- color: var(--color_on-bg);
537
+ font-size: var(--bds-font_size--body);
538
+ color: var(--bds-on-bg);
522
539
  }
523
- .bds0117DescriptionList-group {
540
+ .bds100DescriptionList-group {
524
541
  display: flex;
525
542
  flex-direction: column;
526
- gap: var(--space_xxs);
543
+ gap: var(--bds-space_xxs);
527
544
  }
528
- .bds0117DescriptionList-term {
529
- font-weight: var(--font_weight--semibold);
530
- color: var(--color_on-bg);
545
+ .bds100DescriptionList-term {
546
+ font-weight: var(--bds-font_weight--semibold);
547
+ color: var(--bds-on-bg);
531
548
  }
532
- .bds0117DescriptionList-details {
549
+ .bds100DescriptionList-details {
533
550
  margin: 0;
534
- color: var(--color_on-bg--muted);
551
+ color: var(--bds-on-bg);
535
552
  }
536
- .bds0117DescriptionList---layout_inline .bds0117DescriptionList-group {
553
+ .bds100DescriptionList---layout_inline .bds100DescriptionList-group {
537
554
  display: grid;
538
555
  grid-template-columns: minmax(8rem, 1fr) 2fr;
539
- gap: var(--space_xs);
556
+ gap: var(--bds-space_xs);
540
557
  align-items: baseline;
541
558
  }
542
- .bds0117DescriptionList---layout_inline .bds0117DescriptionList-term {
559
+ .bds100DescriptionList---layout_inline .bds100DescriptionList-term {
543
560
  grid-column: 1;
544
561
  }
545
- .bds0117DescriptionList---layout_inline .bds0117DescriptionList-details {
562
+ .bds100DescriptionList---layout_inline .bds100DescriptionList-details {
546
563
  grid-column: 2;
547
564
  }
548
565
  }
549
566
 
550
567
  /* src/components/ui/Link/Link.module.css */
551
568
  @layer component {
552
- .bds0117Link-link {
553
- color: var(--link_color, var(--color_interactive));
569
+ .bds100Link-link {
570
+ color: var(--link_color, var(--bds-interactive));
554
571
  text-decoration: underline;
555
572
  text-underline-offset: 0.2em;
556
- transition: var(--animation_transition);
573
+ transition: var(--bds-animation_transition);
557
574
  cursor: pointer;
558
575
  }
559
- .bds0117Link-link:focus-visible {
560
- outline: var(--outline_default);
561
- outline-offset: var(--outline_offset);
562
- border-radius: var(--border_radius--xs);
576
+ .bds100Link-link:focus-visible {
577
+ outline: var(--bds-outline_default);
578
+ outline-offset: var(--bds-outline_offset);
579
+ border-radius: var(--bds-border_radius--xs);
563
580
  }
564
581
  @media (hover: hover) and (pointer: fine) {
565
- .bds0117Link-link:hover {
566
- --link_color: var(--link_color-hover, var(--color_blue--strong));
582
+ .bds100Link-link:hover {
583
+ --link_color: var(--link_color-hover, var(--bds-blue--strong));
567
584
  }
568
585
  }
569
- .bds0117Link---variant_default {
570
- --link_color: var(--color_interactive);
571
- --link_color-hover: var(--color_blue--strong);
586
+ .bds100Link---variant_default {
587
+ --link_color: var(--bds-interactive);
588
+ --link_color-hover: var(--bds-blue--strong);
572
589
  }
573
- .bds0117Link---variant_subtle {
574
- --link_color: var(--color_on-bg);
575
- --link_color-hover: var(--color_interactive);
590
+ .bds100Link---variant_subtle {
591
+ --link_color: var(--bds-on-bg);
592
+ --link_color-hover: var(--bds-interactive);
576
593
  }
577
- .bds0117Link---variant_standalone {
578
- --link_color: var(--color_interactive);
579
- --link_color-hover: var(--color_blue--strong);
594
+ .bds100Link---variant_standalone {
595
+ --link_color: var(--bds-interactive);
596
+ --link_color-hover: var(--bds-blue--strong);
580
597
  display: inline-flex;
581
598
  align-items: center;
582
- gap: var(--space_xxs);
583
- font-weight: var(--font_weight--semibold);
599
+ gap: var(--bds-space_xxs);
600
+ font-weight: var(--bds-font_weight--semibold);
584
601
  text-decoration: none;
585
602
  }
586
603
  @media (hover: hover) and (pointer: fine) {
587
- .bds0117Link---variant_standalone:hover {
604
+ .bds100Link---variant_standalone:hover {
588
605
  text-decoration: underline;
589
606
  text-underline-offset: 0.2em;
590
607
  }
591
608
  }
592
- .bds0117Link-externalLabel {
609
+ .bds100Link-externalLabel {
593
610
  position: absolute;
594
611
  width: 1px;
595
612
  height: 1px;
@@ -604,25 +621,25 @@
604
621
 
605
622
  /* src/components/ui/Loading/Loading.module.css */
606
623
  @layer component {
607
- .bds0117Loading-loading {
624
+ .bds100Loading-loading {
608
625
  display: flex;
609
626
  justify-content: center;
610
627
  align-items: center;
611
628
  }
612
- .bds0117Loading-spinner {
629
+ .bds100Loading-spinner {
613
630
  width: 2.5em;
614
631
  height: 2.5em;
615
- border: 4px solid var(--color_bg);
616
- border-top: 4px solid var(--color_interactive);
632
+ border: 4px solid var(--bds-bg);
633
+ border-top: 4px solid var(--bds-interactive);
617
634
  border-radius: 50%;
618
635
  animation: spin 1s linear infinite;
619
636
  }
620
- .bds0117Loading---size_small .bds0117Loading-spinner {
637
+ .bds100Loading---size_small .bds100Loading-spinner {
621
638
  width: 1.5em;
622
639
  height: 1.5em;
623
640
  border-width: 2px;
624
641
  }
625
- .bds0117Loading---size_large .bds0117Loading-spinner {
642
+ .bds100Loading---size_large .bds100Loading-spinner {
626
643
  width: 4em;
627
644
  height: 4em;
628
645
  border-width: 6px;
@@ -636,48 +653,53 @@
636
653
  transform: rotate(360deg);
637
654
  }
638
655
  }
656
+ @media (prefers-reduced-motion: reduce) {
657
+ .bds100Loading-spinner {
658
+ animation: none;
659
+ }
660
+ }
639
661
 
640
662
  /* src/components/ui/NotificationBanner/NotificationBanner.module.css */
641
663
  @layer component {
642
- .bds0117NotificationBanner-banner {
664
+ .bds100NotificationBanner-banner {
643
665
  display: flex;
644
666
  align-items: center;
645
- gap: var(--space_m);
646
- padding: var(--space_s) var(--space_m);
647
- background-color: var(--banner_bg, var(--color_blue--subtle));
648
- color: var(--banner_text, var(--color_on-blue--subtle));
649
- border-block-end: 3px solid var(--banner_border, var(--color_blue));
650
- font-size: var(--font_size--body);
651
- line-height: var(--font_line-height--body);
667
+ gap: var(--bds-space_m);
668
+ padding: var(--bds-space_s) var(--bds-space_m);
669
+ background-color: var(--banner_bg, var(--bds-blue--subtle));
670
+ color: var(--banner_text, var(--bds-on-blue--subtle));
671
+ border-block-end: 3px solid var(--banner_border, var(--bds-blue));
672
+ font-size: var(--bds-font_size--body);
673
+ line-height: var(--bds-font_line-height--body);
652
674
  width: 100%;
653
675
  }
654
- .bds0117NotificationBanner---variant_info {
655
- --banner_bg: var(--color_blue--subtle);
656
- --banner_text: var(--color_on-blue--subtle);
657
- --banner_border: var(--color_blue);
676
+ .bds100NotificationBanner---variant_info {
677
+ --banner_bg: var(--bds-blue--subtle);
678
+ --banner_text: var(--bds-on-blue--subtle);
679
+ --banner_border: var(--bds-blue);
658
680
  }
659
- .bds0117NotificationBanner---variant_success {
660
- --banner_bg: var(--color_success--subtle);
661
- --banner_text: var(--color_on-success--subtle);
662
- --banner_border: var(--color_success);
681
+ .bds100NotificationBanner---variant_success {
682
+ --banner_bg: var(--bds-success--subtle);
683
+ --banner_text: var(--bds-on-success--subtle);
684
+ --banner_border: var(--bds-success);
663
685
  }
664
- .bds0117NotificationBanner---variant_warning {
665
- --banner_bg: var(--color_orange--subtle);
666
- --banner_text: var(--color_on-orange--subtle);
667
- --banner_border: var(--color_warning);
686
+ .bds100NotificationBanner---variant_warning {
687
+ --banner_bg: var(--bds-orange--subtle);
688
+ --banner_text: var(--bds-on-orange--subtle);
689
+ --banner_border: var(--bds-warning);
668
690
  }
669
- .bds0117NotificationBanner---variant_error {
670
- --banner_bg: rgb(from var(--color_error) r g b / 12%);
671
- --banner_text: var(--color_on-bg);
672
- --banner_border: var(--color_error);
691
+ .bds100NotificationBanner---variant_error {
692
+ --banner_bg: rgb(from var(--bds-error) r g b / 12%);
693
+ --banner_text: var(--bds-on-bg);
694
+ --banner_border: var(--bds-error);
673
695
  }
674
- .bds0117NotificationBanner-content {
696
+ .bds100NotificationBanner-content {
675
697
  flex: 1;
676
698
  }
677
- .bds0117NotificationBanner-action {
699
+ .bds100NotificationBanner-action {
678
700
  flex-shrink: 0;
679
701
  }
680
- .bds0117NotificationBanner-dismiss {
702
+ .bds100NotificationBanner-dismiss {
681
703
  all: unset;
682
704
  display: flex;
683
705
  align-items: center;
@@ -686,19 +708,22 @@
686
708
  cursor: pointer;
687
709
  color: currentcolor;
688
710
  border-radius: 50%;
689
- border: 1px solid currentcolor;
690
- transition: var(--animation_transition);
711
+ border: var(--banner_dismiss-border, none);
712
+ transition: var(--bds-animation_transition);
713
+ --bdc_color: currentcolor;
714
+ outline: var(--bdc_width) solid var(--bdc_color);
715
+ outline-offset: var(--bdc_offset);
691
716
  }
692
- .bds0117NotificationBanner-dismiss svg {
717
+ .bds100NotificationBanner-dismiss svg {
693
718
  width: 1rem;
694
719
  height: 1rem;
695
720
  }
696
- .bds0117NotificationBanner-dismiss:focus-visible {
697
- outline: var(--outline_default);
698
- outline-offset: var(--outline_offset);
721
+ .bds100NotificationBanner-dismiss:focus-visible {
722
+ outline: var(--bds-outline_default);
723
+ outline-offset: var(--bds-outline_offset);
699
724
  }
700
725
  @media (hover: hover) and (pointer: fine) {
701
- .bds0117NotificationBanner-dismiss:hover {
726
+ .bds100NotificationBanner-dismiss:hover {
702
727
  opacity: 0.7;
703
728
  }
704
729
  }
@@ -706,114 +731,117 @@
706
731
 
707
732
  /* src/components/ui/Pagination/Pagination.module.css */
708
733
  @layer component {
709
- .bds0117Pagination-pagination {
734
+ .bds100Pagination-pagination {
710
735
  display: flex;
711
736
  justify-content: center;
712
737
  }
713
- .bds0117Pagination-list {
738
+ .bds100Pagination-list {
714
739
  display: flex;
715
740
  align-items: center;
716
- gap: var(--space_xxs);
741
+ gap: var(--bds-space_xxs);
717
742
  list-style: none;
718
743
  margin: 0;
719
744
  padding: 0;
720
745
  }
721
- .bds0117Pagination-button {
746
+ .bds100Pagination-button {
722
747
  all: unset;
723
748
  display: inline-flex;
724
749
  align-items: center;
725
750
  justify-content: center;
726
751
  min-width: 2.25rem;
727
752
  height: 2.25rem;
728
- padding-inline: var(--space_xs);
729
- border-radius: var(--border_radius--xs);
730
- border: 1px solid var(--btn_border, var(--color_bg--subtle));
753
+ padding-inline: var(--bds-space_xs);
754
+ border-radius: var(--bds-border_radius--xs);
731
755
  background-color: var(--btn_bg, transparent);
732
- color: var(--btn_color, var(--color_on-bg));
733
- font-family: var(--font_family--body);
734
- font-size: var(--font_size--body);
756
+ --bdc_color: var(--btn_border, var(--bds-bg--subtle));
757
+ border: none;
758
+ outline: var(--bdc_width) solid var(--bdc_color);
759
+ outline-offset: var(--bdc_offset);
760
+ color: var(--btn_color, var(--bds-on-bg));
761
+ font-family: var(--bds-font_family--body);
762
+ font-size: var(--bds-font_size--body);
735
763
  font-variant-numeric: tabular-nums;
736
764
  cursor: pointer;
737
- transition: var(--animation_transition);
765
+ transition: var(--bds-animation_transition);
738
766
  box-sizing: border-box;
739
767
  }
740
- .bds0117Pagination-button:disabled {
768
+ .bds100Pagination-button:disabled {
741
769
  opacity: 0.4;
742
770
  cursor: not-allowed;
743
771
  }
744
- .bds0117Pagination-button:focus-visible {
745
- outline: var(--outline_default);
746
- outline-offset: var(--outline_offset);
772
+ .bds100Pagination-button:focus-visible {
773
+ outline: var(--bds-outline_default);
774
+ outline-offset: var(--bds-outline_offset);
747
775
  }
748
776
  @media (hover: hover) and (pointer: fine) {
749
- .bds0117Pagination-button:not(:disabled, .bds0117Pagination---active):hover {
750
- --btn_bg: var(--color_bg--subtle);
751
- --btn_color: var(--color_interactive);
777
+ .bds100Pagination-button:not(:disabled, .bds100Pagination---active):hover {
778
+ --btn_bg: var(--bds-bg--subtle);
779
+ --btn_color: var(--bds-interactive);
752
780
  }
753
781
  }
754
- .bds0117Pagination-button.bds0117Pagination---active {
755
- --btn_bg: var(--color_interactive);
756
- --btn_color: var(--color_on-interactive);
757
- --btn_border: var(--color_interactive);
782
+ .bds100Pagination-button.bds100Pagination---active {
783
+ --btn_bg: var(--bds-interactive);
784
+ --btn_color: var(--bds-on-interactive);
785
+ --btn_border: var(--bds-interactive);
758
786
  }
759
- .bds0117Pagination-button.bds0117Pagination---nav svg {
787
+ .bds100Pagination-button.bds100Pagination---nav svg {
760
788
  width: 1rem;
761
789
  height: 1rem;
762
790
  }
763
- .bds0117Pagination-ellipsis {
791
+ .bds100Pagination-ellipsis {
764
792
  display: inline-flex;
765
793
  align-items: center;
766
794
  justify-content: center;
767
795
  min-width: 2.25rem;
768
796
  height: 2.25rem;
769
- color: var(--color_on-bg--subtle);
770
- font-size: var(--font_size--body);
797
+ color: var(--bds-on-bg--subtle);
798
+ font-size: var(--bds-font_size--body);
771
799
  user-select: none;
772
800
  }
773
801
  }
774
802
 
775
803
  /* src/components/ui/Progress/Progress.module.css */
776
804
  @layer component {
777
- .bds0117Progress-container {
805
+ .bds100Progress-container {
778
806
  display: flex;
779
807
  flex-direction: column;
780
- gap: var(--space_xxs);
808
+ gap: var(--bds-space_xxs);
781
809
  width: 100%;
782
810
  }
783
- .bds0117Progress-labelRow {
811
+ .bds100Progress-labelRow {
784
812
  display: flex;
785
813
  justify-content: space-between;
786
814
  align-items: baseline;
787
- font-size: var(--font_size--body--s);
788
- color: var(--color_on-bg);
815
+ font-size: var(--bds-font_size--body--s);
816
+ color: var(--bds-on-bg);
789
817
  }
790
- .bds0117Progress-value {
818
+ .bds100Progress-value {
791
819
  font-variant-numeric: tabular-nums;
792
820
  }
793
- .bds0117Progress-track {
821
+ .bds100Progress-track {
794
822
  width: 100%;
795
- height: var(--progress_height, var(--space_xs));
796
- background-color: var(--color_bg--subtle);
823
+ height: var(--progress_height, var(--bds-space_xs));
824
+ background-color: var(--bds-bg--subtle);
797
825
  border-radius: 999px;
798
826
  overflow: hidden;
799
827
  }
800
- .bds0117Progress-track.bds0117Progress---size_small {
801
- --progress_height: var(--space_xxs);
828
+ .bds100Progress-track.bds100Progress---size_small {
829
+ --progress_height: var(--bds-space_xxs);
802
830
  }
803
- .bds0117Progress-track.bds0117Progress---size_medium {
804
- --progress_height: var(--space_xs);
831
+ .bds100Progress-track.bds100Progress---size_medium {
832
+ --progress_height: var(--bds-space_xs);
805
833
  }
806
- .bds0117Progress-track.bds0117Progress---size_large {
807
- --progress_height: var(--space_s);
834
+ .bds100Progress-track.bds100Progress---size_large {
835
+ --progress_height: var(--bds-space_s);
808
836
  }
809
- .bds0117Progress-fill {
837
+ .bds100Progress-fill {
810
838
  height: 100%;
811
- background-color: var(--progress_color-active, var(--color_active));
839
+ background-color: var(--progress_color-active, var(--bds-active));
812
840
  border-radius: 999px;
813
- transition: width var(--animation_transition-duration) var(--animation_easing);
841
+ transition: width var(--bds-animation_transition-duration) var(--bds-animation_easing);
814
842
  }
815
843
  @media (prefers-reduced-motion: reduce) {
816
- .bds0117Progress-fill {
844
+ .bds100Progress-fill {
817
845
  transition: none;
818
846
  }
819
847
  }
@@ -821,41 +849,41 @@
821
849
 
822
850
  /* src/components/ui/ProgressCircle/ProgressCircle.module.css */
823
851
  @layer component {
824
- .bds0117ProgressCircle-wrapper {
852
+ .bds100ProgressCircle-wrapper {
825
853
  position: relative;
826
854
  display: inline-flex;
827
855
  align-items: center;
828
856
  justify-content: center;
829
857
  }
830
- .bds0117ProgressCircle-svg {
858
+ .bds100ProgressCircle-svg {
831
859
  display: block;
832
860
  }
833
- .bds0117ProgressCircle-track {
834
- stroke: var(--color_bg--subtle);
861
+ .bds100ProgressCircle-track {
862
+ stroke: var(--bds-bg--subtle);
835
863
  }
836
- .bds0117ProgressCircle-fill {
837
- stroke: var(--progressCircle_color-active, var(--color_active));
838
- transition: stroke-dashoffset var(--animation_transition-duration) var(--animation_easing);
864
+ .bds100ProgressCircle-fill {
865
+ stroke: var(--progressCircle_color-active, var(--bds-active));
866
+ transition: stroke-dashoffset var(--bds-animation_transition-duration) var(--bds-animation_easing);
839
867
  }
840
- .bds0117ProgressCircle-value {
868
+ .bds100ProgressCircle-value {
841
869
  position: absolute;
842
- font-size: var(--font_size--body--s);
843
- font-weight: var(--font_weight--semibold);
870
+ font-size: var(--bds-font_size--body--s);
871
+ font-weight: var(--bds-font_weight--semibold);
844
872
  font-variant-numeric: tabular-nums;
845
- color: var(--color_on-bg);
873
+ color: var(--bds-on-bg);
846
874
  line-height: 1;
847
875
  }
848
- .bds0117ProgressCircle---size_small .bds0117ProgressCircle-value {
876
+ .bds100ProgressCircle---size_small .bds100ProgressCircle-value {
849
877
  font-size: 0.5rem;
850
878
  }
851
- .bds0117ProgressCircle---size_medium .bds0117ProgressCircle-value {
852
- font-size: var(--font_size--body--s);
879
+ .bds100ProgressCircle---size_medium .bds100ProgressCircle-value {
880
+ font-size: var(--bds-font_size--body--s);
853
881
  }
854
- .bds0117ProgressCircle---size_large .bds0117ProgressCircle-value {
855
- font-size: var(--font_size--body);
882
+ .bds100ProgressCircle---size_large .bds100ProgressCircle-value {
883
+ font-size: var(--bds-font_size--body);
856
884
  }
857
885
  @media (prefers-reduced-motion: reduce) {
858
- .bds0117ProgressCircle-fill {
886
+ .bds100ProgressCircle-fill {
859
887
  transition: none;
860
888
  }
861
889
  }
@@ -863,16 +891,16 @@
863
891
 
864
892
  /* src/components/ui/Separator/Separator.module.css */
865
893
  @layer component {
866
- .bds0117Separator-separator {
894
+ .bds100Separator-separator {
867
895
  border: none;
868
- background-color: var(--separator_color, var(--color_on-bg));
896
+ background-color: var(--separator_color, var(--bds-on-bg));
869
897
  }
870
- .bds0117Separator-separator.bds0117Separator---horizontal {
898
+ .bds100Separator-separator.bds100Separator---horizontal {
871
899
  display: block;
872
900
  width: 100%;
873
901
  height: var(--separator_thickness, 1px);
874
902
  }
875
- .bds0117Separator-separator.bds0117Separator---vertical {
903
+ .bds100Separator-separator.bds100Separator---vertical {
876
904
  display: inline-block;
877
905
  width: var(--separator_thickness, 1px);
878
906
  align-self: stretch;
@@ -881,17 +909,17 @@
881
909
 
882
910
  /* src/components/ui/Skeleton/Skeleton.module.css */
883
911
  @layer component {
884
- .bds0117Skeleton-skeleton {
912
+ .bds100Skeleton-skeleton {
885
913
  background:
886
914
  linear-gradient(
887
915
  90deg,
888
- var(--color_grey--subtle) 25%,
889
- var(--color_bg) 50%,
890
- var(--color_grey--subtle) 75%);
916
+ var(--bds-grey--subtle) 25%,
917
+ var(--bds-bg) 50%,
918
+ var(--bds-grey--subtle) 75%);
891
919
  background-size: 200% 100%;
892
920
  animation: shimmer 1.5s infinite;
893
- border-radius: var(--border_radius--xs);
894
- min-height: var(--space_m);
921
+ border-radius: var(--bds-border_radius--xs);
922
+ min-height: var(--bds-space_m);
895
923
  }
896
924
  }
897
925
  @keyframes shimmer {
@@ -905,29 +933,32 @@
905
933
 
906
934
  /* src/components/ui/SkipLink/SkipLink.module.css */
907
935
  @layer component {
908
- .bds0117SkipLink-skipLink {
936
+ .bds100SkipLink-skipLink {
909
937
  position: absolute;
910
- inset-block-start: var(--space_s);
911
- inset-inline-start: var(--space_s);
938
+ inset-block-start: var(--bds-space_s);
939
+ inset-inline-start: var(--bds-space_s);
912
940
  z-index: var(--z_overlay);
913
- padding: var(--space_xs) var(--space_m);
914
- background-color: var(--color_bg);
915
- color: var(--color_on-bg);
916
- font-size: var(--font_size--body);
917
- font-weight: var(--font_weight--semibold);
918
- border-radius: var(--border_radius--s);
919
- border: 2px solid var(--color_focus);
941
+ padding: var(--bds-space_xs) var(--bds-space_m);
942
+ background-color: var(--bds-bg);
943
+ color: var(--bds-on-bg);
944
+ font-size: var(--bds-font_size--body);
945
+ font-weight: var(--bds-font_weight--semibold);
946
+ border-radius: var(--bds-border_radius--s);
920
947
  text-decoration: none;
948
+ --bdc_color: var(--color_focus, var(--bds-interactive));
949
+ border: var(--skip-link_border, none);
950
+ outline: var(--bdc_width) solid var(--bdc_color);
951
+ outline-offset: var(--bdc_offset);
921
952
  transform: translateY(-200%);
922
- transition: transform var(--animation_transition-duration) var(--animation_easing);
953
+ transition: transform var(--bds-animation_transition-duration) var(--bds-animation_easing);
923
954
  }
924
- .bds0117SkipLink-skipLink:focus-visible {
955
+ .bds100SkipLink-skipLink:focus-visible {
925
956
  transform: translateY(0);
926
- outline: var(--outline_default);
927
- outline-offset: var(--outline_offset);
957
+ outline: var(--bds-outline_default);
958
+ outline-offset: var(--bds-outline_offset);
928
959
  }
929
960
  @media (prefers-reduced-motion: reduce) {
930
- .bds0117SkipLink-skipLink {
961
+ .bds100SkipLink-skipLink {
931
962
  transition: none;
932
963
  }
933
964
  }
@@ -935,95 +966,99 @@
935
966
 
936
967
  /* src/components/ui/Table/Table.module.css */
937
968
  @layer component {
938
- .bds0117Table-wrapper {
969
+ .bds100Table-wrapper {
939
970
  width: 100%;
940
971
  overflow-x: auto;
941
- border-radius: var(--border_radius--s);
942
- border: 1px solid var(--color_bg--subtle);
943
- }
944
- .bds0117Table-table {
972
+ border: var(--table_border, none);
973
+ --bdc_color: var(--bds-bg--subtle);
974
+ --bdc_radius: var(--bds-border_radius--s);
975
+ outline: var(--bdc_width) solid var(--bdc_color);
976
+ outline-offset: var(--bdc_offset);
977
+ border-radius: var(--table_radius, var(--bdc_radius));
978
+ }
979
+ .bds100Table-table {
945
980
  width: 100%;
946
981
  border-collapse: collapse;
947
- font-size: var(--font_size--body);
948
- font-family: var(--font_family--body);
982
+ font-size: var(--bds-font_size--body);
983
+ font-family: var(--bds-font_family--body);
949
984
  }
950
- .bds0117Table-caption {
985
+ .bds100Table-caption {
951
986
  caption-side: top;
952
987
  text-align: start;
953
- padding: var(--space_s) var(--space_m);
954
- font-weight: var(--font_weight--semibold);
955
- color: var(--color_on-bg);
988
+ padding: var(--bds-space_s) var(--bds-space_m);
989
+ font-weight: var(--bds-font_weight--semibold);
990
+ color: var(--bds-on-bg);
956
991
  }
957
- .bds0117Table-thead {
958
- background-color: var(--color_bg--subtle);
992
+ .bds100Table-thead {
993
+ background-color: var(--bds-bg--subtle);
959
994
  }
960
- .bds0117Table-th {
961
- padding: var(--space_s) var(--space_m);
995
+ .bds100Table-th {
996
+ padding: var(--bds-space_s) var(--bds-space_m);
962
997
  text-align: start;
963
- font-weight: var(--font_weight--semibold);
964
- font-size: var(--font_size--body--s);
965
- color: var(--color_on-bg--subtle);
998
+ font-weight: var(--bds-font_weight--semibold);
999
+ font-size: var(--bds-font_size--body--s);
1000
+ color: var(--bds-on-bg--subtle);
966
1001
  white-space: nowrap;
967
- border-bottom: 1px solid var(--color_bg--subtle);
1002
+ border-bottom: 1px solid var(--bds-bg--subtle);
968
1003
  }
969
- .bds0117Table-th.bds0117Table---sortable {
1004
+ .bds100Table-th.bds100Table---sortable {
970
1005
  padding: 0;
971
1006
  }
972
- .bds0117Table-sortButton {
1007
+ .bds100Table-sortButton {
973
1008
  all: unset;
974
1009
  display: flex;
975
1010
  align-items: center;
976
- gap: var(--space_xxs);
977
- padding: var(--space_s) var(--space_m);
1011
+ gap: var(--bds-space_xxs);
1012
+ padding: var(--bds-space_s) var(--bds-space_m);
978
1013
  width: 100%;
979
1014
  cursor: pointer;
980
- color: var(--color_on-bg--subtle);
981
- font-weight: var(--font_weight--semibold);
982
- font-size: var(--font_size--body--s);
983
- transition: var(--animation_transition);
1015
+ color: var(--bds-on-bg--subtle);
1016
+ font-weight: var(--bds-font_weight--semibold);
1017
+ font-size: var(--bds-font_size--body--s);
1018
+ transition: var(--bds-animation_transition);
984
1019
  box-sizing: border-box;
985
1020
  }
986
- .bds0117Table-sortButton:focus-visible {
987
- outline: var(--outline_default);
988
- outline-offset: calc(var(--outline_offset) * -1);
1021
+ .bds100Table-sortButton:focus-visible {
1022
+ outline: var(--bds-outline_default);
1023
+ outline-offset: calc(var(--bds-outline_offset) * -1);
989
1024
  }
990
1025
  @media (hover: hover) and (pointer: fine) {
991
- .bds0117Table-sortButton:hover {
992
- color: var(--color_on-bg);
1026
+ .bds100Table-sortButton:hover {
1027
+ color: var(--bds-on-bg);
993
1028
  }
994
1029
  }
995
- .bds0117Table-sortIcon {
1030
+ .bds100Table-sortIcon {
996
1031
  width: 1rem;
997
1032
  height: 1rem;
998
1033
  opacity: 0.4;
999
- transition: transform var(--animation_transition-duration) var(--animation_easing), opacity var(--animation_transition-duration) var(--animation_easing);
1034
+ transition: transform var(--bds-animation_transition-duration) var(--bds-animation_easing), opacity var(--bds-animation_transition-duration) var(--bds-animation_easing);
1000
1035
  }
1001
- .bds0117Table-sortIcon.bds0117Table---sort-active {
1036
+ .bds100Table-sortIcon.bds100Table---sort-active {
1002
1037
  opacity: 1;
1003
- color: var(--color_interactive);
1038
+ color: var(--bds-interactive);
1004
1039
  }
1005
- .bds0117Table-sortIcon.bds0117Table---sort-desc {
1040
+ .bds100Table-sortIcon.bds100Table---sort-desc {
1006
1041
  transform: rotate(180deg);
1007
1042
  }
1008
- .bds0117Table-tbody .bds0117Table-tr {
1009
- border-bottom: 1px solid var(--color_bg--subtle);
1010
- transition: var(--animation_transition);
1043
+ .bds100Table-tbody .bds100Table-tr {
1044
+ border-bottom: 1px solid var(--bds-bg--subtle);
1045
+ transition: var(--bds-animation_transition);
1011
1046
  }
1012
- .bds0117Table-tbody .bds0117Table-tr:last-child {
1047
+ .bds100Table-tbody .bds100Table-tr:last-child {
1013
1048
  border-bottom: none;
1014
1049
  }
1015
1050
  @media (hover: hover) and (pointer: fine) {
1016
- .bds0117Table-tbody .bds0117Table-tr:hover {
1017
- background-color: var(--color_bg--subtle);
1051
+ .bds100Table-tbody .bds100Table-tr:hover {
1052
+ background-color: var(--bds-bg--subtle);
1018
1053
  }
1019
1054
  }
1020
- .bds0117Table-td {
1021
- padding: var(--space_s) var(--space_m);
1022
- color: var(--color_on-bg);
1055
+ .bds100Table-td {
1056
+ padding: var(--bds-space_s) var(--bds-space_m);
1057
+ color: var(--bds-on-bg);
1023
1058
  vertical-align: middle;
1024
1059
  }
1025
1060
  @media (prefers-reduced-motion: reduce) {
1026
- .bds0117Table-sortIcon {
1061
+ .bds100Table-sortIcon {
1027
1062
  transition: none;
1028
1063
  }
1029
1064
  }
@@ -1031,105 +1066,105 @@
1031
1066
 
1032
1067
  /* src/components/ui/Tabs/Tabs.module.css */
1033
1068
  @layer component {
1034
- .bds0117Tabs-tabs {
1069
+ .bds100Tabs-tabs {
1035
1070
  display: flex;
1036
1071
  flex-direction: column;
1037
1072
  }
1038
- .bds0117Tabs-tabList {
1073
+ .bds100Tabs-tabList {
1039
1074
  display: flex;
1040
- border-bottom: 1px solid var(--color_bg--subtle);
1041
- gap: var(--space_xxs);
1075
+ border-bottom: 1px solid var(--bds-bg--subtle);
1076
+ gap: var(--bds-space_xxs);
1042
1077
  }
1043
- .bds0117Tabs-tab {
1078
+ .bds100Tabs-tab {
1044
1079
  all: unset;
1045
1080
  display: inline-flex;
1046
1081
  align-items: center;
1047
- padding: var(--space_s) var(--space_m);
1048
- font-family: var(--font_family--body);
1049
- font-size: var(--font_size--body);
1050
- font-weight: var(--font_weight--semibold);
1051
- color: var(--tab_color, var(--color_on-bg));
1082
+ padding: var(--bds-space_s) var(--bds-space_m);
1083
+ font-family: var(--bds-font_family--body);
1084
+ font-size: var(--bds-font_size--body);
1085
+ font-weight: var(--bds-font_weight--semibold);
1086
+ color: var(--tab_color, var(--bds-on-bg));
1052
1087
  border-bottom: 2px solid var(--tab_border-color, transparent);
1053
1088
  margin-bottom: -1px;
1054
1089
  cursor: pointer;
1055
- transition: var(--animation_transition);
1090
+ transition: var(--bds-animation_transition);
1056
1091
  }
1057
- .bds0117Tabs-tab.bds0117Tabs---active {
1058
- --tab_color: var(--color_interactive);
1059
- --tab_border-color: var(--color_interactive);
1092
+ .bds100Tabs-tab.bds100Tabs---active {
1093
+ --tab_color: var(--bds-interactive);
1094
+ --tab_border-color: var(--bds-interactive);
1060
1095
  }
1061
- .bds0117Tabs-tab:disabled {
1096
+ .bds100Tabs-tab:disabled {
1062
1097
  opacity: 0.4;
1063
1098
  cursor: not-allowed;
1064
1099
  }
1065
- .bds0117Tabs-tab:focus-visible {
1066
- outline: var(--outline_default);
1067
- outline-offset: var(--outline_offset);
1068
- border-radius: var(--border_radius--xs);
1100
+ .bds100Tabs-tab:focus-visible {
1101
+ outline: var(--bds-outline_default);
1102
+ outline-offset: var(--bds-outline_offset);
1103
+ border-radius: var(--bds-border_radius--xs);
1069
1104
  }
1070
1105
  @media (hover: hover) and (pointer: fine) {
1071
- .bds0117Tabs-tab:not(:disabled, .bds0117Tabs---active):hover {
1072
- --tab_color: var(--color_interactive);
1106
+ .bds100Tabs-tab:not(:disabled, .bds100Tabs---active):hover {
1107
+ --tab_color: var(--bds-interactive);
1073
1108
  }
1074
1109
  }
1075
- .bds0117Tabs-panel {
1076
- padding-block-start: var(--space_m);
1110
+ .bds100Tabs-panel {
1111
+ padding-block-start: var(--bds-space_m);
1077
1112
  }
1078
- .bds0117Tabs-panel:focus-visible {
1079
- outline: var(--outline_default);
1080
- outline-offset: var(--outline_offset);
1113
+ .bds100Tabs-panel:focus-visible {
1114
+ outline: var(--bds-outline_default);
1115
+ outline-offset: var(--bds-outline_offset);
1081
1116
  }
1082
1117
  }
1083
1118
 
1084
1119
  /* src/components/ui/Tooltip/Tooltip.module.css */
1085
1120
  @layer component {
1086
- .bds0117Tooltip-wrapper {
1121
+ .bds100Tooltip-wrapper {
1087
1122
  position: relative;
1088
1123
  display: inline-flex;
1089
1124
  align-items: center;
1090
1125
  }
1091
- .bds0117Tooltip-tooltip {
1126
+ .bds100Tooltip-tooltip {
1092
1127
  position: absolute;
1093
- z-index: var(--z-index_popover);
1094
- padding: var(--space_xxs) var(--space_xs);
1095
- border-radius: var(--border_radius--xs);
1096
- background-color: var(--tooltip_bg, var(--color_on-bg));
1097
- color: var(--tooltip_text, var(--color_bg));
1098
- font-size: var(--font_size--body--s);
1099
- line-height: var(--font_line-height--body);
1128
+ z-index: var(--bds-z-index_popover);
1129
+ padding: var(--bds-space_xxs) var(--bds-space_xs);
1130
+ border-radius: var(--bds-border_radius--xs);
1131
+ background-color: var(--tooltip_bg, var(--bds-on-bg));
1132
+ color: var(--tooltip_text, var(--bds-bg));
1133
+ font-size: var(--bds-font_size--body--s);
1134
+ line-height: var(--bds-font_line-height--body);
1100
1135
  white-space: nowrap;
1101
1136
  pointer-events: none;
1102
1137
  visibility: hidden;
1103
1138
  opacity: 0;
1104
- transition: opacity var(--animation_transition-duration) var(--animation_easing);
1139
+ transition: opacity var(--bds-animation_transition-duration) var(--bds-animation_easing);
1105
1140
  }
1106
- .bds0117Tooltip-wrapper:hover .bds0117Tooltip-tooltip,
1107
- .bds0117Tooltip-wrapper:focus-within .bds0117Tooltip-tooltip {
1141
+ .bds100Tooltip-wrapper:hover .bds100Tooltip-tooltip,
1142
+ .bds100Tooltip-wrapper:focus-within .bds100Tooltip-tooltip {
1108
1143
  visibility: visible;
1109
1144
  opacity: 1;
1110
1145
  }
1111
- .bds0117Tooltip---placement_top {
1112
- bottom: calc(100% + var(--space_xs));
1146
+ .bds100Tooltip---placement_top {
1147
+ bottom: calc(100% + var(--bds-space_xs));
1113
1148
  left: 50%;
1114
1149
  transform: translateX(-50%);
1115
1150
  }
1116
- .bds0117Tooltip---placement_bottom {
1117
- top: calc(100% + var(--space_xs));
1151
+ .bds100Tooltip---placement_bottom {
1152
+ top: calc(100% + var(--bds-space_xs));
1118
1153
  left: 50%;
1119
1154
  transform: translateX(-50%);
1120
1155
  }
1121
- .bds0117Tooltip---placement_left {
1122
- right: calc(100% + var(--space_xs));
1156
+ .bds100Tooltip---placement_left {
1157
+ right: calc(100% + var(--bds-space_xs));
1123
1158
  top: 50%;
1124
1159
  transform: translateY(-50%);
1125
1160
  }
1126
- .bds0117Tooltip---placement_right {
1127
- left: calc(100% + var(--space_xs));
1161
+ .bds100Tooltip---placement_right {
1162
+ left: calc(100% + var(--bds-space_xs));
1128
1163
  top: 50%;
1129
1164
  transform: translateY(-50%);
1130
1165
  }
1131
1166
  @media (prefers-reduced-motion: reduce) {
1132
- .bds0117Tooltip-tooltip {
1167
+ .bds100Tooltip-tooltip {
1133
1168
  transition: none;
1134
1169
  }
1135
1170
  }
@@ -1137,289 +1172,325 @@
1137
1172
 
1138
1173
  /* src/components/ui/Typography/Typography.module.css */
1139
1174
  @layer component {
1140
- .bds0117Typography-typography {
1175
+ .bds100Typography-typography {
1141
1176
  margin: 0;
1142
- font-family: var(--font_family--body);
1143
- color: var(--typography_color, var(--color_on-bg));
1144
- }
1145
- .bds0117Typography---h1 {
1146
- font-family: var(--font_family--heading);
1147
- font-size: var(--font_size--heading-1);
1148
- font-weight: var(--font_weight--bold);
1149
- line-height: var(--font_line-height--heading);
1150
- }
1151
- .bds0117Typography---h2 {
1152
- font-family: var(--font_family--heading);
1153
- font-size: var(--font_size--heading-2);
1154
- font-weight: var(--font_weight--semibold);
1155
- line-height: var(--font_line-height--heading);
1156
- }
1157
- .bds0117Typography---h3 {
1158
- font-family: var(--font_family--heading);
1159
- font-size: var(--font_size--heading-3);
1160
- font-weight: var(--font_weight--semibold);
1161
- line-height: var(--font_line-height--heading);
1162
- }
1163
- .bds0117Typography---body {
1164
- font-size: var(--font_size--body);
1165
- line-height: var(--font_line-height--body);
1166
- }
1167
- .bds0117Typography---body_s {
1168
- font-size: var(--font_size--body--s);
1169
- line-height: var(--font_line-height--body);
1177
+ font-family: var(--bds-font_family--body);
1178
+ color: var(--typography_color, var(--bds-on-bg));
1179
+ }
1180
+ .bds100Typography---h1 {
1181
+ font-family: var(--bds-font_family--heading);
1182
+ font-size: var(--bds-font_size--heading-1);
1183
+ font-weight: var(--bds-font_weight--bold);
1184
+ line-height: var(--bds-font_line-height--heading);
1185
+ }
1186
+ .bds100Typography---h2 {
1187
+ font-family: var(--bds-font_family--heading);
1188
+ font-size: var(--bds-font_size--heading-2);
1189
+ font-weight: var(--bds-font_weight--semibold);
1190
+ line-height: var(--bds-font_line-height--heading);
1191
+ }
1192
+ .bds100Typography---h3 {
1193
+ font-family: var(--bds-font_family--heading);
1194
+ font-size: var(--bds-font_size--heading-3);
1195
+ font-weight: var(--bds-font_weight--semibold);
1196
+ line-height: var(--bds-font_line-height--heading);
1197
+ }
1198
+ .bds100Typography---body {
1199
+ font-size: var(--bds-font_size--body);
1200
+ line-height: var(--bds-font_line-height--body);
1201
+ }
1202
+ .bds100Typography---body_s {
1203
+ font-size: var(--bds-font_size--body--s);
1204
+ line-height: var(--bds-font_line-height--body);
1170
1205
  }
1171
1206
  }
1172
1207
 
1173
1208
  /* src/components/interaction/Button/Button.module.css */
1209
+ @keyframes fadeZoom {
1210
+ 0%, 100% {
1211
+ opacity: 1;
1212
+ transform: scale(1);
1213
+ }
1214
+ 50% {
1215
+ opacity: 0.75;
1216
+ transform: scale(1.15);
1217
+ }
1218
+ }
1174
1219
  @keyframes pulse {
1175
1220
  0% {
1176
1221
  transform: scale(1);
1177
- box-shadow: 0 0 0 0 rgb(from var(--button_pulse-color, var(--color_cta)) r g b / 50%);
1222
+ box-shadow: 0 0 0 0 rgb(from var(--button_pulse-color, var(--button_color, var(--bds-cta))) r g b / 50%);
1178
1223
  }
1179
1224
  70% {
1180
1225
  transform: scale(1.01);
1181
- box-shadow: 0 0 0 var(--space_m) rgb(from var(--button_pulse-color, var(--color_cta)) r g b / 0%);
1226
+ box-shadow: 0 0 0 var(--bds-space_m) rgb(from var(--button_pulse-color, var(--button_color, var(--bds-cta))) r g b / 0%);
1182
1227
  }
1183
1228
  100% {
1184
1229
  transform: scale(1);
1185
- box-shadow: 0 0 0 0 rgb(from var(--button_pulse-color, var(--color_cta)) r g b / 0%);
1230
+ box-shadow: 0 0 0 0 rgb(from var(--button_pulse-color, var(--button_color, var(--bds-cta))) r g b / 0%);
1186
1231
  }
1187
1232
  }
1188
1233
  @layer component {
1189
- .bds0117Button-button,
1190
- .bds0117Button-button[href] {
1234
+ .bds100Button-button,
1235
+ .bds100Button-button[href] {
1191
1236
  all: unset;
1192
1237
  position: relative;
1193
1238
  font: inherit;
1194
- padding-inline: var(--space_l);
1239
+ padding-inline: var(--bds-space_l);
1195
1240
  display: inline-flex;
1196
- gap: var(--space_xs);
1197
- border-radius: var(--button_border_radius--s, var(--border_radius--s));
1241
+ gap: var(--bds-space_xs);
1242
+ border-radius: var(--button_border_radius--s, var(--bds-border_radius--s));
1198
1243
  align-items: center;
1199
1244
  cursor: pointer;
1200
- scroll-padding-block-end: var(--space_l);
1245
+ scroll-padding-block-end: var(--bds-space_l);
1201
1246
  justify-content: center;
1202
1247
  height: var(--button_height, 3em);
1203
1248
  font-size: var(--button_font-size, inherit);
1204
1249
  white-space: nowrap;
1205
1250
  line-height: 1;
1206
- background-color: var(--button_bg, var(--color_cta));
1207
- color: var(--button_text, var(--color_on-cta));
1208
- border: 2px solid var(--button_border-color, var(--color_cta));
1209
- transition: var(--animation_transition);
1210
- }
1211
- .bds0117Button-button.bds0117Button---primary {
1212
- --button_border-color: transparent;
1213
- }
1214
- .bds0117Button-button.bds0117Button---secondary {
1215
- --button_bg: var(--color_bg);
1216
- --button_text: var(--color_on-bg);
1217
- --button_border-color: var(--button_text);
1218
- }
1219
- .bds0117Button-button.bds0117Button---size_small {
1251
+ --button_color: var(--bds-cta);
1252
+ --button_on-color: var(--bds-on-cta);
1253
+ background-color: var(--button_bg, var(--button_color));
1254
+ color: var(--button_text, var(--button_on-color));
1255
+ border: var(--button_border, none);
1256
+ --bdc_color: transparent;
1257
+ outline: var(--bdc_width) solid var(--bdc_color);
1258
+ outline-offset: var(--bdc_offset);
1259
+ transition: var(--bds-animation_transition), --bdc_color var(--bds-animation_transition-duration) var(--bds-animation_easing);
1260
+ }
1261
+ .bds100Button-button.bds100Button---default {
1262
+ }
1263
+ .bds100Button-button.bds100Button---ghost {
1264
+ --button_bg: transparent;
1265
+ --button_text: var(--button_color);
1266
+ --bdc_color: var(--button_color);
1267
+ }
1268
+ .bds100Button-button.bds100Button---size_small {
1220
1269
  --button_height: 2.25em;
1221
- --button_font-size: var(--font_size--body--s);
1222
- --button_border_radius--s: var(--border_radius--xs);
1223
- padding-inline: var(--space_m);
1270
+ --button_font-size: var(--bds-font_size--body--s);
1271
+ --button_border_radius--s: var(--bds-border_radius--xs);
1272
+ padding-inline: var(--bds-space_m);
1224
1273
  }
1225
- .bds0117Button-button.bds0117Button---size_medium {
1274
+ .bds100Button-button.bds100Button---size_medium {
1226
1275
  --button_height: 3em;
1227
- padding-inline: var(--space_l);
1276
+ padding-inline: var(--bds-space_l);
1228
1277
  }
1229
- .bds0117Button-button.bds0117Button---size_large {
1230
- --button_font-size: var(--font_size--heading-3);
1231
- padding-inline: var(--space_xl);
1232
- --button_border_radius--s: var(--border_radius--m);
1278
+ .bds100Button-button.bds100Button---size_large {
1279
+ --button_font-size: var(--bds-font_size--heading-3);
1280
+ --button_border_radius--s: var(--bds-border_radius--m);
1281
+ padding-inline: var(--bds-space_xl);
1233
1282
  }
1234
- .bds0117Button-button.bds0117Button---hasPulse {
1283
+ .bds100Button-button.bds100Button---hasPulse {
1235
1284
  animation: pulse 3s infinite;
1236
1285
  }
1237
- .bds0117Button-button[href] {
1286
+ .bds100Button-button[href] {
1238
1287
  text-decoration: none;
1239
1288
  }
1240
- .bds0117Button-button svg {
1289
+ .bds100Button-button svg {
1241
1290
  --icon__stroke: currentcolor;
1242
1291
  fill: currentcolor;
1243
1292
  color: currentcolor;
1244
1293
  flex-shrink: 0;
1245
1294
  }
1246
- .bds0117Button-prefix {
1295
+ .bds100Button-iconStart {
1247
1296
  display: flex;
1248
1297
  align-items: center;
1249
- margin-inline-start: calc(var(--space_s) * -1);
1250
- transition: var(--animation_transition);
1298
+ margin-inline-start: calc(var(--bds-space_s) * -1);
1299
+ transition: var(--bds-animation_transition);
1251
1300
  }
1252
- .bds0117Button-suffix {
1301
+ .bds100Button-iconEnd {
1253
1302
  display: flex;
1254
1303
  align-items: center;
1255
- margin-inline-end: calc(var(--space_s) * -1);
1256
- transition: var(--animation_transition);
1304
+ margin-inline-end: calc(var(--bds-space_s) * -1);
1305
+ transition: var(--bds-animation_transition);
1257
1306
  }
1258
1307
  @media (hover: hover) and (pointer: fine) {
1259
- .bds0117Button-button:hover .bds0117Button-prefix svg {
1260
- animation: 2s infinite fadeZoom ease-out;
1308
+ .bds100Button-button:hover .bds100Button-iconStart svg {
1309
+ animation: fadeZoom 2s ease-out infinite;
1261
1310
  }
1262
- .bds0117Button-button:hover .bds0117Button-suffix svg {
1263
- animation: 2s infinite fadeZoom ease-out;
1311
+ .bds100Button-button:hover .bds100Button-iconEnd svg {
1312
+ animation: fadeZoom 2s ease-out infinite;
1264
1313
  }
1265
1314
  }
1266
- .bds0117Button-button:focus-visible {
1267
- outline-offset: var(--outline_offset);
1268
- outline: var(--outline_default);
1269
- border-radius: var(--border_radius--s);
1315
+ .bds100Button-button:focus-visible {
1316
+ outline: var(--bds-outline_default);
1317
+ outline-offset: var(--bds-outline_offset);
1318
+ border-radius: var(--bds-border_radius--s);
1319
+ }
1320
+ @media (hover: hover) and (pointer: fine) {
1321
+ .bds100Button-button.bds100Button---default:hover {
1322
+ --button_bg: var(--bds-bg);
1323
+ --button_text: var(--bds-interactive);
1324
+ --button_pulse-color: var(--bds-interactive);
1325
+ --bdc_color: currentcolor;
1326
+ }
1270
1327
  }
1271
1328
  @media (hover: hover) and (pointer: fine) {
1272
- .bds0117Button-button:hover {
1273
- --button_bg: var(--color_bg);
1274
- --button_text: var(--color_interactive);
1275
- --button_pulse-color: var(--color_interactive);
1276
- --button_border-color: currentcolor;
1329
+ .bds100Button-button.bds100Button---ghost:hover {
1330
+ --button_bg: var(--button_color);
1331
+ --button_text: var(--button_on-color);
1332
+ --bdc_color: transparent;
1277
1333
  }
1278
1334
  }
1279
1335
  }
1280
1336
 
1281
1337
  /* src/components/interaction/Command/Command.module.css */
1282
1338
  @layer component {
1283
- .bds0117Command-dialog {
1339
+ .bds100Command-dialog {
1284
1340
  padding: 0;
1285
1341
  border: none;
1286
- border-radius: var(--border_radius--m);
1342
+ border-radius: var(--bds-border_radius--m);
1287
1343
  background: transparent;
1288
1344
  width: min(40rem, 90vw);
1289
1345
  max-height: 70vh;
1290
1346
  overflow: visible;
1291
1347
  margin-block-start: 10vh;
1292
1348
  }
1293
- .bds0117Command-dialog::backdrop {
1294
- background-color: var(--command_backdrop-color, rgb(0 0 0 / 50%));
1349
+ .bds100Command-dialog::backdrop {
1350
+ background-color: var(--color_backdrop, rgb(0 0 0 / 50%));
1295
1351
  backdrop-filter: blur(3px);
1296
1352
  }
1297
- .bds0117Command-palette {
1353
+ .bds100Command-palette {
1298
1354
  display: flex;
1299
1355
  flex-direction: column;
1300
- background-color: var(--command_color, var(--color_bg));
1301
- color: var(--command_on-color, var(--color_on-bg));
1302
- border-radius: var(--border_radius--m);
1303
- box-shadow: var(--shadow_xl);
1356
+ background-color: var(--command_color, var(--bds-bg));
1357
+ color: var(--command_on-color, var(--bds-on-bg));
1358
+ border-radius: var(--bds-border_radius--m);
1359
+ box-shadow: var(--command_shadow, var(--bds-shadow_xl));
1304
1360
  overflow: hidden;
1305
1361
  max-height: 70vh;
1306
- border: 1px solid currentcolor;
1362
+ border: var(--command_border, none);
1363
+ --bdc_color: currentcolor;
1364
+ --bdc_radius: var(--bds-border_radius--m);
1365
+ outline: var(--bdc_width) solid var(--bdc_color);
1366
+ outline-offset: var(--bdc_offset);
1307
1367
  }
1308
- .bds0117Command-searchRow {
1368
+ .bds100Command-searchRow {
1309
1369
  display: flex;
1310
1370
  align-items: center;
1311
- gap: var(--space_xs);
1312
- padding: var(--space_s) var(--space_m);
1371
+ gap: var(--bds-space_xs);
1372
+ padding: var(--bds-space_s) var(--bds-space_m);
1313
1373
  border-block-end: 1px solid currentcolor;
1314
1374
  flex-shrink: 0;
1315
1375
  }
1316
- .bds0117Command-searchIcon {
1376
+ .bds100Command-searchIcon {
1317
1377
  width: 1.25rem;
1318
1378
  height: 1.25rem;
1319
- color: var(--color_on-bg--muted);
1379
+ color: var(--bds-on-bg);
1320
1380
  flex-shrink: 0;
1321
1381
  }
1322
- .bds0117Command-search {
1382
+ .bds100Command-search {
1323
1383
  flex: 1;
1324
1384
  border: none;
1325
1385
  outline: none;
1326
- font-family: var(--font_family--body);
1327
- font-size: var(--font_size--body);
1328
- color: var(--color_on-bg);
1386
+ font-family: var(--bds-font_family--body);
1387
+ font-size: var(--bds-font_size--body);
1388
+ color: var(--bds-on-bg);
1329
1389
  background: transparent;
1330
1390
  min-width: 0;
1331
1391
  }
1332
- .bds0117Command-search::placeholder {
1333
- color: var(--color_on-bg--muted);
1392
+ .bds100Command-search::placeholder {
1393
+ color: var(--bds-on-bg);
1334
1394
  }
1335
- .bds0117Command-escHint {
1336
- font-size: var(--font_size--body--s);
1337
- color: var(--color_on-bg--muted);
1338
- border: 1px solid currentcolor;
1339
- border-radius: var(--border_radius--xs);
1395
+ .bds100Command-escHint {
1396
+ font-size: var(--bds-font_size--body--s);
1397
+ color: var(--bds-on-bg);
1398
+ border-radius: var(--bds-border_radius--xs);
1340
1399
  padding: 0.1em 0.4em;
1341
1400
  flex-shrink: 0;
1401
+ --bdc_color: currentcolor;
1402
+ border: none;
1403
+ outline: var(--bdc_width) solid var(--bdc_color);
1404
+ outline-offset: var(--bdc_offset);
1342
1405
  }
1343
- .bds0117Command-list {
1406
+ .bds100Command-list {
1344
1407
  overflow-y: auto;
1345
1408
  list-style: none;
1346
1409
  margin: 0;
1347
- padding: var(--space_xs) 0;
1410
+ padding: var(--bds-space_xs) 0;
1348
1411
  }
1349
- .bds0117Command-groupList {
1412
+ .bds100Command-groupList {
1350
1413
  list-style: none;
1351
1414
  margin: 0;
1352
1415
  padding: 0;
1353
1416
  }
1354
- .bds0117Command-group {
1355
- padding: var(--space_xs) var(--space_m);
1356
- font-size: var(--font_size--body--s);
1357
- font-weight: var(--font_weight--semibold);
1358
- color: var(--color_on-bg--muted);
1417
+ .bds100Command-group {
1418
+ padding: var(--bds-space_xs) var(--bds-space_m);
1419
+ font-size: var(--bds-font_size--body--s);
1420
+ font-weight: var(--bds-font_weight--semibold);
1421
+ color: var(--bds-on-bg);
1359
1422
  text-transform: uppercase;
1360
1423
  letter-spacing: 0.05em;
1361
1424
  }
1362
- .bds0117Command-item {
1425
+ .bds100Command-item {
1363
1426
  display: flex;
1364
1427
  align-items: center;
1365
- gap: var(--space_s);
1366
- padding: var(--space_s) var(--space_m);
1428
+ gap: var(--bds-space_s);
1429
+ padding: var(--bds-space_s) var(--bds-space_m);
1367
1430
  cursor: pointer;
1368
- transition: background-color var(--animation_transition-duration) var(--animation_easing);
1431
+ transition: background-color var(--bds-animation_transition-duration) var(--bds-animation_easing);
1369
1432
  }
1370
- .bds0117Command-itemActive {
1371
- background-color: var(--color_bg--subtle);
1433
+ .bds100Command-itemActive {
1434
+ background-color: var(--bds-bg--subtle);
1372
1435
  }
1373
- .bds0117Command-itemLabel {
1436
+ .bds100Command-itemLabel {
1374
1437
  flex: 1;
1375
- font-size: var(--font_size--body);
1376
- color: var(--color_on-bg);
1377
- }
1378
- .bds0117Command-itemDesc {
1379
- font-size: var(--font_size--body--s);
1380
- color: var(--color_on-bg--muted);
1381
- }
1382
- .bds0117Command-shortcut {
1383
- font-size: var(--font_size--body--s);
1384
- color: var(--color_on-bg--muted);
1385
- border: 1px solid currentcolor;
1386
- border-radius: var(--border_radius--xs);
1438
+ font-size: var(--bds-font_size--body);
1439
+ color: var(--bds-on-bg);
1440
+ }
1441
+ .bds100Command-itemDesc {
1442
+ font-size: var(--bds-font_size--body--s);
1443
+ color: var(--bds-on-bg);
1444
+ }
1445
+ .bds100Command-shortcut {
1446
+ font-size: var(--bds-font_size--body--s);
1447
+ color: var(--bds-on-bg);
1448
+ border-radius: var(--bds-border_radius--xs);
1387
1449
  padding: 0.1em 0.4em;
1450
+ --bdc_color: currentcolor;
1451
+ border: none;
1452
+ outline: var(--bdc_width) solid var(--bdc_color);
1453
+ outline-offset: var(--bdc_offset);
1388
1454
  }
1389
- .bds0117Command-empty {
1390
- padding: var(--space_l) var(--space_m);
1455
+ .bds100Command-empty {
1456
+ padding: var(--bds-space_l) var(--bds-space_m);
1391
1457
  text-align: center;
1392
- color: var(--color_on-bg--muted);
1393
- font-size: var(--font_size--body);
1458
+ color: var(--bds-on-bg);
1459
+ font-size: var(--bds-font_size--body);
1394
1460
  }
1395
1461
  }
1396
1462
 
1397
1463
  /* src/components/interaction/Dialog/Dialog.module.css */
1398
1464
  @layer component {
1399
- .bds0117Dialog-dialog {
1400
- font-size: var(--font_size--body--s);
1401
- border: 2px solid currentcolor;
1402
- background-color: var(--dialog_color ,var(--color_grey--subtle));
1403
- color: var(--dialog_on-color, var(--color_on-grey--subtle));
1404
- border-radius: var(--border_radius--m);
1405
- padding: var(--space_l);
1465
+ .bds100Dialog-dialog {
1466
+ font-size: var(--bds-font_size--body--s);
1467
+ border: var(--dialog_border, none);
1468
+ --bdc_color: currentcolor;
1469
+ --bdc_radius: var(--bds-border_radius--m);
1470
+ outline: var(--bdc_width) solid var(--bdc_color);
1471
+ outline-offset: var(--bdc_offset);
1472
+ border-radius: var(--dialog_radius, var(--bdc_radius));
1473
+ box-shadow: var(--dialog_shadow, var(--bdc_shadow));
1474
+ background-color: var(--dialog_color ,var(--bds-grey--subtle));
1475
+ color: var(--dialog_on-color, var(--bds-on-grey--subtle));
1476
+ padding: var(--bds-space_l);
1406
1477
  max-width: 90svw;
1407
1478
  max-height: 90svh;
1408
1479
  overflow: visible;
1409
1480
  }
1410
- .bds0117Dialog-dialogContent {
1481
+ .bds100Dialog-dialogContent {
1411
1482
  display: grid;
1412
- gap: var(--grid_gap);
1483
+ gap: var(--bds-grid_gap);
1413
1484
  overflow-y: auto;
1414
1485
  min-height: 0;
1415
1486
  flex: 1;
1416
1487
  }
1417
- .bds0117Dialog-closeForm {
1488
+ .bds100Dialog-closeForm {
1418
1489
  position: absolute;
1419
1490
  inset-block-start: -1em;
1420
1491
  inset-inline-end: -1em;
1421
1492
  }
1422
- .bds0117Dialog-closeButton {
1493
+ .bds100Dialog-closeButton {
1423
1494
  all: unset;
1424
1495
  width: 2em;
1425
1496
  height: 2em;
@@ -1427,24 +1498,27 @@
1427
1498
  align-items: center;
1428
1499
  justify-content: center;
1429
1500
  border-radius: 50%;
1430
- background-color: var(--color_bg);
1501
+ background-color: var(--bds-bg);
1431
1502
  color: currentcolor;
1432
- border: 2px solid currentcolor;
1503
+ border: var(--dialog_close-border, none);
1504
+ --bdc_color: currentcolor;
1505
+ outline: var(--bdc_width) solid var(--bdc_color);
1506
+ outline-offset: var(--bdc_offset);
1433
1507
  cursor: pointer;
1434
1508
  }
1435
- .bds0117Dialog-closeButton svg {
1509
+ .bds100Dialog-closeButton svg {
1436
1510
  width: 1.25em;
1437
1511
  height: 1.25em;
1438
1512
  }
1439
- .bds0117Dialog-dialog::backdrop {
1440
- background-color: var(--dialog_backdrop-color, rgb(0 0 0 / 50%));
1513
+ .bds100Dialog-dialog::backdrop {
1514
+ background-color: var(--color_backdrop, rgb(0 0 0 / 50%));
1441
1515
  backdrop-filter: blur(3px);
1442
1516
  }
1443
1517
  }
1444
1518
 
1445
1519
  /* src/components/interaction/Drawer/Drawer.module.css */
1446
1520
  @layer component {
1447
- .bds0117Drawer-drawer {
1521
+ .bds100Drawer-drawer {
1448
1522
  position: fixed;
1449
1523
  inset: 0;
1450
1524
  margin: 0;
@@ -1457,38 +1531,38 @@
1457
1531
  background: transparent;
1458
1532
  overflow: hidden;
1459
1533
  }
1460
- .bds0117Drawer-drawer::backdrop {
1461
- background-color: var(--drawer_backdrop-color, rgb(0 0 0 / 50%));
1534
+ .bds100Drawer-drawer::backdrop {
1535
+ background-color: var(--color_backdrop, rgb(0 0 0 / 50%));
1462
1536
  backdrop-filter: blur(3px);
1463
1537
  }
1464
- .bds0117Drawer-panel {
1538
+ .bds100Drawer-panel {
1465
1539
  position: absolute;
1466
1540
  inset-block: 0;
1467
1541
  display: flex;
1468
1542
  flex-direction: column;
1469
1543
  width: min(28rem, 90vw);
1470
1544
  height: 100%;
1471
- background-color: var(--drawer_color, var(--color_bg));
1472
- color: var(--drawer_on-color, var(--color_on-bg));
1473
- box-shadow: var(--shadow_xl);
1545
+ background-color: var(--drawer_color, var(--bds-bg));
1546
+ color: var(--drawer_on-color, var(--bds-on-bg));
1547
+ box-shadow: var(--bds-shadow_xl);
1474
1548
  overflow: hidden;
1475
- transition: var(--animation_transition);
1549
+ transition: var(--bds-animation_transition);
1476
1550
  }
1477
- .bds0117Drawer---side_right .bds0117Drawer-panel {
1551
+ .bds100Drawer---side_right .bds100Drawer-panel {
1478
1552
  inset-inline-end: 0;
1479
1553
  }
1480
- .bds0117Drawer---side_left .bds0117Drawer-panel {
1554
+ .bds100Drawer---side_left .bds100Drawer-panel {
1481
1555
  inset-inline-start: 0;
1482
1556
  }
1483
- .bds0117Drawer-header {
1557
+ .bds100Drawer-header {
1484
1558
  display: flex;
1485
1559
  align-items: center;
1486
1560
  justify-content: space-between;
1487
- padding: var(--space_m) var(--space_l);
1561
+ padding: var(--bds-space_m) var(--bds-space_l);
1488
1562
  border-block-end: 1px solid currentcolor;
1489
1563
  flex-shrink: 0;
1490
1564
  }
1491
- .bds0117Drawer-closeButton {
1565
+ .bds100Drawer-closeButton {
1492
1566
  all: unset;
1493
1567
  display: flex;
1494
1568
  align-items: center;
@@ -1497,28 +1571,30 @@
1497
1571
  height: 2rem;
1498
1572
  border-radius: 50%;
1499
1573
  cursor: pointer;
1500
- transition: var(--animation_transition);
1574
+ transition: var(--bds-animation_transition);
1501
1575
  }
1502
- .bds0117Drawer-closeButton svg {
1576
+ .bds100Drawer-closeButton svg {
1503
1577
  width: 1.25rem;
1504
1578
  height: 1.25rem;
1505
1579
  }
1506
- .bds0117Drawer-closeButton:focus-visible {
1507
- outline: var(--outline_default);
1508
- outline-offset: var(--outline_offset);
1580
+ .bds100Drawer-closeButton:focus-visible {
1581
+ outline: var(--bds-outline_default);
1582
+ outline-offset: var(--bds-outline_offset);
1509
1583
  }
1510
1584
  @media (hover: hover) and (pointer: fine) {
1511
- .bds0117Drawer-closeButton:hover {
1512
- background-color: var(--color_bg--subtle);
1585
+ .bds100Drawer-closeButton:hover {
1586
+ background-color: var(--bds-bg--subtle);
1513
1587
  }
1514
1588
  }
1515
- .bds0117Drawer-body {
1589
+ .bds100Drawer-body {
1516
1590
  flex: 1;
1517
1591
  overflow-y: auto;
1518
- padding: var(--space_l);
1592
+ padding: var(--bds-space_l);
1593
+ display: flex;
1594
+ flex-direction: column;
1519
1595
  }
1520
1596
  @media (prefers-reduced-motion: reduce) {
1521
- .bds0117Drawer-panel {
1597
+ .bds100Drawer-panel {
1522
1598
  transition: none;
1523
1599
  }
1524
1600
  }
@@ -1526,66 +1602,70 @@
1526
1602
 
1527
1603
  /* src/components/interaction/DropdownMenu/DropdownMenu.module.css */
1528
1604
  @layer component {
1529
- .bds0117DropdownMenu-wrapper {
1605
+ .bds100DropdownMenu-wrapper {
1530
1606
  position: relative;
1531
1607
  display: inline-flex;
1532
1608
  }
1533
- .bds0117DropdownMenu-menu {
1609
+ .bds100DropdownMenu-menu {
1534
1610
  position: absolute;
1535
- top: calc(100% + var(--space_xxs));
1536
- z-index: var(--z-index_dropdown);
1611
+ top: calc(100% + var(--bds-space_xxs));
1612
+ z-index: var(--bds-z-index_dropdown);
1537
1613
  min-width: 10rem;
1538
- padding: var(--space_xxs) 0;
1539
- border-radius: var(--border_radius--s);
1540
- border: 1px solid currentcolor;
1541
- background-color: var(--dropdown_color, var(--color_bg));
1542
- color: var(--dropdown_on-color, var(--color_on-bg));
1543
- box-shadow: var(--shadow_m);
1614
+ padding: var(--bds-space_xxs) 0;
1615
+ border: var(--dropdown_border, none);
1616
+ --bdc_color: currentcolor;
1617
+ --bdc_radius: var(--bds-border_radius--s);
1618
+ outline: var(--bdc_width) solid var(--bdc_color);
1619
+ outline-offset: var(--bdc_offset);
1620
+ border-radius: var(--dropdown_radius, var(--bdc_radius));
1621
+ background-color: var(--dropdown_color, var(--bds-bg));
1622
+ color: var(--dropdown_on-color, var(--bds-on-bg));
1623
+ box-shadow: var(--dropdown_shadow, var(--bds-shadow_m));
1544
1624
  list-style: none;
1545
1625
  margin: 0;
1546
1626
  }
1547
- .bds0117DropdownMenu---placement_bottom-start {
1627
+ .bds100DropdownMenu---placement_bottom-start {
1548
1628
  left: 0;
1549
1629
  }
1550
- .bds0117DropdownMenu---placement_bottom-end {
1630
+ .bds100DropdownMenu---placement_bottom-end {
1551
1631
  right: 0;
1552
1632
  }
1553
- .bds0117DropdownMenu-separator {
1633
+ .bds100DropdownMenu-separator {
1554
1634
  border: none;
1555
1635
  border-top: 1px solid currentcolor;
1556
- margin: var(--space_xxs) 0;
1636
+ margin: var(--bds-space_xxs) 0;
1557
1637
  opacity: 0.15;
1558
1638
  }
1559
- .bds0117DropdownMenu-item {
1639
+ .bds100DropdownMenu-item {
1560
1640
  all: unset;
1561
1641
  display: flex;
1562
1642
  align-items: center;
1563
- gap: var(--space_xs);
1643
+ gap: var(--bds-space_xs);
1564
1644
  width: 100%;
1565
- padding: var(--space_xs) var(--space_m);
1566
- font-family: var(--font_family--body);
1567
- font-size: var(--font_size--body);
1645
+ padding: var(--bds-space_xs) var(--bds-space_m);
1646
+ font-family: var(--bds-font_family--body);
1647
+ font-size: var(--bds-font_size--body);
1568
1648
  color: currentcolor;
1569
1649
  cursor: pointer;
1570
1650
  box-sizing: border-box;
1571
- transition: var(--animation_transition);
1651
+ transition: var(--bds-animation_transition);
1572
1652
  }
1573
- .bds0117DropdownMenu-item:disabled {
1653
+ .bds100DropdownMenu-item:disabled {
1574
1654
  opacity: 0.4;
1575
1655
  cursor: not-allowed;
1576
1656
  }
1577
- .bds0117DropdownMenu-item:focus-visible {
1578
- outline: var(--outline_default);
1579
- outline-offset: calc(var(--outline_offset) * -1);
1580
- border-radius: var(--border_radius--xs);
1657
+ .bds100DropdownMenu-item:focus-visible {
1658
+ outline: var(--bds-outline_default);
1659
+ outline-offset: calc(var(--bds-outline_offset) * -1);
1660
+ border-radius: var(--bds-border_radius--xs);
1581
1661
  }
1582
1662
  @media (hover: hover) and (pointer: fine) {
1583
- .bds0117DropdownMenu-item:not(:disabled):hover {
1584
- background-color: var(--color_bg--subtle);
1585
- color: var(--color_interactive);
1663
+ .bds100DropdownMenu-item:not(:disabled):hover {
1664
+ background-color: var(--bds-bg--subtle);
1665
+ color: var(--bds-interactive);
1586
1666
  }
1587
1667
  }
1588
- .bds0117DropdownMenu-icon {
1668
+ .bds100DropdownMenu-icon {
1589
1669
  display: flex;
1590
1670
  align-items: center;
1591
1671
  flex-shrink: 0;
@@ -1594,99 +1674,103 @@
1594
1674
 
1595
1675
  /* src/components/interaction/Popover/Popover.module.css */
1596
1676
  @layer component {
1597
- .bds0117Popover-wrapper {
1677
+ .bds100Popover-wrapper {
1598
1678
  position: relative;
1599
1679
  display: inline-flex;
1600
1680
  }
1601
- .bds0117Popover-panel {
1681
+ .bds100Popover-panel {
1602
1682
  position: absolute;
1603
- z-index: var(--z-index_popover);
1683
+ z-index: var(--bds-z-index_popover);
1604
1684
  min-width: 12rem;
1605
- padding: var(--space_m);
1606
- border-radius: var(--border_radius--s);
1607
- border: 1px solid currentcolor;
1608
- background-color: var(--popover_color, var(--color_bg));
1609
- box-shadow: var(--shadow_m);
1610
- color: var(--popover_on-color, var(--color_on-bg));
1611
- font-size: var(--font_size--body);
1612
- }
1613
- .bds0117Popover---placement_bottom {
1614
- top: calc(100% + var(--space_xs));
1685
+ padding: var(--bds-space_m);
1686
+ border: var(--popover_border, none);
1687
+ --bdc_color: currentcolor;
1688
+ --bdc_radius: var(--bds-border_radius--s);
1689
+ outline: var(--bdc_width) solid var(--bdc_color);
1690
+ outline-offset: var(--bdc_offset);
1691
+ border-radius: var(--popover_radius, var(--bdc_radius));
1692
+ background-color: var(--popover_color, var(--bds-bg));
1693
+ box-shadow: var(--popover_shadow, var(--bds-shadow_m));
1694
+ color: var(--popover_on-color, var(--bds-on-bg));
1695
+ font-size: var(--bds-font_size--body);
1696
+ }
1697
+ .bds100Popover---placement_bottom {
1698
+ top: calc(100% + var(--bds-space_xs));
1615
1699
  left: 0;
1616
1700
  }
1617
- .bds0117Popover---placement_top {
1618
- bottom: calc(100% + var(--space_xs));
1701
+ .bds100Popover---placement_top {
1702
+ bottom: calc(100% + var(--bds-space_xs));
1619
1703
  left: 0;
1620
1704
  }
1621
- .bds0117Popover---placement_right {
1622
- left: calc(100% + var(--space_xs));
1705
+ .bds100Popover---placement_right {
1706
+ left: calc(100% + var(--bds-space_xs));
1623
1707
  top: 0;
1624
1708
  }
1625
- .bds0117Popover---placement_left {
1626
- right: calc(100% + var(--space_xs));
1709
+ .bds100Popover---placement_left {
1710
+ right: calc(100% + var(--bds-space_xs));
1627
1711
  top: 0;
1628
1712
  }
1629
1713
  }
1630
1714
 
1631
1715
  /* src/components/interaction/Rating/Rating.module.css */
1632
1716
  @layer component {
1633
- .bds0117Rating-rating {
1717
+ .bds100Rating-rating {
1634
1718
  display: inline-flex;
1635
- gap: var(--space_xxxs);
1636
- color: var(--color_bg);
1719
+ gap: var(--bds-space_xxxs);
1720
+ color: var(--bds-bg);
1637
1721
  }
1638
- .bds0117Rating-star {
1722
+ .bds100Rating-star {
1639
1723
  width: 1.5em;
1640
1724
  height: 1.5em;
1641
1725
  }
1642
- .bds0117Rating---filled {
1643
- color: var(--color_warning);
1726
+ .bds100Rating---filled {
1727
+ color: var(--bds-warning);
1644
1728
  }
1645
1729
  }
1646
1730
 
1647
1731
  /* src/components/interaction/Toast/Toast.module.css */
1648
1732
  @layer component {
1649
- .bds0117Toast-toastContainer {
1733
+ .bds100Toast-toastContainer {
1650
1734
  position: fixed;
1651
- bottom: var(--space_xl);
1652
- right: var(--space_xl);
1735
+ bottom: var(--bds-space_xl);
1736
+ right: var(--bds-space_xl);
1653
1737
  display: flex;
1654
1738
  flex-direction: column;
1655
- gap: var(--space_m);
1656
- z-index: var(--z-index_toast);
1739
+ gap: var(--bds-space_m);
1740
+ z-index: var(--bds-z-index_toast);
1657
1741
  }
1658
- .bds0117Toast-toast {
1659
- padding: var(--space_m) var(--space_l);
1660
- background-color: var(--toast_color, var(--color_bg));
1661
- color: var(--toast_on-color, var(--color_on-bg));
1662
- border-radius: var(--border_radius--s);
1663
- box-shadow: var(--shadow_s);
1742
+ .bds100Toast-toast {
1743
+ padding: var(--bds-space_m) var(--bds-space_l);
1744
+ background-color: var(--toast_color, var(--bds-bg));
1745
+ color: var(--toast_on-color, var(--bds-on-bg));
1746
+ border-radius: var(--bds-border_radius--s);
1747
+ box-shadow: var(--bds-shadow_s);
1664
1748
  display: flex;
1665
1749
  align-items: center;
1666
- gap: var(--space_m);
1750
+ gap: var(--bds-space_m);
1667
1751
  min-width: 300px;
1668
- animation: slideIn var(--animation_duration--fast) var(--animation_easing);
1752
+ animation: slideIn var(--bds-animation_duration--fast) var(--bds-animation_easing);
1669
1753
  }
1670
- .bds0117Toast-toast.bds0117Toast---variant_success {
1671
- --toast_color: var(--color_success);
1672
- --toast_on-color: var(--color_on-success);
1754
+ .bds100Toast-toast.bds100Toast---variant_success {
1755
+ --toast_color: var(--bds-success);
1756
+ --toast_on-color: var(--bds-on-success);
1673
1757
  }
1674
- .bds0117Toast-toast.bds0117Toast---variant_warning {
1675
- --toast_color: var(--color_warning);
1676
- --toast_on-color: var(--color_on-warning);
1758
+ .bds100Toast-toast.bds100Toast---variant_warning {
1759
+ --toast_color: var(--bds-warning);
1760
+ --toast_on-color: var(--bds-on-warning);
1677
1761
  }
1678
- .bds0117Toast-toast.bds0117Toast---variant_info {
1679
- --toast_color: var(--color_bg--subtle);
1680
- --toast_on-color: var(--color_on-bg--subtle);
1762
+ .bds100Toast-toast.bds100Toast---variant_info {
1763
+ --toast_color: var(--bds-bg--subtle);
1764
+ --toast_on-color: var(--bds-on-bg--subtle);
1681
1765
  }
1682
- .bds0117Toast-toast.bds0117Toast---variant_error {
1683
- --toast_color: var(--color_error);
1684
- --toast_on-color: var(--color_on-error);
1766
+ .bds100Toast-toast.bds100Toast---variant_error {
1767
+ --toast_color: var(--bds-error);
1768
+ --toast_on-color: var(--bds-on-error);
1685
1769
  }
1686
- .bds0117Toast-message {
1770
+ .bds100Toast-message {
1687
1771
  flex: 1;
1688
1772
  }
1689
- .bds0117Toast-closeButton {
1773
+ .bds100Toast-closeButton {
1690
1774
  display: flex;
1691
1775
  align-items: center;
1692
1776
  justify-content: center;
@@ -1699,7 +1783,7 @@
1699
1783
  cursor: pointer;
1700
1784
  color: var(--toast_on-color);
1701
1785
  }
1702
- .bds0117Toast-closeButton svg {
1786
+ .bds100Toast-closeButton svg {
1703
1787
  width: 1rem;
1704
1788
  height: 1rem;
1705
1789
  }
@@ -1717,176 +1801,215 @@
1717
1801
 
1718
1802
  /* src/components/interaction/form/Checkbox/Checkbox.module.css */
1719
1803
  @layer component {
1720
- .bds0117Checkbox-checkboxGroup {
1721
- --inputSize: calc(var(--space_s) * 2);
1804
+ .bds100Checkbox-checkboxGroup {
1805
+ --inputSize: calc(var(--bds-space_s) * 2);
1722
1806
  display: flex;
1723
1807
  flex-direction: column;
1724
1808
  }
1725
- .bds0117Checkbox-inputWrapper {
1809
+ .bds100Checkbox-inputWrapper {
1726
1810
  display: flex;
1727
1811
  align-items: stretch;
1728
- gap: var(--space_xs);
1812
+ gap: var(--bds-space_xs);
1729
1813
  }
1730
- .bds0117Checkbox-checkbox {
1814
+ .bds100Checkbox-checkbox {
1731
1815
  margin-block-start: 0.25em;
1732
1816
  width: var(--inputSize);
1733
1817
  height: var(--inputSize);
1734
- color: var(--checkbox_color, var(--color_on-bg));
1735
- border: 1px solid currentcolor;
1736
- border-radius: var(--border_radius--xs);
1818
+ color: var(--checkbox_color, var(--bds-on-bg));
1819
+ border: var(--checkbox_border, none);
1820
+ --bdc_color: currentcolor;
1821
+ --bdc_radius: var(--bds-border_radius--xs);
1822
+ outline: var(--bdc_width) solid var(--bdc_color);
1823
+ outline-offset: var(--bdc_offset);
1824
+ border-radius: var(--checkbox_radius, var(--bdc_radius));
1825
+ box-shadow: var(--checkbox_shadow, var(--bdc_shadow));
1737
1826
  appearance: none;
1738
- background-color: var(--checkbox_color_bg, var(--color_bg));
1827
+ background-color: var(--checkbox_color_bg, var(--bds-bg));
1739
1828
  cursor: pointer;
1740
1829
  position: relative;
1741
- transition: background-color 0.3s ease, border-color 0.3s ease;
1830
+ transition: --bdc_color 0.3s ease, background-color 0.3s ease;
1742
1831
  }
1743
- .bds0117Checkbox-checkbox:checked {
1744
- background-color: var(--checkbox_color-active, var(--color_active));
1745
- border-color: var(--checkbox_color-active, var(--color_active));
1832
+ .bds100Checkbox-checkbox:checked {
1833
+ background-color: var(--checkbox_color-active, var(--bds-active));
1834
+ --bdc_color: var(--checkbox_color-active, var(--bds-active));
1746
1835
  }
1747
- .bds0117Checkbox-checkbox:checked::after {
1836
+ .bds100Checkbox-checkbox:checked::after {
1748
1837
  content: "";
1749
1838
  position: absolute;
1750
1839
  left: 0.6em;
1751
1840
  top: 0.2em;
1752
1841
  width: 0.5em;
1753
1842
  height: 1em;
1754
- border: solid var(--checkbox_color-on-active, var(--color_on-active));
1843
+ border: solid var(--checkbox_color-on-active, var(--bds-on-active));
1755
1844
  border-width: 0 2px 2px 0;
1756
1845
  transform: rotate(45deg);
1757
1846
  }
1758
- .bds0117Checkbox-checkbox:focus {
1759
- outline: none;
1760
- border-color: var(--color_interactive);
1761
- box-shadow: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
1847
+ .bds100Checkbox-checkbox:focus {
1848
+ --bdc_color: var(--bdc_color--focus);
1762
1849
  }
1763
- .bds0117Checkbox-checkboxError {
1764
- border-color: var(--color_error);
1850
+ .bds100Checkbox-checkbox:focus-visible {
1851
+ outline: var(--bds-outline_default);
1852
+ outline-offset: var(--bds-outline_offset);
1765
1853
  }
1766
- .bds0117Checkbox-checkboxError:focus {
1767
- border-color: var(--color_error);
1768
- box-shadow: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
1854
+ .bds100Checkbox-checkboxError {
1855
+ --bdc_color: var(--bdc_color--error);
1769
1856
  }
1770
1857
  }
1771
1858
 
1772
1859
  /* src/components/interaction/form/atoms/Message.module.css */
1773
1860
  @layer component {
1774
- .bds0117Message-error,
1775
- .bds0117Message-hint {
1776
- font-size: var(--font_size--body--s);
1861
+ .bds100Message-error,
1862
+ .bds100Message-hint {
1863
+ font-size: var(--bds-font_size--body--s);
1777
1864
  margin-inline-start: var(--labelPosition);
1778
1865
  }
1779
- .bds0117Message-error {
1780
- color: var(--color_error);
1866
+ .bds100Message-error {
1867
+ color: var(--bds-error);
1781
1868
  }
1782
1869
  }
1783
1870
 
1784
1871
  /* src/components/interaction/form/atoms/Label.module.css */
1785
1872
  @layer component {
1786
- .bds0117Label-label {
1873
+ .bds100Label-label {
1787
1874
  display: flex;
1788
1875
  align-items: center;
1789
- font-family: var(--font_family--body);
1790
- color: var(--color_on-bg);
1876
+ font-family: var(--bds-font_family--body);
1877
+ color: var(--bds-on-bg);
1791
1878
  cursor: pointer;
1792
1879
  }
1793
1880
  }
1794
1881
 
1795
1882
  /* src/components/interaction/form/atoms/InputContainer.module.css */
1796
1883
  @layer component {
1797
- .bds0117InputContainer-container {
1798
- --labelPosition: calc(var(--inputSize) + var(--space_m));
1884
+ .bds100InputContainer-container {
1885
+ --labelPosition: calc(var(--inputSize) + var(--bds-space_m));
1886
+ display: flex;
1887
+ flex-direction: column;
1888
+ gap: var(--bds-space_xxxs);
1889
+ }
1890
+ }
1891
+
1892
+ /* src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css */
1893
+ @layer component {
1894
+ .bds100CheckboxGroup-group {
1895
+ border: none;
1896
+ padding: 0;
1897
+ margin: 0;
1898
+ display: flex;
1899
+ flex-direction: column;
1900
+ gap: var(--bds-space_xs);
1901
+ }
1902
+ .bds100CheckboxGroup-legend {
1903
+ font-family: var(--bds-font_family--body);
1904
+ font-size: var(--bds-font_size--body--s);
1905
+ font-weight: var(--bds-font_weight--medium);
1906
+ color: var(--bds-on-bg);
1907
+ padding: 0;
1908
+ margin-block-end: var(--bds-space_xs);
1909
+ }
1910
+ .bds100CheckboxGroup-required {
1911
+ color: var(--bds-error);
1912
+ }
1913
+ .bds100CheckboxGroup-items {
1799
1914
  display: flex;
1800
1915
  flex-direction: column;
1801
- gap: var(--space_xxxs);
1916
+ gap: var(--bds-space_xs);
1802
1917
  }
1803
1918
  }
1804
1919
 
1805
1920
  /* src/components/interaction/form/Combobox/Combobox.module.css */
1806
1921
  @layer component {
1807
- .bds0117Combobox-formGroup {
1922
+ .bds100Combobox-formGroup {
1808
1923
  display: flex;
1809
1924
  flex-direction: column;
1810
1925
  }
1811
- .bds0117Combobox-inputWrapper {
1926
+ .bds100Combobox-inputWrapper {
1812
1927
  position: relative;
1813
1928
  display: flex;
1814
1929
  align-items: center;
1815
1930
  }
1816
- .bds0117Combobox-input {
1931
+ .bds100Combobox-input {
1817
1932
  appearance: none;
1818
1933
  width: 100%;
1819
- font-family: var(--font_family--body);
1820
- font-size: var(--font_size--body);
1821
- padding: var(--space_s);
1822
- padding-inline-end: var(--space_xxl);
1823
- border: 1px solid var(--combobox_border-color, currentcolor);
1824
- border-radius: var(--border_radius--xs);
1825
- background-color: var(--combobox_color_bg, var(--color_bg));
1826
- color: var(--combobox_color, var(--color_on-bg));
1827
- transition: var(--animation_transition);
1828
- }
1829
- .bds0117Combobox-input:focus {
1830
- --combobox_border-color: var(--color_interactive);
1831
- outline: none;
1832
- box-shadow: var(--combobox_focus-ring, 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%));
1833
- }
1834
- .bds0117Combobox-input:disabled {
1934
+ font-family: var(--bds-font_family--body);
1935
+ font-size: var(--bds-font_size--body);
1936
+ padding: var(--bds-space_s);
1937
+ padding-inline-end: var(--bds-space_xxl);
1938
+ border: var(--combobox_border, none);
1939
+ --bdc_color: currentcolor;
1940
+ --bdc_radius: var(--bds-border_radius--xs);
1941
+ outline: var(--bdc_width) solid var(--bdc_color);
1942
+ outline-offset: var(--bdc_offset);
1943
+ border-radius: var(--combobox_radius, var(--bdc_radius));
1944
+ box-shadow: var(--combobox_shadow, var(--bdc_shadow));
1945
+ background-color: var(--combobox_color_bg, var(--bds-bg));
1946
+ color: var(--combobox_color, var(--bds-on-bg));
1947
+ transition: --bdc_color var(--bds-animation_transition-duration) var(--bds-animation_easing), background-color var(--bds-animation_transition-duration) var(--bds-animation_easing);
1948
+ }
1949
+ .bds100Combobox-input:focus {
1950
+ --bdc_color: var(--bdc_color--focus);
1951
+ }
1952
+ .bds100Combobox-input:focus-visible {
1953
+ outline: var(--bds-outline_default);
1954
+ outline-offset: var(--bds-outline_offset);
1955
+ }
1956
+ .bds100Combobox-input:disabled {
1835
1957
  opacity: 0.5;
1836
1958
  cursor: not-allowed;
1837
1959
  }
1838
- .bds0117Combobox-inputError {
1839
- --combobox_border-color: var(--color_error);
1960
+ .bds100Combobox-inputError {
1961
+ --bdc_color: var(--bdc_color--error);
1840
1962
  }
1841
- .bds0117Combobox-inputError:focus {
1842
- --combobox_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
1843
- }
1844
- .bds0117Combobox-chevron {
1963
+ .bds100Combobox-chevron {
1845
1964
  position: absolute;
1846
- inset-inline-end: var(--space_s);
1965
+ inset-inline-end: var(--bds-space_s);
1847
1966
  display: flex;
1848
1967
  align-items: center;
1849
1968
  pointer-events: none;
1850
- color: var(--combobox_color, var(--color_on-bg));
1969
+ color: var(--combobox_color, var(--bds-on-bg));
1851
1970
  }
1852
- .bds0117Combobox-chevron svg {
1971
+ .bds100Combobox-chevron svg {
1853
1972
  width: 1rem;
1854
1973
  height: 1rem;
1855
1974
  }
1856
- .bds0117Combobox-listbox {
1975
+ .bds100Combobox-listbox {
1857
1976
  position: absolute;
1858
- top: calc(100% + var(--space_xxs));
1977
+ top: calc(100% + var(--bds-space_xxs));
1859
1978
  left: 0;
1860
1979
  right: 0;
1861
- z-index: var(--z-index_dropdown);
1980
+ z-index: var(--bds-z-index_dropdown);
1862
1981
  max-height: 15rem;
1863
1982
  overflow-y: auto;
1864
1983
  list-style: none;
1865
1984
  margin: 0;
1866
- padding: var(--space_xxs) 0;
1867
- border-radius: var(--border_radius--xs);
1868
- border: 1px solid currentcolor;
1869
- background-color: var(--combobox_color, var(--color_bg));
1870
- color: var(--combobox_on-color, var(--color_on-bg));
1871
- box-shadow: var(--shadow_m);
1872
- }
1873
- .bds0117Combobox-option {
1985
+ padding: var(--bds-space_xxs) 0;
1986
+ border: var(--combobox_listbox-border, none);
1987
+ --bdc_color: currentcolor;
1988
+ --bdc_radius: var(--bds-border_radius--xs);
1989
+ outline: var(--bdc_width) solid var(--bdc_color);
1990
+ outline-offset: var(--bdc_offset);
1991
+ border-radius: var(--combobox_listbox-radius, var(--bdc_radius));
1992
+ background-color: var(--combobox_color, var(--bds-bg));
1993
+ color: var(--combobox_on-color, var(--bds-on-bg));
1994
+ box-shadow: var(--combobox_listbox-shadow, var(--bds-shadow_m));
1995
+ }
1996
+ .bds100Combobox-option {
1874
1997
  display: flex;
1875
1998
  align-items: center;
1876
- padding: var(--space_xs) var(--space_m);
1877
- font-size: var(--font_size--body);
1878
- color: var(--combobox_color, var(--color_on-bg));
1999
+ padding: var(--bds-space_xs) var(--bds-space_m);
2000
+ font-size: var(--bds-font_size--body);
2001
+ color: var(--combobox_color, var(--bds-on-bg));
1879
2002
  cursor: pointer;
1880
- transition: var(--animation_transition);
2003
+ transition: var(--bds-animation_transition);
1881
2004
  }
1882
- .bds0117Combobox-option.bds0117Combobox---highlighted {
1883
- background-color: var(--color_bg--subtle);
1884
- color: var(--color_interactive);
2005
+ .bds100Combobox-option.bds100Combobox---highlighted {
2006
+ background-color: var(--bds-bg--subtle);
2007
+ color: var(--bds-interactive);
1885
2008
  }
1886
- .bds0117Combobox-option.bds0117Combobox---selected {
1887
- font-weight: var(--font_weight--semibold);
2009
+ .bds100Combobox-option.bds100Combobox---selected {
2010
+ font-weight: var(--bds-font_weight--semibold);
1888
2011
  }
1889
- .bds0117Combobox-option.bds0117Combobox---disabled {
2012
+ .bds100Combobox-option.bds100Combobox---disabled {
1890
2013
  opacity: 0.4;
1891
2014
  cursor: not-allowed;
1892
2015
  }
@@ -1894,58 +2017,65 @@
1894
2017
 
1895
2018
  /* src/components/interaction/form/FileInput/FileInput.module.css */
1896
2019
  @layer component {
1897
- .bds0117FileInput-formGroup {
2020
+ .bds100FileInput-formGroup {
1898
2021
  display: flex;
1899
2022
  flex-direction: column;
1900
2023
  }
1901
- .bds0117FileInput-dropZone {
2024
+ .bds100FileInput-fieldLabel {
2025
+ display: flex;
2026
+ align-items: center;
2027
+ font-family: var(--bds-font_family--body);
2028
+ color: var(--bds-on-bg);
2029
+ margin-block-end: var(--bds-space_xs);
2030
+ }
2031
+ .bds100FileInput-dropZone {
1902
2032
  display: flex;
1903
2033
  flex-direction: column;
1904
2034
  align-items: center;
1905
2035
  justify-content: center;
1906
- gap: var(--space_xs);
1907
- padding: var(--space_l) var(--space_m);
2036
+ gap: var(--bds-space_xs);
2037
+ padding: var(--bds-space_l) var(--bds-space_m);
1908
2038
  border: 2px dashed currentcolor;
1909
- border-radius: var(--border_radius--s);
1910
- color: var(--fileInput_color, var(--color_on-bg));
2039
+ border-radius: var(--bds-border_radius--s);
2040
+ color: var(--fileInput_color, var(--bds-on-bg));
1911
2041
  cursor: pointer;
1912
2042
  text-align: center;
1913
- transition: var(--animation_transition);
2043
+ transition: var(--bds-animation_transition);
1914
2044
  }
1915
- .bds0117FileInput-dropZone:focus-within {
1916
- outline: var(--outline_default);
1917
- outline-offset: var(--outline_offset);
2045
+ .bds100FileInput-dropZone:focus-within {
2046
+ outline: var(--bds-outline_default);
2047
+ outline-offset: var(--bds-outline_offset);
1918
2048
  border-color: var(--fileInput_border-color, currentcolor);
1919
2049
  }
1920
- .bds0117FileInput-isDragging {
2050
+ .bds100FileInput-isDragging {
1921
2051
  border-color: currentcolor;
1922
2052
  background-color: rgb(from currentcolor r g b / 8%);
1923
2053
  }
1924
- .bds0117FileInput-hasError {
1925
- border-color: var(--color_error);
2054
+ .bds100FileInput-hasError {
2055
+ border-color: var(--bds-error);
1926
2056
  }
1927
- .bds0117FileInput-isDisabled {
2057
+ .bds100FileInput-isDisabled {
1928
2058
  opacity: 0.5;
1929
2059
  cursor: not-allowed;
1930
2060
  }
1931
- .bds0117FileInput-icon {
2061
+ .bds100FileInput-icon {
1932
2062
  width: 2rem;
1933
2063
  height: 2rem;
1934
2064
  flex-shrink: 0;
1935
2065
  }
1936
- .bds0117FileInput-prompt {
1937
- font-size: var(--font_size--body);
1938
- color: var(--color_on-bg--muted);
2066
+ .bds100FileInput-prompt {
2067
+ font-size: var(--bds-font_size--body);
2068
+ color: var(--bds-on-bg);
1939
2069
  }
1940
- .bds0117FileInput-prompt strong {
1941
- color: var(--color_interactive);
1942
- font-weight: var(--font_weight--semibold);
2070
+ .bds100FileInput-prompt strong {
2071
+ color: var(--bds-interactive);
2072
+ font-weight: var(--bds-font_weight--semibold);
1943
2073
  }
1944
- .bds0117FileInput-acceptHint {
1945
- font-size: var(--font_size--body--s);
1946
- color: var(--color_on-bg--muted);
2074
+ .bds100FileInput-acceptHint {
2075
+ font-size: var(--bds-font_size--body--s);
2076
+ color: var(--bds-on-bg);
1947
2077
  }
1948
- .bds0117FileInput-hiddenInput {
2078
+ .bds100FileInput-hiddenInput {
1949
2079
  position: absolute;
1950
2080
  width: 1px;
1951
2081
  height: 1px;
@@ -1955,107 +2085,116 @@
1955
2085
  border: 0;
1956
2086
  }
1957
2087
  @media (hover: hover) and (pointer: fine) {
1958
- .bds0117FileInput-dropZone:not(.bds0117FileInput-isDisabled):hover {
1959
- border-color: var(--color_interactive);
1960
- background-color: rgb(from var(--color_interactive) r g b / 4%);
2088
+ .bds100FileInput-dropZone:not(.bds100FileInput-isDisabled):hover {
2089
+ border-color: var(--bds-interactive);
2090
+ background-color: rgb(from var(--bds-interactive) r g b / 4%);
1961
2091
  }
1962
2092
  }
1963
2093
  }
1964
2094
 
1965
2095
  /* src/components/interaction/form/FormInput/FormInput.module.css */
1966
2096
  @layer component {
1967
- .bds0117FormInput-formGroup {
2097
+ .bds100FormInput-formGroup {
1968
2098
  --labelPosition: 0;
1969
2099
  display: flex;
1970
2100
  flex-direction: column;
1971
2101
  }
1972
- .bds0117FormInput-input {
1973
- font-family: var(--font_family--body);
1974
- font-size: var(--font_size--body);
1975
- padding: var(--space_s);
1976
- border: 1px solid var(--input_border-color, currentcolor);
1977
- border-radius: var(--input_radius, var(--border_radius--xs));
1978
- transition: var(--animation_transition);
1979
- color: var(--input_color, var(--color_on-bg));
1980
- background-color: var(--input_color_bg, var(--color_bg));
1981
- }
1982
- .bds0117FormInput-input:focus {
1983
- --input_border-color: var(--color_interactive);
1984
- outline: none;
1985
- box-shadow: var(--input_focus-ring, 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%));
1986
- }
1987
- .bds0117FormInput-inputError {
1988
- --input_border-color: var(--color_error);
1989
- }
1990
- .bds0117FormInput-inputError:focus {
1991
- --input_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
2102
+ .bds100FormInput-input {
2103
+ font-family: var(--bds-font_family--body);
2104
+ font-size: var(--bds-font_size--body);
2105
+ padding: var(--bds-space_s);
2106
+ border: var(--input_border, none);
2107
+ --bdc_color: currentcolor;
2108
+ --bdc_radius: var(--bds-border_radius--xs);
2109
+ outline: var(--bdc_width) solid var(--bdc_color);
2110
+ outline-offset: var(--bdc_offset);
2111
+ border-radius: var(--input_radius, var(--bdc_radius));
2112
+ box-shadow: var(--input_shadow, var(--bdc_shadow));
2113
+ color: var(--input_color, var(--bds-on-bg));
2114
+ background-color: var(--input_color_bg, var(--bds-bg));
2115
+ transition: --bdc_color var(--bds-animation_transition-duration) var(--bds-animation_easing), background-color var(--bds-animation_transition-duration) var(--bds-animation_easing);
2116
+ }
2117
+ .bds100FormInput-input:focus {
2118
+ --bdc_color: var(--bdc_color--focus);
2119
+ }
2120
+ .bds100FormInput-input:focus-visible {
2121
+ outline: var(--bds-outline_default);
2122
+ outline-offset: var(--bds-outline_offset);
2123
+ }
2124
+ .bds100FormInput-inputError {
2125
+ --bdc_color: var(--bdc_color--error);
1992
2126
  }
1993
2127
  }
1994
2128
 
1995
2129
  /* src/components/interaction/form/NumberInput/NumberInput.module.css */
1996
2130
  @layer component {
1997
- .bds0117NumberInput-formGroup {
2131
+ .bds100NumberInput-formGroup {
1998
2132
  display: flex;
1999
2133
  flex-direction: column;
2000
2134
  }
2001
- .bds0117NumberInput-inputRow {
2135
+ .bds100NumberInput-inputRow {
2002
2136
  display: flex;
2003
2137
  align-items: stretch;
2004
- border: 1px solid currentcolor;
2005
- border-radius: var(--border_radius--xs);
2138
+ border: var(--numberInput_border, none);
2139
+ --bdc_color: currentcolor;
2140
+ --bdc_radius: var(--bds-border_radius--xs);
2141
+ outline: var(--bdc_width) solid var(--bdc_color);
2142
+ outline-offset: var(--bdc_offset);
2143
+ border-radius: var(--numberInput_radius, var(--bdc_radius));
2144
+ box-shadow: var(--numberInput_shadow, var(--bdc_shadow));
2006
2145
  overflow: hidden;
2007
- transition: var(--animation_transition);
2146
+ transition: --bdc_color var(--bds-animation_transition-duration) var(--bds-animation_easing);
2008
2147
  }
2009
- .bds0117NumberInput-inputRow:focus-within {
2010
- border-color: var(--numberInput_border-color, var(--color_interactive));
2011
- box-shadow: var(--numberInput_focus-ring, 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%));
2148
+ .bds100NumberInput-inputRow:focus-within {
2149
+ --bdc_color: var(--bdc_color--focus);
2012
2150
  }
2013
- .bds0117NumberInput-input {
2151
+ .bds100NumberInput-inputRow:focus-within:has(:focus-visible) {
2152
+ outline: var(--bds-outline_default);
2153
+ outline-offset: var(--bds-outline_offset);
2154
+ }
2155
+ .bds100NumberInput-input {
2014
2156
  flex: 1;
2015
2157
  border: none;
2016
2158
  outline: none;
2017
- font-family: var(--font_family--body);
2018
- font-size: var(--font_size--body);
2159
+ font-family: var(--bds-font_family--body);
2160
+ font-size: var(--bds-font_size--body);
2019
2161
  text-align: center;
2020
- padding: var(--space_s);
2162
+ padding: var(--bds-space_s);
2021
2163
  background: transparent;
2022
- color: var(--numberInput_color, var(--color_on-bg));
2164
+ color: var(--numberInput_color, var(--bds-on-bg));
2023
2165
  min-width: 0;
2024
2166
  appearance: textfield;
2025
2167
  }
2026
- .bds0117NumberInput-input::-webkit-inner-spin-button,
2027
- .bds0117NumberInput-input::-webkit-outer-spin-button {
2168
+ .bds100NumberInput-input::-webkit-inner-spin-button,
2169
+ .bds100NumberInput-input::-webkit-outer-spin-button {
2028
2170
  appearance: none;
2029
2171
  }
2030
- .bds0117NumberInput-inputError {
2031
- --numberInput_border-color: var(--color_error);
2032
- }
2033
- .bds0117NumberInput-inputError:focus-within {
2034
- --numberInput_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
2172
+ .bds100NumberInput-inputError {
2173
+ --bdc_color: var(--bdc_color--error);
2035
2174
  }
2036
- .bds0117NumberInput-stepper {
2175
+ .bds100NumberInput-stepper {
2037
2176
  all: unset;
2038
2177
  display: flex;
2039
2178
  align-items: center;
2040
2179
  justify-content: center;
2041
- padding: var(--space_xs);
2042
- background-color: var(--color_bg--subtle);
2043
- color: var(--numberInput_color, var(--color_on-bg));
2180
+ padding: var(--bds-space_xs);
2181
+ background-color: var(--bds-bg--subtle);
2182
+ color: var(--numberInput_color, var(--bds-on-bg));
2044
2183
  cursor: pointer;
2045
- transition: var(--animation_transition);
2184
+ transition: var(--bds-animation_transition);
2046
2185
  flex-shrink: 0;
2047
2186
  }
2048
- .bds0117NumberInput-stepper svg {
2187
+ .bds100NumberInput-stepper svg {
2049
2188
  width: 1rem;
2050
2189
  height: 1rem;
2051
2190
  }
2052
- .bds0117NumberInput-stepper:disabled {
2191
+ .bds100NumberInput-stepper:disabled {
2053
2192
  opacity: 0.4;
2054
2193
  cursor: not-allowed;
2055
2194
  }
2056
2195
  @media (hover: hover) and (pointer: fine) {
2057
- .bds0117NumberInput-stepper:not(:disabled):hover {
2058
- background-color: var(--color_bg--subtle);
2196
+ .bds100NumberInput-stepper:not(:disabled):hover {
2197
+ background-color: var(--bds-bg--subtle);
2059
2198
  opacity: 0.7;
2060
2199
  }
2061
2200
  }
@@ -2063,47 +2202,52 @@
2063
2202
 
2064
2203
  /* src/components/interaction/form/Radio/Radio.module.css */
2065
2204
  @layer component {
2066
- .bds0117Radio-radioGroup {
2067
- --inputSize: calc(var(--space_s) * 2);
2068
- --labelPosition: calc(var(--inputSize) + var(--space_m));
2205
+ .bds100Radio-radioGroup {
2206
+ --inputSize: calc(var(--bds-space_s) * 2);
2207
+ --labelPosition: calc(var(--inputSize) + var(--bds-space_m));
2069
2208
  display: flex;
2070
2209
  flex-direction: column;
2071
2210
  }
2072
- .bds0117Radio-inputWrapper {
2211
+ .bds100Radio-inputWrapper {
2073
2212
  display: flex;
2074
2213
  align-items: flex-start;
2075
- gap: var(--space_xs);
2214
+ gap: var(--bds-space_xs);
2076
2215
  }
2077
- .bds0117Radio-textWrapper {
2216
+ .bds100Radio-textWrapper {
2078
2217
  display: flex;
2079
2218
  flex-direction: column;
2080
- gap: var(--space_xxxs);
2081
- padding-block-start: var(--space_xxxs);
2219
+ gap: var(--bds-space_xxxs);
2220
+ padding-block-start: var(--bds-space_xxxs);
2082
2221
  }
2083
- .bds0117Radio-description {
2084
- font-size: var(--font_size--body--s);
2085
- color: var(--radio_description-color, var(--color_on-bg--subtle));
2086
- line-height: var(--font_line-height--body);
2222
+ .bds100Radio-description {
2223
+ font-size: var(--bds-font_size--body--s);
2224
+ color: var(--radio_description-color, var(--bds-on-bg--subtle));
2225
+ line-height: var(--bds-font_line-height--body);
2087
2226
  }
2088
- .bds0117Radio-radio {
2227
+ .bds100Radio-radio {
2089
2228
  flex-shrink: 0;
2090
2229
  margin-block-start: 0.2em;
2091
2230
  width: var(--inputSize);
2092
2231
  height: var(--inputSize);
2093
- color: var(--radio_color, var(--color_on-bg));
2094
- border: 1.5px solid currentcolor;
2095
- border-radius: 50%;
2232
+ color: var(--radio_color, var(--bds-on-bg));
2233
+ border: var(--radio_border, none);
2234
+ --bdc_color: currentcolor;
2235
+ --bdc_radius: 50%;
2236
+ outline: var(--bdc_width) solid var(--bdc_color);
2237
+ outline-offset: var(--bdc_offset);
2238
+ border-radius: var(--radio_radius, var(--bdc_radius));
2239
+ box-shadow: var(--radio_shadow, var(--bdc_shadow));
2096
2240
  appearance: none;
2097
- background-color: var(--radio_color_bg, var(--color_bg));
2241
+ background-color: var(--radio_color_bg, var(--bds-bg));
2098
2242
  cursor: pointer;
2099
2243
  position: relative;
2100
- transition: background-color 0.2s ease, border-color 0.2s ease;
2244
+ transition: --bdc_color 0.2s ease, background-color 0.2s ease;
2101
2245
  }
2102
- .bds0117Radio-radio:checked {
2103
- background-color: var(--radio_color-active, var(--color_active));
2104
- border-color: var(--radio_color-active, var(--color_active));
2246
+ .bds100Radio-radio:checked {
2247
+ background-color: var(--radio_color-active, var(--bds-active));
2248
+ --bdc_color: var(--radio_color-active, var(--bds-active));
2105
2249
  }
2106
- .bds0117Radio-radio:checked::after {
2250
+ .bds100Radio-radio:checked::after {
2107
2251
  content: "";
2108
2252
  position: absolute;
2109
2253
  left: 50%;
@@ -2112,106 +2256,132 @@
2112
2256
  width: 0.4em;
2113
2257
  height: 0.4em;
2114
2258
  border-radius: 50%;
2115
- background-color: var(--radio_color-on-active, var(--color_on-active));
2259
+ background-color: var(--radio_color-on-active, var(--bds-on-active));
2116
2260
  }
2117
- .bds0117Radio-radio:focus {
2118
- outline: none;
2119
- border-color: var(--color_interactive);
2120
- box-shadow: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
2261
+ .bds100Radio-radio:focus {
2262
+ --bdc_color: var(--bdc_color--focus);
2121
2263
  }
2122
- .bds0117Radio-radioError {
2123
- border-color: var(--color_error);
2264
+ .bds100Radio-radio:focus-visible {
2265
+ outline: var(--bds-outline_default);
2266
+ outline-offset: var(--bds-outline_offset);
2124
2267
  }
2125
- .bds0117Radio-radioError:focus {
2126
- border-color: var(--color_error);
2127
- box-shadow: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
2268
+ .bds100Radio-radioError {
2269
+ --bdc_color: var(--bdc_color--error);
2270
+ }
2271
+ }
2272
+
2273
+ /* src/components/interaction/form/RadioGroup/RadioGroup.module.css */
2274
+ @layer component {
2275
+ .bds100RadioGroup-group {
2276
+ border: none;
2277
+ padding: 0;
2278
+ margin: 0;
2279
+ display: flex;
2280
+ flex-direction: column;
2281
+ gap: var(--bds-space_xs);
2282
+ }
2283
+ .bds100RadioGroup-legend {
2284
+ font-family: var(--bds-font_family--body);
2285
+ font-size: var(--bds-font_size--body--s);
2286
+ font-weight: var(--bds-font_weight--medium);
2287
+ color: var(--bds-on-bg);
2288
+ padding: 0;
2289
+ margin-block-end: var(--bds-space_xs);
2290
+ }
2291
+ .bds100RadioGroup-required {
2292
+ color: var(--bds-error);
2293
+ }
2294
+ .bds100RadioGroup-items {
2295
+ display: flex;
2296
+ flex-direction: column;
2297
+ gap: var(--bds-space_xs);
2128
2298
  }
2129
2299
  }
2130
2300
 
2131
2301
  /* src/components/interaction/form/SegmentedControl/SegmentedControl.module.css */
2132
2302
  @layer component {
2133
- .bds0117SegmentedControl-control {
2303
+ .bds100SegmentedControl-control {
2134
2304
  position: relative;
2135
2305
  display: inline-grid;
2136
2306
  grid-auto-flow: column;
2137
2307
  grid-auto-columns: 1fr;
2138
- padding: var(--space_xxxs);
2139
- background-color: var(--control_track-bg, var(--color_bg--subtle));
2140
- border-radius: var(--border_radius--m);
2308
+ padding: var(--bds-space_xxxs);
2309
+ background-color: var(--control_track-bg, var(--bds-bg--subtle));
2310
+ border-radius: var(--bds-border_radius--m);
2141
2311
  gap: 0;
2142
2312
  }
2143
- .bds0117SegmentedControl-thumb {
2313
+ .bds100SegmentedControl-thumb {
2144
2314
  position: absolute;
2145
- top: var(--space_xxxs);
2146
- bottom: var(--space_xxxs);
2147
- left: var(--space_xxxs);
2148
- width: calc((100% - 2 * var(--space_xxxs)) / var(--control_count, 1));
2149
- border-radius: var(--border_radius--s);
2150
- background-color: var(--control_thumb-bg, var(--color_bg));
2151
- box-shadow: var(--shadow_s);
2315
+ top: var(--bds-space_xxxs);
2316
+ bottom: var(--bds-space_xxxs);
2317
+ left: var(--bds-space_xxxs);
2318
+ width: calc((100% - 2 * var(--bds-space_xxxs)) / var(--control_count, 1));
2319
+ border-radius: var(--bds-border_radius--s);
2320
+ background-color: var(--control_thumb-bg, var(--bds-bg));
2321
+ box-shadow: var(--bds-shadow_s);
2152
2322
  pointer-events: none;
2153
2323
  transform: translateX(calc(var(--control_selected-index, 0) * 100%));
2154
- transition: transform var(--animation_transition-duration) var(--animation_easing);
2324
+ transition: transform var(--bds-animation_transition-duration) var(--bds-animation_easing);
2155
2325
  }
2156
- .bds0117SegmentedControl-item {
2326
+ .bds100SegmentedControl-item {
2157
2327
  position: relative;
2158
2328
  z-index: 1;
2159
2329
  display: flex;
2160
2330
  align-items: center;
2161
2331
  justify-content: center;
2162
2332
  cursor: pointer;
2163
- border-radius: var(--border_radius--s);
2164
- transition: var(--animation_transition);
2333
+ border-radius: var(--bds-border_radius--s);
2334
+ transition: var(--bds-animation_transition);
2165
2335
  }
2166
- .bds0117SegmentedControl-item.bds0117SegmentedControl---disabled {
2336
+ .bds100SegmentedControl-item.bds100SegmentedControl---disabled {
2167
2337
  opacity: 0.4;
2168
2338
  cursor: not-allowed;
2169
2339
  }
2170
- .bds0117SegmentedControl-radio {
2340
+ .bds100SegmentedControl-radio {
2171
2341
  position: absolute;
2172
2342
  opacity: 0;
2173
2343
  width: 0;
2174
2344
  height: 0;
2175
2345
  margin: 0;
2176
2346
  }
2177
- .bds0117SegmentedControl-label {
2347
+ .bds100SegmentedControl-label {
2178
2348
  display: block;
2179
- padding: var(--space_xs) var(--space_m);
2349
+ padding: var(--bds-space_xs) var(--bds-space_m);
2180
2350
  white-space: nowrap;
2181
- font-size: var(--font_size--body);
2182
- line-height: var(--font_line-height--body);
2183
- color: var(--control_label-color, var(--color_on-bg--subtle));
2184
- transition: color var(--animation_transition-duration) var(--animation_easing);
2351
+ font-size: var(--bds-font_size--body);
2352
+ line-height: var(--bds-font_line-height--body);
2353
+ color: var(--control_label-color, var(--bds-on-bg--subtle));
2354
+ transition: color var(--bds-animation_transition-duration) var(--bds-animation_easing);
2185
2355
  pointer-events: none;
2186
2356
  user-select: none;
2187
2357
  }
2188
- .bds0117SegmentedControl-control.bds0117SegmentedControl---size_small .bds0117SegmentedControl-label {
2189
- padding: var(--space_xxs) var(--space_s);
2190
- font-size: var(--font_size--body--s);
2358
+ .bds100SegmentedControl-control.bds100SegmentedControl---size_small .bds100SegmentedControl-label {
2359
+ padding: var(--bds-space_xxs) var(--bds-space_s);
2360
+ font-size: var(--bds-font_size--body--s);
2191
2361
  }
2192
- .bds0117SegmentedControl-control.bds0117SegmentedControl---size_large .bds0117SegmentedControl-label {
2193
- padding: var(--space_s) var(--space_m);
2362
+ .bds100SegmentedControl-control.bds100SegmentedControl---size_large .bds100SegmentedControl-label {
2363
+ padding: var(--bds-space_s) var(--bds-space_m);
2194
2364
  white-space: normal;
2195
2365
  text-align: center;
2196
2366
  }
2197
- .bds0117SegmentedControl-item.bds0117SegmentedControl---active .bds0117SegmentedControl-label {
2198
- color: var(--control_label-color--active, var(--color_on-bg));
2367
+ .bds100SegmentedControl-item.bds100SegmentedControl---active .bds100SegmentedControl-label {
2368
+ color: var(--control_label-color--active, var(--bds-on-bg));
2199
2369
  }
2200
- .bds0117SegmentedControl-radio:focus-visible ~ .bds0117SegmentedControl-label {
2201
- outline: var(--outline_default);
2202
- outline-offset: calc(var(--outline_offset) * -1);
2203
- border-radius: var(--border_radius--s);
2370
+ .bds100SegmentedControl-radio:focus-visible ~ .bds100SegmentedControl-label {
2371
+ outline: var(--bds-outline_default);
2372
+ outline-offset: calc(var(--bds-outline_offset) * -1);
2373
+ border-radius: var(--bds-border_radius--s);
2204
2374
  }
2205
2375
  @media (hover: hover) and (pointer: fine) {
2206
- .bds0117SegmentedControl-item:not(.bds0117SegmentedControl---active, .bds0117SegmentedControl---disabled):hover .bds0117SegmentedControl-label {
2207
- color: var(--control_label-color--hover, var(--color_on-bg));
2376
+ .bds100SegmentedControl-item:not(.bds100SegmentedControl---active, .bds100SegmentedControl---disabled):hover .bds100SegmentedControl-label {
2377
+ color: var(--control_label-color--hover, var(--bds-on-bg));
2208
2378
  }
2209
2379
  }
2210
2380
  @media (prefers-reduced-motion: reduce) {
2211
- .bds0117SegmentedControl-thumb {
2381
+ .bds100SegmentedControl-thumb {
2212
2382
  transition: none;
2213
2383
  }
2214
- .bds0117SegmentedControl-label {
2384
+ .bds100SegmentedControl-label {
2215
2385
  transition: none;
2216
2386
  }
2217
2387
  }
@@ -2219,53 +2389,57 @@
2219
2389
 
2220
2390
  /* src/components/interaction/form/Select/Select.module.css */
2221
2391
  @layer component {
2222
- .bds0117Select-formGroup {
2392
+ .bds100Select-formGroup {
2223
2393
  display: flex;
2224
2394
  flex-direction: column;
2225
2395
  }
2226
- .bds0117Select-selectWrapper {
2396
+ .bds100Select-selectWrapper {
2227
2397
  position: relative;
2228
2398
  display: flex;
2229
2399
  align-items: center;
2230
2400
  }
2231
- .bds0117Select-select {
2401
+ .bds100Select-select {
2232
2402
  appearance: none;
2233
2403
  width: 100%;
2234
- font-family: var(--font_family--body);
2235
- font-size: var(--font_size--body);
2236
- padding: var(--space_s);
2237
- padding-inline-end: var(--space_xxl);
2238
- border: 1px solid var(--select_border-color, currentcolor);
2239
- border-radius: var(--border_radius--xs);
2240
- background-color: var(--select_color_bg, var(--color_bg));
2241
- color: var(--select_color, var(--color_on-bg));
2404
+ font-family: var(--bds-font_family--body);
2405
+ font-size: var(--bds-font_size--body);
2406
+ padding: var(--bds-space_s);
2407
+ padding-inline-end: var(--bds-space_xxl);
2408
+ border: var(--select_border, none);
2409
+ --bdc_color: currentcolor;
2410
+ --bdc_radius: var(--bds-border_radius--xs);
2411
+ outline: var(--bdc_width) solid var(--bdc_color);
2412
+ outline-offset: var(--bdc_offset);
2413
+ border-radius: var(--select_radius, var(--bdc_radius));
2414
+ box-shadow: var(--select_shadow, var(--bdc_shadow));
2415
+ background-color: var(--select_color_bg, var(--bds-bg));
2416
+ color: var(--select_color, var(--bds-on-bg));
2242
2417
  cursor: pointer;
2243
- transition: var(--animation_transition);
2418
+ transition: --bdc_color var(--bds-animation_transition-duration) var(--bds-animation_easing), background-color var(--bds-animation_transition-duration) var(--bds-animation_easing);
2244
2419
  }
2245
- .bds0117Select-select:focus {
2246
- --select_border-color: var(--color_interactive);
2247
- outline: none;
2248
- box-shadow: var(--select_focus-ring, 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%));
2420
+ .bds100Select-select:focus {
2421
+ --bdc_color: var(--bdc_color--focus);
2249
2422
  }
2250
- .bds0117Select-select:disabled {
2423
+ .bds100Select-select:focus-visible {
2424
+ outline: var(--bds-outline_default);
2425
+ outline-offset: var(--bds-outline_offset);
2426
+ }
2427
+ .bds100Select-select:disabled {
2251
2428
  opacity: 0.5;
2252
2429
  cursor: not-allowed;
2253
2430
  }
2254
- .bds0117Select-selectError {
2255
- --select_border-color: var(--color_error);
2256
- }
2257
- .bds0117Select-selectError:focus {
2258
- --select_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
2431
+ .bds100Select-selectError {
2432
+ --bdc_color: var(--bdc_color--error);
2259
2433
  }
2260
- .bds0117Select-chevron {
2434
+ .bds100Select-chevron {
2261
2435
  position: absolute;
2262
- inset-inline-end: var(--space_s);
2436
+ inset-inline-end: var(--bds-space_s);
2263
2437
  display: flex;
2264
2438
  align-items: center;
2265
2439
  pointer-events: none;
2266
- color: var(--select_color, var(--color_on-bg));
2440
+ color: var(--select_color, var(--bds-on-bg));
2267
2441
  }
2268
- .bds0117Select-chevron svg {
2442
+ .bds100Select-chevron svg {
2269
2443
  width: 1rem;
2270
2444
  height: 1rem;
2271
2445
  }
@@ -2273,26 +2447,26 @@
2273
2447
 
2274
2448
  /* src/components/interaction/form/Slider/Slider.module.css */
2275
2449
  @layer component {
2276
- .bds0117Slider-formGroup {
2450
+ .bds100Slider-formGroup {
2277
2451
  display: flex;
2278
2452
  flex-direction: column;
2279
- gap: var(--space_xxs);
2453
+ gap: var(--bds-space_xxs);
2280
2454
  }
2281
- .bds0117Slider-labelRow {
2455
+ .bds100Slider-labelRow {
2282
2456
  display: flex;
2283
2457
  justify-content: space-between;
2284
2458
  align-items: baseline;
2285
2459
  }
2286
- .bds0117Slider-value {
2287
- font-size: var(--font_size--body--s);
2460
+ .bds100Slider-value {
2461
+ font-size: var(--bds-font_size--body--s);
2288
2462
  font-variant-numeric: tabular-nums;
2289
- color: var(--color_on-bg--subtle);
2463
+ color: var(--bds-on-bg--subtle);
2290
2464
  }
2291
- .bds0117Slider-slider {
2465
+ .bds100Slider-slider {
2292
2466
  --slider_fill: 0%;
2293
- --slider_track-height: var(--space_xxs);
2294
- --slider_thumb-size: calc(var(--space_s) * 2);
2295
- color: var(--slider_color, var(--color_on-bg));
2467
+ --slider_track-height: var(--bds-space_xxs);
2468
+ --slider_thumb-size: calc(var(--bds-space_s) * 2);
2469
+ color: var(--slider_color, var(--bds-on-bg));
2296
2470
  appearance: none;
2297
2471
  width: 100%;
2298
2472
  height: var(--slider_track-height);
@@ -2300,60 +2474,60 @@
2300
2474
  background:
2301
2475
  linear-gradient(
2302
2476
  to right,
2303
- var(--slider_color-active, var(--color_active)) 0%,
2304
- var(--slider_color-active, var(--color_active)) var(--slider_fill),
2305
- var(--color_bg--subtle) var(--slider_fill),
2306
- var(--color_bg--subtle) 100%);
2477
+ var(--slider_color-active, var(--bds-active)) 0%,
2478
+ var(--slider_color-active, var(--bds-active)) var(--slider_fill),
2479
+ var(--bds-bg--subtle) var(--slider_fill),
2480
+ var(--bds-bg--subtle) 100%);
2307
2481
  cursor: pointer;
2308
- transition: var(--animation_transition);
2482
+ transition: var(--bds-animation_transition);
2309
2483
  }
2310
- .bds0117Slider-slider:focus-visible {
2311
- outline: var(--outline_default);
2312
- outline-offset: var(--outline_offset);
2484
+ .bds100Slider-slider:focus-visible {
2485
+ outline: var(--bds-outline_default);
2486
+ outline-offset: var(--bds-outline_offset);
2313
2487
  border-radius: 999px;
2314
2488
  }
2315
- .bds0117Slider-slider:disabled {
2489
+ .bds100Slider-slider:disabled {
2316
2490
  opacity: 0.4;
2317
2491
  cursor: not-allowed;
2318
2492
  }
2319
- .bds0117Slider-slider::-webkit-slider-thumb {
2493
+ .bds100Slider-slider::-webkit-slider-thumb {
2320
2494
  appearance: none;
2321
2495
  width: var(--slider_thumb-size);
2322
2496
  height: var(--slider_thumb-size);
2323
2497
  border-radius: 50%;
2324
- background-color: var(--slider_color-active, var(--color_active));
2325
- box-shadow: var(--shadow_s);
2326
- transition: var(--animation_transition);
2498
+ background-color: var(--slider_color-active, var(--bds-active));
2499
+ box-shadow: var(--bds-shadow_s);
2500
+ transition: var(--bds-animation_transition);
2327
2501
  cursor: pointer;
2328
2502
  }
2329
- .bds0117Slider-slider::-moz-range-thumb {
2503
+ .bds100Slider-slider::-moz-range-thumb {
2330
2504
  width: var(--slider_thumb-size);
2331
2505
  height: var(--slider_thumb-size);
2332
2506
  border: none;
2333
2507
  border-radius: 50%;
2334
- background-color: var(--slider_color-active, var(--color_active));
2335
- box-shadow: var(--shadow_s);
2508
+ background-color: var(--slider_color-active, var(--bds-active));
2509
+ box-shadow: var(--bds-shadow_s);
2336
2510
  cursor: pointer;
2337
2511
  }
2338
- .bds0117Slider-sliderError {
2512
+ .bds100Slider-sliderError {
2339
2513
  background:
2340
2514
  linear-gradient(
2341
2515
  to right,
2342
- var(--color_error) 0%,
2343
- var(--color_error) var(--slider_fill),
2344
- var(--color_bg--subtle) var(--slider_fill),
2345
- var(--color_bg--subtle) 100%);
2516
+ var(--bds-error) 0%,
2517
+ var(--bds-error) var(--slider_fill),
2518
+ var(--bds-bg--subtle) var(--slider_fill),
2519
+ var(--bds-bg--subtle) 100%);
2346
2520
  }
2347
- .bds0117Slider-sliderError::-webkit-slider-thumb {
2348
- background-color: var(--color_error);
2521
+ .bds100Slider-sliderError::-webkit-slider-thumb {
2522
+ background-color: var(--bds-error);
2349
2523
  }
2350
- .bds0117Slider-sliderError::-moz-range-thumb {
2351
- background-color: var(--color_error);
2524
+ .bds100Slider-sliderError::-moz-range-thumb {
2525
+ background-color: var(--bds-error);
2352
2526
  }
2353
2527
  @media (prefers-reduced-motion: reduce) {
2354
- .bds0117Slider-slider,
2355
- .bds0117Slider-slider::-webkit-slider-thumb,
2356
- .bds0117Slider-slider::-moz-range-thumb {
2528
+ .bds100Slider-slider,
2529
+ .bds100Slider-slider::-webkit-slider-thumb,
2530
+ .bds100Slider-slider::-moz-range-thumb {
2357
2531
  transition: none;
2358
2532
  }
2359
2533
  }
@@ -2361,30 +2535,30 @@
2361
2535
 
2362
2536
  /* src/components/interaction/form/Switch/Switch.module.css */
2363
2537
  @layer component {
2364
- .bds0117Switch-switchGroup {
2538
+ .bds100Switch-switchGroup {
2365
2539
  --switch_thumb-size: 1.25em;
2366
- --switch_track-pad: var(--space_xxxs);
2540
+ --switch_track-pad: var(--bds-space_xxxs);
2367
2541
  --switch_track-height: calc(var(--switch_thumb-size) + var(--switch_track-pad) * 2);
2368
2542
  --switch_track-width: calc(var(--switch_thumb-size) * 2 + var(--switch_track-pad) * 2);
2369
- color: var(--switch_color, var(--color_on-bg));
2543
+ color: var(--switch_color, var(--bds-on-bg));
2370
2544
  display: flex;
2371
2545
  flex-direction: column;
2372
2546
  }
2373
- .bds0117Switch-switchGroup.bds0117Switch---size_small {
2547
+ .bds100Switch-switchGroup.bds100Switch---size_small {
2374
2548
  --switch_thumb-size: 1em;
2375
2549
  }
2376
- .bds0117Switch-switchGroup.bds0117Switch---size_medium {
2550
+ .bds100Switch-switchGroup.bds100Switch---size_medium {
2377
2551
  --switch_thumb-size: 1.25em;
2378
2552
  }
2379
- .bds0117Switch-switchGroup.bds0117Switch---size_large {
2553
+ .bds100Switch-switchGroup.bds100Switch---size_large {
2380
2554
  --switch_thumb-size: 1.5em;
2381
2555
  }
2382
- .bds0117Switch-inputWrapper {
2556
+ .bds100Switch-inputWrapper {
2383
2557
  display: flex;
2384
2558
  align-items: center;
2385
- gap: var(--space_xs);
2559
+ gap: var(--bds-space_xs);
2386
2560
  }
2387
- .bds0117Switch-trackWrapper {
2561
+ .bds100Switch-trackWrapper {
2388
2562
  position: relative;
2389
2563
  display: inline-flex;
2390
2564
  align-items: center;
@@ -2392,7 +2566,7 @@
2392
2566
  width: var(--switch_track-width);
2393
2567
  height: var(--switch_track-height);
2394
2568
  }
2395
- .bds0117Switch-switch {
2569
+ .bds100Switch-switch {
2396
2570
  position: absolute;
2397
2571
  inset: 0;
2398
2572
  appearance: none;
@@ -2403,54 +2577,59 @@
2403
2577
  cursor: pointer;
2404
2578
  z-index: 1;
2405
2579
  }
2406
- .bds0117Switch-switch:disabled {
2580
+ .bds100Switch-switch:disabled {
2407
2581
  cursor: not-allowed;
2408
2582
  }
2409
- .bds0117Switch-track {
2583
+ .bds100Switch-track {
2410
2584
  display: inline-flex;
2411
2585
  align-items: center;
2412
2586
  width: var(--switch_track-width);
2413
2587
  height: var(--switch_track-height);
2414
2588
  border-radius: 999px;
2415
- background-color: var(--switch_track-bg, var(--color_grey--subtle));
2589
+ background-color: var(--switch_track-bg, var(--bds-grey--subtle));
2416
2590
  padding-inline: var(--switch_track-pad);
2417
2591
  pointer-events: none;
2418
- transition: var(--animation_transition);
2419
- outline: 1px solid var(--switch_thumb-bg, var(--color_grey));
2420
- outline-offset: var(--outline_offset);
2421
- }
2422
- .bds0117Switch-thumb {
2592
+ outline: var(--bdc_width) solid var(--bdc_color);
2593
+ outline-offset: var(--bds-outline_offset);
2594
+ box-shadow: var(--switch_shadow, var(--bdc_shadow));
2595
+ transition:
2596
+ --bdc_color var(--bds-animation_transition-duration) var(--bds-animation_easing),
2597
+ background-color var(--bds-animation_transition-duration) var(--bds-animation_easing),
2598
+ transform var(--bds-animation_transition-duration) var(--bds-animation_easing);
2599
+ --bdc_color: var(--switch_thumb-bg, var(--bds-grey));
2600
+ }
2601
+ .bds100Switch-thumb {
2423
2602
  display: block;
2424
2603
  width: var(--switch_thumb-size);
2425
2604
  height: var(--switch_thumb-size);
2426
2605
  border-radius: 50%;
2427
- background-color: var(--switch_thumb-bg, var(--color_grey));
2428
- box-shadow: var(--shadow_s);
2429
- transition: var(--animation_transition);
2606
+ background-color: var(--switch_thumb-bg, var(--bds-grey));
2607
+ box-shadow: var(--bds-shadow_s);
2608
+ transition: var(--bds-animation_transition);
2430
2609
  transform: translateX(0);
2431
2610
  }
2432
- .bds0117Switch-switch.bds0117Switch-switchError + .bds0117Switch-track {
2433
- outline: 1px solid var(--color_error);
2611
+ .bds100Switch-switch.bds100Switch-switchError + .bds100Switch-track {
2612
+ --bdc_color: var(--bds-error);
2434
2613
  }
2435
- .bds0117Switch-switch:checked + .bds0117Switch-track {
2436
- background-color: var(--switch_track-bg--active, var(--color_active--subtle));
2437
- outline-color: var(--switch_thumb-bg--active, var(--color_active--strong));
2614
+ .bds100Switch-switch:checked + .bds100Switch-track {
2615
+ background-color: var(--switch_track-bg--active, var(--bds-active--subtle));
2616
+ --bdc_color: var(--switch_thumb-bg--active, var(--bds-active--strong));
2438
2617
  }
2439
- .bds0117Switch-switch:checked + .bds0117Switch-track .bds0117Switch-thumb {
2440
- background-color: var(--switch_thumb-bg--active, var(--color_active--strong));
2618
+ .bds100Switch-switch:checked + .bds100Switch-track .bds100Switch-thumb {
2619
+ background-color: var(--switch_thumb-bg--active, var(--bds-active--strong));
2441
2620
  transform: translateX(var(--switch_thumb-size));
2442
2621
  }
2443
- .bds0117Switch-switch:focus-visible + .bds0117Switch-track {
2444
- outline: var(--outline_default);
2445
- outline-offset: var(--outline_offset);
2622
+ .bds100Switch-switch:focus-visible + .bds100Switch-track {
2623
+ outline: var(--bds-outline_default);
2624
+ outline-offset: var(--bds-outline_offset);
2446
2625
  border-radius: 999px;
2447
2626
  }
2448
- .bds0117Switch-switch:disabled + .bds0117Switch-track {
2627
+ .bds100Switch-switch:disabled + .bds100Switch-track {
2449
2628
  opacity: 0.4;
2450
2629
  }
2451
2630
  @media (prefers-reduced-motion: reduce) {
2452
- .bds0117Switch-track,
2453
- .bds0117Switch-thumb {
2631
+ .bds100Switch-track,
2632
+ .bds100Switch-thumb {
2454
2633
  transition: none;
2455
2634
  }
2456
2635
  }
@@ -2458,86 +2637,90 @@
2458
2637
 
2459
2638
  /* src/components/interaction/form/Textarea/Textarea.module.css */
2460
2639
  @layer component {
2461
- .bds0117Textarea-formGroup {
2640
+ .bds100Textarea-formGroup {
2462
2641
  display: flex;
2463
2642
  flex-direction: column;
2464
2643
  }
2465
- .bds0117Textarea-textarea {
2466
- font-family: var(--font_family--body);
2467
- font-size: var(--font_size--body);
2468
- line-height: var(--font_line-height--body);
2469
- padding: var(--space_s);
2470
- border: 1px solid var(--textarea_border-color, currentcolor);
2471
- border-radius: var(--border_radius--xs);
2472
- background-color: var(--textarea_color_bg, var(--color_bg));
2473
- color: var(--textarea_color, var(--color_on-bg));
2644
+ .bds100Textarea-textarea {
2645
+ font-family: var(--bds-font_family--body);
2646
+ font-size: var(--bds-font_size--body);
2647
+ line-height: var(--bds-font_line-height--body);
2648
+ padding: var(--bds-space_s);
2649
+ border: var(--textarea_border, none);
2650
+ --bdc_color: currentcolor;
2651
+ --bdc_radius: var(--bds-border_radius--xs);
2652
+ outline: var(--bdc_width) solid var(--bdc_color);
2653
+ outline-offset: var(--bdc_offset);
2654
+ border-radius: var(--textarea_radius, var(--bdc_radius));
2655
+ box-shadow: var(--textarea_shadow, var(--bdc_shadow));
2656
+ background-color: var(--textarea_color_bg, var(--bds-bg));
2657
+ color: var(--textarea_color, var(--bds-on-bg));
2474
2658
  resize: vertical;
2475
- min-height: calc(var(--space_m) * 5);
2476
- transition: var(--animation_transition);
2659
+ min-height: calc(var(--bds-space_m) * 5);
2660
+ transition: --bdc_color var(--bds-animation_transition-duration) var(--bds-animation_easing), background-color var(--bds-animation_transition-duration) var(--bds-animation_easing);
2477
2661
  }
2478
- .bds0117Textarea-textarea:focus {
2479
- --textarea_border-color: var(--color_interactive);
2480
- outline: none;
2481
- box-shadow: var(--textarea_focus-ring, 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%));
2662
+ .bds100Textarea-textarea:focus {
2663
+ --bdc_color: var(--bdc_color--focus);
2664
+ }
2665
+ .bds100Textarea-textarea:focus-visible {
2666
+ outline: var(--bds-outline_default);
2667
+ outline-offset: var(--bds-outline_offset);
2482
2668
  }
2483
- .bds0117Textarea-textarea:disabled {
2669
+ .bds100Textarea-textarea:disabled {
2484
2670
  opacity: 0.5;
2485
2671
  cursor: not-allowed;
2486
2672
  resize: none;
2487
2673
  }
2488
- .bds0117Textarea-textareaError {
2489
- --textarea_border-color: var(--color_error);
2490
- }
2491
- .bds0117Textarea-textareaError:focus {
2492
- --textarea_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
2674
+ .bds100Textarea-textareaError {
2675
+ --bdc_color: var(--bdc_color--error);
2493
2676
  }
2494
2677
  }
2495
2678
 
2496
2679
  /* src/components/layout/ButtonGroup/ButtonGroup.module.css */
2497
2680
  @layer component {
2498
- .bds0117ButtonGroup-buttonGroup {
2681
+ .bds100ButtonGroup-buttonGroup {
2499
2682
  container-type: inline-size;
2500
2683
  container-name: button-group;
2501
- grid-column: var(--grid_span-100);
2684
+ grid-column: var(--bds-grid_span-100);
2502
2685
  }
2503
- .bds0117ButtonGroup-buttonGroup .bds0117ButtonGroup-container {
2686
+ .bds100ButtonGroup-buttonGroup .bds100ButtonGroup-container {
2504
2687
  position: relative;
2505
2688
  display: flex;
2506
2689
  flex-direction: column-reverse;
2507
- gap: var(--space_l);
2690
+ gap: var(--bds-space_l);
2508
2691
  align-items: center;
2509
2692
  }
2510
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_card .bds0117ButtonGroup-container {
2693
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_card .bds100ButtonGroup-container {
2511
2694
  align-items: stretch;
2512
2695
  }
2513
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_flow .bds0117ButtonGroup-container,
2514
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_modal .bds0117ButtonGroup-container {
2696
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_flow .bds100ButtonGroup-container,
2697
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_modal .bds100ButtonGroup-container {
2515
2698
  align-items: center;
2516
2699
  }
2517
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_content .bds0117ButtonGroup-container {
2700
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_content .bds100ButtonGroup-container {
2518
2701
  align-items: flex-start;
2519
2702
  }
2520
2703
  @supports (contain: inline-size) {
2521
2704
  @container button-group (min-width: 30rem) {
2522
- .bds0117ButtonGroup-buttonGroup .bds0117ButtonGroup-container {
2705
+ .bds100ButtonGroup-buttonGroup .bds100ButtonGroup-container {
2523
2706
  flex-direction: row;
2524
2707
  justify-content: space-between;
2525
2708
  }
2526
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_modal .bds0117ButtonGroup-container > :first-child:last-child,
2527
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_flow .bds0117ButtonGroup-container > :first-child:last-child {
2709
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_modal .bds100ButtonGroup-container > :first-child:last-child,
2710
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_flow .bds100ButtonGroup-container > :first-child:last-child {
2528
2711
  margin-inline-start: auto;
2529
2712
  }
2530
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_card .bds0117ButtonGroup-container {
2713
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_card .bds100ButtonGroup-container {
2531
2714
  justify-content: center;
2532
2715
  }
2533
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_modal .bds0117ButtonGroup-container {
2716
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_modal .bds100ButtonGroup-container {
2534
2717
  justify-content: flex-end;
2535
2718
  }
2536
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_content .bds0117ButtonGroup-container {
2719
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_content .bds100ButtonGroup-container {
2537
2720
  justify-content: flex-start;
2538
2721
  align-items: center;
2539
2722
  }
2540
- .bds0117ButtonGroup-buttonGroup.bds0117ButtonGroup---variant_grid .bds0117ButtonGroup-container {
2723
+ .bds100ButtonGroup-buttonGroup.bds100ButtonGroup---variant_grid .bds100ButtonGroup-container {
2541
2724
  justify-content: center;
2542
2725
  }
2543
2726
  }
@@ -2546,129 +2729,140 @@
2546
2729
 
2547
2730
  /* src/components/layout/Card/Card.module.css */
2548
2731
  @layer component {
2549
- .bds0117Card-card {
2550
- background-color: var(--card_color, var(--color_bg));
2551
- color: var(--card_on-color, var(--color_on-bg));
2552
- border-radius: var(--border_radius--m);
2732
+ .bds100Card-card {
2733
+ background-color: var(--card_color, var(--bds-bg));
2734
+ color: var(--card_on-color, var(--bds-on-bg));
2735
+ border-radius: var(--bds-border_radius--m);
2553
2736
  transition: all 0.3s ease;
2554
2737
  position: relative;
2555
2738
  }
2556
- .bds0117Card-card.bds0117Card---default {
2557
- box-shadow: var(--shadow_s);
2739
+ .bds100Card-card.bds100Card---default {
2740
+ box-shadow: var(--bds-shadow_s);
2558
2741
  }
2559
- .bds0117Card-card.bds0117Card---elevated {
2560
- box-shadow: var(--shadow_m);
2742
+ .bds100Card-card.bds100Card---elevated {
2743
+ box-shadow: var(--bds-shadow_m);
2561
2744
  }
2562
- .bds0117Card-card.bds0117Card---outlined {
2563
- border: 1px solid currentcolor;
2564
- box-shadow: var(--shadow_s);
2745
+ .bds100Card-card.bds100Card---outlined {
2746
+ border: var(--card_border, none);
2747
+ --bdc_color: currentcolor;
2748
+ outline: var(--bdc_width) solid var(--bdc_color);
2749
+ outline-offset: var(--bdc_offset);
2750
+ box-shadow: var(--bds-shadow_s);
2565
2751
  }
2566
- .bds0117Card-card.bds0117Card---clickable {
2752
+ .bds100Card-card.bds100Card---clickable {
2567
2753
  cursor: pointer;
2568
2754
  }
2569
- .bds0117Card-card.bds0117Card---padding-none {
2755
+ .bds100Card-card.bds100Card---padding-none {
2570
2756
  padding: 0;
2571
2757
  }
2572
- .bds0117Card-card.bds0117Card---padding-small {
2573
- padding: var(--space_s);
2758
+ .bds100Card-card.bds100Card---padding-small {
2759
+ padding: var(--bds-space_s);
2574
2760
  }
2575
- .bds0117Card-card.bds0117Card---padding-medium {
2576
- padding: var(--space_m);
2761
+ .bds100Card-card.bds100Card---padding-medium {
2762
+ padding: var(--bds-space_m);
2577
2763
  }
2578
- .bds0117Card-card.bds0117Card---padding-large {
2579
- padding: var(--space_l);
2764
+ .bds100Card-card.bds100Card---padding-large {
2765
+ padding: var(--bds-space_l);
2580
2766
  }
2581
- .bds0117Card-card.bds0117Card---text-start {
2582
- text-align: left;
2767
+ .bds100Card-card.bds100Card---text-start {
2768
+ text-align: start;
2583
2769
  }
2584
- .bds0117Card-card.bds0117Card---text-center {
2770
+ .bds100Card-card.bds100Card---text-center {
2585
2771
  text-align: center;
2586
2772
  }
2587
- .bds0117Card-card.bds0117Card---text-end {
2588
- text-align: right;
2773
+ .bds100Card-card.bds100Card---text-end {
2774
+ text-align: end;
2775
+ }
2776
+ .bds100Card-card.bds100Card---clickable:focus-visible {
2777
+ outline: 2px solid var(--color_focus, currentcolor);
2778
+ outline-offset: 2px;
2779
+ }
2780
+ .bds100Card-card.bds100Card---clickable:active {
2781
+ transform: translateY(0);
2782
+ box-shadow: var(--bds-shadow_s);
2589
2783
  }
2590
2784
  @media (hover: hover) and (pointer: fine) {
2591
- .bds0117Card-card.bds0117Card---clickable:hover {
2785
+ .bds100Card-card.bds100Card---clickable:hover {
2592
2786
  transform: translateY(-2px);
2593
- box-shadow: var(--shadow_xl);
2787
+ box-shadow: var(--bds-shadow_xl);
2594
2788
  }
2595
- .bds0117Card-card.bds0117Card---default:hover {
2596
- box-shadow: var(--shadow_m);
2789
+ .bds100Card-card.bds100Card---default:hover {
2790
+ box-shadow: var(--bds-shadow_m);
2597
2791
  }
2598
- .bds0117Card-card.bds0117Card---elevated:hover {
2599
- box-shadow: var(--shadow_2xl);
2792
+ .bds100Card-card.bds100Card---elevated:hover {
2793
+ box-shadow: var(--bds-shadow_2xl);
2600
2794
  }
2601
- .bds0117Card-card.bds0117Card---outlined:hover {
2602
- box-shadow: var(--shadow_s);
2795
+ .bds100Card-card.bds100Card---outlined:hover {
2796
+ box-shadow: var(--bds-shadow_s);
2603
2797
  }
2604
2798
  }
2605
2799
  }
2606
2800
 
2607
2801
  /* src/components/layout/SectionHeader/SectionHeader.module.css */
2608
2802
  @layer component {
2609
- .bds0117SectionHeader-sectionHeader {
2803
+ .bds100SectionHeader-sectionHeader {
2610
2804
  display: flex;
2611
2805
  flex-direction: column;
2612
- gap: var(--space_m);
2613
- grid-column: var(--grid_span-100);
2806
+ gap: var(--bds-space_m);
2807
+ grid-column: var(--bds-grid_span-100);
2614
2808
  }
2615
- .bds0117SectionHeader-title {
2616
- color: var(--sectionHeader-title-color, var(--color_on-bg));
2809
+ .bds100SectionHeader-title {
2810
+ color: var(--sectionHeader-title-color, var(--bds-on-bg));
2617
2811
  margin: 0;
2618
- font-family: var(--font_family--body);
2812
+ font-family: var(--bds-font_family--body);
2619
2813
  }
2620
- .bds0117SectionHeader-subtitle {
2621
- color: var(--sectionHeader_subtitle-color, var(--color_grey--strong));
2814
+ .bds100SectionHeader-subtitle {
2815
+ color: var(--sectionHeader_subtitle-color, var(--bds-grey--strong));
2622
2816
  margin: 0;
2623
- font-family: var(--font_family--body);
2624
- font-weight: var(--font_weight--medium);
2817
+ font-family: var(--bds-font_family--body);
2818
+ font-weight: var(--bds-font_weight--medium);
2625
2819
  }
2626
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---start {
2820
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---start {
2627
2821
  align-items: flex-start;
2628
- text-align: left;
2822
+ text-align: start;
2629
2823
  }
2630
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---center {
2824
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---center {
2631
2825
  align-items: center;
2632
2826
  text-align: center;
2633
2827
  }
2634
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---end {
2828
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---end {
2635
2829
  align-items: flex-end;
2636
- text-align: right;
2830
+ text-align: end;
2637
2831
  }
2638
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---small .bds0117SectionHeader-title {
2639
- font-size: var(--font_size--heading-1);
2640
- line-height: var(--font_line-height--heading);
2641
- font-weight: var(--font_weight--bold);
2832
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---small .bds100SectionHeader-title {
2833
+ font-size: var(--bds-font_size--heading-1);
2834
+ line-height: var(--bds-font_line-height--heading);
2835
+ font-weight: var(--bds-font_weight--bold);
2642
2836
  }
2643
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---small .bds0117SectionHeader-subtitle {
2644
- font-size: var(--font_size--body);
2837
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---small .bds100SectionHeader-subtitle {
2838
+ font-size: var(--bds-font_size--body);
2645
2839
  line-height: 1.4;
2646
2840
  }
2647
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---medium .bds0117SectionHeader-title {
2648
- font-size: var(--font_size--display);
2649
- line-height: var(--font_line-height--display);
2650
- font-weight: var(--font_weight--bold);
2841
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---medium .bds100SectionHeader-title {
2842
+ font-size: var(--bds-font_size--display);
2843
+ line-height: var(--bds-font_line-height--display);
2844
+ font-weight: var(--bds-font_weight--bold);
2651
2845
  }
2652
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---medium .bds0117SectionHeader-subtitle {
2653
- font-size: var(--font_size--heading-3);
2846
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---medium .bds100SectionHeader-subtitle {
2847
+ font-size: var(--bds-font_size--heading-3);
2654
2848
  line-height: 1.3;
2655
2849
  }
2656
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---large .bds0117SectionHeader-title {
2657
- font-size: var(--font_size--display);
2658
- line-height: var(--font_line-height--display);
2659
- font-weight: var(--font_weight--bold);
2660
- letter-spacing: var(--font_tracking--tight);
2850
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---large .bds100SectionHeader-title {
2851
+ font-size: var(--bds-font_size--display);
2852
+ line-height: var(--bds-font_line-height--display);
2853
+ font-weight: var(--bds-font_weight--bold);
2854
+ letter-spacing: var(--bds-font_tracking--tight);
2661
2855
  }
2662
- .bds0117SectionHeader-sectionHeader.bds0117SectionHeader---large .bds0117SectionHeader-subtitle {
2663
- font-size: var(--font_size--heading-2);
2856
+ .bds100SectionHeader-sectionHeader.bds100SectionHeader---large .bds100SectionHeader-subtitle {
2857
+ font-size: var(--bds-font_size--heading-2);
2664
2858
  line-height: 1.3;
2665
- font-weight: var(--font_weight--medium);
2859
+ font-weight: var(--bds-font_weight--medium);
2666
2860
  }
2667
2861
  }
2668
2862
 
2669
2863
  /* src/components/layout/IconWrapper/IconWrapper.module.css */
2670
2864
  @layer component {
2671
- .bds0117IconWrapper-wrapper {
2865
+ .bds100IconWrapper-wrapper {
2672
2866
  width: 2em;
2673
2867
  height: 2em;
2674
2868
  font-size: 3em;
@@ -2676,14 +2870,14 @@
2676
2870
  display: flex;
2677
2871
  align-items: center;
2678
2872
  justify-content: center;
2679
- margin: var(--space_l) auto var(--space_m);
2680
- background: var(--icon-wrapper-color, var(--color_bg));
2681
- color: var(--color_on-icon-wrapper-color, var(--color_on-bg));
2682
- fill: var(--color_on-icon-wrapper-color, var(--color_on-bg));
2873
+ margin: var(--bds-space_l) auto var(--bds-space_m);
2874
+ background: var(--icon-wrapper-color, var(--bds-bg));
2875
+ color: var(--bds-on-icon-wrapper-color, var(--bds-on-bg));
2876
+ fill: var(--bds-on-icon-wrapper-color, var(--bds-on-bg));
2683
2877
  position: relative;
2684
- transition: var(--animation_transition);
2878
+ transition: var(--bds-animation_transition);
2685
2879
  }
2686
- .bds0117IconWrapper-wrapper svg {
2880
+ .bds100IconWrapper-wrapper svg {
2687
2881
  fill: currentcolor;
2688
2882
  }
2689
2883
  }