@boostdev/design-system-components 1.2.2 → 1.2.3

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 (32) hide show
  1. package/AGENTS.md +5 -0
  2. package/README.md +21 -4
  3. package/dist/client.cjs +50 -50
  4. package/dist/client.css +506 -503
  5. package/dist/client.js +50 -50
  6. package/dist/index.cjs +50 -50
  7. package/dist/index.css +506 -503
  8. package/dist/index.js +50 -50
  9. package/package.json +3 -3
  10. package/src/components/interaction/Button/Button.module.css +1 -4
  11. package/src/components/interaction/Dialog/Dialog.module.css +1 -1
  12. package/src/components/interaction/Drawer/Drawer.module.css +1 -1
  13. package/src/components/interaction/DropdownMenu/DropdownMenu.module.css +4 -0
  14. package/src/components/interaction/DropdownMenu/DropdownMenu.stories.tsx +4 -4
  15. package/src/components/interaction/form/Combobox/Combobox.module.css +1 -1
  16. package/src/components/interaction/form/FormInput/FormInput.module.css +1 -1
  17. package/src/components/interaction/form/NumberInput/NumberInput.module.css +1 -1
  18. package/src/components/interaction/form/SegmentedControl/SegmentedControl.module.css +5 -5
  19. package/src/components/interaction/form/Select/Select.module.css +1 -1
  20. package/src/components/interaction/form/Slider/Slider.module.css +4 -4
  21. package/src/components/interaction/form/Switch/Switch.module.css +3 -3
  22. package/src/components/layout/IconWrapper/IconWrapper.module.css +1 -1
  23. package/src/components/ui/Alert/Alert.module.css +1 -1
  24. package/src/components/ui/Avatar/Avatar.module.css +1 -1
  25. package/src/components/ui/Badge/Badge.module.css +1 -1
  26. package/src/components/ui/Calendar/Calendar.module.css +2 -2
  27. package/src/components/ui/Carousel/Carousel.module.css +1 -1
  28. package/src/components/ui/Loading/Loading.module.css +1 -1
  29. package/src/components/ui/NotificationBanner/NotificationBanner.module.css +1 -1
  30. package/src/components/ui/Pagination/Pagination.module.css +5 -1
  31. package/src/components/ui/Progress/Progress.module.css +2 -2
  32. package/src/components/ui/Tooltip/Tooltip.module.css +1 -1
package/AGENTS.md CHANGED
@@ -158,6 +158,11 @@ Apply this pattern to any component with a visually distinct active/selected/fil
158
158
  - Shadow: use elevation scale (`--bds-shadow_s` … `--bds-shadow_2xl`). Shadows use `--bds-shadow_color-rgb` internally — override this token to theme shadow colour.
159
159
  - Z-index: use named role tokens, never raw integers
160
160
  - Focus-visible outlines: use `--bds-outline_default` (2px dotted, adapts to dark mode). `--bds-outline_color` is the colour token; `--bds-outline_offset` is the offset (2px outside). These are distinct from the inset `--bdc-outline_*` border system.
161
+ - Border radius: use foundation tokens, never raw `px` or `%` values. Key tokens:
162
+ - `--bds-border_radius--full` (9999px) — pill shape for buttons, inputs, badges, tracks
163
+ - `--bds-border_radius--circle` (50%) — perfect circle for avatars, thumbs, close buttons, spinners
164
+ - `--bds-border_radius--xs` / `--s` / `--m` — standard rounded corners
165
+ - Always wrap in a component-scoped override: `var(--component_radius, var(--bds-border_radius--full))`
161
166
  - Dark mode: foundation tokens adapt automatically via `[data-theme="dark"]` attribute or `prefers-color-scheme: dark`. No extra CSS needed in components.
162
167
 
163
168
  ### Semantic tokens for state colours
package/README.md CHANGED
@@ -149,7 +149,7 @@ Renders an `aria-hidden` shimmer block. Size it with a `className` or inline sty
149
149
  import { Button } from '@boostdev/components';
150
150
 
151
151
  <Button>Click me</Button>
152
- <Button variant="ghost">Cancel</Button>
152
+ <Button variant="outline">Cancel</Button>
153
153
  <Button size="small">Small</Button>
154
154
  <Button href="/dashboard">Link button</Button>
155
155
  <Button iconStart={<Icon />} aria-label="Delete" />
@@ -158,7 +158,7 @@ import { Button } from '@boostdev/components';
158
158
 
159
159
  | Prop | Type | Default |
160
160
  |---|---|---|
161
- | `variant` | `'default' \| 'ghost'` | `'default'` |
161
+ | `variant` | `'default' \| 'outline'` | `'default'` |
162
162
  | `size` | `'small' \| 'medium' \| 'large'` | `'medium'` |
163
163
  | `href` | `string` | — renders an `<a>` |
164
164
  | `iconStart` | `ReactNode` | — |
@@ -167,8 +167,8 @@ import { Button } from '@boostdev/components';
167
167
  | `disabled` | `boolean` | `false` |
168
168
 
169
169
  **Variants:**
170
- - `default` — filled with `--button_color` (CTA green). Hover transitions to an outlined state.
171
- - `ghost` — transparent background, border and text use `--button_color`. Hover fills.
170
+ - `default` — filled with `--button_color`. Hover transitions to an outlined state.
171
+ - `outline` — transparent background, border and text use `--button_color`. Hover fills. (`ghost` is a deprecated alias.)
172
172
 
173
173
  **Re-theming** — set two CSS custom properties to change the colour of both variants:
174
174
 
@@ -447,6 +447,23 @@ All component styles sit in `@layer component`. You can also write rules in a hi
447
447
  }
448
448
  ```
449
449
 
450
+ ### Overriding border-radius
451
+
452
+ Components default to pill (`--bds-border_radius--full`) or circle (`--bds-border_radius--circle`)
453
+ shapes from the foundation. Override the component-scoped variable to change individual components:
454
+
455
+ ```css
456
+ /* Make all buttons square-cornered */
457
+ .my-button {
458
+ --button_radius: var(--bds-border_radius--s);
459
+ }
460
+
461
+ /* Make avatars rounded-square instead of circular */
462
+ .my-avatar {
463
+ --avatar_radius: var(--bds-border_radius--m);
464
+ }
465
+ ```
466
+
450
467
  ### Overriding active/checked state colour
451
468
 
452
469
  Components with a checked or filled state (Checkbox, Radio, Slider, Progress, ProgressCircle)
package/dist/client.cjs CHANGED
@@ -87,7 +87,7 @@ module.exports = __toCommonJS(client_exports);
87
87
  var import_react = require("react");
88
88
 
89
89
  // src/components/ui/Accordion/Accordion.module.css
90
- var Accordion_default = {"accordion":"bds122Accordion-accordion","item":"bds122Accordion-item","heading":"bds122Accordion-heading","trigger":"bds122Accordion-trigger","triggerLabel":"bds122Accordion-triggerLabel","chevron":"bds122Accordion-chevron","--open":"bds122Accordion---open","panel":"bds122Accordion-panel","panelContent":"bds122Accordion-panelContent"};
90
+ var Accordion_default = {"accordion":"bds123Accordion-accordion","item":"bds123Accordion-item","heading":"bds123Accordion-heading","trigger":"bds123Accordion-trigger","triggerLabel":"bds123Accordion-triggerLabel","chevron":"bds123Accordion-chevron","--open":"bds123Accordion---open","panel":"bds123Accordion-panel","panelContent":"bds123Accordion-panelContent"};
91
91
 
92
92
  // src/components/ui/Accordion/Accordion.tsx
93
93
  var import_design_system_foundation = require("@boostdev/design-system-foundation");
@@ -156,7 +156,7 @@ function Accordion({
156
156
  }
157
157
 
158
158
  // src/components/ui/Alert/Alert.module.css
159
- var Alert_default = {"alert":"bds122Alert-alert","--variant_info":"bds122Alert---variant_info","--variant_success":"bds122Alert---variant_success","--variant_warning":"bds122Alert---variant_warning","--variant_error":"bds122Alert---variant_error","icon":"bds122Alert-icon","content":"bds122Alert-content","title":"bds122Alert-title","dismiss":"bds122Alert-dismiss"};
159
+ var Alert_default = {"alert":"bds123Alert-alert","--variant_info":"bds123Alert---variant_info","--variant_success":"bds123Alert---variant_success","--variant_warning":"bds123Alert---variant_warning","--variant_error":"bds123Alert---variant_error","icon":"bds123Alert-icon","content":"bds123Alert-content","title":"bds123Alert-title","dismiss":"bds123Alert-dismiss"};
160
160
 
161
161
  // src/components/ui/Alert/Alert.tsx
162
162
  var import_design_system_foundation2 = require("@boostdev/design-system-foundation");
@@ -201,7 +201,7 @@ function Alert({
201
201
  }
202
202
 
203
203
  // src/components/ui/Avatar/Avatar.module.css
204
- var Avatar_default = {"avatar":"bds122Avatar-avatar","--fallback":"bds122Avatar---fallback","--size_small":"bds122Avatar---size_small","--size_medium":"bds122Avatar---size_medium","--size_large":"bds122Avatar---size_large","image":"bds122Avatar-image","initials":"bds122Avatar-initials"};
204
+ var Avatar_default = {"avatar":"bds123Avatar-avatar","--fallback":"bds123Avatar---fallback","--size_small":"bds123Avatar---size_small","--size_medium":"bds123Avatar---size_medium","--size_large":"bds123Avatar---size_large","image":"bds123Avatar-image","initials":"bds123Avatar-initials"};
205
205
 
206
206
  // src/components/ui/Avatar/Avatar.tsx
207
207
  var import_design_system_foundation3 = require("@boostdev/design-system-foundation");
@@ -228,7 +228,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
228
228
  }
229
229
 
230
230
  // src/components/ui/Badge/Badge.module.css
231
- var Badge_default = {"badge":"bds122Badge-badge","--variant_primary":"bds122Badge---variant_primary","--variant_secondary":"bds122Badge---variant_secondary","--variant_success":"bds122Badge---variant_success","--variant_error":"bds122Badge---variant_error","--variant_warning":"bds122Badge---variant_warning"};
231
+ var Badge_default = {"badge":"bds123Badge-badge","--variant_primary":"bds123Badge---variant_primary","--variant_secondary":"bds123Badge---variant_secondary","--variant_success":"bds123Badge---variant_success","--variant_error":"bds123Badge---variant_error","--variant_warning":"bds123Badge---variant_warning"};
232
232
 
233
233
  // src/components/ui/Badge/Badge.tsx
234
234
  var import_design_system_foundation4 = require("@boostdev/design-system-foundation");
@@ -238,7 +238,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
238
238
  }
239
239
 
240
240
  // src/components/ui/Breadcrumb/Breadcrumb.module.css
241
- var Breadcrumb_default = {"breadcrumb":"bds122Breadcrumb-breadcrumb","list":"bds122Breadcrumb-list","item":"bds122Breadcrumb-item","link":"bds122Breadcrumb-link","separator":"bds122Breadcrumb-separator","current":"bds122Breadcrumb-current"};
241
+ var Breadcrumb_default = {"breadcrumb":"bds123Breadcrumb-breadcrumb","list":"bds123Breadcrumb-list","item":"bds123Breadcrumb-item","link":"bds123Breadcrumb-link","separator":"bds123Breadcrumb-separator","current":"bds123Breadcrumb-current"};
242
242
 
243
243
  // src/components/ui/Breadcrumb/Breadcrumb.tsx
244
244
  var import_design_system_foundation5 = require("@boostdev/design-system-foundation");
@@ -254,7 +254,7 @@ function Breadcrumb({ items, className, ...rest }) {
254
254
  }
255
255
 
256
256
  // src/components/ui/Collapsible/Collapsible.module.css
257
- var Collapsible_default = {"collapsible":"bds122Collapsible-collapsible","summary":"bds122Collapsible-summary","summaryContent":"bds122Collapsible-summaryContent","icon":"bds122Collapsible-icon","content":"bds122Collapsible-content"};
257
+ var Collapsible_default = {"collapsible":"bds123Collapsible-collapsible","summary":"bds123Collapsible-summary","summaryContent":"bds123Collapsible-summaryContent","icon":"bds123Collapsible-icon","content":"bds123Collapsible-content"};
258
258
 
259
259
  // src/components/ui/Collapsible/Collapsible.tsx
260
260
  var import_design_system_foundation6 = require("@boostdev/design-system-foundation");
@@ -295,7 +295,7 @@ function Collapsible({
295
295
  var import_react2 = require("react");
296
296
 
297
297
  // src/components/ui/Calendar/Calendar.module.css
298
- var Calendar_default = {"calendar":"bds122Calendar-calendar","header":"bds122Calendar-header","monthYear":"bds122Calendar-monthYear","navBtn":"bds122Calendar-navBtn","grid":"bds122Calendar-grid","weekday":"bds122Calendar-weekday","empty":"bds122Calendar-empty","day":"bds122Calendar-day","disabled":"bds122Calendar-disabled","selected":"bds122Calendar-selected","today":"bds122Calendar-today"};
298
+ var Calendar_default = {"calendar":"bds123Calendar-calendar","header":"bds123Calendar-header","monthYear":"bds123Calendar-monthYear","navBtn":"bds123Calendar-navBtn","grid":"bds123Calendar-grid","weekday":"bds123Calendar-weekday","empty":"bds123Calendar-empty","day":"bds123Calendar-day","disabled":"bds123Calendar-disabled","selected":"bds123Calendar-selected","today":"bds123Calendar-today"};
299
299
 
300
300
  // src/components/ui/Calendar/Calendar.tsx
301
301
  var import_design_system_foundation7 = require("@boostdev/design-system-foundation");
@@ -470,7 +470,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
470
470
  var import_react3 = require("react");
471
471
 
472
472
  // src/components/ui/Carousel/Carousel.module.css
473
- var Carousel_default = {"carousel":"bds122Carousel-carousel","track":"bds122Carousel-track","slide":"bds122Carousel-slide","navBtn":"bds122Carousel-navBtn"};
473
+ var Carousel_default = {"carousel":"bds123Carousel-carousel","track":"bds123Carousel-track","slide":"bds123Carousel-slide","navBtn":"bds123Carousel-navBtn"};
474
474
 
475
475
  // src/components/ui/Carousel/Carousel.tsx
476
476
  var import_design_system_foundation8 = require("@boostdev/design-system-foundation");
@@ -523,7 +523,7 @@ function Carousel({ items, label, className, ...rest }) {
523
523
  }
524
524
 
525
525
  // src/components/ui/DescriptionList/DescriptionList.module.css
526
- var DescriptionList_default = {"list":"bds122DescriptionList-list","group":"bds122DescriptionList-group","term":"bds122DescriptionList-term","details":"bds122DescriptionList-details","--layout_inline":"bds122DescriptionList---layout_inline"};
526
+ var DescriptionList_default = {"list":"bds123DescriptionList-list","group":"bds123DescriptionList-group","term":"bds123DescriptionList-term","details":"bds123DescriptionList-details","--layout_inline":"bds123DescriptionList---layout_inline"};
527
527
 
528
528
  // src/components/ui/DescriptionList/DescriptionList.tsx
529
529
  var import_design_system_foundation9 = require("@boostdev/design-system-foundation");
@@ -536,7 +536,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
536
536
  }
537
537
 
538
538
  // src/components/ui/Link/Link.module.css
539
- var Link_default = {"link":"bds122Link-link","--variant_default":"bds122Link---variant_default","--variant_subtle":"bds122Link---variant_subtle","--variant_standalone":"bds122Link---variant_standalone","externalLabel":"bds122Link-externalLabel"};
539
+ var Link_default = {"link":"bds123Link-link","--variant_default":"bds123Link---variant_default","--variant_subtle":"bds123Link---variant_subtle","--variant_standalone":"bds123Link---variant_standalone","externalLabel":"bds123Link-externalLabel"};
540
540
 
541
541
  // src/components/ui/Link/Link.tsx
542
542
  var import_design_system_foundation10 = require("@boostdev/design-system-foundation");
@@ -567,7 +567,7 @@ function Link({
567
567
  }
568
568
 
569
569
  // src/components/ui/Loading/Loading.module.css
570
- var Loading_default = {"loading":"bds122Loading-loading","spinner":"bds122Loading-spinner","--size_small":"bds122Loading---size_small","--size_large":"bds122Loading---size_large"};
570
+ var Loading_default = {"loading":"bds123Loading-loading","spinner":"bds123Loading-spinner","--size_small":"bds123Loading---size_small","--size_large":"bds123Loading---size_large"};
571
571
 
572
572
  // src/components/ui/Loading/Loading.tsx
573
573
  var import_design_system_foundation11 = require("@boostdev/design-system-foundation");
@@ -577,7 +577,7 @@ function Loading({ size = "medium", className, ...rest }) {
577
577
  }
578
578
 
579
579
  // src/components/ui/NotificationBanner/NotificationBanner.module.css
580
- var NotificationBanner_default = {"banner":"bds122NotificationBanner-banner","--variant_info":"bds122NotificationBanner---variant_info","--variant_success":"bds122NotificationBanner---variant_success","--variant_warning":"bds122NotificationBanner---variant_warning","--variant_error":"bds122NotificationBanner---variant_error","content":"bds122NotificationBanner-content","action":"bds122NotificationBanner-action","dismiss":"bds122NotificationBanner-dismiss"};
580
+ var NotificationBanner_default = {"banner":"bds123NotificationBanner-banner","--variant_info":"bds123NotificationBanner---variant_info","--variant_success":"bds123NotificationBanner---variant_success","--variant_warning":"bds123NotificationBanner---variant_warning","--variant_error":"bds123NotificationBanner---variant_error","content":"bds123NotificationBanner-content","action":"bds123NotificationBanner-action","dismiss":"bds123NotificationBanner-dismiss"};
581
581
 
582
582
  // src/components/ui/NotificationBanner/NotificationBanner.tsx
583
583
  var import_design_system_foundation12 = require("@boostdev/design-system-foundation");
@@ -618,7 +618,7 @@ function NotificationBanner({
618
618
  }
619
619
 
620
620
  // src/components/ui/Pagination/Pagination.module.css
621
- var Pagination_default = {"pagination":"bds122Pagination-pagination","list":"bds122Pagination-list","button":"bds122Pagination-button","--active":"bds122Pagination---active","--nav":"bds122Pagination---nav","ellipsis":"bds122Pagination-ellipsis"};
621
+ var Pagination_default = {"pagination":"bds123Pagination-pagination","list":"bds123Pagination-list","button":"bds123Pagination-button","--active":"bds123Pagination---active","--nav":"bds123Pagination---nav","ellipsis":"bds123Pagination-ellipsis"};
622
622
 
623
623
  // src/components/ui/Pagination/Pagination.tsx
624
624
  var import_design_system_foundation13 = require("@boostdev/design-system-foundation");
@@ -683,7 +683,7 @@ function Pagination({
683
683
  }
684
684
 
685
685
  // src/components/ui/Progress/Progress.module.css
686
- var Progress_default = {"container":"bds122Progress-container","labelRow":"bds122Progress-labelRow","value":"bds122Progress-value","track":"bds122Progress-track","--size_small":"bds122Progress---size_small","--size_medium":"bds122Progress---size_medium","--size_large":"bds122Progress---size_large","fill":"bds122Progress-fill"};
686
+ var Progress_default = {"container":"bds123Progress-container","labelRow":"bds123Progress-labelRow","value":"bds123Progress-value","track":"bds123Progress-track","--size_small":"bds123Progress---size_small","--size_medium":"bds123Progress---size_medium","--size_large":"bds123Progress---size_large","fill":"bds123Progress-fill"};
687
687
 
688
688
  // src/components/ui/Progress/Progress.tsx
689
689
  var import_design_system_foundation14 = require("@boostdev/design-system-foundation");
@@ -722,7 +722,7 @@ function Progress({
722
722
  }
723
723
 
724
724
  // src/components/ui/ProgressCircle/ProgressCircle.module.css
725
- var ProgressCircle_default = {"wrapper":"bds122ProgressCircle-wrapper","svg":"bds122ProgressCircle-svg","track":"bds122ProgressCircle-track","fill":"bds122ProgressCircle-fill","value":"bds122ProgressCircle-value","--size_small":"bds122ProgressCircle---size_small","--size_medium":"bds122ProgressCircle---size_medium","--size_large":"bds122ProgressCircle---size_large"};
725
+ var ProgressCircle_default = {"wrapper":"bds123ProgressCircle-wrapper","svg":"bds123ProgressCircle-svg","track":"bds123ProgressCircle-track","fill":"bds123ProgressCircle-fill","value":"bds123ProgressCircle-value","--size_small":"bds123ProgressCircle---size_small","--size_medium":"bds123ProgressCircle---size_medium","--size_large":"bds123ProgressCircle---size_large"};
726
726
 
727
727
  // src/components/ui/ProgressCircle/ProgressCircle.tsx
728
728
  var import_design_system_foundation15 = require("@boostdev/design-system-foundation");
@@ -803,7 +803,7 @@ function ProgressCircle({
803
803
  }
804
804
 
805
805
  // src/components/ui/Separator/Separator.module.css
806
- var Separator_default = {"separator":"bds122Separator-separator","--horizontal":"bds122Separator---horizontal","--vertical":"bds122Separator---vertical"};
806
+ var Separator_default = {"separator":"bds123Separator-separator","--horizontal":"bds123Separator---horizontal","--vertical":"bds123Separator---vertical"};
807
807
 
808
808
  // src/components/ui/Separator/Separator.tsx
809
809
  var import_design_system_foundation16 = require("@boostdev/design-system-foundation");
@@ -827,7 +827,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
827
827
  var import_design_system_foundation17 = require("@boostdev/design-system-foundation");
828
828
 
829
829
  // src/components/ui/Skeleton/Skeleton.module.css
830
- var Skeleton_default = {"skeleton":"bds122Skeleton-skeleton"};
830
+ var Skeleton_default = {"skeleton":"bds123Skeleton-skeleton"};
831
831
 
832
832
  // src/components/ui/Skeleton/Skeleton.tsx
833
833
  var import_jsx_runtime17 = require("react/jsx-runtime");
@@ -836,7 +836,7 @@ function Skeleton({ className, ...rest }) {
836
836
  }
837
837
 
838
838
  // src/components/ui/SkipLink/SkipLink.module.css
839
- var SkipLink_default = {"skipLink":"bds122SkipLink-skipLink"};
839
+ var SkipLink_default = {"skipLink":"bds123SkipLink-skipLink"};
840
840
 
841
841
  // src/components/ui/SkipLink/SkipLink.tsx
842
842
  var import_design_system_foundation18 = require("@boostdev/design-system-foundation");
@@ -846,7 +846,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
846
846
  }
847
847
 
848
848
  // src/components/ui/Table/Table.module.css
849
- var Table_default = {"wrapper":"bds122Table-wrapper","table":"bds122Table-table","caption":"bds122Table-caption","thead":"bds122Table-thead","th":"bds122Table-th","--sortable":"bds122Table---sortable","sortButton":"bds122Table-sortButton","sortIcon":"bds122Table-sortIcon","--sort-active":"bds122Table---sort-active","--sort-desc":"bds122Table---sort-desc","tbody":"bds122Table-tbody","tr":"bds122Table-tr","td":"bds122Table-td"};
849
+ var Table_default = {"wrapper":"bds123Table-wrapper","table":"bds123Table-table","caption":"bds123Table-caption","thead":"bds123Table-thead","th":"bds123Table-th","--sortable":"bds123Table---sortable","sortButton":"bds123Table-sortButton","sortIcon":"bds123Table-sortIcon","--sort-active":"bds123Table---sort-active","--sort-desc":"bds123Table---sort-desc","tbody":"bds123Table-tbody","tr":"bds123Table-tr","td":"bds123Table-td"};
850
850
 
851
851
  // src/components/ui/Table/Table.tsx
852
852
  var import_design_system_foundation19 = require("@boostdev/design-system-foundation");
@@ -916,7 +916,7 @@ function Table({
916
916
  var import_react4 = require("react");
917
917
 
918
918
  // src/components/ui/Tabs/Tabs.module.css
919
- var Tabs_default = {"tabs":"bds122Tabs-tabs","tabList":"bds122Tabs-tabList","tab":"bds122Tabs-tab","--active":"bds122Tabs---active","panel":"bds122Tabs-panel"};
919
+ var Tabs_default = {"tabs":"bds123Tabs-tabs","tabList":"bds123Tabs-tabList","tab":"bds123Tabs-tab","--active":"bds123Tabs---active","panel":"bds123Tabs-panel"};
920
920
 
921
921
  // src/components/ui/Tabs/Tabs.tsx
922
922
  var import_design_system_foundation20 = require("@boostdev/design-system-foundation");
@@ -996,7 +996,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
996
996
  var import_react5 = require("react");
997
997
 
998
998
  // src/components/ui/Tooltip/Tooltip.module.css
999
- var Tooltip_default = {"wrapper":"bds122Tooltip-wrapper","tooltip":"bds122Tooltip-tooltip","--placement_top":"bds122Tooltip---placement_top","--placement_bottom":"bds122Tooltip---placement_bottom","--placement_left":"bds122Tooltip---placement_left","--placement_right":"bds122Tooltip---placement_right"};
999
+ var Tooltip_default = {"wrapper":"bds123Tooltip-wrapper","tooltip":"bds123Tooltip-tooltip","--placement_top":"bds123Tooltip---placement_top","--placement_bottom":"bds123Tooltip---placement_bottom","--placement_left":"bds123Tooltip---placement_left","--placement_right":"bds123Tooltip---placement_right"};
1000
1000
 
1001
1001
  // src/components/ui/Tooltip/Tooltip.tsx
1002
1002
  var import_design_system_foundation21 = require("@boostdev/design-system-foundation");
@@ -1040,7 +1040,7 @@ function Tooltip({
1040
1040
  }
1041
1041
 
1042
1042
  // src/components/ui/Typography/Typography.module.css
1043
- var Typography_default = {"typography":"bds122Typography-typography","--h1":"bds122Typography---h1","--h2":"bds122Typography---h2","--h3":"bds122Typography---h3","--body":"bds122Typography---body","--body_s":"bds122Typography---body_s"};
1043
+ var Typography_default = {"typography":"bds123Typography-typography","--h1":"bds123Typography---h1","--h2":"bds123Typography---h2","--h3":"bds123Typography---h3","--body":"bds123Typography---body","--body_s":"bds123Typography---body_s"};
1044
1044
 
1045
1045
  // src/components/ui/Typography/Typography.tsx
1046
1046
  var import_design_system_foundation22 = require("@boostdev/design-system-foundation");
@@ -1058,7 +1058,7 @@ function Typography({ variant = "body", component, children, className, ...rest
1058
1058
  }
1059
1059
 
1060
1060
  // src/components/interaction/Button/Button.module.css
1061
- var Button_default = {"button":"bds122Button-button","--default":"bds122Button---default","--outline":"bds122Button---outline","--ghost":"bds122Button---ghost","--size_small":"bds122Button---size_small","--size_medium":"bds122Button---size_medium","--size_large":"bds122Button---size_large","--hasPulse":"bds122Button---hasPulse","iconStart":"bds122Button-iconStart","iconEnd":"bds122Button-iconEnd"};
1061
+ var Button_default = {"button":"bds123Button-button","--default":"bds123Button---default","--outline":"bds123Button---outline","--ghost":"bds123Button---ghost","--size_small":"bds123Button---size_small","--size_medium":"bds123Button---size_medium","--size_large":"bds123Button---size_large","--hasPulse":"bds123Button---hasPulse","iconStart":"bds123Button-iconStart","iconEnd":"bds123Button-iconEnd"};
1062
1062
 
1063
1063
  // src/components/interaction/Button/Button.tsx
1064
1064
  var import_design_system_foundation23 = require("@boostdev/design-system-foundation");
@@ -1173,7 +1173,7 @@ function installInvokerCommandsPolyfill() {
1173
1173
  }
1174
1174
 
1175
1175
  // src/components/interaction/Command/Command.module.css
1176
- var Command_default = {"dialog":"bds122Command-dialog","palette":"bds122Command-palette","searchRow":"bds122Command-searchRow","searchIcon":"bds122Command-searchIcon","search":"bds122Command-search","escHint":"bds122Command-escHint","list":"bds122Command-list","groupList":"bds122Command-groupList","group":"bds122Command-group","item":"bds122Command-item","itemActive":"bds122Command-itemActive","itemLabel":"bds122Command-itemLabel","itemDesc":"bds122Command-itemDesc","shortcut":"bds122Command-shortcut","empty":"bds122Command-empty"};
1176
+ var Command_default = {"dialog":"bds123Command-dialog","palette":"bds123Command-palette","searchRow":"bds123Command-searchRow","searchIcon":"bds123Command-searchIcon","search":"bds123Command-search","escHint":"bds123Command-escHint","list":"bds123Command-list","groupList":"bds123Command-groupList","group":"bds123Command-group","item":"bds123Command-item","itemActive":"bds123Command-itemActive","itemLabel":"bds123Command-itemLabel","itemDesc":"bds123Command-itemDesc","shortcut":"bds123Command-shortcut","empty":"bds123Command-empty"};
1177
1177
 
1178
1178
  // src/components/interaction/Command/Command.tsx
1179
1179
  var import_design_system_foundation24 = require("@boostdev/design-system-foundation");
@@ -1350,7 +1350,7 @@ function Command({
1350
1350
  var import_react7 = require("react");
1351
1351
 
1352
1352
  // src/components/interaction/Dialog/Dialog.module.css
1353
- var Dialog_default = {"dialog":"bds122Dialog-dialog","dialogContent":"bds122Dialog-dialogContent","closeButton":"bds122Dialog-closeButton"};
1353
+ var Dialog_default = {"dialog":"bds123Dialog-dialog","dialogContent":"bds123Dialog-dialogContent","closeButton":"bds123Dialog-closeButton"};
1354
1354
 
1355
1355
  // src/components/interaction/Dialog/Dialog.tsx
1356
1356
  var import_design_system_foundation25 = require("@boostdev/design-system-foundation");
@@ -1456,7 +1456,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
1456
1456
  var import_react8 = require("react");
1457
1457
 
1458
1458
  // src/components/interaction/Drawer/Drawer.module.css
1459
- var Drawer_default = {"drawer":"bds122Drawer-drawer","--side_left":"bds122Drawer---side_left","header":"bds122Drawer-header","closeButton":"bds122Drawer-closeButton","body":"bds122Drawer-body"};
1459
+ var Drawer_default = {"drawer":"bds123Drawer-drawer","--side_left":"bds123Drawer---side_left","header":"bds123Drawer-header","closeButton":"bds123Drawer-closeButton","body":"bds123Drawer-body"};
1460
1460
 
1461
1461
  // src/components/interaction/Drawer/Drawer.tsx
1462
1462
  var import_design_system_foundation26 = require("@boostdev/design-system-foundation");
@@ -1557,7 +1557,7 @@ function Drawer({
1557
1557
  var import_react9 = require("react");
1558
1558
 
1559
1559
  // src/components/interaction/DropdownMenu/DropdownMenu.module.css
1560
- var DropdownMenu_default = {"wrapper":"bds122DropdownMenu-wrapper","menu":"bds122DropdownMenu-menu","--placement_bottom-start":"bds122DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds122DropdownMenu---placement_bottom-end","separator":"bds122DropdownMenu-separator","item":"bds122DropdownMenu-item","icon":"bds122DropdownMenu-icon"};
1560
+ var DropdownMenu_default = {"wrapper":"bds123DropdownMenu-wrapper","menu":"bds123DropdownMenu-menu","--placement_bottom-start":"bds123DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds123DropdownMenu---placement_bottom-end","separator":"bds123DropdownMenu-separator","item":"bds123DropdownMenu-item","icon":"bds123DropdownMenu-icon"};
1561
1561
 
1562
1562
  // src/components/interaction/DropdownMenu/DropdownMenu.tsx
1563
1563
  var import_design_system_foundation27 = require("@boostdev/design-system-foundation");
@@ -1671,7 +1671,7 @@ function DropdownMenu({
1671
1671
  var import_react10 = require("react");
1672
1672
 
1673
1673
  // src/components/interaction/Popover/Popover.module.css
1674
- var Popover_default = {"wrapper":"bds122Popover-wrapper","panel":"bds122Popover-panel","g":"bds122Popover-g"};
1674
+ var Popover_default = {"wrapper":"bds123Popover-wrapper","panel":"bds123Popover-panel","g":"bds123Popover-g"};
1675
1675
 
1676
1676
  // src/components/interaction/Popover/Popover.tsx
1677
1677
  var import_design_system_foundation28 = require("@boostdev/design-system-foundation");
@@ -1756,7 +1756,7 @@ function Popover({
1756
1756
  }
1757
1757
 
1758
1758
  // src/components/interaction/Rating/Rating.module.css
1759
- var Rating_default = {"rating":"bds122Rating-rating","star":"bds122Rating-star","--filled":"bds122Rating---filled"};
1759
+ var Rating_default = {"rating":"bds123Rating-rating","star":"bds123Rating-star","--filled":"bds123Rating---filled"};
1760
1760
 
1761
1761
  // src/components/interaction/Rating/Rating.tsx
1762
1762
  var import_design_system_foundation29 = require("@boostdev/design-system-foundation");
@@ -1788,7 +1788,7 @@ function Rating({ value, max = 5, className, ...rest }) {
1788
1788
  var import_react11 = require("react");
1789
1789
 
1790
1790
  // src/components/interaction/Toast/Toast.module.css
1791
- var Toast_default = {"toastContainer":"bds122Toast-toastContainer","toast":"bds122Toast-toast","--variant_success":"bds122Toast---variant_success","--variant_warning":"bds122Toast---variant_warning","--variant_info":"bds122Toast---variant_info","--variant_error":"bds122Toast---variant_error","message":"bds122Toast-message","closeButton":"bds122Toast-closeButton"};
1791
+ var Toast_default = {"toastContainer":"bds123Toast-toastContainer","toast":"bds123Toast-toast","--variant_success":"bds123Toast---variant_success","--variant_warning":"bds123Toast---variant_warning","--variant_info":"bds123Toast---variant_info","--variant_error":"bds123Toast---variant_error","message":"bds123Toast-message","closeButton":"bds123Toast-closeButton"};
1792
1792
 
1793
1793
  // src/components/interaction/Toast/Toast.tsx
1794
1794
  var import_design_system_foundation30 = require("@boostdev/design-system-foundation");
@@ -1861,10 +1861,10 @@ function useToast() {
1861
1861
  var import_react12 = require("react");
1862
1862
 
1863
1863
  // src/components/interaction/form/Checkbox/Checkbox.module.css
1864
- var Checkbox_default = {"checkboxGroup":"bds122Checkbox-checkboxGroup","inputWrapper":"bds122Checkbox-inputWrapper","checkbox":"bds122Checkbox-checkbox","checkboxError":"bds122Checkbox-checkboxError"};
1864
+ var Checkbox_default = {"checkboxGroup":"bds123Checkbox-checkboxGroup","inputWrapper":"bds123Checkbox-inputWrapper","checkbox":"bds123Checkbox-checkbox","checkboxError":"bds123Checkbox-checkboxError"};
1865
1865
 
1866
1866
  // src/components/interaction/form/atoms/Message.module.css
1867
- var Message_default = {"error":"bds122Message-error","hint":"bds122Message-hint"};
1867
+ var Message_default = {"error":"bds123Message-error","hint":"bds123Message-hint"};
1868
1868
 
1869
1869
  // src/components/interaction/form/atoms/Message.tsx
1870
1870
  var import_design_system_foundation31 = require("@boostdev/design-system-foundation");
@@ -1875,7 +1875,7 @@ var Message = ({ message, type, inputId, className }) => {
1875
1875
  };
1876
1876
 
1877
1877
  // src/components/interaction/form/atoms/Label.module.css
1878
- var Label_default = {"label":"bds122Label-label"};
1878
+ var Label_default = {"label":"bds123Label-label"};
1879
1879
 
1880
1880
  // src/components/interaction/form/atoms/Label.tsx
1881
1881
  var import_design_system_foundation32 = require("@boostdev/design-system-foundation");
@@ -1888,7 +1888,7 @@ var Label = ({ label, id, className }) => {
1888
1888
  var import_design_system_foundation34 = require("@boostdev/design-system-foundation");
1889
1889
 
1890
1890
  // src/components/interaction/form/atoms/InputContainer.module.css
1891
- var InputContainer_default = {"container":"bds122InputContainer-container"};
1891
+ var InputContainer_default = {"container":"bds123InputContainer-container"};
1892
1892
 
1893
1893
  // src/components/interaction/form/atoms/InputContainer.tsx
1894
1894
  var import_design_system_foundation33 = require("@boostdev/design-system-foundation");
@@ -1929,7 +1929,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
1929
1929
  var import_react13 = require("react");
1930
1930
 
1931
1931
  // src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
1932
- var CheckboxGroup_default = {"group":"bds122CheckboxGroup-group","legend":"bds122CheckboxGroup-legend","required":"bds122CheckboxGroup-required","items":"bds122CheckboxGroup-items"};
1932
+ var CheckboxGroup_default = {"group":"bds123CheckboxGroup-group","legend":"bds123CheckboxGroup-legend","required":"bds123CheckboxGroup-required","items":"bds123CheckboxGroup-items"};
1933
1933
 
1934
1934
  // src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
1935
1935
  var import_design_system_foundation35 = require("@boostdev/design-system-foundation");
@@ -1971,7 +1971,7 @@ function CheckboxGroup({
1971
1971
  var import_react14 = require("react");
1972
1972
 
1973
1973
  // src/components/interaction/form/Combobox/Combobox.module.css
1974
- var Combobox_default = {"formGroup":"bds122Combobox-formGroup","inputWrapper":"bds122Combobox-inputWrapper","input":"bds122Combobox-input","inputError":"bds122Combobox-inputError","chevron":"bds122Combobox-chevron","listbox":"bds122Combobox-listbox","option":"bds122Combobox-option","--highlighted":"bds122Combobox---highlighted","--selected":"bds122Combobox---selected","--disabled":"bds122Combobox---disabled"};
1974
+ var Combobox_default = {"formGroup":"bds123Combobox-formGroup","inputWrapper":"bds123Combobox-inputWrapper","input":"bds123Combobox-input","inputError":"bds123Combobox-inputError","chevron":"bds123Combobox-chevron","listbox":"bds123Combobox-listbox","option":"bds123Combobox-option","--highlighted":"bds123Combobox---highlighted","--selected":"bds123Combobox---selected","--disabled":"bds123Combobox---disabled"};
1975
1975
 
1976
1976
  // src/components/interaction/form/Combobox/Combobox.tsx
1977
1977
  var import_design_system_foundation36 = require("@boostdev/design-system-foundation");
@@ -2122,7 +2122,7 @@ function Combobox({
2122
2122
  var import_react15 = require("react");
2123
2123
 
2124
2124
  // src/components/interaction/form/FileInput/FileInput.module.css
2125
- var FileInput_default = {"formGroup":"bds122FileInput-formGroup","fieldLabel":"bds122FileInput-fieldLabel","dropZone":"bds122FileInput-dropZone","isDragging":"bds122FileInput-isDragging","hasError":"bds122FileInput-hasError","isDisabled":"bds122FileInput-isDisabled","icon":"bds122FileInput-icon","prompt":"bds122FileInput-prompt","acceptHint":"bds122FileInput-acceptHint","hiddenInput":"bds122FileInput-hiddenInput"};
2125
+ var FileInput_default = {"formGroup":"bds123FileInput-formGroup","fieldLabel":"bds123FileInput-fieldLabel","dropZone":"bds123FileInput-dropZone","isDragging":"bds123FileInput-isDragging","hasError":"bds123FileInput-hasError","isDisabled":"bds123FileInput-isDisabled","icon":"bds123FileInput-icon","prompt":"bds123FileInput-prompt","acceptHint":"bds123FileInput-acceptHint","hiddenInput":"bds123FileInput-hiddenInput"};
2126
2126
 
2127
2127
  // src/components/interaction/form/FileInput/FileInput.tsx
2128
2128
  var import_design_system_foundation37 = require("@boostdev/design-system-foundation");
@@ -2223,7 +2223,7 @@ function FileInput({
2223
2223
  var import_react16 = require("react");
2224
2224
 
2225
2225
  // src/components/interaction/form/FormInput/FormInput.module.css
2226
- var FormInput_default = {"formGroup":"bds122FormInput-formGroup","input":"bds122FormInput-input","inputError":"bds122FormInput-inputError"};
2226
+ var FormInput_default = {"formGroup":"bds123FormInput-formGroup","input":"bds123FormInput-input","inputError":"bds123FormInput-inputError"};
2227
2227
 
2228
2228
  // src/components/interaction/form/FormInput/FormInput.tsx
2229
2229
  var import_design_system_foundation38 = require("@boostdev/design-system-foundation");
@@ -2267,7 +2267,7 @@ function FormInput({
2267
2267
  var import_react17 = require("react");
2268
2268
 
2269
2269
  // src/components/interaction/form/NumberInput/NumberInput.module.css
2270
- var NumberInput_default = {"formGroup":"bds122NumberInput-formGroup","inputRow":"bds122NumberInput-inputRow","input":"bds122NumberInput-input","inputError":"bds122NumberInput-inputError","stepper":"bds122NumberInput-stepper"};
2270
+ var NumberInput_default = {"formGroup":"bds123NumberInput-formGroup","inputRow":"bds123NumberInput-inputRow","input":"bds123NumberInput-input","inputError":"bds123NumberInput-inputError","stepper":"bds123NumberInput-stepper"};
2271
2271
 
2272
2272
  // src/components/interaction/form/NumberInput/NumberInput.tsx
2273
2273
  var import_design_system_foundation39 = require("@boostdev/design-system-foundation");
@@ -2372,7 +2372,7 @@ function NumberInput({
2372
2372
  var import_react18 = require("react");
2373
2373
 
2374
2374
  // src/components/interaction/form/Radio/Radio.module.css
2375
- var Radio_default = {"radioGroup":"bds122Radio-radioGroup","inputWrapper":"bds122Radio-inputWrapper","textWrapper":"bds122Radio-textWrapper","description":"bds122Radio-description","radio":"bds122Radio-radio","radioError":"bds122Radio-radioError"};
2375
+ var Radio_default = {"radioGroup":"bds123Radio-radioGroup","inputWrapper":"bds123Radio-inputWrapper","textWrapper":"bds123Radio-textWrapper","description":"bds123Radio-description","radio":"bds123Radio-radio","radioError":"bds123Radio-radioError"};
2376
2376
 
2377
2377
  // src/components/interaction/form/Radio/Radio.tsx
2378
2378
  var import_design_system_foundation40 = require("@boostdev/design-system-foundation");
@@ -2410,7 +2410,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
2410
2410
  var import_react19 = require("react");
2411
2411
 
2412
2412
  // src/components/interaction/form/RadioGroup/RadioGroup.module.css
2413
- var RadioGroup_default = {"group":"bds122RadioGroup-group","legend":"bds122RadioGroup-legend","required":"bds122RadioGroup-required","items":"bds122RadioGroup-items"};
2413
+ var RadioGroup_default = {"group":"bds123RadioGroup-group","legend":"bds123RadioGroup-legend","required":"bds123RadioGroup-required","items":"bds123RadioGroup-items"};
2414
2414
 
2415
2415
  // src/components/interaction/form/RadioGroup/RadioGroup.tsx
2416
2416
  var import_design_system_foundation41 = require("@boostdev/design-system-foundation");
@@ -2452,7 +2452,7 @@ function RadioGroup({
2452
2452
  var import_react20 = require("react");
2453
2453
 
2454
2454
  // src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
2455
- var SegmentedControl_default = {"control":"bds122SegmentedControl-control","thumb":"bds122SegmentedControl-thumb","indicator":"bds122SegmentedControl-indicator","item":"bds122SegmentedControl-item","--active":"bds122SegmentedControl---active","--disabled":"bds122SegmentedControl---disabled","--size_small":"bds122SegmentedControl---size_small","--size_large":"bds122SegmentedControl---size_large","--variant_outline":"bds122SegmentedControl---variant_outline"};
2455
+ var SegmentedControl_default = {"control":"bds123SegmentedControl-control","thumb":"bds123SegmentedControl-thumb","indicator":"bds123SegmentedControl-indicator","item":"bds123SegmentedControl-item","--active":"bds123SegmentedControl---active","--disabled":"bds123SegmentedControl---disabled","--size_small":"bds123SegmentedControl---size_small","--size_large":"bds123SegmentedControl---size_large","--variant_outline":"bds123SegmentedControl---variant_outline"};
2456
2456
 
2457
2457
  // src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
2458
2458
  var import_design_system_foundation42 = require("@boostdev/design-system-foundation");
@@ -2508,7 +2508,7 @@ function SegmentedControl({
2508
2508
  var import_react21 = require("react");
2509
2509
 
2510
2510
  // src/components/interaction/form/Select/Select.module.css
2511
- var Select_default = {"formGroup":"bds122Select-formGroup","selectWrapper":"bds122Select-selectWrapper","select":"bds122Select-select","selectError":"bds122Select-selectError","chevron":"bds122Select-chevron"};
2511
+ var Select_default = {"formGroup":"bds123Select-formGroup","selectWrapper":"bds123Select-selectWrapper","select":"bds123Select-select","selectError":"bds123Select-selectError","chevron":"bds123Select-chevron"};
2512
2512
 
2513
2513
  // src/components/interaction/form/Select/Select.tsx
2514
2514
  var import_design_system_foundation43 = require("@boostdev/design-system-foundation");
@@ -2559,7 +2559,7 @@ function Select({
2559
2559
  var import_react22 = require("react");
2560
2560
 
2561
2561
  // src/components/interaction/form/Slider/Slider.module.css
2562
- var Slider_default = {"formGroup":"bds122Slider-formGroup","labelRow":"bds122Slider-labelRow","value":"bds122Slider-value","slider":"bds122Slider-slider","sliderError":"bds122Slider-sliderError"};
2562
+ var Slider_default = {"formGroup":"bds123Slider-formGroup","labelRow":"bds123Slider-labelRow","value":"bds123Slider-value","slider":"bds123Slider-slider","sliderError":"bds123Slider-sliderError"};
2563
2563
 
2564
2564
  // src/components/interaction/form/Slider/Slider.tsx
2565
2565
  var import_design_system_foundation44 = require("@boostdev/design-system-foundation");
@@ -2621,7 +2621,7 @@ function Slider({
2621
2621
  var import_react23 = require("react");
2622
2622
 
2623
2623
  // src/components/interaction/form/Switch/Switch.module.css
2624
- var Switch_default = {"switchGroup":"bds122Switch-switchGroup","--size_small":"bds122Switch---size_small","--size_medium":"bds122Switch---size_medium","--size_large":"bds122Switch---size_large","inputWrapper":"bds122Switch-inputWrapper","trackWrapper":"bds122Switch-trackWrapper","switch":"bds122Switch-switch","track":"bds122Switch-track","thumb":"bds122Switch-thumb","switchError":"bds122Switch-switchError"};
2624
+ var Switch_default = {"switchGroup":"bds123Switch-switchGroup","--size_small":"bds123Switch---size_small","--size_medium":"bds123Switch---size_medium","--size_large":"bds123Switch---size_large","inputWrapper":"bds123Switch-inputWrapper","trackWrapper":"bds123Switch-trackWrapper","switch":"bds123Switch-switch","track":"bds123Switch-track","thumb":"bds123Switch-thumb","switchError":"bds123Switch-switchError"};
2625
2625
 
2626
2626
  // src/components/interaction/form/Switch/Switch.tsx
2627
2627
  var import_design_system_foundation45 = require("@boostdev/design-system-foundation");
@@ -2669,7 +2669,7 @@ function Switch({
2669
2669
  var import_react24 = require("react");
2670
2670
 
2671
2671
  // src/components/interaction/form/Textarea/Textarea.module.css
2672
- var Textarea_default = {"formGroup":"bds122Textarea-formGroup","textarea":"bds122Textarea-textarea","textareaError":"bds122Textarea-textareaError"};
2672
+ var Textarea_default = {"formGroup":"bds123Textarea-formGroup","textarea":"bds123Textarea-textarea","textareaError":"bds123Textarea-textareaError"};
2673
2673
 
2674
2674
  // src/components/interaction/form/Textarea/Textarea.tsx
2675
2675
  var import_design_system_foundation46 = require("@boostdev/design-system-foundation");
@@ -2708,7 +2708,7 @@ function Textarea({
2708
2708
  }
2709
2709
 
2710
2710
  // src/components/layout/ButtonGroup/ButtonGroup.module.css
2711
- var ButtonGroup_default = {"buttonGroup":"bds122ButtonGroup-buttonGroup","container":"bds122ButtonGroup-container","--variant_card":"bds122ButtonGroup---variant_card","--variant_flow":"bds122ButtonGroup---variant_flow","--variant_modal":"bds122ButtonGroup---variant_modal","--variant_content":"bds122ButtonGroup---variant_content","--variant_grid":"bds122ButtonGroup---variant_grid"};
2711
+ var ButtonGroup_default = {"buttonGroup":"bds123ButtonGroup-buttonGroup","container":"bds123ButtonGroup-container","--variant_card":"bds123ButtonGroup---variant_card","--variant_flow":"bds123ButtonGroup---variant_flow","--variant_modal":"bds123ButtonGroup---variant_modal","--variant_content":"bds123ButtonGroup---variant_content","--variant_grid":"bds123ButtonGroup---variant_grid"};
2712
2712
 
2713
2713
  // src/components/layout/ButtonGroup/ButtonGroup.tsx
2714
2714
  var import_design_system_foundation47 = require("@boostdev/design-system-foundation");
@@ -2726,7 +2726,7 @@ function ButtonGroup({ children, className, variant, ...rest }) {
2726
2726
  }
2727
2727
 
2728
2728
  // src/components/layout/Card/Card.module.css
2729
- var Card_default = {"card":"bds122Card-card","--default":"bds122Card---default","--elevated":"bds122Card---elevated","--outlined":"bds122Card---outlined","--clickable":"bds122Card---clickable","--padding-none":"bds122Card---padding-none","--padding-small":"bds122Card---padding-small","--padding-medium":"bds122Card---padding-medium","--padding-large":"bds122Card---padding-large","--text-start":"bds122Card---text-start","--text-center":"bds122Card---text-center","--text-end":"bds122Card---text-end"};
2729
+ var Card_default = {"card":"bds123Card-card","--default":"bds123Card---default","--elevated":"bds123Card---elevated","--outlined":"bds123Card---outlined","--clickable":"bds123Card---clickable","--padding-none":"bds123Card---padding-none","--padding-small":"bds123Card---padding-small","--padding-medium":"bds123Card---padding-medium","--padding-large":"bds123Card---padding-large","--text-start":"bds123Card---text-start","--text-center":"bds123Card---text-center","--text-end":"bds123Card---text-end"};
2730
2730
 
2731
2731
  // src/components/layout/Card/Card.tsx
2732
2732
  var import_design_system_foundation48 = require("@boostdev/design-system-foundation");
@@ -2762,7 +2762,7 @@ function Card({
2762
2762
  }
2763
2763
 
2764
2764
  // src/components/layout/SectionHeader/SectionHeader.module.css
2765
- var SectionHeader_default = {"sectionHeader":"bds122SectionHeader-sectionHeader","title":"bds122SectionHeader-title","subtitle":"bds122SectionHeader-subtitle","--start":"bds122SectionHeader---start","--center":"bds122SectionHeader---center","--end":"bds122SectionHeader---end","--small":"bds122SectionHeader---small","--medium":"bds122SectionHeader---medium","--large":"bds122SectionHeader---large"};
2765
+ var SectionHeader_default = {"sectionHeader":"bds123SectionHeader-sectionHeader","title":"bds123SectionHeader-title","subtitle":"bds123SectionHeader-subtitle","--start":"bds123SectionHeader---start","--center":"bds123SectionHeader---center","--end":"bds123SectionHeader---end","--small":"bds123SectionHeader---small","--medium":"bds123SectionHeader---medium","--large":"bds123SectionHeader---large"};
2766
2766
 
2767
2767
  // src/components/layout/SectionHeader/SectionHeader.tsx
2768
2768
  var import_design_system_foundation49 = require("@boostdev/design-system-foundation");
@@ -2784,7 +2784,7 @@ function SectionHeader({
2784
2784
  }
2785
2785
 
2786
2786
  // src/components/layout/IconWrapper/IconWrapper.module.css
2787
- var IconWrapper_default = {"wrapper":"bds122IconWrapper-wrapper"};
2787
+ var IconWrapper_default = {"wrapper":"bds123IconWrapper-wrapper"};
2788
2788
 
2789
2789
  // src/components/layout/IconWrapper/IconWrapper.tsx
2790
2790
  var import_design_system_foundation50 = require("@boostdev/design-system-foundation");