@boostdev/design-system-components 1.1.2 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/AGENTS.md +13 -10
  2. package/dist/client.cjs +77 -99
  3. package/dist/client.css +611 -580
  4. package/dist/client.d.cts +13 -16
  5. package/dist/client.d.ts +13 -16
  6. package/dist/client.js +87 -109
  7. package/dist/index.cjs +77 -99
  8. package/dist/index.css +611 -580
  9. package/dist/index.d.cts +13 -16
  10. package/dist/index.d.ts +13 -16
  11. package/dist/index.js +87 -109
  12. package/dist/native/index.cjs +9 -8
  13. package/dist/native/index.d.cts +1 -1
  14. package/dist/native/index.d.ts +1 -1
  15. package/dist/native/index.js +9 -8
  16. package/dist/web-components/{chunk-O4UFI2RX.js → chunk-3REOIRDW.js} +13 -11
  17. package/dist/web-components/{chunk-K5CE6HSB.js → chunk-6MH5UWUD.js} +74 -17
  18. package/dist/web-components/{chunk-VM3YHGQ2.js → chunk-AJSXNDAP.js} +1 -2
  19. package/dist/web-components/{chunk-LSC4N56Q.js → chunk-BX3IPVOB.js} +1 -2
  20. package/dist/web-components/{chunk-CJ5ZOO42.js → chunk-DI46Q2EA.js} +50 -1
  21. package/dist/web-components/{chunk-CAPI25CU.js → chunk-DZRSJGPB.js} +3 -3
  22. package/dist/web-components/{chunk-VSS5ITNE.js → chunk-EBJM3VD4.js} +1 -3
  23. package/dist/web-components/{chunk-O7I63SQX.js → chunk-HHHRF2PS.js} +6 -12
  24. package/dist/web-components/{chunk-OTX4COSV.js → chunk-JUKB3BUP.js} +3 -4
  25. package/dist/web-components/{chunk-IQGLIQSO.js → chunk-N6IMUOY4.js} +2 -5
  26. package/dist/web-components/{chunk-QDRH46TF.js → chunk-QLZ2362S.js} +1 -3
  27. package/dist/web-components/{chunk-IK3PTFZ4.js → chunk-T6AETZRP.js} +1 -3
  28. package/dist/web-components/{chunk-4BX6AWXX.js → chunk-X3FKVHLK.js} +2 -4
  29. package/dist/web-components/{chunk-A67LCT7C.js → chunk-XNA6WTXG.js} +3 -4
  30. package/dist/web-components/{chunk-XIENXR7H.js → chunk-YRXCVKHV.js} +1 -3
  31. package/dist/web-components/{chunk-6T3RKUKG.js → chunk-ZTC6GRP7.js} +1 -2
  32. package/dist/web-components/globals.js +1 -1
  33. package/dist/web-components/index.js +16 -16
  34. package/dist/web-components/interaction/bds-accordion.js +1 -1
  35. package/dist/web-components/interaction/bds-button.d.ts +2 -2
  36. package/dist/web-components/interaction/bds-button.js +1 -1
  37. package/dist/web-components/interaction/bds-dialog.js +1 -1
  38. package/dist/web-components/interaction/bds-drawer.js +1 -1
  39. package/dist/web-components/interaction/form/bds-checkbox.js +1 -1
  40. package/dist/web-components/interaction/form/bds-combobox.js +1 -1
  41. package/dist/web-components/interaction/form/bds-number-input.js +1 -1
  42. package/dist/web-components/interaction/form/bds-radio.js +1 -1
  43. package/dist/web-components/interaction/form/bds-segmented-control.d.ts +20 -3
  44. package/dist/web-components/interaction/form/bds-segmented-control.js +1 -1
  45. package/dist/web-components/interaction/form/bds-select.js +1 -1
  46. package/dist/web-components/interaction/form/bds-switch.js +1 -1
  47. package/dist/web-components/interaction/form/bds-textarea.js +1 -1
  48. package/dist/web-components/ui/bds-alert.js +1 -1
  49. package/dist/web-components/ui/bds-card.js +1 -1
  50. package/dist/web-components/ui/bds-notification-banner.js +1 -1
  51. package/package.json +2 -2
  52. package/src/components/interaction/Button/Button.module.css +12 -11
  53. package/src/components/interaction/Button/Button.native.tsx +10 -9
  54. package/src/components/interaction/Button/Button.tsx +1 -1
  55. package/src/components/interaction/Command/Command.module.css +3 -7
  56. package/src/components/interaction/Dialog/Dialog.module.css +7 -5
  57. package/src/components/interaction/Drawer/Drawer.module.css +49 -1
  58. package/src/components/interaction/DropdownMenu/DropdownMenu.module.css +1 -3
  59. package/src/components/interaction/Popover/Popover.module.css +1 -3
  60. package/src/components/interaction/form/Checkbox/Checkbox.module.css +1 -3
  61. package/src/components/interaction/form/Combobox/Combobox.module.css +2 -6
  62. package/src/components/interaction/form/FormInput/FormInput.module.css +1 -3
  63. package/src/components/interaction/form/NumberInput/NumberInput.module.css +16 -4
  64. package/src/components/interaction/form/Radio/Radio.module.css +6 -16
  65. package/src/components/interaction/form/SegmentedControl/SegmentedControl.mdx +70 -25
  66. package/src/components/interaction/form/SegmentedControl/SegmentedControl.module.css +55 -33
  67. package/src/components/interaction/form/SegmentedControl/SegmentedControl.spec.tsx +127 -56
  68. package/src/components/interaction/form/SegmentedControl/SegmentedControl.stories.tsx +89 -72
  69. package/src/components/interaction/form/SegmentedControl/SegmentedControl.tsx +40 -62
  70. package/src/components/interaction/form/SegmentedControl/index.ts +1 -1
  71. package/src/components/interaction/form/Select/Select.module.css +2 -4
  72. package/src/components/interaction/form/Switch/Switch.module.css +5 -7
  73. package/src/components/interaction/form/Switch/Switch.native.spec.tsx +9 -9
  74. package/src/components/interaction/form/Switch/Switch.native.tsx +2 -2
  75. package/src/components/interaction/form/Textarea/Textarea.module.css +1 -3
  76. package/src/components/interaction/form/atoms/InputContainer.stories.tsx +64 -0
  77. package/src/components/interaction/form/atoms/Label.stories.tsx +33 -0
  78. package/src/components/interaction/form/atoms/Message.stories.tsx +33 -0
  79. package/src/components/layout/Card/Card.module.css +1 -3
  80. package/src/components/ui/Accordion/Accordion.module.css +1 -2
  81. package/src/components/ui/Alert/Alert.module.css +1 -2
  82. package/src/components/ui/Calendar/Calendar.module.css +2 -5
  83. package/src/components/ui/Carousel/Carousel.module.css +1 -3
  84. package/src/components/ui/NotificationBanner/NotificationBanner.module.css +1 -2
  85. package/src/components/ui/Pagination/Pagination.module.css +1 -2
  86. package/src/components/ui/SkipLink/SkipLink.module.css +1 -2
  87. package/src/components/ui/Table/Table.module.css +1 -2
  88. package/src/css/bdc.css +16 -11
  89. package/src/index.ts +1 -1
  90. package/src/web-components/globals.ts +3 -3
  91. package/src/web-components/interaction/BdsAccordion.mdx +51 -0
  92. package/src/web-components/interaction/BdsAccordion.stories.tsx +85 -0
  93. package/src/web-components/interaction/BdsCollapsible.mdx +46 -0
  94. package/src/web-components/interaction/BdsCollapsible.stories.tsx +87 -0
  95. package/src/web-components/interaction/BdsDialog.mdx +49 -0
  96. package/src/web-components/interaction/BdsDialog.stories.tsx +75 -0
  97. package/src/web-components/interaction/BdsDrawer.mdx +50 -0
  98. package/src/web-components/interaction/BdsDrawer.stories.tsx +66 -0
  99. package/src/web-components/interaction/BdsSkipLink.mdx +34 -0
  100. package/src/web-components/interaction/BdsSkipLink.stories.tsx +55 -0
  101. package/src/web-components/interaction/BdsTabs.mdx +47 -0
  102. package/src/web-components/interaction/BdsTabs.stories.tsx +80 -0
  103. package/src/web-components/interaction/BdsTooltip.mdx +38 -0
  104. package/src/web-components/interaction/BdsTooltip.stories.tsx +68 -0
  105. package/src/web-components/interaction/bds-accordion.ts +1 -2
  106. package/src/web-components/interaction/bds-button.ts +15 -13
  107. package/src/web-components/interaction/bds-dialog.ts +2 -5
  108. package/src/web-components/interaction/bds-drawer.ts +50 -1
  109. package/src/web-components/interaction/form/BdsCheckbox.mdx +39 -0
  110. package/src/web-components/interaction/form/BdsCheckbox.stories.tsx +73 -0
  111. package/src/web-components/interaction/form/BdsCombobox.mdx +52 -0
  112. package/src/web-components/interaction/form/BdsCombobox.stories.tsx +91 -0
  113. package/src/web-components/interaction/form/BdsFileInput.mdx +44 -0
  114. package/src/web-components/interaction/form/BdsFileInput.stories.tsx +84 -0
  115. package/src/web-components/interaction/form/BdsNumberInput.mdx +41 -0
  116. package/src/web-components/interaction/form/BdsNumberInput.stories.tsx +90 -0
  117. package/src/web-components/interaction/form/BdsRadio.mdx +41 -0
  118. package/src/web-components/interaction/form/BdsRadio.stories.tsx +90 -0
  119. package/src/web-components/interaction/form/BdsSegmentedControl.mdx +42 -0
  120. package/src/web-components/interaction/form/BdsSegmentedControl.stories.tsx +92 -0
  121. package/src/web-components/interaction/form/BdsSelect.mdx +38 -0
  122. package/src/web-components/interaction/form/BdsSelect.stories.tsx +93 -0
  123. package/src/web-components/interaction/form/BdsSlider.mdx +49 -0
  124. package/src/web-components/interaction/form/BdsSlider.stories.tsx +89 -0
  125. package/src/web-components/interaction/form/BdsSwitch.mdx +39 -0
  126. package/src/web-components/interaction/form/BdsSwitch.stories.tsx +73 -0
  127. package/src/web-components/interaction/form/BdsTextarea.mdx +41 -0
  128. package/src/web-components/interaction/form/BdsTextarea.stories.tsx +79 -0
  129. package/src/web-components/interaction/form/bds-checkbox.ts +1 -3
  130. package/src/web-components/interaction/form/bds-combobox.ts +1 -3
  131. package/src/web-components/interaction/form/bds-number-input.ts +3 -4
  132. package/src/web-components/interaction/form/bds-radio.ts +6 -12
  133. package/src/web-components/interaction/form/bds-segmented-control.ts +91 -20
  134. package/src/web-components/interaction/form/bds-select.ts +2 -4
  135. package/src/web-components/interaction/form/bds-switch.ts +3 -4
  136. package/src/web-components/interaction/form/bds-textarea.ts +1 -3
  137. package/src/web-components/ui/BdsAvatar.mdx +67 -0
  138. package/src/web-components/ui/BdsAvatar.stories.tsx +62 -0
  139. package/src/web-components/ui/BdsBreadcrumb.mdx +63 -0
  140. package/src/web-components/ui/BdsBreadcrumb.stories.tsx +59 -0
  141. package/src/web-components/ui/BdsCard.mdx +83 -0
  142. package/src/web-components/ui/BdsCard.stories.tsx +90 -0
  143. package/src/web-components/ui/BdsDescriptionList.mdx +67 -0
  144. package/src/web-components/ui/BdsDescriptionList.stories.tsx +79 -0
  145. package/src/web-components/ui/BdsIconWrapper.mdx +70 -0
  146. package/src/web-components/ui/BdsIconWrapper.stories.tsx +76 -0
  147. package/src/web-components/ui/BdsLink.mdx +75 -0
  148. package/src/web-components/ui/BdsLink.stories.tsx +64 -0
  149. package/src/web-components/ui/BdsLoading.mdx +62 -0
  150. package/src/web-components/ui/BdsLoading.stories.tsx +37 -0
  151. package/src/web-components/ui/BdsNotificationBanner.mdx +90 -0
  152. package/src/web-components/ui/BdsNotificationBanner.stories.tsx +93 -0
  153. package/src/web-components/ui/BdsProgress.mdx +63 -0
  154. package/src/web-components/ui/BdsProgress.stories.tsx +70 -0
  155. package/src/web-components/ui/BdsProgressCircle.mdx +64 -0
  156. package/src/web-components/ui/BdsProgressCircle.stories.tsx +69 -0
  157. package/src/web-components/ui/BdsRating.mdx +61 -0
  158. package/src/web-components/ui/BdsRating.stories.tsx +39 -0
  159. package/src/web-components/ui/BdsSectionHeader.mdx +69 -0
  160. package/src/web-components/ui/BdsSectionHeader.stories.tsx +56 -0
  161. package/src/web-components/ui/BdsSeparator.mdx +63 -0
  162. package/src/web-components/ui/BdsSeparator.stories.tsx +47 -0
  163. package/src/web-components/ui/BdsSkeleton.mdx +67 -0
  164. package/src/web-components/ui/BdsSkeleton.stories.tsx +50 -0
  165. package/src/web-components/ui/BdsTypography.mdx +83 -0
  166. package/src/web-components/ui/BdsTypography.stories.tsx +51 -0
  167. package/src/web-components/ui/bds-alert.ts +1 -2
  168. package/src/web-components/ui/bds-card.ts +1 -3
  169. package/src/web-components/ui/bds-notification-banner.ts +1 -2
package/dist/index.cjs CHANGED
@@ -86,7 +86,7 @@ module.exports = __toCommonJS(index_exports);
86
86
  var import_react = require("react");
87
87
 
88
88
  // src/components/ui/Accordion/Accordion.module.css
89
- var Accordion_default = {"accordion":"bds112Accordion-accordion","item":"bds112Accordion-item","heading":"bds112Accordion-heading","trigger":"bds112Accordion-trigger","triggerLabel":"bds112Accordion-triggerLabel","chevron":"bds112Accordion-chevron","--open":"bds112Accordion---open","panel":"bds112Accordion-panel","panelContent":"bds112Accordion-panelContent"};
89
+ var Accordion_default = {"accordion":"bds120Accordion-accordion","item":"bds120Accordion-item","heading":"bds120Accordion-heading","trigger":"bds120Accordion-trigger","triggerLabel":"bds120Accordion-triggerLabel","chevron":"bds120Accordion-chevron","--open":"bds120Accordion---open","panel":"bds120Accordion-panel","panelContent":"bds120Accordion-panelContent"};
90
90
 
91
91
  // src/components/ui/Accordion/Accordion.tsx
92
92
  var import_design_system_foundation = require("@boostdev/design-system-foundation");
@@ -154,7 +154,7 @@ function Accordion({
154
154
  }
155
155
 
156
156
  // src/components/ui/Alert/Alert.module.css
157
- var Alert_default = {"alert":"bds112Alert-alert","--variant_info":"bds112Alert---variant_info","--variant_success":"bds112Alert---variant_success","--variant_warning":"bds112Alert---variant_warning","--variant_error":"bds112Alert---variant_error","icon":"bds112Alert-icon","content":"bds112Alert-content","title":"bds112Alert-title","dismiss":"bds112Alert-dismiss"};
157
+ var Alert_default = {"alert":"bds120Alert-alert","--variant_info":"bds120Alert---variant_info","--variant_success":"bds120Alert---variant_success","--variant_warning":"bds120Alert---variant_warning","--variant_error":"bds120Alert---variant_error","icon":"bds120Alert-icon","content":"bds120Alert-content","title":"bds120Alert-title","dismiss":"bds120Alert-dismiss"};
158
158
 
159
159
  // src/components/ui/Alert/Alert.tsx
160
160
  var import_design_system_foundation2 = require("@boostdev/design-system-foundation");
@@ -197,7 +197,7 @@ function Alert({
197
197
  }
198
198
 
199
199
  // src/components/ui/Avatar/Avatar.module.css
200
- var Avatar_default = {"avatar":"bds112Avatar-avatar","--fallback":"bds112Avatar---fallback","--size_small":"bds112Avatar---size_small","--size_medium":"bds112Avatar---size_medium","--size_large":"bds112Avatar---size_large","image":"bds112Avatar-image","initials":"bds112Avatar-initials"};
200
+ var Avatar_default = {"avatar":"bds120Avatar-avatar","--fallback":"bds120Avatar---fallback","--size_small":"bds120Avatar---size_small","--size_medium":"bds120Avatar---size_medium","--size_large":"bds120Avatar---size_large","image":"bds120Avatar-image","initials":"bds120Avatar-initials"};
201
201
 
202
202
  // src/components/ui/Avatar/Avatar.tsx
203
203
  var import_design_system_foundation3 = require("@boostdev/design-system-foundation");
@@ -223,7 +223,7 @@ function Avatar({ src, alt, name, size = "medium", className }) {
223
223
  }
224
224
 
225
225
  // src/components/ui/Badge/Badge.module.css
226
- var Badge_default = {"badge":"bds112Badge-badge","--variant_primary":"bds112Badge---variant_primary","--variant_secondary":"bds112Badge---variant_secondary","--variant_success":"bds112Badge---variant_success","--variant_error":"bds112Badge---variant_error","--variant_warning":"bds112Badge---variant_warning"};
226
+ var Badge_default = {"badge":"bds120Badge-badge","--variant_primary":"bds120Badge---variant_primary","--variant_secondary":"bds120Badge---variant_secondary","--variant_success":"bds120Badge---variant_success","--variant_error":"bds120Badge---variant_error","--variant_warning":"bds120Badge---variant_warning"};
227
227
 
228
228
  // src/components/ui/Badge/Badge.tsx
229
229
  var import_design_system_foundation4 = require("@boostdev/design-system-foundation");
@@ -233,7 +233,7 @@ function Badge({ children, variant = "primary", className }) {
233
233
  }
234
234
 
235
235
  // src/components/ui/Breadcrumb/Breadcrumb.module.css
236
- var Breadcrumb_default = {"breadcrumb":"bds112Breadcrumb-breadcrumb","list":"bds112Breadcrumb-list","item":"bds112Breadcrumb-item","link":"bds112Breadcrumb-link","separator":"bds112Breadcrumb-separator","current":"bds112Breadcrumb-current"};
236
+ var Breadcrumb_default = {"breadcrumb":"bds120Breadcrumb-breadcrumb","list":"bds120Breadcrumb-list","item":"bds120Breadcrumb-item","link":"bds120Breadcrumb-link","separator":"bds120Breadcrumb-separator","current":"bds120Breadcrumb-current"};
237
237
 
238
238
  // src/components/ui/Breadcrumb/Breadcrumb.tsx
239
239
  var import_design_system_foundation5 = require("@boostdev/design-system-foundation");
@@ -249,7 +249,7 @@ function Breadcrumb({ items, className }) {
249
249
  }
250
250
 
251
251
  // src/components/ui/Collapsible/Collapsible.module.css
252
- var Collapsible_default = {"collapsible":"bds112Collapsible-collapsible","summary":"bds112Collapsible-summary","summaryContent":"bds112Collapsible-summaryContent","icon":"bds112Collapsible-icon","content":"bds112Collapsible-content"};
252
+ var Collapsible_default = {"collapsible":"bds120Collapsible-collapsible","summary":"bds120Collapsible-summary","summaryContent":"bds120Collapsible-summaryContent","icon":"bds120Collapsible-icon","content":"bds120Collapsible-content"};
253
253
 
254
254
  // src/components/ui/Collapsible/Collapsible.tsx
255
255
  var import_design_system_foundation6 = require("@boostdev/design-system-foundation");
@@ -290,7 +290,7 @@ function Collapsible({
290
290
  var import_react2 = require("react");
291
291
 
292
292
  // src/components/ui/Calendar/Calendar.module.css
293
- var Calendar_default = {"calendar":"bds112Calendar-calendar","header":"bds112Calendar-header","monthYear":"bds112Calendar-monthYear","navBtn":"bds112Calendar-navBtn","grid":"bds112Calendar-grid","weekday":"bds112Calendar-weekday","empty":"bds112Calendar-empty","day":"bds112Calendar-day","disabled":"bds112Calendar-disabled","selected":"bds112Calendar-selected","today":"bds112Calendar-today"};
293
+ var Calendar_default = {"calendar":"bds120Calendar-calendar","header":"bds120Calendar-header","monthYear":"bds120Calendar-monthYear","navBtn":"bds120Calendar-navBtn","grid":"bds120Calendar-grid","weekday":"bds120Calendar-weekday","empty":"bds120Calendar-empty","day":"bds120Calendar-day","disabled":"bds120Calendar-disabled","selected":"bds120Calendar-selected","today":"bds120Calendar-today"};
294
294
 
295
295
  // src/components/ui/Calendar/Calendar.tsx
296
296
  var import_design_system_foundation7 = require("@boostdev/design-system-foundation");
@@ -465,7 +465,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
465
465
  var import_react3 = require("react");
466
466
 
467
467
  // src/components/ui/Carousel/Carousel.module.css
468
- var Carousel_default = {"carousel":"bds112Carousel-carousel","track":"bds112Carousel-track","slide":"bds112Carousel-slide","navBtn":"bds112Carousel-navBtn"};
468
+ var Carousel_default = {"carousel":"bds120Carousel-carousel","track":"bds120Carousel-track","slide":"bds120Carousel-slide","navBtn":"bds120Carousel-navBtn"};
469
469
 
470
470
  // src/components/ui/Carousel/Carousel.tsx
471
471
  var import_design_system_foundation8 = require("@boostdev/design-system-foundation");
@@ -518,7 +518,7 @@ function Carousel({ items, label, className }) {
518
518
  }
519
519
 
520
520
  // src/components/ui/DescriptionList/DescriptionList.module.css
521
- var DescriptionList_default = {"list":"bds112DescriptionList-list","group":"bds112DescriptionList-group","term":"bds112DescriptionList-term","details":"bds112DescriptionList-details","--layout_inline":"bds112DescriptionList---layout_inline"};
521
+ var DescriptionList_default = {"list":"bds120DescriptionList-list","group":"bds120DescriptionList-group","term":"bds120DescriptionList-term","details":"bds120DescriptionList-details","--layout_inline":"bds120DescriptionList---layout_inline"};
522
522
 
523
523
  // src/components/ui/DescriptionList/DescriptionList.tsx
524
524
  var import_design_system_foundation9 = require("@boostdev/design-system-foundation");
@@ -531,7 +531,7 @@ function DescriptionList({ items, layout = "stacked", className }) {
531
531
  }
532
532
 
533
533
  // src/components/ui/Link/Link.module.css
534
- var Link_default = {"link":"bds112Link-link","--variant_default":"bds112Link---variant_default","--variant_subtle":"bds112Link---variant_subtle","--variant_standalone":"bds112Link---variant_standalone","externalLabel":"bds112Link-externalLabel"};
534
+ var Link_default = {"link":"bds120Link-link","--variant_default":"bds120Link---variant_default","--variant_subtle":"bds120Link---variant_subtle","--variant_standalone":"bds120Link---variant_standalone","externalLabel":"bds120Link-externalLabel"};
535
535
 
536
536
  // src/components/ui/Link/Link.tsx
537
537
  var import_design_system_foundation10 = require("@boostdev/design-system-foundation");
@@ -562,7 +562,7 @@ function Link({
562
562
  }
563
563
 
564
564
  // src/components/ui/Loading/Loading.module.css
565
- var Loading_default = {"loading":"bds112Loading-loading","spinner":"bds112Loading-spinner","--size_small":"bds112Loading---size_small","--size_large":"bds112Loading---size_large"};
565
+ var Loading_default = {"loading":"bds120Loading-loading","spinner":"bds120Loading-spinner","--size_small":"bds120Loading---size_small","--size_large":"bds120Loading---size_large"};
566
566
 
567
567
  // src/components/ui/Loading/Loading.tsx
568
568
  var import_design_system_foundation11 = require("@boostdev/design-system-foundation");
@@ -572,7 +572,7 @@ function Loading({ size = "medium", className }) {
572
572
  }
573
573
 
574
574
  // src/components/ui/NotificationBanner/NotificationBanner.module.css
575
- var NotificationBanner_default = {"banner":"bds112NotificationBanner-banner","--variant_info":"bds112NotificationBanner---variant_info","--variant_success":"bds112NotificationBanner---variant_success","--variant_warning":"bds112NotificationBanner---variant_warning","--variant_error":"bds112NotificationBanner---variant_error","content":"bds112NotificationBanner-content","action":"bds112NotificationBanner-action","dismiss":"bds112NotificationBanner-dismiss"};
575
+ var NotificationBanner_default = {"banner":"bds120NotificationBanner-banner","--variant_info":"bds120NotificationBanner---variant_info","--variant_success":"bds120NotificationBanner---variant_success","--variant_warning":"bds120NotificationBanner---variant_warning","--variant_error":"bds120NotificationBanner---variant_error","content":"bds120NotificationBanner-content","action":"bds120NotificationBanner-action","dismiss":"bds120NotificationBanner-dismiss"};
576
576
 
577
577
  // src/components/ui/NotificationBanner/NotificationBanner.tsx
578
578
  var import_design_system_foundation12 = require("@boostdev/design-system-foundation");
@@ -611,7 +611,7 @@ function NotificationBanner({
611
611
  }
612
612
 
613
613
  // src/components/ui/Pagination/Pagination.module.css
614
- var Pagination_default = {"pagination":"bds112Pagination-pagination","list":"bds112Pagination-list","button":"bds112Pagination-button","--active":"bds112Pagination---active","--nav":"bds112Pagination---nav","ellipsis":"bds112Pagination-ellipsis"};
614
+ var Pagination_default = {"pagination":"bds120Pagination-pagination","list":"bds120Pagination-list","button":"bds120Pagination-button","--active":"bds120Pagination---active","--nav":"bds120Pagination---nav","ellipsis":"bds120Pagination-ellipsis"};
615
615
 
616
616
  // src/components/ui/Pagination/Pagination.tsx
617
617
  var import_design_system_foundation13 = require("@boostdev/design-system-foundation");
@@ -675,7 +675,7 @@ function Pagination({
675
675
  }
676
676
 
677
677
  // src/components/ui/Progress/Progress.module.css
678
- var Progress_default = {"container":"bds112Progress-container","labelRow":"bds112Progress-labelRow","value":"bds112Progress-value","track":"bds112Progress-track","--size_small":"bds112Progress---size_small","--size_medium":"bds112Progress---size_medium","--size_large":"bds112Progress---size_large","fill":"bds112Progress-fill"};
678
+ var Progress_default = {"container":"bds120Progress-container","labelRow":"bds120Progress-labelRow","value":"bds120Progress-value","track":"bds120Progress-track","--size_small":"bds120Progress---size_small","--size_medium":"bds120Progress---size_medium","--size_large":"bds120Progress---size_large","fill":"bds120Progress-fill"};
679
679
 
680
680
  // src/components/ui/Progress/Progress.tsx
681
681
  var import_design_system_foundation14 = require("@boostdev/design-system-foundation");
@@ -713,7 +713,7 @@ function Progress({
713
713
  }
714
714
 
715
715
  // src/components/ui/ProgressCircle/ProgressCircle.module.css
716
- var ProgressCircle_default = {"wrapper":"bds112ProgressCircle-wrapper","svg":"bds112ProgressCircle-svg","track":"bds112ProgressCircle-track","fill":"bds112ProgressCircle-fill","value":"bds112ProgressCircle-value","--size_small":"bds112ProgressCircle---size_small","--size_medium":"bds112ProgressCircle---size_medium","--size_large":"bds112ProgressCircle---size_large"};
716
+ var ProgressCircle_default = {"wrapper":"bds120ProgressCircle-wrapper","svg":"bds120ProgressCircle-svg","track":"bds120ProgressCircle-track","fill":"bds120ProgressCircle-fill","value":"bds120ProgressCircle-value","--size_small":"bds120ProgressCircle---size_small","--size_medium":"bds120ProgressCircle---size_medium","--size_large":"bds120ProgressCircle---size_large"};
717
717
 
718
718
  // src/components/ui/ProgressCircle/ProgressCircle.tsx
719
719
  var import_design_system_foundation15 = require("@boostdev/design-system-foundation");
@@ -792,7 +792,7 @@ function ProgressCircle({
792
792
  }
793
793
 
794
794
  // src/components/ui/Separator/Separator.module.css
795
- var Separator_default = {"separator":"bds112Separator-separator","--horizontal":"bds112Separator---horizontal","--vertical":"bds112Separator---vertical"};
795
+ var Separator_default = {"separator":"bds120Separator-separator","--horizontal":"bds120Separator---horizontal","--vertical":"bds120Separator---vertical"};
796
796
 
797
797
  // src/components/ui/Separator/Separator.tsx
798
798
  var import_design_system_foundation16 = require("@boostdev/design-system-foundation");
@@ -815,7 +815,7 @@ function Separator({ orientation = "horizontal", className }) {
815
815
  var import_design_system_foundation17 = require("@boostdev/design-system-foundation");
816
816
 
817
817
  // src/components/ui/Skeleton/Skeleton.module.css
818
- var Skeleton_default = {"skeleton":"bds112Skeleton-skeleton"};
818
+ var Skeleton_default = {"skeleton":"bds120Skeleton-skeleton"};
819
819
 
820
820
  // src/components/ui/Skeleton/Skeleton.tsx
821
821
  var import_jsx_runtime17 = require("react/jsx-runtime");
@@ -824,7 +824,7 @@ function Skeleton({ className }) {
824
824
  }
825
825
 
826
826
  // src/components/ui/SkipLink/SkipLink.module.css
827
- var SkipLink_default = {"skipLink":"bds112SkipLink-skipLink"};
827
+ var SkipLink_default = {"skipLink":"bds120SkipLink-skipLink"};
828
828
 
829
829
  // src/components/ui/SkipLink/SkipLink.tsx
830
830
  var import_design_system_foundation18 = require("@boostdev/design-system-foundation");
@@ -834,7 +834,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
834
834
  }
835
835
 
836
836
  // src/components/ui/Table/Table.module.css
837
- var Table_default = {"wrapper":"bds112Table-wrapper","table":"bds112Table-table","caption":"bds112Table-caption","thead":"bds112Table-thead","th":"bds112Table-th","--sortable":"bds112Table---sortable","sortButton":"bds112Table-sortButton","sortIcon":"bds112Table-sortIcon","--sort-active":"bds112Table---sort-active","--sort-desc":"bds112Table---sort-desc","tbody":"bds112Table-tbody","tr":"bds112Table-tr","td":"bds112Table-td"};
837
+ var Table_default = {"wrapper":"bds120Table-wrapper","table":"bds120Table-table","caption":"bds120Table-caption","thead":"bds120Table-thead","th":"bds120Table-th","--sortable":"bds120Table---sortable","sortButton":"bds120Table-sortButton","sortIcon":"bds120Table-sortIcon","--sort-active":"bds120Table---sort-active","--sort-desc":"bds120Table---sort-desc","tbody":"bds120Table-tbody","tr":"bds120Table-tr","td":"bds120Table-td"};
838
838
 
839
839
  // src/components/ui/Table/Table.tsx
840
840
  var import_design_system_foundation19 = require("@boostdev/design-system-foundation");
@@ -904,7 +904,7 @@ function Table({
904
904
  var import_react4 = require("react");
905
905
 
906
906
  // src/components/ui/Tabs/Tabs.module.css
907
- var Tabs_default = {"tabs":"bds112Tabs-tabs","tabList":"bds112Tabs-tabList","tab":"bds112Tabs-tab","--active":"bds112Tabs---active","panel":"bds112Tabs-panel"};
907
+ var Tabs_default = {"tabs":"bds120Tabs-tabs","tabList":"bds120Tabs-tabList","tab":"bds120Tabs-tab","--active":"bds120Tabs---active","panel":"bds120Tabs-panel"};
908
908
 
909
909
  // src/components/ui/Tabs/Tabs.tsx
910
910
  var import_design_system_foundation20 = require("@boostdev/design-system-foundation");
@@ -984,7 +984,7 @@ function Tabs({ tabs, defaultTab, className }) {
984
984
  var import_react5 = require("react");
985
985
 
986
986
  // src/components/ui/Tooltip/Tooltip.module.css
987
- var Tooltip_default = {"wrapper":"bds112Tooltip-wrapper","tooltip":"bds112Tooltip-tooltip","--placement_top":"bds112Tooltip---placement_top","--placement_bottom":"bds112Tooltip---placement_bottom","--placement_left":"bds112Tooltip---placement_left","--placement_right":"bds112Tooltip---placement_right"};
987
+ var Tooltip_default = {"wrapper":"bds120Tooltip-wrapper","tooltip":"bds120Tooltip-tooltip","--placement_top":"bds120Tooltip---placement_top","--placement_bottom":"bds120Tooltip---placement_bottom","--placement_left":"bds120Tooltip---placement_left","--placement_right":"bds120Tooltip---placement_right"};
988
988
 
989
989
  // src/components/ui/Tooltip/Tooltip.tsx
990
990
  var import_design_system_foundation21 = require("@boostdev/design-system-foundation");
@@ -1026,7 +1026,7 @@ function Tooltip({
1026
1026
  }
1027
1027
 
1028
1028
  // src/components/ui/Typography/Typography.module.css
1029
- var Typography_default = {"typography":"bds112Typography-typography","--h1":"bds112Typography---h1","--h2":"bds112Typography---h2","--h3":"bds112Typography---h3","--body":"bds112Typography---body","--body_s":"bds112Typography---body_s"};
1029
+ var Typography_default = {"typography":"bds120Typography-typography","--h1":"bds120Typography---h1","--h2":"bds120Typography---h2","--h3":"bds120Typography---h3","--body":"bds120Typography---body","--body_s":"bds120Typography---body_s"};
1030
1030
 
1031
1031
  // src/components/ui/Typography/Typography.tsx
1032
1032
  var import_design_system_foundation22 = require("@boostdev/design-system-foundation");
@@ -1044,7 +1044,7 @@ function Typography({ variant = "body", component, children, className }) {
1044
1044
  }
1045
1045
 
1046
1046
  // src/components/interaction/Button/Button.module.css
1047
- var Button_default = {"button":"bds112Button-button","--default":"bds112Button---default","--ghost":"bds112Button---ghost","--size_small":"bds112Button---size_small","--size_medium":"bds112Button---size_medium","--size_large":"bds112Button---size_large","--hasPulse":"bds112Button---hasPulse","iconStart":"bds112Button-iconStart","iconEnd":"bds112Button-iconEnd"};
1047
+ var Button_default = {"button":"bds120Button-button","--default":"bds120Button---default","--outline":"bds120Button---outline","--ghost":"bds120Button---ghost","--size_small":"bds120Button---size_small","--size_medium":"bds120Button---size_medium","--size_large":"bds120Button---size_large","--hasPulse":"bds120Button---hasPulse","iconStart":"bds120Button-iconStart","iconEnd":"bds120Button-iconEnd"};
1048
1048
 
1049
1049
  // src/components/interaction/Button/Button.tsx
1050
1050
  var import_design_system_foundation23 = require("@boostdev/design-system-foundation");
@@ -1159,7 +1159,7 @@ function installInvokerCommandsPolyfill() {
1159
1159
  }
1160
1160
 
1161
1161
  // src/components/interaction/Command/Command.module.css
1162
- var Command_default = {"dialog":"bds112Command-dialog","palette":"bds112Command-palette","searchRow":"bds112Command-searchRow","searchIcon":"bds112Command-searchIcon","search":"bds112Command-search","escHint":"bds112Command-escHint","list":"bds112Command-list","groupList":"bds112Command-groupList","group":"bds112Command-group","item":"bds112Command-item","itemActive":"bds112Command-itemActive","itemLabel":"bds112Command-itemLabel","itemDesc":"bds112Command-itemDesc","shortcut":"bds112Command-shortcut","empty":"bds112Command-empty"};
1162
+ var Command_default = {"dialog":"bds120Command-dialog","palette":"bds120Command-palette","searchRow":"bds120Command-searchRow","searchIcon":"bds120Command-searchIcon","search":"bds120Command-search","escHint":"bds120Command-escHint","list":"bds120Command-list","groupList":"bds120Command-groupList","group":"bds120Command-group","item":"bds120Command-item","itemActive":"bds120Command-itemActive","itemLabel":"bds120Command-itemLabel","itemDesc":"bds120Command-itemDesc","shortcut":"bds120Command-shortcut","empty":"bds120Command-empty"};
1163
1163
 
1164
1164
  // src/components/interaction/Command/Command.tsx
1165
1165
  var import_design_system_foundation24 = require("@boostdev/design-system-foundation");
@@ -1334,7 +1334,7 @@ function Command({
1334
1334
  var import_react7 = require("react");
1335
1335
 
1336
1336
  // src/components/interaction/Dialog/Dialog.module.css
1337
- var Dialog_default = {"dialog":"bds112Dialog-dialog","dialogContent":"bds112Dialog-dialogContent","closeButton":"bds112Dialog-closeButton"};
1337
+ var Dialog_default = {"dialog":"bds120Dialog-dialog","dialogContent":"bds120Dialog-dialogContent","closeButton":"bds120Dialog-closeButton"};
1338
1338
 
1339
1339
  // src/components/interaction/Dialog/Dialog.tsx
1340
1340
  var import_design_system_foundation25 = require("@boostdev/design-system-foundation");
@@ -1439,7 +1439,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
1439
1439
  var import_react8 = require("react");
1440
1440
 
1441
1441
  // src/components/interaction/Drawer/Drawer.module.css
1442
- var Drawer_default = {"drawer":"bds112Drawer-drawer","panel":"bds112Drawer-panel","--side_right":"bds112Drawer---side_right","--side_left":"bds112Drawer---side_left","header":"bds112Drawer-header","closeButton":"bds112Drawer-closeButton","body":"bds112Drawer-body"};
1442
+ var Drawer_default = {"drawer":"bds120Drawer-drawer","panel":"bds120Drawer-panel","--side_right":"bds120Drawer---side_right","--side_left":"bds120Drawer---side_left","header":"bds120Drawer-header","closeButton":"bds120Drawer-closeButton","body":"bds120Drawer-body"};
1443
1443
 
1444
1444
  // src/components/interaction/Drawer/Drawer.tsx
1445
1445
  var import_design_system_foundation26 = require("@boostdev/design-system-foundation");
@@ -1536,7 +1536,7 @@ function Drawer({
1536
1536
  var import_react9 = require("react");
1537
1537
 
1538
1538
  // src/components/interaction/DropdownMenu/DropdownMenu.module.css
1539
- var DropdownMenu_default = {"wrapper":"bds112DropdownMenu-wrapper","menu":"bds112DropdownMenu-menu","--placement_bottom-start":"bds112DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds112DropdownMenu---placement_bottom-end","separator":"bds112DropdownMenu-separator","item":"bds112DropdownMenu-item","icon":"bds112DropdownMenu-icon"};
1539
+ var DropdownMenu_default = {"wrapper":"bds120DropdownMenu-wrapper","menu":"bds120DropdownMenu-menu","--placement_bottom-start":"bds120DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds120DropdownMenu---placement_bottom-end","separator":"bds120DropdownMenu-separator","item":"bds120DropdownMenu-item","icon":"bds120DropdownMenu-icon"};
1540
1540
 
1541
1541
  // src/components/interaction/DropdownMenu/DropdownMenu.tsx
1542
1542
  var import_design_system_foundation27 = require("@boostdev/design-system-foundation");
@@ -1649,7 +1649,7 @@ function DropdownMenu({
1649
1649
  var import_react10 = require("react");
1650
1650
 
1651
1651
  // src/components/interaction/Popover/Popover.module.css
1652
- var Popover_default = {"wrapper":"bds112Popover-wrapper","panel":"bds112Popover-panel","g":"bds112Popover-g"};
1652
+ var Popover_default = {"wrapper":"bds120Popover-wrapper","panel":"bds120Popover-panel","g":"bds120Popover-g"};
1653
1653
 
1654
1654
  // src/components/interaction/Popover/Popover.tsx
1655
1655
  var import_design_system_foundation28 = require("@boostdev/design-system-foundation");
@@ -1733,7 +1733,7 @@ function Popover({
1733
1733
  }
1734
1734
 
1735
1735
  // src/components/interaction/Rating/Rating.module.css
1736
- var Rating_default = {"rating":"bds112Rating-rating","star":"bds112Rating-star","--filled":"bds112Rating---filled"};
1736
+ var Rating_default = {"rating":"bds120Rating-rating","star":"bds120Rating-star","--filled":"bds120Rating---filled"};
1737
1737
 
1738
1738
  // src/components/interaction/Rating/Rating.tsx
1739
1739
  var import_design_system_foundation29 = require("@boostdev/design-system-foundation");
@@ -1764,7 +1764,7 @@ function Rating({ value, max = 5, className }) {
1764
1764
  var import_react11 = require("react");
1765
1765
 
1766
1766
  // src/components/interaction/Toast/Toast.module.css
1767
- var Toast_default = {"toastContainer":"bds112Toast-toastContainer","toast":"bds112Toast-toast","--variant_success":"bds112Toast---variant_success","--variant_warning":"bds112Toast---variant_warning","--variant_info":"bds112Toast---variant_info","--variant_error":"bds112Toast---variant_error","message":"bds112Toast-message","closeButton":"bds112Toast-closeButton"};
1767
+ var Toast_default = {"toastContainer":"bds120Toast-toastContainer","toast":"bds120Toast-toast","--variant_success":"bds120Toast---variant_success","--variant_warning":"bds120Toast---variant_warning","--variant_info":"bds120Toast---variant_info","--variant_error":"bds120Toast---variant_error","message":"bds120Toast-message","closeButton":"bds120Toast-closeButton"};
1768
1768
 
1769
1769
  // src/components/interaction/Toast/Toast.tsx
1770
1770
  var import_design_system_foundation30 = require("@boostdev/design-system-foundation");
@@ -1837,10 +1837,10 @@ function useToast() {
1837
1837
  var import_react12 = require("react");
1838
1838
 
1839
1839
  // src/components/interaction/form/Checkbox/Checkbox.module.css
1840
- var Checkbox_default = {"checkboxGroup":"bds112Checkbox-checkboxGroup","inputWrapper":"bds112Checkbox-inputWrapper","checkbox":"bds112Checkbox-checkbox","checkboxError":"bds112Checkbox-checkboxError"};
1840
+ var Checkbox_default = {"checkboxGroup":"bds120Checkbox-checkboxGroup","inputWrapper":"bds120Checkbox-inputWrapper","checkbox":"bds120Checkbox-checkbox","checkboxError":"bds120Checkbox-checkboxError"};
1841
1841
 
1842
1842
  // src/components/interaction/form/atoms/Message.module.css
1843
- var Message_default = {"error":"bds112Message-error","hint":"bds112Message-hint"};
1843
+ var Message_default = {"error":"bds120Message-error","hint":"bds120Message-hint"};
1844
1844
 
1845
1845
  // src/components/interaction/form/atoms/Message.tsx
1846
1846
  var import_design_system_foundation31 = require("@boostdev/design-system-foundation");
@@ -1851,7 +1851,7 @@ var Message = ({ message, type, inputId, className }) => {
1851
1851
  };
1852
1852
 
1853
1853
  // src/components/interaction/form/atoms/Label.module.css
1854
- var Label_default = {"label":"bds112Label-label"};
1854
+ var Label_default = {"label":"bds120Label-label"};
1855
1855
 
1856
1856
  // src/components/interaction/form/atoms/Label.tsx
1857
1857
  var import_design_system_foundation32 = require("@boostdev/design-system-foundation");
@@ -1864,7 +1864,7 @@ var Label = ({ label, id, className }) => {
1864
1864
  var import_design_system_foundation34 = require("@boostdev/design-system-foundation");
1865
1865
 
1866
1866
  // src/components/interaction/form/atoms/InputContainer.module.css
1867
- var InputContainer_default = {"container":"bds112InputContainer-container"};
1867
+ var InputContainer_default = {"container":"bds120InputContainer-container"};
1868
1868
 
1869
1869
  // src/components/interaction/form/atoms/InputContainer.tsx
1870
1870
  var import_design_system_foundation33 = require("@boostdev/design-system-foundation");
@@ -1905,7 +1905,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
1905
1905
  var import_react13 = require("react");
1906
1906
 
1907
1907
  // src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
1908
- var CheckboxGroup_default = {"group":"bds112CheckboxGroup-group","legend":"bds112CheckboxGroup-legend","required":"bds112CheckboxGroup-required","items":"bds112CheckboxGroup-items"};
1908
+ var CheckboxGroup_default = {"group":"bds120CheckboxGroup-group","legend":"bds120CheckboxGroup-legend","required":"bds120CheckboxGroup-required","items":"bds120CheckboxGroup-items"};
1909
1909
 
1910
1910
  // src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
1911
1911
  var import_design_system_foundation35 = require("@boostdev/design-system-foundation");
@@ -1947,7 +1947,7 @@ function CheckboxGroup({
1947
1947
  var import_react14 = require("react");
1948
1948
 
1949
1949
  // src/components/interaction/form/Combobox/Combobox.module.css
1950
- var Combobox_default = {"formGroup":"bds112Combobox-formGroup","inputWrapper":"bds112Combobox-inputWrapper","input":"bds112Combobox-input","inputError":"bds112Combobox-inputError","chevron":"bds112Combobox-chevron","listbox":"bds112Combobox-listbox","option":"bds112Combobox-option","--highlighted":"bds112Combobox---highlighted","--selected":"bds112Combobox---selected","--disabled":"bds112Combobox---disabled"};
1950
+ var Combobox_default = {"formGroup":"bds120Combobox-formGroup","inputWrapper":"bds120Combobox-inputWrapper","input":"bds120Combobox-input","inputError":"bds120Combobox-inputError","chevron":"bds120Combobox-chevron","listbox":"bds120Combobox-listbox","option":"bds120Combobox-option","--highlighted":"bds120Combobox---highlighted","--selected":"bds120Combobox---selected","--disabled":"bds120Combobox---disabled"};
1951
1951
 
1952
1952
  // src/components/interaction/form/Combobox/Combobox.tsx
1953
1953
  var import_design_system_foundation36 = require("@boostdev/design-system-foundation");
@@ -2097,7 +2097,7 @@ function Combobox({
2097
2097
  var import_react15 = require("react");
2098
2098
 
2099
2099
  // src/components/interaction/form/FileInput/FileInput.module.css
2100
- var FileInput_default = {"formGroup":"bds112FileInput-formGroup","fieldLabel":"bds112FileInput-fieldLabel","dropZone":"bds112FileInput-dropZone","isDragging":"bds112FileInput-isDragging","hasError":"bds112FileInput-hasError","isDisabled":"bds112FileInput-isDisabled","icon":"bds112FileInput-icon","prompt":"bds112FileInput-prompt","acceptHint":"bds112FileInput-acceptHint","hiddenInput":"bds112FileInput-hiddenInput"};
2100
+ var FileInput_default = {"formGroup":"bds120FileInput-formGroup","fieldLabel":"bds120FileInput-fieldLabel","dropZone":"bds120FileInput-dropZone","isDragging":"bds120FileInput-isDragging","hasError":"bds120FileInput-hasError","isDisabled":"bds120FileInput-isDisabled","icon":"bds120FileInput-icon","prompt":"bds120FileInput-prompt","acceptHint":"bds120FileInput-acceptHint","hiddenInput":"bds120FileInput-hiddenInput"};
2101
2101
 
2102
2102
  // src/components/interaction/form/FileInput/FileInput.tsx
2103
2103
  var import_design_system_foundation37 = require("@boostdev/design-system-foundation");
@@ -2197,7 +2197,7 @@ function FileInput({
2197
2197
  var import_react16 = require("react");
2198
2198
 
2199
2199
  // src/components/interaction/form/FormInput/FormInput.module.css
2200
- var FormInput_default = {"formGroup":"bds112FormInput-formGroup","input":"bds112FormInput-input","inputError":"bds112FormInput-inputError"};
2200
+ var FormInput_default = {"formGroup":"bds120FormInput-formGroup","input":"bds120FormInput-input","inputError":"bds120FormInput-inputError"};
2201
2201
 
2202
2202
  // src/components/interaction/form/FormInput/FormInput.tsx
2203
2203
  var import_design_system_foundation38 = require("@boostdev/design-system-foundation");
@@ -2241,7 +2241,7 @@ function FormInput({
2241
2241
  var import_react17 = require("react");
2242
2242
 
2243
2243
  // src/components/interaction/form/NumberInput/NumberInput.module.css
2244
- var NumberInput_default = {"formGroup":"bds112NumberInput-formGroup","inputRow":"bds112NumberInput-inputRow","input":"bds112NumberInput-input","inputError":"bds112NumberInput-inputError","stepper":"bds112NumberInput-stepper"};
2244
+ var NumberInput_default = {"formGroup":"bds120NumberInput-formGroup","inputRow":"bds120NumberInput-inputRow","input":"bds120NumberInput-input","inputError":"bds120NumberInput-inputError","stepper":"bds120NumberInput-stepper"};
2245
2245
 
2246
2246
  // src/components/interaction/form/NumberInput/NumberInput.tsx
2247
2247
  var import_design_system_foundation39 = require("@boostdev/design-system-foundation");
@@ -2345,7 +2345,7 @@ function NumberInput({
2345
2345
  var import_react18 = require("react");
2346
2346
 
2347
2347
  // src/components/interaction/form/Radio/Radio.module.css
2348
- var Radio_default = {"radioGroup":"bds112Radio-radioGroup","inputWrapper":"bds112Radio-inputWrapper","textWrapper":"bds112Radio-textWrapper","description":"bds112Radio-description","radio":"bds112Radio-radio","radioError":"bds112Radio-radioError"};
2348
+ var Radio_default = {"radioGroup":"bds120Radio-radioGroup","inputWrapper":"bds120Radio-inputWrapper","textWrapper":"bds120Radio-textWrapper","description":"bds120Radio-description","radio":"bds120Radio-radio","radioError":"bds120Radio-radioError"};
2349
2349
 
2350
2350
  // src/components/interaction/form/Radio/Radio.tsx
2351
2351
  var import_design_system_foundation40 = require("@boostdev/design-system-foundation");
@@ -2383,7 +2383,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
2383
2383
  var import_react19 = require("react");
2384
2384
 
2385
2385
  // src/components/interaction/form/RadioGroup/RadioGroup.module.css
2386
- var RadioGroup_default = {"group":"bds112RadioGroup-group","legend":"bds112RadioGroup-legend","required":"bds112RadioGroup-required","items":"bds112RadioGroup-items"};
2386
+ var RadioGroup_default = {"group":"bds120RadioGroup-group","legend":"bds120RadioGroup-legend","required":"bds120RadioGroup-required","items":"bds120RadioGroup-items"};
2387
2387
 
2388
2388
  // src/components/interaction/form/RadioGroup/RadioGroup.tsx
2389
2389
  var import_design_system_foundation41 = require("@boostdev/design-system-foundation");
@@ -2425,74 +2425,52 @@ function RadioGroup({
2425
2425
  var import_react20 = require("react");
2426
2426
 
2427
2427
  // src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
2428
- var SegmentedControl_default = {"control":"bds112SegmentedControl-control","thumb":"bds112SegmentedControl-thumb","item":"bds112SegmentedControl-item","--disabled":"bds112SegmentedControl---disabled","radio":"bds112SegmentedControl-radio","label":"bds112SegmentedControl-label","--size_small":"bds112SegmentedControl---size_small","--size_large":"bds112SegmentedControl---size_large","--active":"bds112SegmentedControl---active"};
2428
+ var SegmentedControl_default = {"control":"bds120SegmentedControl-control","thumb":"bds120SegmentedControl-thumb","indicator":"bds120SegmentedControl-indicator","item":"bds120SegmentedControl-item","--active":"bds120SegmentedControl---active","--disabled":"bds120SegmentedControl---disabled","--size_small":"bds120SegmentedControl---size_small","--size_large":"bds120SegmentedControl---size_large","--variant_outline":"bds120SegmentedControl---variant_outline"};
2429
2429
 
2430
2430
  // src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
2431
2431
  var import_design_system_foundation42 = require("@boostdev/design-system-foundation");
2432
2432
  var import_jsx_runtime42 = require("react/jsx-runtime");
2433
2433
  function SegmentedControl({
2434
- name,
2435
- options,
2436
- value,
2437
- defaultValue,
2438
- onChange,
2434
+ children,
2435
+ selectedIndex: selectedIndexProp,
2439
2436
  disabled,
2440
2437
  size = "medium",
2438
+ variant = "outline",
2441
2439
  className,
2442
- "aria-label": ariaLabel,
2443
- ...rest
2440
+ "aria-label": ariaLabel
2444
2441
  }) {
2445
- const baseId = name + (0, import_react20.useId)();
2446
- const [internalValue, setInternalValue] = (0, import_react20.useState)(
2447
- defaultValue ?? options[0]?.value ?? ""
2448
- );
2449
- const activeValue = value ?? internalValue;
2450
- const selectedIndex = options.findIndex((o) => o.value === activeValue);
2451
- const handleChange = (optionValue) => {
2452
- if (value === void 0) setInternalValue(optionValue);
2453
- onChange?.(optionValue);
2454
- };
2442
+ const validChildren = import_react20.Children.toArray(children).filter(import_react20.isValidElement);
2443
+ const autoIndex = selectedIndexProp === void 0 ? validChildren.findIndex((child) => {
2444
+ const p = child.props;
2445
+ return p["aria-current"] === "page" || p["aria-pressed"] === true || p["aria-selected"] === true;
2446
+ }) : -1;
2447
+ const activeIndex = Math.max(0, selectedIndexProp ?? (autoIndex >= 0 ? autoIndex : 0));
2455
2448
  return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
2456
2449
  "div",
2457
2450
  {
2458
2451
  role: "group",
2459
2452
  "aria-label": ariaLabel,
2460
- className: (0, import_design_system_foundation42.cn)(SegmentedControl_default.control, SegmentedControl_default[`--size_${size}`], className),
2453
+ className: (0, import_design_system_foundation42.cn)(SegmentedControl_default.control, SegmentedControl_default[`--size_${size}`], SegmentedControl_default[`--variant_${variant}`], className),
2461
2454
  style: {
2462
- "--control_count": options.length,
2463
- "--control_selected-index": Math.max(0, selectedIndex)
2455
+ "--control_count": validChildren.length,
2456
+ "--control_selected-index": activeIndex
2464
2457
  },
2465
2458
  children: [
2466
2459
  /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { className: SegmentedControl_default.thumb, "aria-hidden": "true" }),
2467
- options.map((option, index) => {
2468
- const id = `${baseId}-${index}`;
2469
- const isChecked = option.value === activeValue;
2470
- const isDisabled = disabled || option.disabled;
2471
- return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
2472
- "label",
2473
- {
2474
- htmlFor: id,
2475
- className: (0, import_design_system_foundation42.cn)(SegmentedControl_default.item, isChecked && SegmentedControl_default["--active"], isDisabled && SegmentedControl_default["--disabled"]),
2476
- children: [
2477
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2478
- "input",
2479
- {
2480
- ...rest,
2481
- type: "radio",
2482
- id,
2483
- name,
2484
- value: option.value,
2485
- checked: isChecked,
2486
- disabled: isDisabled,
2487
- className: SegmentedControl_default.radio,
2488
- onChange: () => handleChange(option.value)
2489
- }
2490
- ),
2491
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { className: SegmentedControl_default.label, children: option.label })
2492
- ]
2493
- },
2494
- option.value
2495
- );
2460
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { className: SegmentedControl_default.indicator, "aria-hidden": "true" }),
2461
+ validChildren.map((child, index) => {
2462
+ const isActive = index === activeIndex;
2463
+ const p = child.props;
2464
+ const isDisabled = disabled || !!p.disabled || p["aria-disabled"] === true;
2465
+ return (0, import_react20.cloneElement)(child, {
2466
+ key: child.key ?? index,
2467
+ className: (0, import_design_system_foundation42.cn)(
2468
+ SegmentedControl_default.item,
2469
+ isActive && SegmentedControl_default["--active"],
2470
+ isDisabled && SegmentedControl_default["--disabled"],
2471
+ p.className
2472
+ )
2473
+ });
2496
2474
  })
2497
2475
  ]
2498
2476
  }
@@ -2503,7 +2481,7 @@ function SegmentedControl({
2503
2481
  var import_react21 = require("react");
2504
2482
 
2505
2483
  // src/components/interaction/form/Select/Select.module.css
2506
- var Select_default = {"formGroup":"bds112Select-formGroup","selectWrapper":"bds112Select-selectWrapper","select":"bds112Select-select","selectError":"bds112Select-selectError","chevron":"bds112Select-chevron"};
2484
+ var Select_default = {"formGroup":"bds120Select-formGroup","selectWrapper":"bds120Select-selectWrapper","select":"bds120Select-select","selectError":"bds120Select-selectError","chevron":"bds120Select-chevron"};
2507
2485
 
2508
2486
  // src/components/interaction/form/Select/Select.tsx
2509
2487
  var import_design_system_foundation43 = require("@boostdev/design-system-foundation");
@@ -2554,7 +2532,7 @@ function Select({
2554
2532
  var import_react22 = require("react");
2555
2533
 
2556
2534
  // src/components/interaction/form/Slider/Slider.module.css
2557
- var Slider_default = {"formGroup":"bds112Slider-formGroup","labelRow":"bds112Slider-labelRow","value":"bds112Slider-value","slider":"bds112Slider-slider","sliderError":"bds112Slider-sliderError"};
2535
+ var Slider_default = {"formGroup":"bds120Slider-formGroup","labelRow":"bds120Slider-labelRow","value":"bds120Slider-value","slider":"bds120Slider-slider","sliderError":"bds120Slider-sliderError"};
2558
2536
 
2559
2537
  // src/components/interaction/form/Slider/Slider.tsx
2560
2538
  var import_design_system_foundation44 = require("@boostdev/design-system-foundation");
@@ -2616,7 +2594,7 @@ function Slider({
2616
2594
  var import_react23 = require("react");
2617
2595
 
2618
2596
  // src/components/interaction/form/Switch/Switch.module.css
2619
- var Switch_default = {"switchGroup":"bds112Switch-switchGroup","--size_small":"bds112Switch---size_small","--size_medium":"bds112Switch---size_medium","--size_large":"bds112Switch---size_large","inputWrapper":"bds112Switch-inputWrapper","trackWrapper":"bds112Switch-trackWrapper","switch":"bds112Switch-switch","track":"bds112Switch-track","thumb":"bds112Switch-thumb","switchError":"bds112Switch-switchError"};
2597
+ var Switch_default = {"switchGroup":"bds120Switch-switchGroup","--size_small":"bds120Switch---size_small","--size_medium":"bds120Switch---size_medium","--size_large":"bds120Switch---size_large","inputWrapper":"bds120Switch-inputWrapper","trackWrapper":"bds120Switch-trackWrapper","switch":"bds120Switch-switch","track":"bds120Switch-track","thumb":"bds120Switch-thumb","switchError":"bds120Switch-switchError"};
2620
2598
 
2621
2599
  // src/components/interaction/form/Switch/Switch.tsx
2622
2600
  var import_design_system_foundation45 = require("@boostdev/design-system-foundation");
@@ -2664,7 +2642,7 @@ function Switch({
2664
2642
  var import_react24 = require("react");
2665
2643
 
2666
2644
  // src/components/interaction/form/Textarea/Textarea.module.css
2667
- var Textarea_default = {"formGroup":"bds112Textarea-formGroup","textarea":"bds112Textarea-textarea","textareaError":"bds112Textarea-textareaError"};
2645
+ var Textarea_default = {"formGroup":"bds120Textarea-formGroup","textarea":"bds120Textarea-textarea","textareaError":"bds120Textarea-textareaError"};
2668
2646
 
2669
2647
  // src/components/interaction/form/Textarea/Textarea.tsx
2670
2648
  var import_design_system_foundation46 = require("@boostdev/design-system-foundation");
@@ -2703,7 +2681,7 @@ function Textarea({
2703
2681
  }
2704
2682
 
2705
2683
  // src/components/layout/ButtonGroup/ButtonGroup.module.css
2706
- var ButtonGroup_default = {"buttonGroup":"bds112ButtonGroup-buttonGroup","container":"bds112ButtonGroup-container","--variant_card":"bds112ButtonGroup---variant_card","--variant_flow":"bds112ButtonGroup---variant_flow","--variant_modal":"bds112ButtonGroup---variant_modal","--variant_content":"bds112ButtonGroup---variant_content","--variant_grid":"bds112ButtonGroup---variant_grid"};
2684
+ var ButtonGroup_default = {"buttonGroup":"bds120ButtonGroup-buttonGroup","container":"bds120ButtonGroup-container","--variant_card":"bds120ButtonGroup---variant_card","--variant_flow":"bds120ButtonGroup---variant_flow","--variant_modal":"bds120ButtonGroup---variant_modal","--variant_content":"bds120ButtonGroup---variant_content","--variant_grid":"bds120ButtonGroup---variant_grid"};
2707
2685
 
2708
2686
  // src/components/layout/ButtonGroup/ButtonGroup.tsx
2709
2687
  var import_design_system_foundation47 = require("@boostdev/design-system-foundation");
@@ -2721,7 +2699,7 @@ function ButtonGroup({ children, className, variant, "aria-label": ariaLabel })
2721
2699
  }
2722
2700
 
2723
2701
  // src/components/layout/Card/Card.module.css
2724
- var Card_default = {"card":"bds112Card-card","--default":"bds112Card---default","--elevated":"bds112Card---elevated","--outlined":"bds112Card---outlined","--clickable":"bds112Card---clickable","--padding-none":"bds112Card---padding-none","--padding-small":"bds112Card---padding-small","--padding-medium":"bds112Card---padding-medium","--padding-large":"bds112Card---padding-large","--text-start":"bds112Card---text-start","--text-center":"bds112Card---text-center","--text-end":"bds112Card---text-end"};
2702
+ var Card_default = {"card":"bds120Card-card","--default":"bds120Card---default","--elevated":"bds120Card---elevated","--outlined":"bds120Card---outlined","--clickable":"bds120Card---clickable","--padding-none":"bds120Card---padding-none","--padding-small":"bds120Card---padding-small","--padding-medium":"bds120Card---padding-medium","--padding-large":"bds120Card---padding-large","--text-start":"bds120Card---text-start","--text-center":"bds120Card---text-center","--text-end":"bds120Card---text-end"};
2725
2703
 
2726
2704
  // src/components/layout/Card/Card.tsx
2727
2705
  var import_design_system_foundation48 = require("@boostdev/design-system-foundation");
@@ -2759,7 +2737,7 @@ function Card({
2759
2737
  }
2760
2738
 
2761
2739
  // src/components/layout/SectionHeader/SectionHeader.module.css
2762
- var SectionHeader_default = {"sectionHeader":"bds112SectionHeader-sectionHeader","title":"bds112SectionHeader-title","subtitle":"bds112SectionHeader-subtitle","--start":"bds112SectionHeader---start","--center":"bds112SectionHeader---center","--end":"bds112SectionHeader---end","--small":"bds112SectionHeader---small","--medium":"bds112SectionHeader---medium","--large":"bds112SectionHeader---large"};
2740
+ var SectionHeader_default = {"sectionHeader":"bds120SectionHeader-sectionHeader","title":"bds120SectionHeader-title","subtitle":"bds120SectionHeader-subtitle","--start":"bds120SectionHeader---start","--center":"bds120SectionHeader---center","--end":"bds120SectionHeader---end","--small":"bds120SectionHeader---small","--medium":"bds120SectionHeader---medium","--large":"bds120SectionHeader---large"};
2763
2741
 
2764
2742
  // src/components/layout/SectionHeader/SectionHeader.tsx
2765
2743
  var import_design_system_foundation49 = require("@boostdev/design-system-foundation");
@@ -2780,7 +2758,7 @@ function SectionHeader({
2780
2758
  }
2781
2759
 
2782
2760
  // src/components/layout/IconWrapper/IconWrapper.module.css
2783
- var IconWrapper_default = {"wrapper":"bds112IconWrapper-wrapper"};
2761
+ var IconWrapper_default = {"wrapper":"bds120IconWrapper-wrapper"};
2784
2762
 
2785
2763
  // src/components/layout/IconWrapper/IconWrapper.tsx
2786
2764
  var import_design_system_foundation50 = require("@boostdev/design-system-foundation");