@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/index.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/index.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/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { useId, useState } from "react";
3
3
 
4
4
  // src/components/ui/Accordion/Accordion.module.css
5
- 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"};
5
+ 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"};
6
6
 
7
7
  // src/components/ui/Accordion/Accordion.tsx
8
8
  import { cn } from "@boostdev/design-system-foundation";
@@ -71,7 +71,7 @@ function Accordion({
71
71
  }
72
72
 
73
73
  // src/components/ui/Alert/Alert.module.css
74
- 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"};
74
+ 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"};
75
75
 
76
76
  // src/components/ui/Alert/Alert.tsx
77
77
  import { cn as cn2 } from "@boostdev/design-system-foundation";
@@ -116,7 +116,7 @@ function Alert({
116
116
  }
117
117
 
118
118
  // src/components/ui/Avatar/Avatar.module.css
119
- 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"};
119
+ 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"};
120
120
 
121
121
  // src/components/ui/Avatar/Avatar.tsx
122
122
  import { cn as cn3 } from "@boostdev/design-system-foundation";
@@ -143,7 +143,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
143
143
  }
144
144
 
145
145
  // src/components/ui/Badge/Badge.module.css
146
- 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"};
146
+ 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"};
147
147
 
148
148
  // src/components/ui/Badge/Badge.tsx
149
149
  import { cn as cn4 } from "@boostdev/design-system-foundation";
@@ -153,7 +153,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
153
153
  }
154
154
 
155
155
  // src/components/ui/Breadcrumb/Breadcrumb.module.css
156
- var Breadcrumb_default = {"breadcrumb":"bds125Breadcrumb-breadcrumb","list":"bds125Breadcrumb-list","item":"bds125Breadcrumb-item","link":"bds125Breadcrumb-link","separator":"bds125Breadcrumb-separator","current":"bds125Breadcrumb-current"};
156
+ var Breadcrumb_default = {"breadcrumb":"bds126Breadcrumb-breadcrumb","list":"bds126Breadcrumb-list","item":"bds126Breadcrumb-item","link":"bds126Breadcrumb-link","separator":"bds126Breadcrumb-separator","current":"bds126Breadcrumb-current"};
157
157
 
158
158
  // src/components/ui/Breadcrumb/Breadcrumb.tsx
159
159
  import { cn as cn5 } from "@boostdev/design-system-foundation";
@@ -169,7 +169,7 @@ function Breadcrumb({ items, className, ...rest }) {
169
169
  }
170
170
 
171
171
  // src/components/ui/Collapsible/Collapsible.module.css
172
- var Collapsible_default = {"collapsible":"bds125Collapsible-collapsible","summary":"bds125Collapsible-summary","summaryContent":"bds125Collapsible-summaryContent","icon":"bds125Collapsible-icon","content":"bds125Collapsible-content"};
172
+ var Collapsible_default = {"collapsible":"bds126Collapsible-collapsible","summary":"bds126Collapsible-summary","summaryContent":"bds126Collapsible-summaryContent","icon":"bds126Collapsible-icon","content":"bds126Collapsible-content"};
173
173
 
174
174
  // src/components/ui/Collapsible/Collapsible.tsx
175
175
  import { cn as cn6 } from "@boostdev/design-system-foundation";
@@ -210,7 +210,7 @@ function Collapsible({
210
210
  import { useState as useState2, useId as useId2 } from "react";
211
211
 
212
212
  // src/components/ui/Calendar/Calendar.module.css
213
- 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"};
213
+ 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"};
214
214
 
215
215
  // src/components/ui/Calendar/Calendar.tsx
216
216
  import { cn as cn7 } from "@boostdev/design-system-foundation";
@@ -385,7 +385,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
385
385
  import { useRef, useId as useId3 } from "react";
386
386
 
387
387
  // src/components/ui/Carousel/Carousel.module.css
388
- var Carousel_default = {"carousel":"bds125Carousel-carousel","track":"bds125Carousel-track","slide":"bds125Carousel-slide","navBtn":"bds125Carousel-navBtn"};
388
+ var Carousel_default = {"carousel":"bds126Carousel-carousel","track":"bds126Carousel-track","slide":"bds126Carousel-slide","navBtn":"bds126Carousel-navBtn"};
389
389
 
390
390
  // src/components/ui/Carousel/Carousel.tsx
391
391
  import { cn as cn8 } from "@boostdev/design-system-foundation";
@@ -438,7 +438,7 @@ function Carousel({ items, label, className, ...rest }) {
438
438
  }
439
439
 
440
440
  // src/components/ui/DescriptionList/DescriptionList.module.css
441
- var DescriptionList_default = {"list":"bds125DescriptionList-list","group":"bds125DescriptionList-group","term":"bds125DescriptionList-term","details":"bds125DescriptionList-details","--layout_inline":"bds125DescriptionList---layout_inline"};
441
+ var DescriptionList_default = {"list":"bds126DescriptionList-list","group":"bds126DescriptionList-group","term":"bds126DescriptionList-term","details":"bds126DescriptionList-details","--layout_inline":"bds126DescriptionList---layout_inline"};
442
442
 
443
443
  // src/components/ui/DescriptionList/DescriptionList.tsx
444
444
  import { cn as cn9 } from "@boostdev/design-system-foundation";
@@ -451,7 +451,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
451
451
  }
452
452
 
453
453
  // src/components/ui/Link/Link.module.css
454
- var Link_default = {"link":"bds125Link-link","--variant_default":"bds125Link---variant_default","--variant_subtle":"bds125Link---variant_subtle","--variant_standalone":"bds125Link---variant_standalone","externalLabel":"bds125Link-externalLabel"};
454
+ var Link_default = {"link":"bds126Link-link","--variant_default":"bds126Link---variant_default","--variant_subtle":"bds126Link---variant_subtle","--variant_standalone":"bds126Link---variant_standalone","externalLabel":"bds126Link-externalLabel"};
455
455
 
456
456
  // src/components/ui/Link/Link.tsx
457
457
  import { cn as cn10 } from "@boostdev/design-system-foundation";
@@ -482,7 +482,7 @@ function Link({
482
482
  }
483
483
 
484
484
  // src/components/ui/Loading/Loading.module.css
485
- var Loading_default = {"loading":"bds125Loading-loading","spinner":"bds125Loading-spinner","--size_small":"bds125Loading---size_small","--size_large":"bds125Loading---size_large"};
485
+ var Loading_default = {"loading":"bds126Loading-loading","spinner":"bds126Loading-spinner","--size_small":"bds126Loading---size_small","--size_large":"bds126Loading---size_large"};
486
486
 
487
487
  // src/components/ui/Loading/Loading.tsx
488
488
  import { cn as cn11 } from "@boostdev/design-system-foundation";
@@ -492,7 +492,7 @@ function Loading({ size = "medium", className, ...rest }) {
492
492
  }
493
493
 
494
494
  // src/components/ui/NotificationBanner/NotificationBanner.module.css
495
- 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"};
495
+ 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"};
496
496
 
497
497
  // src/components/ui/NotificationBanner/NotificationBanner.tsx
498
498
  import { cn as cn12 } from "@boostdev/design-system-foundation";
@@ -533,7 +533,7 @@ function NotificationBanner({
533
533
  }
534
534
 
535
535
  // src/components/ui/Pagination/Pagination.module.css
536
- var Pagination_default = {"pagination":"bds125Pagination-pagination","list":"bds125Pagination-list","button":"bds125Pagination-button","--active":"bds125Pagination---active","--nav":"bds125Pagination---nav","ellipsis":"bds125Pagination-ellipsis"};
536
+ var Pagination_default = {"pagination":"bds126Pagination-pagination","list":"bds126Pagination-list","button":"bds126Pagination-button","--active":"bds126Pagination---active","--nav":"bds126Pagination---nav","ellipsis":"bds126Pagination-ellipsis"};
537
537
 
538
538
  // src/components/ui/Pagination/Pagination.tsx
539
539
  import { cn as cn13 } from "@boostdev/design-system-foundation";
@@ -598,7 +598,7 @@ function Pagination({
598
598
  }
599
599
 
600
600
  // src/components/ui/Progress/Progress.module.css
601
- 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"};
601
+ 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"};
602
602
 
603
603
  // src/components/ui/Progress/Progress.tsx
604
604
  import { cn as cn14 } from "@boostdev/design-system-foundation";
@@ -637,7 +637,7 @@ function Progress({
637
637
  }
638
638
 
639
639
  // src/components/ui/ProgressCircle/ProgressCircle.module.css
640
- 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"};
640
+ 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"};
641
641
 
642
642
  // src/components/ui/ProgressCircle/ProgressCircle.tsx
643
643
  import { cn as cn15 } from "@boostdev/design-system-foundation";
@@ -718,7 +718,7 @@ function ProgressCircle({
718
718
  }
719
719
 
720
720
  // src/components/ui/Separator/Separator.module.css
721
- var Separator_default = {"separator":"bds125Separator-separator","--horizontal":"bds125Separator---horizontal","--vertical":"bds125Separator---vertical"};
721
+ var Separator_default = {"separator":"bds126Separator-separator","--horizontal":"bds126Separator---horizontal","--vertical":"bds126Separator---vertical"};
722
722
 
723
723
  // src/components/ui/Separator/Separator.tsx
724
724
  import { cn as cn16 } from "@boostdev/design-system-foundation";
@@ -742,7 +742,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
742
742
  import { cn as cn17 } from "@boostdev/design-system-foundation";
743
743
 
744
744
  // src/components/ui/Skeleton/Skeleton.module.css
745
- var Skeleton_default = {"skeleton":"bds125Skeleton-skeleton"};
745
+ var Skeleton_default = {"skeleton":"bds126Skeleton-skeleton"};
746
746
 
747
747
  // src/components/ui/Skeleton/Skeleton.tsx
748
748
  import { jsx as jsx17 } from "react/jsx-runtime";
@@ -751,7 +751,7 @@ function Skeleton({ className, ...rest }) {
751
751
  }
752
752
 
753
753
  // src/components/ui/SkipLink/SkipLink.module.css
754
- var SkipLink_default = {"skipLink":"bds125SkipLink-skipLink"};
754
+ var SkipLink_default = {"skipLink":"bds126SkipLink-skipLink"};
755
755
 
756
756
  // src/components/ui/SkipLink/SkipLink.tsx
757
757
  import { cn as cn18 } from "@boostdev/design-system-foundation";
@@ -761,7 +761,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
761
761
  }
762
762
 
763
763
  // src/components/ui/Table/Table.module.css
764
- 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"};
764
+ 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"};
765
765
 
766
766
  // src/components/ui/Table/Table.tsx
767
767
  import { cn as cn19 } from "@boostdev/design-system-foundation";
@@ -831,7 +831,7 @@ function Table({
831
831
  import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
832
832
 
833
833
  // src/components/ui/Tabs/Tabs.module.css
834
- var Tabs_default = {"tabs":"bds125Tabs-tabs","tabList":"bds125Tabs-tabList","tab":"bds125Tabs-tab","--active":"bds125Tabs---active","panel":"bds125Tabs-panel"};
834
+ var Tabs_default = {"tabs":"bds126Tabs-tabs","tabList":"bds126Tabs-tabList","tab":"bds126Tabs-tab","--active":"bds126Tabs---active","panel":"bds126Tabs-panel"};
835
835
 
836
836
  // src/components/ui/Tabs/Tabs.tsx
837
837
  import { cn as cn20 } from "@boostdev/design-system-foundation";
@@ -911,7 +911,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
911
911
  import { cloneElement, isValidElement, useId as useId5, useState as useState4 } from "react";
912
912
 
913
913
  // src/components/ui/Tooltip/Tooltip.module.css
914
- 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"};
914
+ 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"};
915
915
 
916
916
  // src/components/ui/Tooltip/Tooltip.tsx
917
917
  import { cn as cn21 } from "@boostdev/design-system-foundation";
@@ -955,7 +955,7 @@ function Tooltip({
955
955
  }
956
956
 
957
957
  // src/components/ui/Typography/Typography.module.css
958
- var Typography_default = {"typography":"bds125Typography-typography","--h1":"bds125Typography---h1","--h2":"bds125Typography---h2","--h3":"bds125Typography---h3","--body":"bds125Typography---body","--body_s":"bds125Typography---body_s"};
958
+ var Typography_default = {"typography":"bds126Typography-typography","--h1":"bds126Typography---h1","--h2":"bds126Typography---h2","--h3":"bds126Typography---h3","--body":"bds126Typography---body","--body_s":"bds126Typography---body_s"};
959
959
 
960
960
  // src/components/ui/Typography/Typography.tsx
961
961
  import { cn as cn22 } from "@boostdev/design-system-foundation";
@@ -973,7 +973,7 @@ function Typography({ variant = "body", component, children, className, ...rest
973
973
  }
974
974
 
975
975
  // src/components/interaction/Button/Button.module.css
976
- 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"};
976
+ 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"};
977
977
 
978
978
  // src/components/interaction/Button/Button.tsx
979
979
  import { cn as cn23 } from "@boostdev/design-system-foundation";
@@ -1088,7 +1088,7 @@ function installInvokerCommandsPolyfill() {
1088
1088
  }
1089
1089
 
1090
1090
  // src/components/interaction/Command/Command.module.css
1091
- 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"};
1091
+ 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"};
1092
1092
 
1093
1093
  // src/components/interaction/Command/Command.tsx
1094
1094
  import { cn as cn24 } from "@boostdev/design-system-foundation";
@@ -1265,7 +1265,7 @@ function Command({
1265
1265
  import { useEffect as useEffect2, useId as useId7, useRef as useRef4 } from "react";
1266
1266
 
1267
1267
  // src/components/interaction/Dialog/Dialog.module.css
1268
- var Dialog_default = {"dialog":"bds125Dialog-dialog","dialogContent":"bds125Dialog-dialogContent","closeButton":"bds125Dialog-closeButton"};
1268
+ var Dialog_default = {"dialog":"bds126Dialog-dialog","dialogContent":"bds126Dialog-dialogContent","closeButton":"bds126Dialog-closeButton"};
1269
1269
 
1270
1270
  // src/components/interaction/Dialog/Dialog.tsx
1271
1271
  import { cn as cn25 } from "@boostdev/design-system-foundation";
@@ -1371,7 +1371,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
1371
1371
  import { useEffect as useEffect3, useId as useId8, useRef as useRef5 } from "react";
1372
1372
 
1373
1373
  // src/components/interaction/Drawer/Drawer.module.css
1374
- var Drawer_default = {"drawer":"bds125Drawer-drawer","--side_left":"bds125Drawer---side_left","header":"bds125Drawer-header","closeButton":"bds125Drawer-closeButton","body":"bds125Drawer-body"};
1374
+ var Drawer_default = {"drawer":"bds126Drawer-drawer","--side_left":"bds126Drawer---side_left","header":"bds126Drawer-header","closeButton":"bds126Drawer-closeButton","body":"bds126Drawer-body"};
1375
1375
 
1376
1376
  // src/components/interaction/Drawer/Drawer.tsx
1377
1377
  import { cn as cn26 } from "@boostdev/design-system-foundation";
@@ -1479,7 +1479,7 @@ import {
1479
1479
  } from "react";
1480
1480
 
1481
1481
  // src/components/interaction/DropdownMenu/DropdownMenu.module.css
1482
- 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"};
1482
+ 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"};
1483
1483
 
1484
1484
  // src/components/interaction/DropdownMenu/DropdownMenu.tsx
1485
1485
  import { cn as cn27 } from "@boostdev/design-system-foundation";
@@ -1600,7 +1600,7 @@ import {
1600
1600
  } from "react";
1601
1601
 
1602
1602
  // src/components/interaction/Popover/Popover.module.css
1603
- var Popover_default = {"wrapper":"bds125Popover-wrapper","panel":"bds125Popover-panel","g":"bds125Popover-g"};
1603
+ var Popover_default = {"wrapper":"bds126Popover-wrapper","panel":"bds126Popover-panel","g":"bds126Popover-g"};
1604
1604
 
1605
1605
  // src/components/interaction/Popover/Popover.tsx
1606
1606
  import { cn as cn28 } from "@boostdev/design-system-foundation";
@@ -1685,7 +1685,7 @@ function Popover({
1685
1685
  }
1686
1686
 
1687
1687
  // src/components/interaction/Rating/Rating.module.css
1688
- var Rating_default = {"rating":"bds125Rating-rating","star":"bds125Rating-star","--filled":"bds125Rating---filled"};
1688
+ var Rating_default = {"rating":"bds126Rating-rating","star":"bds126Rating-star","--filled":"bds126Rating---filled"};
1689
1689
 
1690
1690
  // src/components/interaction/Rating/Rating.tsx
1691
1691
  import { cn as cn29 } from "@boostdev/design-system-foundation";
@@ -1717,13 +1717,18 @@ function Rating({ value, max = 5, className, ...rest }) {
1717
1717
  import { useState as useState8, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2, useRef as useRef8 } from "react";
1718
1718
 
1719
1719
  // src/components/interaction/Toast/Toast.module.css
1720
- 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"};
1720
+ 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"};
1721
1721
 
1722
1722
  // src/components/interaction/Toast/Toast.tsx
1723
1723
  import { cn as cn30 } from "@boostdev/design-system-foundation";
1724
1724
  import { jsx as jsx30, jsxs as jsxs22 } from "react/jsx-runtime";
1725
- var ToastContext = createContext(void 0);
1725
+ var _ToastContext;
1726
+ function getToastContext() {
1727
+ _ToastContext ??= createContext(void 0);
1728
+ return _ToastContext;
1729
+ }
1726
1730
  function ToastProvider({ children }) {
1731
+ const ToastContext = getToastContext();
1727
1732
  const [toasts, setToasts] = useState8([]);
1728
1733
  const containerRef = useRef8(null);
1729
1734
  const showToast = useCallback((message, variant) => {
@@ -1779,7 +1784,7 @@ function ToastItem({ toast, onRemove }) {
1779
1784
  ] });
1780
1785
  }
1781
1786
  function useToast() {
1782
- const context = useContext(ToastContext);
1787
+ const context = useContext(getToastContext());
1783
1788
  if (!context) {
1784
1789
  throw new Error("useToast must be used within a ToastProvider");
1785
1790
  }
@@ -1790,10 +1795,10 @@ function useToast() {
1790
1795
  import { useId as useId11 } from "react";
1791
1796
 
1792
1797
  // src/components/interaction/form/Checkbox/Checkbox.module.css
1793
- var Checkbox_default = {"checkboxGroup":"bds125Checkbox-checkboxGroup","inputWrapper":"bds125Checkbox-inputWrapper","checkbox":"bds125Checkbox-checkbox","checkboxError":"bds125Checkbox-checkboxError"};
1798
+ var Checkbox_default = {"checkboxGroup":"bds126Checkbox-checkboxGroup","inputWrapper":"bds126Checkbox-inputWrapper","checkbox":"bds126Checkbox-checkbox","checkboxError":"bds126Checkbox-checkboxError"};
1794
1799
 
1795
1800
  // src/components/interaction/form/atoms/Message.module.css
1796
- var Message_default = {"error":"bds125Message-error","hint":"bds125Message-hint"};
1801
+ var Message_default = {"error":"bds126Message-error","hint":"bds126Message-hint"};
1797
1802
 
1798
1803
  // src/components/interaction/form/atoms/Message.tsx
1799
1804
  import { cn as cn31 } from "@boostdev/design-system-foundation";
@@ -1804,7 +1809,7 @@ var Message = ({ message, type, inputId, className }) => {
1804
1809
  };
1805
1810
 
1806
1811
  // src/components/interaction/form/atoms/Label.module.css
1807
- var Label_default = {"label":"bds125Label-label"};
1812
+ var Label_default = {"label":"bds126Label-label"};
1808
1813
 
1809
1814
  // src/components/interaction/form/atoms/Label.tsx
1810
1815
  import { cn as cn32 } from "@boostdev/design-system-foundation";
@@ -1817,7 +1822,7 @@ var Label = ({ label, id, className }) => {
1817
1822
  import { cn as cn34 } from "@boostdev/design-system-foundation";
1818
1823
 
1819
1824
  // src/components/interaction/form/atoms/InputContainer.module.css
1820
- var InputContainer_default = {"container":"bds125InputContainer-container"};
1825
+ var InputContainer_default = {"container":"bds126InputContainer-container"};
1821
1826
 
1822
1827
  // src/components/interaction/form/atoms/InputContainer.tsx
1823
1828
  import { cn as cn33 } from "@boostdev/design-system-foundation";
@@ -1858,7 +1863,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
1858
1863
  import { useId as useId12 } from "react";
1859
1864
 
1860
1865
  // src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
1861
- var CheckboxGroup_default = {"group":"bds125CheckboxGroup-group","legend":"bds125CheckboxGroup-legend","required":"bds125CheckboxGroup-required","items":"bds125CheckboxGroup-items"};
1866
+ var CheckboxGroup_default = {"group":"bds126CheckboxGroup-group","legend":"bds126CheckboxGroup-legend","required":"bds126CheckboxGroup-required","items":"bds126CheckboxGroup-items"};
1862
1867
 
1863
1868
  // src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
1864
1869
  import { cn as cn35 } from "@boostdev/design-system-foundation";
@@ -1906,7 +1911,7 @@ import {
1906
1911
  } from "react";
1907
1912
 
1908
1913
  // src/components/interaction/form/Combobox/Combobox.module.css
1909
- 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"};
1914
+ 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"};
1910
1915
 
1911
1916
  // src/components/interaction/form/Combobox/Combobox.tsx
1912
1917
  import { cn as cn36 } from "@boostdev/design-system-foundation";
@@ -2057,7 +2062,7 @@ function Combobox({
2057
2062
  import { useId as useId14, useRef as useRef10, useState as useState10 } from "react";
2058
2063
 
2059
2064
  // src/components/interaction/form/FileInput/FileInput.module.css
2060
- 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"};
2065
+ 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"};
2061
2066
 
2062
2067
  // src/components/interaction/form/FileInput/FileInput.tsx
2063
2068
  import { cn as cn37 } from "@boostdev/design-system-foundation";
@@ -2158,7 +2163,7 @@ function FileInput({
2158
2163
  import { useId as useId15 } from "react";
2159
2164
 
2160
2165
  // src/components/interaction/form/FormInput/FormInput.module.css
2161
- var FormInput_default = {"formGroup":"bds125FormInput-formGroup","input":"bds125FormInput-input","inputError":"bds125FormInput-inputError"};
2166
+ var FormInput_default = {"formGroup":"bds126FormInput-formGroup","input":"bds126FormInput-input","inputError":"bds126FormInput-inputError"};
2162
2167
 
2163
2168
  // src/components/interaction/form/FormInput/FormInput.tsx
2164
2169
  import { cn as cn38 } from "@boostdev/design-system-foundation";
@@ -2202,7 +2207,7 @@ function FormInput({
2202
2207
  import { useId as useId16, useRef as useRef11, useState as useState11 } from "react";
2203
2208
 
2204
2209
  // src/components/interaction/form/NumberInput/NumberInput.module.css
2205
- var NumberInput_default = {"formGroup":"bds125NumberInput-formGroup","inputRow":"bds125NumberInput-inputRow","input":"bds125NumberInput-input","inputError":"bds125NumberInput-inputError","stepper":"bds125NumberInput-stepper"};
2210
+ var NumberInput_default = {"formGroup":"bds126NumberInput-formGroup","inputRow":"bds126NumberInput-inputRow","input":"bds126NumberInput-input","inputError":"bds126NumberInput-inputError","stepper":"bds126NumberInput-stepper"};
2206
2211
 
2207
2212
  // src/components/interaction/form/NumberInput/NumberInput.tsx
2208
2213
  import { cn as cn39 } from "@boostdev/design-system-foundation";
@@ -2307,7 +2312,7 @@ function NumberInput({
2307
2312
  import { useId as useId17 } from "react";
2308
2313
 
2309
2314
  // src/components/interaction/form/Radio/Radio.module.css
2310
- var Radio_default = {"radioGroup":"bds125Radio-radioGroup","inputWrapper":"bds125Radio-inputWrapper","textWrapper":"bds125Radio-textWrapper","description":"bds125Radio-description","radio":"bds125Radio-radio","radioError":"bds125Radio-radioError"};
2315
+ var Radio_default = {"radioGroup":"bds126Radio-radioGroup","inputWrapper":"bds126Radio-inputWrapper","textWrapper":"bds126Radio-textWrapper","description":"bds126Radio-description","radio":"bds126Radio-radio","radioError":"bds126Radio-radioError"};
2311
2316
 
2312
2317
  // src/components/interaction/form/Radio/Radio.tsx
2313
2318
  import { cn as cn40 } from "@boostdev/design-system-foundation";
@@ -2345,7 +2350,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
2345
2350
  import { useId as useId18 } from "react";
2346
2351
 
2347
2352
  // src/components/interaction/form/RadioGroup/RadioGroup.module.css
2348
- var RadioGroup_default = {"group":"bds125RadioGroup-group","legend":"bds125RadioGroup-legend","required":"bds125RadioGroup-required","items":"bds125RadioGroup-items"};
2353
+ var RadioGroup_default = {"group":"bds126RadioGroup-group","legend":"bds126RadioGroup-legend","required":"bds126RadioGroup-required","items":"bds126RadioGroup-items"};
2349
2354
 
2350
2355
  // src/components/interaction/form/RadioGroup/RadioGroup.tsx
2351
2356
  import { cn as cn41 } from "@boostdev/design-system-foundation";
@@ -2387,7 +2392,7 @@ function RadioGroup({
2387
2392
  import { Children, cloneElement as cloneElement4, isValidElement as isValidElement4 } from "react";
2388
2393
 
2389
2394
  // src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
2390
- 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"};
2395
+ 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"};
2391
2396
 
2392
2397
  // src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
2393
2398
  import { cn as cn42 } from "@boostdev/design-system-foundation";
@@ -2443,7 +2448,7 @@ function SegmentedControl({
2443
2448
  import { useId as useId19 } from "react";
2444
2449
 
2445
2450
  // src/components/interaction/form/Select/Select.module.css
2446
- var Select_default = {"formGroup":"bds125Select-formGroup","selectWrapper":"bds125Select-selectWrapper","select":"bds125Select-select","selectError":"bds125Select-selectError","chevron":"bds125Select-chevron"};
2451
+ var Select_default = {"formGroup":"bds126Select-formGroup","selectWrapper":"bds126Select-selectWrapper","select":"bds126Select-select","selectError":"bds126Select-selectError","chevron":"bds126Select-chevron"};
2447
2452
 
2448
2453
  // src/components/interaction/form/Select/Select.tsx
2449
2454
  import { cn as cn43 } from "@boostdev/design-system-foundation";
@@ -2494,7 +2499,7 @@ function Select({
2494
2499
  import { useId as useId20, useState as useState12 } from "react";
2495
2500
 
2496
2501
  // src/components/interaction/form/Slider/Slider.module.css
2497
- var Slider_default = {"formGroup":"bds125Slider-formGroup","labelRow":"bds125Slider-labelRow","value":"bds125Slider-value","slider":"bds125Slider-slider","sliderError":"bds125Slider-sliderError"};
2502
+ var Slider_default = {"formGroup":"bds126Slider-formGroup","labelRow":"bds126Slider-labelRow","value":"bds126Slider-value","slider":"bds126Slider-slider","sliderError":"bds126Slider-sliderError"};
2498
2503
 
2499
2504
  // src/components/interaction/form/Slider/Slider.tsx
2500
2505
  import { cn as cn44 } from "@boostdev/design-system-foundation";
@@ -2556,7 +2561,7 @@ function Slider({
2556
2561
  import { useId as useId21 } from "react";
2557
2562
 
2558
2563
  // src/components/interaction/form/Switch/Switch.module.css
2559
- 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"};
2564
+ 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"};
2560
2565
 
2561
2566
  // src/components/interaction/form/Switch/Switch.tsx
2562
2567
  import { cn as cn45 } from "@boostdev/design-system-foundation";
@@ -2604,7 +2609,7 @@ function Switch({
2604
2609
  import { useId as useId22 } from "react";
2605
2610
 
2606
2611
  // src/components/interaction/form/Textarea/Textarea.module.css
2607
- var Textarea_default = {"formGroup":"bds125Textarea-formGroup","textarea":"bds125Textarea-textarea","textareaError":"bds125Textarea-textareaError"};
2612
+ var Textarea_default = {"formGroup":"bds126Textarea-formGroup","textarea":"bds126Textarea-textarea","textareaError":"bds126Textarea-textareaError"};
2608
2613
 
2609
2614
  // src/components/interaction/form/Textarea/Textarea.tsx
2610
2615
  import { cn as cn46 } from "@boostdev/design-system-foundation";
@@ -2643,7 +2648,7 @@ function Textarea({
2643
2648
  }
2644
2649
 
2645
2650
  // src/components/layout/ButtonGroup/ButtonGroup.module.css
2646
- 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"};
2651
+ 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"};
2647
2652
 
2648
2653
  // src/components/layout/ButtonGroup/ButtonGroup.tsx
2649
2654
  import { cn as cn47 } from "@boostdev/design-system-foundation";
@@ -2661,7 +2666,7 @@ function ButtonGroup({ children, className, variant, ...rest }) {
2661
2666
  }
2662
2667
 
2663
2668
  // src/components/layout/Card/Card.module.css
2664
- 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"};
2669
+ 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"};
2665
2670
 
2666
2671
  // src/components/layout/Card/Card.tsx
2667
2672
  import { cn as cn48 } from "@boostdev/design-system-foundation";
@@ -2697,7 +2702,7 @@ function Card({
2697
2702
  }
2698
2703
 
2699
2704
  // src/components/layout/SectionHeader/SectionHeader.module.css
2700
- 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"};
2705
+ 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"};
2701
2706
 
2702
2707
  // src/components/layout/SectionHeader/SectionHeader.tsx
2703
2708
  import { cn as cn49 } from "@boostdev/design-system-foundation";
@@ -2719,7 +2724,7 @@ function SectionHeader({
2719
2724
  }
2720
2725
 
2721
2726
  // src/components/layout/IconWrapper/IconWrapper.module.css
2722
- var IconWrapper_default = {"wrapper":"bds125IconWrapper-wrapper"};
2727
+ var IconWrapper_default = {"wrapper":"bds126IconWrapper-wrapper"};
2723
2728
 
2724
2729
  // src/components/layout/IconWrapper/IconWrapper.tsx
2725
2730
  import { cn as cn50 } from "@boostdev/design-system-foundation";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boostdev/design-system-components",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "BoostDev React component library: accessible, token-driven components built on @boostdev/design-system-foundation",
5
5
  "keywords": [
6
6
  "React",
@@ -12,6 +12,8 @@ Primary interactive element for triggering actions. Renders as `<button>` or `<a
12
12
  - Secondary or ghost actions (`ghost`)
13
13
  - Navigation that should look like an action (`href` → renders as `<a>`)
14
14
 
15
+ > **Form actions:** When using buttons in a form (submit, reset, cancel), always wrap them in a `ButtonGroup` component. This provides consistent spacing, alignment, and responsive layout for form actions. Use `variant="flow"` for step navigation or `variant="card"` for single-form submissions.
16
+
15
17
  ## When not to use
16
18
  - Navigation to another page when it reads naturally as a link — use `Link` instead
17
19
  - When the action is purely icon-based without a label — ensure `aria-label` is set
@@ -53,11 +55,17 @@ Primary interactive element for triggering actions. Renders as `<button>` or `<a
53
55
 
54
56
  <table>
55
57
  <thead>
56
- <tr><th>Variable</th><th>Description</th></tr>
58
+ <tr><th>Variable</th><th>Default</th><th>Description</th></tr>
57
59
  </thead>
58
60
  <tbody>
59
- <tr><td>`--button_color`</td><td>Identity colour — fills default, outlines ghost. Set this to re-theme.</td></tr>
60
- <tr><td>`--button_on-color`</td><td>Text/icon colour on the button. Pair with `--button_color`.</td></tr>
61
+ <tr><td>`--button_color`</td><td>`var(--bds-color_interactive)`</td><td>Identity colour — fills default, outlines outline. Set this to re-theme.</td></tr>
62
+ <tr><td>`--button_on-color`</td><td>`var(--bds-color_on-interactive)`</td><td>Text/icon colour on the button. Pair with `--button_color`.</td></tr>
63
+ <tr><td>`--button_color--on-bg`</td><td>`var(--bds-color_interactive_on-bg)`</td><td>Text-safe variant of `--button_color` for outline variant text/border</td></tr>
64
+ <tr><td>`--button_radius`</td><td>`var(--bds-border_radius--full)`</td><td>Button border radius</td></tr>
65
+ <tr><td>`--button_bg--hover`</td><td>`var(--bds-color_bg)`</td><td>Default variant background on hover</td></tr>
66
+ <tr><td>`--button_text--hover`</td><td>`var(--bds-color_interactive_on-bg)`</td><td>Default variant text colour on hover</td></tr>
67
+ <tr><td>`--button_bg--outline-hover`</td><td>`var(--button_color)`</td><td>Outline variant background on hover</td></tr>
68
+ <tr><td>`--button_text--outline-hover`</td><td>`var(--button_on-color)`</td><td>Outline variant text colour on hover</td></tr>
61
69
  </tbody>
62
70
  </table>
63
71
 
@@ -140,9 +140,9 @@
140
140
  /* Default hover: outline appears, bg becomes page surface */
141
141
  @media (hover: hover) and (pointer: fine) {
142
142
  .button.--default:hover {
143
- --button_bg: var(--bds-color_bg);
144
- --button_text: var(--bds-color_interactive_on-bg);
145
- --button_pulse-color: var(--bds-color_interactive_on-bg);
143
+ --button_bg: var(--button_bg--hover, var(--bds-color_bg));
144
+ --button_text: var(--button_text--hover, var(--bds-color_interactive_on-bg));
145
+ --button_pulse-color: var(--button_pulse-color--hover, var(--bds-color_interactive_on-bg));
146
146
  --bdc_color: currentcolor;
147
147
  }
148
148
  }
@@ -151,8 +151,8 @@
151
151
  @media (hover: hover) and (pointer: fine) {
152
152
  .button.--outline:hover,
153
153
  .button.--ghost:hover {
154
- --button_bg: var(--button_color);
155
- --button_text: var(--button_on-color);
154
+ --button_bg: var(--button_bg--outline-hover, var(--button_color));
155
+ --button_text: var(--button_text--outline-hover, var(--button_on-color));
156
156
  --bdc_color: transparent;
157
157
  }
158
158
  }
@@ -32,6 +32,7 @@ Keyboard-first command palette for searching and executing actions. Commonly tri
32
32
  <tr><td>`--command_on-color`</td><td>`var(--bds-color_on-bg)`</td><td>Text and icon colour</td></tr>
33
33
  <tr><td>`--command_shadow`</td><td>`var(--bds-shadow_xl)`</td><td>Panel box shadow</td></tr>
34
34
  <tr><td>`--command_border`</td><td>`none`</td><td>Panel border</td></tr>
35
+ <tr><td>`--command_item-bg--active`</td><td>`var(--bds-color_bg--subtle)`</td><td>Active/highlighted item background</td></tr>
35
36
  </tbody>
36
37
  </table>
37
38
 
@@ -106,7 +106,7 @@
106
106
  }
107
107
 
108
108
  .itemActive {
109
- background-color: var(--bds-color_bg--subtle);
109
+ background-color: var(--command_item-bg--active, var(--bds-color_bg--subtle));
110
110
  }
111
111
 
112
112
  .itemLabel {