@boostdev/design-system-components 1.2.5 → 1.2.6

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 (64) hide show
  1. package/AGENTS.md +25 -6
  2. package/dist/client.cjs +57 -52
  3. package/dist/client.css +546 -536
  4. package/dist/client.d.cts +1 -1
  5. package/dist/client.d.ts +1 -1
  6. package/dist/client.js +57 -52
  7. package/dist/index.cjs +57 -52
  8. package/dist/index.css +546 -536
  9. package/dist/index.d.cts +1 -1
  10. package/dist/index.d.ts +1 -1
  11. package/dist/index.js +57 -52
  12. package/package.json +1 -1
  13. package/src/components/interaction/Button/Button.mdx +11 -3
  14. package/src/components/interaction/Button/Button.module.css +5 -5
  15. package/src/components/interaction/Command/Command.mdx +1 -0
  16. package/src/components/interaction/Command/Command.module.css +1 -1
  17. package/src/components/interaction/Drawer/Drawer.mdx +2 -0
  18. package/src/components/interaction/Drawer/Drawer.module.css +1 -1
  19. package/src/components/interaction/DropdownMenu/DropdownMenu.mdx +19 -0
  20. package/src/components/interaction/DropdownMenu/DropdownMenu.module.css +2 -2
  21. package/src/components/interaction/Rating/Rating.mdx +14 -0
  22. package/src/components/interaction/Rating/Rating.module.css +2 -2
  23. package/src/components/interaction/Toast/Toast.mdx +12 -4
  24. package/src/components/interaction/Toast/Toast.spec.tsx +11 -0
  25. package/src/components/interaction/Toast/Toast.tsx +11 -4
  26. package/src/components/interaction/form/Combobox/Combobox.mdx +2 -0
  27. package/src/components/interaction/form/Combobox/Combobox.module.css +3 -3
  28. package/src/components/interaction/form/FileInput/FileInput.mdx +2 -0
  29. package/src/components/interaction/form/FileInput/FileInput.module.css +2 -2
  30. package/src/components/interaction/form/NumberInput/NumberInput.mdx +4 -0
  31. package/src/components/interaction/form/NumberInput/NumberInput.module.css +3 -3
  32. package/src/components/interaction/form/SegmentedControl/SegmentedControl.mdx +1 -0
  33. package/src/components/interaction/form/SegmentedControl/SegmentedControl.module.css +1 -1
  34. package/src/components/interaction/form/Slider/Slider.mdx +4 -0
  35. package/src/components/interaction/form/Slider/Slider.module.css +8 -8
  36. package/src/components/interaction/form/Switch/Switch.mdx +3 -0
  37. package/src/components/interaction/form/Switch/Switch.module.css +1 -1
  38. package/src/components/interaction/form/Textarea/Textarea.mdx +1 -1
  39. package/src/components/interaction/form/Textarea/Textarea.module.css +1 -1
  40. package/src/components/layout/ButtonGroup/ButtonGroup.mdx +2 -0
  41. package/src/components/layout/Card/Card.mdx +8 -5
  42. package/src/components/layout/Card/Card.module.css +4 -4
  43. package/src/components/layout/SectionHeader/SectionHeader.mdx +10 -2
  44. package/src/components/layout/SectionHeader/SectionHeader.module.css +29 -17
  45. package/src/components/layout/SectionHeader/SectionHeader.spec.tsx +5 -0
  46. package/src/components/layout/SectionHeader/SectionHeader.stories.tsx +2 -1
  47. package/src/components/layout/SectionHeader/SectionHeader.tsx +1 -1
  48. package/src/components/ui/Accordion/Accordion.mdx +1 -0
  49. package/src/components/ui/Accordion/Accordion.module.css +1 -1
  50. package/src/components/ui/Alert/Alert.mdx +6 -3
  51. package/src/components/ui/Alert/Alert.module.css +1 -1
  52. package/src/components/ui/Calendar/Calendar.mdx +5 -0
  53. package/src/components/ui/Calendar/Calendar.module.css +5 -5
  54. package/src/components/ui/Carousel/Carousel.mdx +14 -0
  55. package/src/components/ui/Carousel/Carousel.module.css +1 -1
  56. package/src/components/ui/NotificationBanner/NotificationBanner.mdx +18 -0
  57. package/src/components/ui/NotificationBanner/NotificationBanner.module.css +1 -1
  58. package/src/components/ui/Pagination/Pagination.mdx +21 -0
  59. package/src/components/ui/Pagination/Pagination.module.css +5 -5
  60. package/src/components/ui/Table/Table.mdx +2 -0
  61. package/src/components/ui/Table/Table.module.css +2 -2
  62. package/src/components/ui/Tabs/Tabs.mdx +17 -0
  63. package/src/components/ui/Tabs/Tabs.module.css +3 -3
  64. package/src/css/bdc.css +1 -0
package/dist/client.d.cts CHANGED
@@ -448,7 +448,7 @@ type SectionHeaderProps = WithClassName & Omit<HTMLAttributes<HTMLDivElement>, '
448
448
  title: string;
449
449
  subtitle?: string;
450
450
  alignment?: 'start' | 'center' | 'end';
451
- size?: 'small' | 'medium' | 'large';
451
+ size?: 'xs' | 'small' | 'medium' | 'large';
452
452
  titleAs?: IntrinsicElement;
453
453
  };
454
454
  declare function SectionHeader({ title, subtitle, className, alignment, size, titleAs, ...rest }: Readonly<SectionHeaderProps>): react_jsx_runtime.JSX.Element;
package/dist/client.d.ts CHANGED
@@ -448,7 +448,7 @@ type SectionHeaderProps = WithClassName & Omit<HTMLAttributes<HTMLDivElement>, '
448
448
  title: string;
449
449
  subtitle?: string;
450
450
  alignment?: 'start' | 'center' | 'end';
451
- size?: 'small' | 'medium' | 'large';
451
+ size?: 'xs' | 'small' | 'medium' | 'large';
452
452
  titleAs?: IntrinsicElement;
453
453
  };
454
454
  declare function SectionHeader({ title, subtitle, className, alignment, size, titleAs, ...rest }: Readonly<SectionHeaderProps>): react_jsx_runtime.JSX.Element;
package/dist/client.js CHANGED
@@ -4,7 +4,7 @@
4
4
  import { useId, useState } from "react";
5
5
 
6
6
  // src/components/ui/Accordion/Accordion.module.css
7
- var Accordion_default = {"accordion":"bds125Accordion-accordion","item":"bds125Accordion-item","heading":"bds125Accordion-heading","trigger":"bds125Accordion-trigger","triggerLabel":"bds125Accordion-triggerLabel","chevron":"bds125Accordion-chevron","--open":"bds125Accordion---open","panel":"bds125Accordion-panel","panelContent":"bds125Accordion-panelContent"};
7
+ var Accordion_default = {"accordion":"bds126Accordion-accordion","item":"bds126Accordion-item","heading":"bds126Accordion-heading","trigger":"bds126Accordion-trigger","triggerLabel":"bds126Accordion-triggerLabel","chevron":"bds126Accordion-chevron","--open":"bds126Accordion---open","panel":"bds126Accordion-panel","panelContent":"bds126Accordion-panelContent"};
8
8
 
9
9
  // src/components/ui/Accordion/Accordion.tsx
10
10
  import { cn } from "@boostdev/design-system-foundation";
@@ -73,7 +73,7 @@ function Accordion({
73
73
  }
74
74
 
75
75
  // src/components/ui/Alert/Alert.module.css
76
- var Alert_default = {"alert":"bds125Alert-alert","--variant_info":"bds125Alert---variant_info","--variant_success":"bds125Alert---variant_success","--variant_warning":"bds125Alert---variant_warning","--variant_error":"bds125Alert---variant_error","icon":"bds125Alert-icon","content":"bds125Alert-content","title":"bds125Alert-title","dismiss":"bds125Alert-dismiss"};
76
+ var Alert_default = {"alert":"bds126Alert-alert","--variant_info":"bds126Alert---variant_info","--variant_success":"bds126Alert---variant_success","--variant_warning":"bds126Alert---variant_warning","--variant_error":"bds126Alert---variant_error","icon":"bds126Alert-icon","content":"bds126Alert-content","title":"bds126Alert-title","dismiss":"bds126Alert-dismiss"};
77
77
 
78
78
  // src/components/ui/Alert/Alert.tsx
79
79
  import { cn as cn2 } from "@boostdev/design-system-foundation";
@@ -118,7 +118,7 @@ function Alert({
118
118
  }
119
119
 
120
120
  // src/components/ui/Avatar/Avatar.module.css
121
- var Avatar_default = {"avatar":"bds125Avatar-avatar","--fallback":"bds125Avatar---fallback","--size_small":"bds125Avatar---size_small","--size_medium":"bds125Avatar---size_medium","--size_large":"bds125Avatar---size_large","image":"bds125Avatar-image","initials":"bds125Avatar-initials"};
121
+ var Avatar_default = {"avatar":"bds126Avatar-avatar","--fallback":"bds126Avatar---fallback","--size_small":"bds126Avatar---size_small","--size_medium":"bds126Avatar---size_medium","--size_large":"bds126Avatar---size_large","image":"bds126Avatar-image","initials":"bds126Avatar-initials"};
122
122
 
123
123
  // src/components/ui/Avatar/Avatar.tsx
124
124
  import { cn as cn3 } from "@boostdev/design-system-foundation";
@@ -145,7 +145,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
145
145
  }
146
146
 
147
147
  // src/components/ui/Badge/Badge.module.css
148
- var Badge_default = {"badge":"bds125Badge-badge","--variant_primary":"bds125Badge---variant_primary","--variant_secondary":"bds125Badge---variant_secondary","--variant_success":"bds125Badge---variant_success","--variant_error":"bds125Badge---variant_error","--variant_warning":"bds125Badge---variant_warning"};
148
+ var Badge_default = {"badge":"bds126Badge-badge","--variant_primary":"bds126Badge---variant_primary","--variant_secondary":"bds126Badge---variant_secondary","--variant_success":"bds126Badge---variant_success","--variant_error":"bds126Badge---variant_error","--variant_warning":"bds126Badge---variant_warning"};
149
149
 
150
150
  // src/components/ui/Badge/Badge.tsx
151
151
  import { cn as cn4 } from "@boostdev/design-system-foundation";
@@ -155,7 +155,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
155
155
  }
156
156
 
157
157
  // src/components/ui/Breadcrumb/Breadcrumb.module.css
158
- var Breadcrumb_default = {"breadcrumb":"bds125Breadcrumb-breadcrumb","list":"bds125Breadcrumb-list","item":"bds125Breadcrumb-item","link":"bds125Breadcrumb-link","separator":"bds125Breadcrumb-separator","current":"bds125Breadcrumb-current"};
158
+ var Breadcrumb_default = {"breadcrumb":"bds126Breadcrumb-breadcrumb","list":"bds126Breadcrumb-list","item":"bds126Breadcrumb-item","link":"bds126Breadcrumb-link","separator":"bds126Breadcrumb-separator","current":"bds126Breadcrumb-current"};
159
159
 
160
160
  // src/components/ui/Breadcrumb/Breadcrumb.tsx
161
161
  import { cn as cn5 } from "@boostdev/design-system-foundation";
@@ -171,7 +171,7 @@ function Breadcrumb({ items, className, ...rest }) {
171
171
  }
172
172
 
173
173
  // src/components/ui/Collapsible/Collapsible.module.css
174
- var Collapsible_default = {"collapsible":"bds125Collapsible-collapsible","summary":"bds125Collapsible-summary","summaryContent":"bds125Collapsible-summaryContent","icon":"bds125Collapsible-icon","content":"bds125Collapsible-content"};
174
+ var Collapsible_default = {"collapsible":"bds126Collapsible-collapsible","summary":"bds126Collapsible-summary","summaryContent":"bds126Collapsible-summaryContent","icon":"bds126Collapsible-icon","content":"bds126Collapsible-content"};
175
175
 
176
176
  // src/components/ui/Collapsible/Collapsible.tsx
177
177
  import { cn as cn6 } from "@boostdev/design-system-foundation";
@@ -212,7 +212,7 @@ function Collapsible({
212
212
  import { useState as useState2, useId as useId2 } from "react";
213
213
 
214
214
  // src/components/ui/Calendar/Calendar.module.css
215
- var Calendar_default = {"calendar":"bds125Calendar-calendar","header":"bds125Calendar-header","monthYear":"bds125Calendar-monthYear","navBtn":"bds125Calendar-navBtn","grid":"bds125Calendar-grid","weekday":"bds125Calendar-weekday","empty":"bds125Calendar-empty","day":"bds125Calendar-day","disabled":"bds125Calendar-disabled","selected":"bds125Calendar-selected","today":"bds125Calendar-today"};
215
+ var Calendar_default = {"calendar":"bds126Calendar-calendar","header":"bds126Calendar-header","monthYear":"bds126Calendar-monthYear","navBtn":"bds126Calendar-navBtn","grid":"bds126Calendar-grid","weekday":"bds126Calendar-weekday","empty":"bds126Calendar-empty","day":"bds126Calendar-day","disabled":"bds126Calendar-disabled","selected":"bds126Calendar-selected","today":"bds126Calendar-today"};
216
216
 
217
217
  // src/components/ui/Calendar/Calendar.tsx
218
218
  import { cn as cn7 } from "@boostdev/design-system-foundation";
@@ -387,7 +387,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
387
387
  import { useRef, useId as useId3 } from "react";
388
388
 
389
389
  // src/components/ui/Carousel/Carousel.module.css
390
- var Carousel_default = {"carousel":"bds125Carousel-carousel","track":"bds125Carousel-track","slide":"bds125Carousel-slide","navBtn":"bds125Carousel-navBtn"};
390
+ var Carousel_default = {"carousel":"bds126Carousel-carousel","track":"bds126Carousel-track","slide":"bds126Carousel-slide","navBtn":"bds126Carousel-navBtn"};
391
391
 
392
392
  // src/components/ui/Carousel/Carousel.tsx
393
393
  import { cn as cn8 } from "@boostdev/design-system-foundation";
@@ -440,7 +440,7 @@ function Carousel({ items, label, className, ...rest }) {
440
440
  }
441
441
 
442
442
  // src/components/ui/DescriptionList/DescriptionList.module.css
443
- var DescriptionList_default = {"list":"bds125DescriptionList-list","group":"bds125DescriptionList-group","term":"bds125DescriptionList-term","details":"bds125DescriptionList-details","--layout_inline":"bds125DescriptionList---layout_inline"};
443
+ var DescriptionList_default = {"list":"bds126DescriptionList-list","group":"bds126DescriptionList-group","term":"bds126DescriptionList-term","details":"bds126DescriptionList-details","--layout_inline":"bds126DescriptionList---layout_inline"};
444
444
 
445
445
  // src/components/ui/DescriptionList/DescriptionList.tsx
446
446
  import { cn as cn9 } from "@boostdev/design-system-foundation";
@@ -453,7 +453,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
453
453
  }
454
454
 
455
455
  // src/components/ui/Link/Link.module.css
456
- var Link_default = {"link":"bds125Link-link","--variant_default":"bds125Link---variant_default","--variant_subtle":"bds125Link---variant_subtle","--variant_standalone":"bds125Link---variant_standalone","externalLabel":"bds125Link-externalLabel"};
456
+ var Link_default = {"link":"bds126Link-link","--variant_default":"bds126Link---variant_default","--variant_subtle":"bds126Link---variant_subtle","--variant_standalone":"bds126Link---variant_standalone","externalLabel":"bds126Link-externalLabel"};
457
457
 
458
458
  // src/components/ui/Link/Link.tsx
459
459
  import { cn as cn10 } from "@boostdev/design-system-foundation";
@@ -484,7 +484,7 @@ function Link({
484
484
  }
485
485
 
486
486
  // src/components/ui/Loading/Loading.module.css
487
- var Loading_default = {"loading":"bds125Loading-loading","spinner":"bds125Loading-spinner","--size_small":"bds125Loading---size_small","--size_large":"bds125Loading---size_large"};
487
+ var Loading_default = {"loading":"bds126Loading-loading","spinner":"bds126Loading-spinner","--size_small":"bds126Loading---size_small","--size_large":"bds126Loading---size_large"};
488
488
 
489
489
  // src/components/ui/Loading/Loading.tsx
490
490
  import { cn as cn11 } from "@boostdev/design-system-foundation";
@@ -494,7 +494,7 @@ function Loading({ size = "medium", className, ...rest }) {
494
494
  }
495
495
 
496
496
  // src/components/ui/NotificationBanner/NotificationBanner.module.css
497
- var NotificationBanner_default = {"banner":"bds125NotificationBanner-banner","--variant_info":"bds125NotificationBanner---variant_info","--variant_success":"bds125NotificationBanner---variant_success","--variant_warning":"bds125NotificationBanner---variant_warning","--variant_error":"bds125NotificationBanner---variant_error","content":"bds125NotificationBanner-content","action":"bds125NotificationBanner-action","dismiss":"bds125NotificationBanner-dismiss"};
497
+ var NotificationBanner_default = {"banner":"bds126NotificationBanner-banner","--variant_info":"bds126NotificationBanner---variant_info","--variant_success":"bds126NotificationBanner---variant_success","--variant_warning":"bds126NotificationBanner---variant_warning","--variant_error":"bds126NotificationBanner---variant_error","content":"bds126NotificationBanner-content","action":"bds126NotificationBanner-action","dismiss":"bds126NotificationBanner-dismiss"};
498
498
 
499
499
  // src/components/ui/NotificationBanner/NotificationBanner.tsx
500
500
  import { cn as cn12 } from "@boostdev/design-system-foundation";
@@ -535,7 +535,7 @@ function NotificationBanner({
535
535
  }
536
536
 
537
537
  // src/components/ui/Pagination/Pagination.module.css
538
- var Pagination_default = {"pagination":"bds125Pagination-pagination","list":"bds125Pagination-list","button":"bds125Pagination-button","--active":"bds125Pagination---active","--nav":"bds125Pagination---nav","ellipsis":"bds125Pagination-ellipsis"};
538
+ var Pagination_default = {"pagination":"bds126Pagination-pagination","list":"bds126Pagination-list","button":"bds126Pagination-button","--active":"bds126Pagination---active","--nav":"bds126Pagination---nav","ellipsis":"bds126Pagination-ellipsis"};
539
539
 
540
540
  // src/components/ui/Pagination/Pagination.tsx
541
541
  import { cn as cn13 } from "@boostdev/design-system-foundation";
@@ -600,7 +600,7 @@ function Pagination({
600
600
  }
601
601
 
602
602
  // src/components/ui/Progress/Progress.module.css
603
- var Progress_default = {"container":"bds125Progress-container","labelRow":"bds125Progress-labelRow","value":"bds125Progress-value","track":"bds125Progress-track","--size_small":"bds125Progress---size_small","--size_medium":"bds125Progress---size_medium","--size_large":"bds125Progress---size_large","fill":"bds125Progress-fill"};
603
+ var Progress_default = {"container":"bds126Progress-container","labelRow":"bds126Progress-labelRow","value":"bds126Progress-value","track":"bds126Progress-track","--size_small":"bds126Progress---size_small","--size_medium":"bds126Progress---size_medium","--size_large":"bds126Progress---size_large","fill":"bds126Progress-fill"};
604
604
 
605
605
  // src/components/ui/Progress/Progress.tsx
606
606
  import { cn as cn14 } from "@boostdev/design-system-foundation";
@@ -639,7 +639,7 @@ function Progress({
639
639
  }
640
640
 
641
641
  // src/components/ui/ProgressCircle/ProgressCircle.module.css
642
- var ProgressCircle_default = {"wrapper":"bds125ProgressCircle-wrapper","svg":"bds125ProgressCircle-svg","track":"bds125ProgressCircle-track","fill":"bds125ProgressCircle-fill","value":"bds125ProgressCircle-value","--size_small":"bds125ProgressCircle---size_small","--size_medium":"bds125ProgressCircle---size_medium","--size_large":"bds125ProgressCircle---size_large"};
642
+ var ProgressCircle_default = {"wrapper":"bds126ProgressCircle-wrapper","svg":"bds126ProgressCircle-svg","track":"bds126ProgressCircle-track","fill":"bds126ProgressCircle-fill","value":"bds126ProgressCircle-value","--size_small":"bds126ProgressCircle---size_small","--size_medium":"bds126ProgressCircle---size_medium","--size_large":"bds126ProgressCircle---size_large"};
643
643
 
644
644
  // src/components/ui/ProgressCircle/ProgressCircle.tsx
645
645
  import { cn as cn15 } from "@boostdev/design-system-foundation";
@@ -720,7 +720,7 @@ function ProgressCircle({
720
720
  }
721
721
 
722
722
  // src/components/ui/Separator/Separator.module.css
723
- var Separator_default = {"separator":"bds125Separator-separator","--horizontal":"bds125Separator---horizontal","--vertical":"bds125Separator---vertical"};
723
+ var Separator_default = {"separator":"bds126Separator-separator","--horizontal":"bds126Separator---horizontal","--vertical":"bds126Separator---vertical"};
724
724
 
725
725
  // src/components/ui/Separator/Separator.tsx
726
726
  import { cn as cn16 } from "@boostdev/design-system-foundation";
@@ -744,7 +744,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
744
744
  import { cn as cn17 } from "@boostdev/design-system-foundation";
745
745
 
746
746
  // src/components/ui/Skeleton/Skeleton.module.css
747
- var Skeleton_default = {"skeleton":"bds125Skeleton-skeleton"};
747
+ var Skeleton_default = {"skeleton":"bds126Skeleton-skeleton"};
748
748
 
749
749
  // src/components/ui/Skeleton/Skeleton.tsx
750
750
  import { jsx as jsx17 } from "react/jsx-runtime";
@@ -753,7 +753,7 @@ function Skeleton({ className, ...rest }) {
753
753
  }
754
754
 
755
755
  // src/components/ui/SkipLink/SkipLink.module.css
756
- var SkipLink_default = {"skipLink":"bds125SkipLink-skipLink"};
756
+ var SkipLink_default = {"skipLink":"bds126SkipLink-skipLink"};
757
757
 
758
758
  // src/components/ui/SkipLink/SkipLink.tsx
759
759
  import { cn as cn18 } from "@boostdev/design-system-foundation";
@@ -763,7 +763,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
763
763
  }
764
764
 
765
765
  // src/components/ui/Table/Table.module.css
766
- var Table_default = {"wrapper":"bds125Table-wrapper","table":"bds125Table-table","caption":"bds125Table-caption","thead":"bds125Table-thead","th":"bds125Table-th","--sortable":"bds125Table---sortable","sortButton":"bds125Table-sortButton","sortIcon":"bds125Table-sortIcon","--sort-active":"bds125Table---sort-active","--sort-desc":"bds125Table---sort-desc","tbody":"bds125Table-tbody","tr":"bds125Table-tr","td":"bds125Table-td"};
766
+ var Table_default = {"wrapper":"bds126Table-wrapper","table":"bds126Table-table","caption":"bds126Table-caption","thead":"bds126Table-thead","th":"bds126Table-th","--sortable":"bds126Table---sortable","sortButton":"bds126Table-sortButton","sortIcon":"bds126Table-sortIcon","--sort-active":"bds126Table---sort-active","--sort-desc":"bds126Table---sort-desc","tbody":"bds126Table-tbody","tr":"bds126Table-tr","td":"bds126Table-td"};
767
767
 
768
768
  // src/components/ui/Table/Table.tsx
769
769
  import { cn as cn19 } from "@boostdev/design-system-foundation";
@@ -833,7 +833,7 @@ function Table({
833
833
  import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
834
834
 
835
835
  // src/components/ui/Tabs/Tabs.module.css
836
- var Tabs_default = {"tabs":"bds125Tabs-tabs","tabList":"bds125Tabs-tabList","tab":"bds125Tabs-tab","--active":"bds125Tabs---active","panel":"bds125Tabs-panel"};
836
+ var Tabs_default = {"tabs":"bds126Tabs-tabs","tabList":"bds126Tabs-tabList","tab":"bds126Tabs-tab","--active":"bds126Tabs---active","panel":"bds126Tabs-panel"};
837
837
 
838
838
  // src/components/ui/Tabs/Tabs.tsx
839
839
  import { cn as cn20 } from "@boostdev/design-system-foundation";
@@ -913,7 +913,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
913
913
  import { cloneElement, isValidElement, useId as useId5, useState as useState4 } from "react";
914
914
 
915
915
  // src/components/ui/Tooltip/Tooltip.module.css
916
- var Tooltip_default = {"wrapper":"bds125Tooltip-wrapper","tooltip":"bds125Tooltip-tooltip","--placement_top":"bds125Tooltip---placement_top","--placement_bottom":"bds125Tooltip---placement_bottom","--placement_left":"bds125Tooltip---placement_left","--placement_right":"bds125Tooltip---placement_right"};
916
+ var Tooltip_default = {"wrapper":"bds126Tooltip-wrapper","tooltip":"bds126Tooltip-tooltip","--placement_top":"bds126Tooltip---placement_top","--placement_bottom":"bds126Tooltip---placement_bottom","--placement_left":"bds126Tooltip---placement_left","--placement_right":"bds126Tooltip---placement_right"};
917
917
 
918
918
  // src/components/ui/Tooltip/Tooltip.tsx
919
919
  import { cn as cn21 } from "@boostdev/design-system-foundation";
@@ -957,7 +957,7 @@ function Tooltip({
957
957
  }
958
958
 
959
959
  // src/components/ui/Typography/Typography.module.css
960
- var Typography_default = {"typography":"bds125Typography-typography","--h1":"bds125Typography---h1","--h2":"bds125Typography---h2","--h3":"bds125Typography---h3","--body":"bds125Typography---body","--body_s":"bds125Typography---body_s"};
960
+ var Typography_default = {"typography":"bds126Typography-typography","--h1":"bds126Typography---h1","--h2":"bds126Typography---h2","--h3":"bds126Typography---h3","--body":"bds126Typography---body","--body_s":"bds126Typography---body_s"};
961
961
 
962
962
  // src/components/ui/Typography/Typography.tsx
963
963
  import { cn as cn22 } from "@boostdev/design-system-foundation";
@@ -975,7 +975,7 @@ function Typography({ variant = "body", component, children, className, ...rest
975
975
  }
976
976
 
977
977
  // src/components/interaction/Button/Button.module.css
978
- var Button_default = {"button":"bds125Button-button","--default":"bds125Button---default","--outline":"bds125Button---outline","--ghost":"bds125Button---ghost","--size_small":"bds125Button---size_small","--size_medium":"bds125Button---size_medium","--size_large":"bds125Button---size_large","--hasPulse":"bds125Button---hasPulse","iconStart":"bds125Button-iconStart","iconEnd":"bds125Button-iconEnd"};
978
+ var Button_default = {"button":"bds126Button-button","--default":"bds126Button---default","--outline":"bds126Button---outline","--ghost":"bds126Button---ghost","--size_small":"bds126Button---size_small","--size_medium":"bds126Button---size_medium","--size_large":"bds126Button---size_large","--hasPulse":"bds126Button---hasPulse","iconStart":"bds126Button-iconStart","iconEnd":"bds126Button-iconEnd"};
979
979
 
980
980
  // src/components/interaction/Button/Button.tsx
981
981
  import { cn as cn23 } from "@boostdev/design-system-foundation";
@@ -1090,7 +1090,7 @@ function installInvokerCommandsPolyfill() {
1090
1090
  }
1091
1091
 
1092
1092
  // src/components/interaction/Command/Command.module.css
1093
- var Command_default = {"dialog":"bds125Command-dialog","palette":"bds125Command-palette","searchRow":"bds125Command-searchRow","searchIcon":"bds125Command-searchIcon","search":"bds125Command-search","escHint":"bds125Command-escHint","list":"bds125Command-list","groupList":"bds125Command-groupList","group":"bds125Command-group","item":"bds125Command-item","itemActive":"bds125Command-itemActive","itemLabel":"bds125Command-itemLabel","itemDesc":"bds125Command-itemDesc","shortcut":"bds125Command-shortcut","empty":"bds125Command-empty"};
1093
+ var Command_default = {"dialog":"bds126Command-dialog","palette":"bds126Command-palette","searchRow":"bds126Command-searchRow","searchIcon":"bds126Command-searchIcon","search":"bds126Command-search","escHint":"bds126Command-escHint","list":"bds126Command-list","groupList":"bds126Command-groupList","group":"bds126Command-group","item":"bds126Command-item","itemActive":"bds126Command-itemActive","itemLabel":"bds126Command-itemLabel","itemDesc":"bds126Command-itemDesc","shortcut":"bds126Command-shortcut","empty":"bds126Command-empty"};
1094
1094
 
1095
1095
  // src/components/interaction/Command/Command.tsx
1096
1096
  import { cn as cn24 } from "@boostdev/design-system-foundation";
@@ -1267,7 +1267,7 @@ function Command({
1267
1267
  import { useEffect as useEffect2, useId as useId7, useRef as useRef4 } from "react";
1268
1268
 
1269
1269
  // src/components/interaction/Dialog/Dialog.module.css
1270
- var Dialog_default = {"dialog":"bds125Dialog-dialog","dialogContent":"bds125Dialog-dialogContent","closeButton":"bds125Dialog-closeButton"};
1270
+ var Dialog_default = {"dialog":"bds126Dialog-dialog","dialogContent":"bds126Dialog-dialogContent","closeButton":"bds126Dialog-closeButton"};
1271
1271
 
1272
1272
  // src/components/interaction/Dialog/Dialog.tsx
1273
1273
  import { cn as cn25 } from "@boostdev/design-system-foundation";
@@ -1373,7 +1373,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
1373
1373
  import { useEffect as useEffect3, useId as useId8, useRef as useRef5 } from "react";
1374
1374
 
1375
1375
  // src/components/interaction/Drawer/Drawer.module.css
1376
- var Drawer_default = {"drawer":"bds125Drawer-drawer","--side_left":"bds125Drawer---side_left","header":"bds125Drawer-header","closeButton":"bds125Drawer-closeButton","body":"bds125Drawer-body"};
1376
+ var Drawer_default = {"drawer":"bds126Drawer-drawer","--side_left":"bds126Drawer---side_left","header":"bds126Drawer-header","closeButton":"bds126Drawer-closeButton","body":"bds126Drawer-body"};
1377
1377
 
1378
1378
  // src/components/interaction/Drawer/Drawer.tsx
1379
1379
  import { cn as cn26 } from "@boostdev/design-system-foundation";
@@ -1481,7 +1481,7 @@ import {
1481
1481
  } from "react";
1482
1482
 
1483
1483
  // src/components/interaction/DropdownMenu/DropdownMenu.module.css
1484
- var DropdownMenu_default = {"wrapper":"bds125DropdownMenu-wrapper","menu":"bds125DropdownMenu-menu","--placement_bottom-start":"bds125DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds125DropdownMenu---placement_bottom-end","separator":"bds125DropdownMenu-separator","item":"bds125DropdownMenu-item","icon":"bds125DropdownMenu-icon"};
1484
+ var DropdownMenu_default = {"wrapper":"bds126DropdownMenu-wrapper","menu":"bds126DropdownMenu-menu","--placement_bottom-start":"bds126DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds126DropdownMenu---placement_bottom-end","separator":"bds126DropdownMenu-separator","item":"bds126DropdownMenu-item","icon":"bds126DropdownMenu-icon"};
1485
1485
 
1486
1486
  // src/components/interaction/DropdownMenu/DropdownMenu.tsx
1487
1487
  import { cn as cn27 } from "@boostdev/design-system-foundation";
@@ -1602,7 +1602,7 @@ import {
1602
1602
  } from "react";
1603
1603
 
1604
1604
  // src/components/interaction/Popover/Popover.module.css
1605
- var Popover_default = {"wrapper":"bds125Popover-wrapper","panel":"bds125Popover-panel","g":"bds125Popover-g"};
1605
+ var Popover_default = {"wrapper":"bds126Popover-wrapper","panel":"bds126Popover-panel","g":"bds126Popover-g"};
1606
1606
 
1607
1607
  // src/components/interaction/Popover/Popover.tsx
1608
1608
  import { cn as cn28 } from "@boostdev/design-system-foundation";
@@ -1687,7 +1687,7 @@ function Popover({
1687
1687
  }
1688
1688
 
1689
1689
  // src/components/interaction/Rating/Rating.module.css
1690
- var Rating_default = {"rating":"bds125Rating-rating","star":"bds125Rating-star","--filled":"bds125Rating---filled"};
1690
+ var Rating_default = {"rating":"bds126Rating-rating","star":"bds126Rating-star","--filled":"bds126Rating---filled"};
1691
1691
 
1692
1692
  // src/components/interaction/Rating/Rating.tsx
1693
1693
  import { cn as cn29 } from "@boostdev/design-system-foundation";
@@ -1719,13 +1719,18 @@ function Rating({ value, max = 5, className, ...rest }) {
1719
1719
  import { useState as useState8, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2, useRef as useRef8 } from "react";
1720
1720
 
1721
1721
  // src/components/interaction/Toast/Toast.module.css
1722
- var Toast_default = {"toastContainer":"bds125Toast-toastContainer","toast":"bds125Toast-toast","--variant_success":"bds125Toast---variant_success","--variant_warning":"bds125Toast---variant_warning","--variant_info":"bds125Toast---variant_info","--variant_error":"bds125Toast---variant_error","message":"bds125Toast-message","closeButton":"bds125Toast-closeButton"};
1722
+ var Toast_default = {"toastContainer":"bds126Toast-toastContainer","toast":"bds126Toast-toast","--variant_success":"bds126Toast---variant_success","--variant_warning":"bds126Toast---variant_warning","--variant_info":"bds126Toast---variant_info","--variant_error":"bds126Toast---variant_error","message":"bds126Toast-message","closeButton":"bds126Toast-closeButton"};
1723
1723
 
1724
1724
  // src/components/interaction/Toast/Toast.tsx
1725
1725
  import { cn as cn30 } from "@boostdev/design-system-foundation";
1726
1726
  import { jsx as jsx30, jsxs as jsxs22 } from "react/jsx-runtime";
1727
- var ToastContext = createContext(void 0);
1727
+ var _ToastContext;
1728
+ function getToastContext() {
1729
+ _ToastContext ??= createContext(void 0);
1730
+ return _ToastContext;
1731
+ }
1728
1732
  function ToastProvider({ children }) {
1733
+ const ToastContext = getToastContext();
1729
1734
  const [toasts, setToasts] = useState8([]);
1730
1735
  const containerRef = useRef8(null);
1731
1736
  const showToast = useCallback((message, variant) => {
@@ -1781,7 +1786,7 @@ function ToastItem({ toast, onRemove }) {
1781
1786
  ] });
1782
1787
  }
1783
1788
  function useToast() {
1784
- const context = useContext(ToastContext);
1789
+ const context = useContext(getToastContext());
1785
1790
  if (!context) {
1786
1791
  throw new Error("useToast must be used within a ToastProvider");
1787
1792
  }
@@ -1792,10 +1797,10 @@ function useToast() {
1792
1797
  import { useId as useId11 } from "react";
1793
1798
 
1794
1799
  // src/components/interaction/form/Checkbox/Checkbox.module.css
1795
- var Checkbox_default = {"checkboxGroup":"bds125Checkbox-checkboxGroup","inputWrapper":"bds125Checkbox-inputWrapper","checkbox":"bds125Checkbox-checkbox","checkboxError":"bds125Checkbox-checkboxError"};
1800
+ var Checkbox_default = {"checkboxGroup":"bds126Checkbox-checkboxGroup","inputWrapper":"bds126Checkbox-inputWrapper","checkbox":"bds126Checkbox-checkbox","checkboxError":"bds126Checkbox-checkboxError"};
1796
1801
 
1797
1802
  // src/components/interaction/form/atoms/Message.module.css
1798
- var Message_default = {"error":"bds125Message-error","hint":"bds125Message-hint"};
1803
+ var Message_default = {"error":"bds126Message-error","hint":"bds126Message-hint"};
1799
1804
 
1800
1805
  // src/components/interaction/form/atoms/Message.tsx
1801
1806
  import { cn as cn31 } from "@boostdev/design-system-foundation";
@@ -1806,7 +1811,7 @@ var Message = ({ message, type, inputId, className }) => {
1806
1811
  };
1807
1812
 
1808
1813
  // src/components/interaction/form/atoms/Label.module.css
1809
- var Label_default = {"label":"bds125Label-label"};
1814
+ var Label_default = {"label":"bds126Label-label"};
1810
1815
 
1811
1816
  // src/components/interaction/form/atoms/Label.tsx
1812
1817
  import { cn as cn32 } from "@boostdev/design-system-foundation";
@@ -1819,7 +1824,7 @@ var Label = ({ label, id, className }) => {
1819
1824
  import { cn as cn34 } from "@boostdev/design-system-foundation";
1820
1825
 
1821
1826
  // src/components/interaction/form/atoms/InputContainer.module.css
1822
- var InputContainer_default = {"container":"bds125InputContainer-container"};
1827
+ var InputContainer_default = {"container":"bds126InputContainer-container"};
1823
1828
 
1824
1829
  // src/components/interaction/form/atoms/InputContainer.tsx
1825
1830
  import { cn as cn33 } from "@boostdev/design-system-foundation";
@@ -1860,7 +1865,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
1860
1865
  import { useId as useId12 } from "react";
1861
1866
 
1862
1867
  // src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
1863
- var CheckboxGroup_default = {"group":"bds125CheckboxGroup-group","legend":"bds125CheckboxGroup-legend","required":"bds125CheckboxGroup-required","items":"bds125CheckboxGroup-items"};
1868
+ var CheckboxGroup_default = {"group":"bds126CheckboxGroup-group","legend":"bds126CheckboxGroup-legend","required":"bds126CheckboxGroup-required","items":"bds126CheckboxGroup-items"};
1864
1869
 
1865
1870
  // src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
1866
1871
  import { cn as cn35 } from "@boostdev/design-system-foundation";
@@ -1908,7 +1913,7 @@ import {
1908
1913
  } from "react";
1909
1914
 
1910
1915
  // src/components/interaction/form/Combobox/Combobox.module.css
1911
- var Combobox_default = {"formGroup":"bds125Combobox-formGroup","inputWrapper":"bds125Combobox-inputWrapper","input":"bds125Combobox-input","inputError":"bds125Combobox-inputError","chevron":"bds125Combobox-chevron","listbox":"bds125Combobox-listbox","option":"bds125Combobox-option","--highlighted":"bds125Combobox---highlighted","--selected":"bds125Combobox---selected","--disabled":"bds125Combobox---disabled"};
1916
+ var Combobox_default = {"formGroup":"bds126Combobox-formGroup","inputWrapper":"bds126Combobox-inputWrapper","input":"bds126Combobox-input","inputError":"bds126Combobox-inputError","chevron":"bds126Combobox-chevron","listbox":"bds126Combobox-listbox","option":"bds126Combobox-option","--highlighted":"bds126Combobox---highlighted","--selected":"bds126Combobox---selected","--disabled":"bds126Combobox---disabled"};
1912
1917
 
1913
1918
  // src/components/interaction/form/Combobox/Combobox.tsx
1914
1919
  import { cn as cn36 } from "@boostdev/design-system-foundation";
@@ -2059,7 +2064,7 @@ function Combobox({
2059
2064
  import { useId as useId14, useRef as useRef10, useState as useState10 } from "react";
2060
2065
 
2061
2066
  // src/components/interaction/form/FileInput/FileInput.module.css
2062
- var FileInput_default = {"formGroup":"bds125FileInput-formGroup","fieldLabel":"bds125FileInput-fieldLabel","dropZone":"bds125FileInput-dropZone","isDragging":"bds125FileInput-isDragging","hasError":"bds125FileInput-hasError","isDisabled":"bds125FileInput-isDisabled","icon":"bds125FileInput-icon","prompt":"bds125FileInput-prompt","acceptHint":"bds125FileInput-acceptHint","hiddenInput":"bds125FileInput-hiddenInput"};
2067
+ var FileInput_default = {"formGroup":"bds126FileInput-formGroup","fieldLabel":"bds126FileInput-fieldLabel","dropZone":"bds126FileInput-dropZone","isDragging":"bds126FileInput-isDragging","hasError":"bds126FileInput-hasError","isDisabled":"bds126FileInput-isDisabled","icon":"bds126FileInput-icon","prompt":"bds126FileInput-prompt","acceptHint":"bds126FileInput-acceptHint","hiddenInput":"bds126FileInput-hiddenInput"};
2063
2068
 
2064
2069
  // src/components/interaction/form/FileInput/FileInput.tsx
2065
2070
  import { cn as cn37 } from "@boostdev/design-system-foundation";
@@ -2160,7 +2165,7 @@ function FileInput({
2160
2165
  import { useId as useId15 } from "react";
2161
2166
 
2162
2167
  // src/components/interaction/form/FormInput/FormInput.module.css
2163
- var FormInput_default = {"formGroup":"bds125FormInput-formGroup","input":"bds125FormInput-input","inputError":"bds125FormInput-inputError"};
2168
+ var FormInput_default = {"formGroup":"bds126FormInput-formGroup","input":"bds126FormInput-input","inputError":"bds126FormInput-inputError"};
2164
2169
 
2165
2170
  // src/components/interaction/form/FormInput/FormInput.tsx
2166
2171
  import { cn as cn38 } from "@boostdev/design-system-foundation";
@@ -2204,7 +2209,7 @@ function FormInput({
2204
2209
  import { useId as useId16, useRef as useRef11, useState as useState11 } from "react";
2205
2210
 
2206
2211
  // src/components/interaction/form/NumberInput/NumberInput.module.css
2207
- var NumberInput_default = {"formGroup":"bds125NumberInput-formGroup","inputRow":"bds125NumberInput-inputRow","input":"bds125NumberInput-input","inputError":"bds125NumberInput-inputError","stepper":"bds125NumberInput-stepper"};
2212
+ var NumberInput_default = {"formGroup":"bds126NumberInput-formGroup","inputRow":"bds126NumberInput-inputRow","input":"bds126NumberInput-input","inputError":"bds126NumberInput-inputError","stepper":"bds126NumberInput-stepper"};
2208
2213
 
2209
2214
  // src/components/interaction/form/NumberInput/NumberInput.tsx
2210
2215
  import { cn as cn39 } from "@boostdev/design-system-foundation";
@@ -2309,7 +2314,7 @@ function NumberInput({
2309
2314
  import { useId as useId17 } from "react";
2310
2315
 
2311
2316
  // src/components/interaction/form/Radio/Radio.module.css
2312
- var Radio_default = {"radioGroup":"bds125Radio-radioGroup","inputWrapper":"bds125Radio-inputWrapper","textWrapper":"bds125Radio-textWrapper","description":"bds125Radio-description","radio":"bds125Radio-radio","radioError":"bds125Radio-radioError"};
2317
+ var Radio_default = {"radioGroup":"bds126Radio-radioGroup","inputWrapper":"bds126Radio-inputWrapper","textWrapper":"bds126Radio-textWrapper","description":"bds126Radio-description","radio":"bds126Radio-radio","radioError":"bds126Radio-radioError"};
2313
2318
 
2314
2319
  // src/components/interaction/form/Radio/Radio.tsx
2315
2320
  import { cn as cn40 } from "@boostdev/design-system-foundation";
@@ -2347,7 +2352,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
2347
2352
  import { useId as useId18 } from "react";
2348
2353
 
2349
2354
  // src/components/interaction/form/RadioGroup/RadioGroup.module.css
2350
- var RadioGroup_default = {"group":"bds125RadioGroup-group","legend":"bds125RadioGroup-legend","required":"bds125RadioGroup-required","items":"bds125RadioGroup-items"};
2355
+ var RadioGroup_default = {"group":"bds126RadioGroup-group","legend":"bds126RadioGroup-legend","required":"bds126RadioGroup-required","items":"bds126RadioGroup-items"};
2351
2356
 
2352
2357
  // src/components/interaction/form/RadioGroup/RadioGroup.tsx
2353
2358
  import { cn as cn41 } from "@boostdev/design-system-foundation";
@@ -2389,7 +2394,7 @@ function RadioGroup({
2389
2394
  import { Children, cloneElement as cloneElement4, isValidElement as isValidElement4 } from "react";
2390
2395
 
2391
2396
  // src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
2392
- var SegmentedControl_default = {"control":"bds125SegmentedControl-control","thumb":"bds125SegmentedControl-thumb","indicator":"bds125SegmentedControl-indicator","item":"bds125SegmentedControl-item","--active":"bds125SegmentedControl---active","--disabled":"bds125SegmentedControl---disabled","--size_small":"bds125SegmentedControl---size_small","--size_large":"bds125SegmentedControl---size_large","--variant_outline":"bds125SegmentedControl---variant_outline"};
2397
+ var SegmentedControl_default = {"control":"bds126SegmentedControl-control","thumb":"bds126SegmentedControl-thumb","indicator":"bds126SegmentedControl-indicator","item":"bds126SegmentedControl-item","--active":"bds126SegmentedControl---active","--disabled":"bds126SegmentedControl---disabled","--size_small":"bds126SegmentedControl---size_small","--size_large":"bds126SegmentedControl---size_large","--variant_outline":"bds126SegmentedControl---variant_outline"};
2393
2398
 
2394
2399
  // src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
2395
2400
  import { cn as cn42 } from "@boostdev/design-system-foundation";
@@ -2445,7 +2450,7 @@ function SegmentedControl({
2445
2450
  import { useId as useId19 } from "react";
2446
2451
 
2447
2452
  // src/components/interaction/form/Select/Select.module.css
2448
- var Select_default = {"formGroup":"bds125Select-formGroup","selectWrapper":"bds125Select-selectWrapper","select":"bds125Select-select","selectError":"bds125Select-selectError","chevron":"bds125Select-chevron"};
2453
+ var Select_default = {"formGroup":"bds126Select-formGroup","selectWrapper":"bds126Select-selectWrapper","select":"bds126Select-select","selectError":"bds126Select-selectError","chevron":"bds126Select-chevron"};
2449
2454
 
2450
2455
  // src/components/interaction/form/Select/Select.tsx
2451
2456
  import { cn as cn43 } from "@boostdev/design-system-foundation";
@@ -2496,7 +2501,7 @@ function Select({
2496
2501
  import { useId as useId20, useState as useState12 } from "react";
2497
2502
 
2498
2503
  // src/components/interaction/form/Slider/Slider.module.css
2499
- var Slider_default = {"formGroup":"bds125Slider-formGroup","labelRow":"bds125Slider-labelRow","value":"bds125Slider-value","slider":"bds125Slider-slider","sliderError":"bds125Slider-sliderError"};
2504
+ var Slider_default = {"formGroup":"bds126Slider-formGroup","labelRow":"bds126Slider-labelRow","value":"bds126Slider-value","slider":"bds126Slider-slider","sliderError":"bds126Slider-sliderError"};
2500
2505
 
2501
2506
  // src/components/interaction/form/Slider/Slider.tsx
2502
2507
  import { cn as cn44 } from "@boostdev/design-system-foundation";
@@ -2558,7 +2563,7 @@ function Slider({
2558
2563
  import { useId as useId21 } from "react";
2559
2564
 
2560
2565
  // src/components/interaction/form/Switch/Switch.module.css
2561
- var Switch_default = {"switchGroup":"bds125Switch-switchGroup","--size_small":"bds125Switch---size_small","--size_medium":"bds125Switch---size_medium","--size_large":"bds125Switch---size_large","inputWrapper":"bds125Switch-inputWrapper","trackWrapper":"bds125Switch-trackWrapper","switch":"bds125Switch-switch","track":"bds125Switch-track","thumb":"bds125Switch-thumb","switchError":"bds125Switch-switchError"};
2566
+ var Switch_default = {"switchGroup":"bds126Switch-switchGroup","--size_small":"bds126Switch---size_small","--size_medium":"bds126Switch---size_medium","--size_large":"bds126Switch---size_large","inputWrapper":"bds126Switch-inputWrapper","trackWrapper":"bds126Switch-trackWrapper","switch":"bds126Switch-switch","track":"bds126Switch-track","thumb":"bds126Switch-thumb","switchError":"bds126Switch-switchError"};
2562
2567
 
2563
2568
  // src/components/interaction/form/Switch/Switch.tsx
2564
2569
  import { cn as cn45 } from "@boostdev/design-system-foundation";
@@ -2606,7 +2611,7 @@ function Switch({
2606
2611
  import { useId as useId22 } from "react";
2607
2612
 
2608
2613
  // src/components/interaction/form/Textarea/Textarea.module.css
2609
- var Textarea_default = {"formGroup":"bds125Textarea-formGroup","textarea":"bds125Textarea-textarea","textareaError":"bds125Textarea-textareaError"};
2614
+ var Textarea_default = {"formGroup":"bds126Textarea-formGroup","textarea":"bds126Textarea-textarea","textareaError":"bds126Textarea-textareaError"};
2610
2615
 
2611
2616
  // src/components/interaction/form/Textarea/Textarea.tsx
2612
2617
  import { cn as cn46 } from "@boostdev/design-system-foundation";
@@ -2645,7 +2650,7 @@ function Textarea({
2645
2650
  }
2646
2651
 
2647
2652
  // src/components/layout/ButtonGroup/ButtonGroup.module.css
2648
- var ButtonGroup_default = {"buttonGroup":"bds125ButtonGroup-buttonGroup","container":"bds125ButtonGroup-container","--variant_card":"bds125ButtonGroup---variant_card","--variant_flow":"bds125ButtonGroup---variant_flow","--variant_modal":"bds125ButtonGroup---variant_modal","--variant_content":"bds125ButtonGroup---variant_content","--variant_grid":"bds125ButtonGroup---variant_grid"};
2653
+ var ButtonGroup_default = {"buttonGroup":"bds126ButtonGroup-buttonGroup","container":"bds126ButtonGroup-container","--variant_card":"bds126ButtonGroup---variant_card","--variant_flow":"bds126ButtonGroup---variant_flow","--variant_modal":"bds126ButtonGroup---variant_modal","--variant_content":"bds126ButtonGroup---variant_content","--variant_grid":"bds126ButtonGroup---variant_grid"};
2649
2654
 
2650
2655
  // src/components/layout/ButtonGroup/ButtonGroup.tsx
2651
2656
  import { cn as cn47 } from "@boostdev/design-system-foundation";
@@ -2663,7 +2668,7 @@ function ButtonGroup({ children, className, variant, ...rest }) {
2663
2668
  }
2664
2669
 
2665
2670
  // src/components/layout/Card/Card.module.css
2666
- var Card_default = {"card":"bds125Card-card","--default":"bds125Card---default","--elevated":"bds125Card---elevated","--outlined":"bds125Card---outlined","--clickable":"bds125Card---clickable","--padding-none":"bds125Card---padding-none","--padding-small":"bds125Card---padding-small","--padding-medium":"bds125Card---padding-medium","--padding-large":"bds125Card---padding-large","--text-start":"bds125Card---text-start","--text-center":"bds125Card---text-center","--text-end":"bds125Card---text-end"};
2671
+ var Card_default = {"card":"bds126Card-card","--default":"bds126Card---default","--elevated":"bds126Card---elevated","--outlined":"bds126Card---outlined","--clickable":"bds126Card---clickable","--padding-none":"bds126Card---padding-none","--padding-small":"bds126Card---padding-small","--padding-medium":"bds126Card---padding-medium","--padding-large":"bds126Card---padding-large","--text-start":"bds126Card---text-start","--text-center":"bds126Card---text-center","--text-end":"bds126Card---text-end"};
2667
2672
 
2668
2673
  // src/components/layout/Card/Card.tsx
2669
2674
  import { cn as cn48 } from "@boostdev/design-system-foundation";
@@ -2699,7 +2704,7 @@ function Card({
2699
2704
  }
2700
2705
 
2701
2706
  // src/components/layout/SectionHeader/SectionHeader.module.css
2702
- var SectionHeader_default = {"sectionHeader":"bds125SectionHeader-sectionHeader","title":"bds125SectionHeader-title","subtitle":"bds125SectionHeader-subtitle","--start":"bds125SectionHeader---start","--center":"bds125SectionHeader---center","--end":"bds125SectionHeader---end","--small":"bds125SectionHeader---small","--medium":"bds125SectionHeader---medium","--large":"bds125SectionHeader---large"};
2707
+ var SectionHeader_default = {"sectionHeader":"bds126SectionHeader-sectionHeader","title":"bds126SectionHeader-title","subtitle":"bds126SectionHeader-subtitle","--start":"bds126SectionHeader---start","--center":"bds126SectionHeader---center","--end":"bds126SectionHeader---end","--medium":"bds126SectionHeader---medium","--xs":"bds126SectionHeader---xs","--small":"bds126SectionHeader---small","--large":"bds126SectionHeader---large"};
2703
2708
 
2704
2709
  // src/components/layout/SectionHeader/SectionHeader.tsx
2705
2710
  import { cn as cn49 } from "@boostdev/design-system-foundation";
@@ -2721,7 +2726,7 @@ function SectionHeader({
2721
2726
  }
2722
2727
 
2723
2728
  // src/components/layout/IconWrapper/IconWrapper.module.css
2724
- var IconWrapper_default = {"wrapper":"bds125IconWrapper-wrapper"};
2729
+ var IconWrapper_default = {"wrapper":"bds126IconWrapper-wrapper"};
2725
2730
 
2726
2731
  // src/components/layout/IconWrapper/IconWrapper.tsx
2727
2732
  import { cn as cn50 } from "@boostdev/design-system-foundation";