@boostdev/design-system-components 0.1.12 → 0.1.14

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 (121) hide show
  1. package/AGENTS.md +14 -2
  2. package/README.md +35 -5
  3. package/dist/client.cjs +54 -50
  4. package/dist/client.css +498 -509
  5. package/dist/client.d.cts +5 -3
  6. package/dist/client.d.ts +5 -3
  7. package/dist/client.js +54 -50
  8. package/dist/index.cjs +54 -50
  9. package/dist/index.css +498 -509
  10. package/dist/index.d.cts +5 -3
  11. package/dist/index.d.ts +5 -3
  12. package/dist/index.js +54 -50
  13. package/package.json +6 -2
  14. package/src/components/interaction/Button/Button.mdx +73 -0
  15. package/src/components/interaction/Button/Button.module.css +12 -20
  16. package/src/components/interaction/Button/Button.stories.tsx +0 -1
  17. package/src/components/interaction/Command/Command.mdx +28 -0
  18. package/src/components/interaction/Command/Command.module.css +2 -1
  19. package/src/components/interaction/Command/Command.stories.tsx +3 -3
  20. package/src/components/interaction/Dialog/Dialog.mdx +57 -0
  21. package/src/components/interaction/Dialog/Dialog.module.css +6 -0
  22. package/src/components/interaction/Dialog/Dialog.stories.tsx +0 -1
  23. package/src/components/interaction/Drawer/Drawer.mdx +35 -0
  24. package/src/components/interaction/Drawer/Drawer.module.css +3 -9
  25. package/src/components/interaction/Drawer/Drawer.stories.tsx +3 -3
  26. package/src/components/interaction/Drawer/Drawer.tsx +5 -3
  27. package/src/components/interaction/DropdownMenu/DropdownMenu.mdx +40 -0
  28. package/src/components/interaction/DropdownMenu/DropdownMenu.stories.tsx +5 -5
  29. package/src/components/interaction/Popover/Popover.mdx +34 -0
  30. package/src/components/interaction/Popover/Popover.stories.tsx +3 -3
  31. package/src/components/interaction/Rating/Rating.mdx +38 -0
  32. package/src/components/interaction/Rating/Rating.stories.tsx +0 -1
  33. package/src/components/interaction/Toast/Toast.mdx +78 -0
  34. package/src/components/interaction/Toast/Toast.module.css +21 -7
  35. package/src/components/interaction/Toast/Toast.stories.tsx +0 -1
  36. package/src/components/interaction/form/Checkbox/Checkbox.mdx +57 -0
  37. package/src/components/interaction/form/Checkbox/Checkbox.stories.tsx +0 -1
  38. package/src/components/interaction/form/Combobox/Combobox.mdx +37 -0
  39. package/src/components/interaction/form/Combobox/Combobox.stories.tsx +0 -1
  40. package/src/components/interaction/form/FileInput/FileInput.mdx +38 -0
  41. package/src/components/interaction/form/FileInput/FileInput.stories.tsx +0 -1
  42. package/src/components/interaction/form/FormInput/FormInput.mdx +54 -0
  43. package/src/components/interaction/form/FormInput/FormInput.stories.tsx +0 -1
  44. package/src/components/interaction/form/NumberInput/NumberInput.mdx +38 -0
  45. package/src/components/interaction/form/NumberInput/NumberInput.stories.tsx +0 -1
  46. package/src/components/interaction/form/Radio/Radio.mdx +60 -0
  47. package/src/components/interaction/form/Radio/Radio.module.css +24 -11
  48. package/src/components/interaction/form/Radio/Radio.stories.tsx +5 -5
  49. package/src/components/interaction/form/Radio/Radio.tsx +6 -2
  50. package/src/components/interaction/form/Select/Select.mdx +58 -0
  51. package/src/components/interaction/form/Select/Select.stories.tsx +0 -1
  52. package/src/components/interaction/form/Slider/Slider.mdx +58 -0
  53. package/src/components/interaction/form/Slider/Slider.stories.tsx +0 -1
  54. package/src/components/interaction/form/Switch/Switch.mdx +61 -0
  55. package/src/components/interaction/form/Switch/Switch.module.css +6 -10
  56. package/src/components/interaction/form/Switch/Switch.stories.tsx +0 -1
  57. package/src/components/interaction/form/Textarea/Textarea.mdx +41 -0
  58. package/src/components/interaction/form/Textarea/Textarea.stories.tsx +0 -1
  59. package/src/components/layout/ButtonGroup/ButtonGroup.mdx +47 -0
  60. package/src/components/layout/ButtonGroup/ButtonGroup.module.css +10 -10
  61. package/src/components/layout/ButtonGroup/ButtonGroup.stories.tsx +1 -2
  62. package/src/components/layout/Card/Card.mdx +58 -0
  63. package/src/components/layout/Card/Card.stories.tsx +0 -1
  64. package/src/components/layout/IconWrapper/IconWrapper.mdx +39 -0
  65. package/src/components/layout/IconWrapper/IconWrapper.stories.tsx +0 -1
  66. package/src/components/layout/SectionHeader/SectionHeader.mdx +38 -0
  67. package/src/components/layout/SectionHeader/SectionHeader.stories.tsx +0 -1
  68. package/src/components/ui/Accordion/Accordion.mdx +40 -0
  69. package/src/components/ui/Accordion/Accordion.stories.tsx +0 -1
  70. package/src/components/ui/Alert/Alert.mdx +63 -0
  71. package/src/components/ui/Alert/Alert.module.css +3 -7
  72. package/src/components/ui/Alert/Alert.stories.tsx +0 -1
  73. package/src/components/ui/Avatar/Avatar.mdx +53 -0
  74. package/src/components/ui/Avatar/Avatar.module.css +4 -8
  75. package/src/components/ui/Avatar/Avatar.stories.tsx +0 -1
  76. package/src/components/ui/Badge/Badge.mdx +62 -0
  77. package/src/components/ui/Badge/Badge.module.css +4 -10
  78. package/src/components/ui/Badge/Badge.stories.tsx +0 -1
  79. package/src/components/ui/Breadcrumb/Breadcrumb.mdx +36 -0
  80. package/src/components/ui/Breadcrumb/Breadcrumb.stories.tsx +0 -1
  81. package/src/components/ui/Calendar/Calendar.mdx +34 -0
  82. package/src/components/ui/Calendar/Calendar.stories.tsx +0 -1
  83. package/src/components/ui/Carousel/Carousel.mdx +31 -0
  84. package/src/components/ui/Carousel/Carousel.stories.tsx +0 -1
  85. package/src/components/ui/DescriptionList/DescriptionList.mdx +28 -0
  86. package/src/components/ui/DescriptionList/DescriptionList.stories.tsx +0 -1
  87. package/src/components/ui/Link/Link.mdx +44 -0
  88. package/src/components/ui/Link/Link.module.css +2 -5
  89. package/src/components/ui/Link/Link.stories.tsx +0 -1
  90. package/src/components/ui/Loading/Loading.mdx +52 -0
  91. package/src/components/ui/Loading/Loading.stories.tsx +0 -1
  92. package/src/components/ui/NotificationBanner/NotificationBanner.mdx +45 -0
  93. package/src/components/ui/NotificationBanner/NotificationBanner.module.css +3 -7
  94. package/src/components/ui/NotificationBanner/NotificationBanner.stories.tsx +2 -2
  95. package/src/components/ui/Pagination/Pagination.mdx +39 -0
  96. package/src/components/ui/Pagination/Pagination.module.css +3 -7
  97. package/src/components/ui/Pagination/Pagination.stories.tsx +0 -1
  98. package/src/components/ui/Progress/Progress.mdx +52 -0
  99. package/src/components/ui/Progress/Progress.module.css +1 -3
  100. package/src/components/ui/Progress/Progress.stories.tsx +0 -1
  101. package/src/components/ui/ProgressCircle/ProgressCircle.mdx +46 -0
  102. package/src/components/ui/ProgressCircle/ProgressCircle.stories.tsx +0 -1
  103. package/src/components/ui/Separator/Separator.mdx +29 -0
  104. package/src/components/ui/Separator/Separator.stories.tsx +0 -1
  105. package/src/components/ui/Skeleton/Skeleton.mdx +36 -0
  106. package/src/components/ui/Skeleton/Skeleton.stories.tsx +0 -1
  107. package/src/components/ui/SkipLink/SkipLink.mdx +34 -0
  108. package/src/components/ui/SkipLink/SkipLink.stories.tsx +0 -1
  109. package/src/components/ui/Table/Table.mdx +38 -0
  110. package/src/components/ui/Table/Table.stories.tsx +0 -1
  111. package/src/components/ui/Tabs/Tabs.mdx +40 -0
  112. package/src/components/ui/Tabs/Tabs.module.css +2 -5
  113. package/src/components/ui/Tabs/Tabs.stories.tsx +0 -1
  114. package/src/components/ui/Tooltip/Tooltip.mdx +43 -0
  115. package/src/components/ui/Tooltip/Tooltip.module.css +2 -5
  116. package/src/components/ui/Tooltip/Tooltip.stories.tsx +6 -6
  117. package/src/components/ui/Typography/Typography.mdx +41 -0
  118. package/src/components/ui/Typography/Typography.stories.tsx +0 -1
  119. package/src/static/logo.svg +8 -0
  120. package/src/stories/Introduction.css +17 -0
  121. package/src/stories/Introduction.mdx +129 -0
package/dist/client.d.cts CHANGED
@@ -245,12 +245,13 @@ declare function Dialog({ children, isOpen, className, onClose }: DialogProps):
245
245
  interface DrawerProps {
246
246
  isOpen: boolean;
247
247
  onClose: () => void;
248
- title: string;
248
+ title: ReactNode;
249
249
  children: ReactNode;
250
250
  side?: 'left' | 'right';
251
251
  className?: string;
252
+ arialLabel?: string;
252
253
  }
253
- declare function Drawer({ isOpen, onClose, title, children, side, className, }: Readonly<DrawerProps>): react_jsx_runtime.JSX.Element;
254
+ declare function Drawer({ isOpen, onClose, title, children, side, arialLabel, className, }: Readonly<DrawerProps>): react_jsx_runtime.JSX.Element;
254
255
 
255
256
  interface DropdownMenuItem {
256
257
  id: string;
@@ -363,11 +364,12 @@ declare function NumberInput({ label, name, value, defaultValue, min, max, step,
363
364
  interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type'> {
364
365
  label: string;
365
366
  name: string;
367
+ description?: string;
366
368
  error?: string;
367
369
  hint?: string;
368
370
  className?: string;
369
371
  }
370
- declare function Radio({ label, name, error, hint, className, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
372
+ declare function Radio({ label, name, description, error, hint, className, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
371
373
 
372
374
  interface SelectOption {
373
375
  value: string;
package/dist/client.d.ts CHANGED
@@ -245,12 +245,13 @@ declare function Dialog({ children, isOpen, className, onClose }: DialogProps):
245
245
  interface DrawerProps {
246
246
  isOpen: boolean;
247
247
  onClose: () => void;
248
- title: string;
248
+ title: ReactNode;
249
249
  children: ReactNode;
250
250
  side?: 'left' | 'right';
251
251
  className?: string;
252
+ arialLabel?: string;
252
253
  }
253
- declare function Drawer({ isOpen, onClose, title, children, side, className, }: Readonly<DrawerProps>): react_jsx_runtime.JSX.Element;
254
+ declare function Drawer({ isOpen, onClose, title, children, side, arialLabel, className, }: Readonly<DrawerProps>): react_jsx_runtime.JSX.Element;
254
255
 
255
256
  interface DropdownMenuItem {
256
257
  id: string;
@@ -363,11 +364,12 @@ declare function NumberInput({ label, name, value, defaultValue, min, max, step,
363
364
  interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type'> {
364
365
  label: string;
365
366
  name: string;
367
+ description?: string;
366
368
  error?: string;
367
369
  hint?: string;
368
370
  className?: string;
369
371
  }
370
- declare function Radio({ label, name, error, hint, className, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
372
+ declare function Radio({ label, name, description, error, hint, className, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
371
373
 
372
374
  interface SelectOption {
373
375
  value: string;
package/dist/client.js CHANGED
@@ -4,7 +4,7 @@
4
4
  import { useId, useState } from "react";
5
5
 
6
6
  // src/components/ui/Accordion/Accordion.module.css
7
- var Accordion_default = {"accordion":"bds0112Accordion-accordion","item":"bds0112Accordion-item","heading":"bds0112Accordion-heading","trigger":"bds0112Accordion-trigger","triggerLabel":"bds0112Accordion-triggerLabel","chevron":"bds0112Accordion-chevron","--open":"bds0112Accordion---open","panel":"bds0112Accordion-panel","panelContent":"bds0112Accordion-panelContent"};
7
+ var Accordion_default = {"accordion":"bds0114Accordion-accordion","item":"bds0114Accordion-item","heading":"bds0114Accordion-heading","trigger":"bds0114Accordion-trigger","triggerLabel":"bds0114Accordion-triggerLabel","chevron":"bds0114Accordion-chevron","--open":"bds0114Accordion---open","panel":"bds0114Accordion-panel","panelContent":"bds0114Accordion-panelContent"};
8
8
 
9
9
  // src/components/ui/Accordion/Accordion.tsx
10
10
  import { cn } from "@boostdev/design-system-foundation";
@@ -72,7 +72,7 @@ function Accordion({
72
72
  }
73
73
 
74
74
  // src/components/ui/Alert/Alert.module.css
75
- var Alert_default = {"alert":"bds0112Alert-alert","--variant_info":"bds0112Alert---variant_info","--variant_success":"bds0112Alert---variant_success","--variant_warning":"bds0112Alert---variant_warning","--variant_error":"bds0112Alert---variant_error","icon":"bds0112Alert-icon","content":"bds0112Alert-content","title":"bds0112Alert-title","dismiss":"bds0112Alert-dismiss"};
75
+ var Alert_default = {"alert":"bds0114Alert-alert","--variant_info":"bds0114Alert---variant_info","--variant_success":"bds0114Alert---variant_success","--variant_warning":"bds0114Alert---variant_warning","--variant_error":"bds0114Alert---variant_error","icon":"bds0114Alert-icon","content":"bds0114Alert-content","title":"bds0114Alert-title","dismiss":"bds0114Alert-dismiss"};
76
76
 
77
77
  // src/components/ui/Alert/Alert.tsx
78
78
  import { cn as cn2 } from "@boostdev/design-system-foundation";
@@ -115,7 +115,7 @@ function Alert({
115
115
  }
116
116
 
117
117
  // src/components/ui/Avatar/Avatar.module.css
118
- var Avatar_default = {"avatar":"bds0112Avatar-avatar","--fallback":"bds0112Avatar---fallback","--size_small":"bds0112Avatar---size_small","--size_medium":"bds0112Avatar---size_medium","--size_large":"bds0112Avatar---size_large","image":"bds0112Avatar-image","initials":"bds0112Avatar-initials"};
118
+ var Avatar_default = {"avatar":"bds0114Avatar-avatar","--fallback":"bds0114Avatar---fallback","--size_small":"bds0114Avatar---size_small","--size_medium":"bds0114Avatar---size_medium","--size_large":"bds0114Avatar---size_large","image":"bds0114Avatar-image","initials":"bds0114Avatar-initials"};
119
119
 
120
120
  // src/components/ui/Avatar/Avatar.tsx
121
121
  import { cn as cn3 } from "@boostdev/design-system-foundation";
@@ -141,7 +141,7 @@ function Avatar({ src, alt, name, size = "medium", className }) {
141
141
  }
142
142
 
143
143
  // src/components/ui/Badge/Badge.module.css
144
- var Badge_default = {"badge":"bds0112Badge-badge","--variant_primary":"bds0112Badge---variant_primary","--variant_secondary":"bds0112Badge---variant_secondary","--variant_success":"bds0112Badge---variant_success","--variant_error":"bds0112Badge---variant_error","--variant_warning":"bds0112Badge---variant_warning"};
144
+ var Badge_default = {"badge":"bds0114Badge-badge","--variant_primary":"bds0114Badge---variant_primary","--variant_secondary":"bds0114Badge---variant_secondary","--variant_success":"bds0114Badge---variant_success","--variant_error":"bds0114Badge---variant_error","--variant_warning":"bds0114Badge---variant_warning"};
145
145
 
146
146
  // src/components/ui/Badge/Badge.tsx
147
147
  import { cn as cn4 } from "@boostdev/design-system-foundation";
@@ -151,7 +151,7 @@ function Badge({ children, variant = "primary", className }) {
151
151
  }
152
152
 
153
153
  // src/components/ui/Breadcrumb/Breadcrumb.module.css
154
- var Breadcrumb_default = {"breadcrumb":"bds0112Breadcrumb-breadcrumb","list":"bds0112Breadcrumb-list","item":"bds0112Breadcrumb-item","link":"bds0112Breadcrumb-link","separator":"bds0112Breadcrumb-separator","current":"bds0112Breadcrumb-current"};
154
+ var Breadcrumb_default = {"breadcrumb":"bds0114Breadcrumb-breadcrumb","list":"bds0114Breadcrumb-list","item":"bds0114Breadcrumb-item","link":"bds0114Breadcrumb-link","separator":"bds0114Breadcrumb-separator","current":"bds0114Breadcrumb-current"};
155
155
 
156
156
  // src/components/ui/Breadcrumb/Breadcrumb.tsx
157
157
  import { cn as cn5 } from "@boostdev/design-system-foundation";
@@ -170,7 +170,7 @@ function Breadcrumb({ items, className }) {
170
170
  import { useState as useState2, useId as useId2 } from "react";
171
171
 
172
172
  // src/components/ui/Calendar/Calendar.module.css
173
- var Calendar_default = {"calendar":"bds0112Calendar-calendar","header":"bds0112Calendar-header","monthYear":"bds0112Calendar-monthYear","navBtn":"bds0112Calendar-navBtn","grid":"bds0112Calendar-grid","weekday":"bds0112Calendar-weekday","empty":"bds0112Calendar-empty","day":"bds0112Calendar-day","disabled":"bds0112Calendar-disabled","selected":"bds0112Calendar-selected","today":"bds0112Calendar-today"};
173
+ var Calendar_default = {"calendar":"bds0114Calendar-calendar","header":"bds0114Calendar-header","monthYear":"bds0114Calendar-monthYear","navBtn":"bds0114Calendar-navBtn","grid":"bds0114Calendar-grid","weekday":"bds0114Calendar-weekday","empty":"bds0114Calendar-empty","day":"bds0114Calendar-day","disabled":"bds0114Calendar-disabled","selected":"bds0114Calendar-selected","today":"bds0114Calendar-today"};
174
174
 
175
175
  // src/components/ui/Calendar/Calendar.tsx
176
176
  import { cn as cn6 } from "@boostdev/design-system-foundation";
@@ -336,7 +336,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
336
336
  import { useRef, useId as useId3 } from "react";
337
337
 
338
338
  // src/components/ui/Carousel/Carousel.module.css
339
- var Carousel_default = {"carousel":"bds0112Carousel-carousel","track":"bds0112Carousel-track","slide":"bds0112Carousel-slide","navBtn":"bds0112Carousel-navBtn"};
339
+ var Carousel_default = {"carousel":"bds0114Carousel-carousel","track":"bds0114Carousel-track","slide":"bds0114Carousel-slide","navBtn":"bds0114Carousel-navBtn"};
340
340
 
341
341
  // src/components/ui/Carousel/Carousel.tsx
342
342
  import { cn as cn7 } from "@boostdev/design-system-foundation";
@@ -389,7 +389,7 @@ function Carousel({ items, label, className }) {
389
389
  }
390
390
 
391
391
  // src/components/ui/DescriptionList/DescriptionList.module.css
392
- var DescriptionList_default = {"list":"bds0112DescriptionList-list","group":"bds0112DescriptionList-group","term":"bds0112DescriptionList-term","details":"bds0112DescriptionList-details","--layout_inline":"bds0112DescriptionList---layout_inline"};
392
+ var DescriptionList_default = {"list":"bds0114DescriptionList-list","group":"bds0114DescriptionList-group","term":"bds0114DescriptionList-term","details":"bds0114DescriptionList-details","--layout_inline":"bds0114DescriptionList---layout_inline"};
393
393
 
394
394
  // src/components/ui/DescriptionList/DescriptionList.tsx
395
395
  import { cn as cn8 } from "@boostdev/design-system-foundation";
@@ -402,7 +402,7 @@ function DescriptionList({ items, layout = "stacked", className }) {
402
402
  }
403
403
 
404
404
  // src/components/ui/Link/Link.module.css
405
- var Link_default = {"link":"bds0112Link-link","--variant_default":"bds0112Link---variant_default","--variant_subtle":"bds0112Link---variant_subtle","--variant_standalone":"bds0112Link---variant_standalone","externalLabel":"bds0112Link-externalLabel"};
405
+ var Link_default = {"link":"bds0114Link-link","--variant_default":"bds0114Link---variant_default","--variant_subtle":"bds0114Link---variant_subtle","--variant_standalone":"bds0114Link---variant_standalone","externalLabel":"bds0114Link-externalLabel"};
406
406
 
407
407
  // src/components/ui/Link/Link.tsx
408
408
  import { cn as cn9 } from "@boostdev/design-system-foundation";
@@ -433,7 +433,7 @@ function Link({
433
433
  }
434
434
 
435
435
  // src/components/ui/Loading/Loading.module.css
436
- var Loading_default = {"loading":"bds0112Loading-loading","spinner":"bds0112Loading-spinner","--size_small":"bds0112Loading---size_small","--size_large":"bds0112Loading---size_large"};
436
+ var Loading_default = {"loading":"bds0114Loading-loading","spinner":"bds0114Loading-spinner","--size_small":"bds0114Loading---size_small","--size_large":"bds0114Loading---size_large"};
437
437
 
438
438
  // src/components/ui/Loading/Loading.tsx
439
439
  import { cn as cn10 } from "@boostdev/design-system-foundation";
@@ -443,7 +443,7 @@ function Loading({ size = "medium", className }) {
443
443
  }
444
444
 
445
445
  // src/components/ui/NotificationBanner/NotificationBanner.module.css
446
- var NotificationBanner_default = {"banner":"bds0112NotificationBanner-banner","--variant_info":"bds0112NotificationBanner---variant_info","--variant_success":"bds0112NotificationBanner---variant_success","--variant_warning":"bds0112NotificationBanner---variant_warning","--variant_error":"bds0112NotificationBanner---variant_error","content":"bds0112NotificationBanner-content","action":"bds0112NotificationBanner-action","dismiss":"bds0112NotificationBanner-dismiss"};
446
+ var NotificationBanner_default = {"banner":"bds0114NotificationBanner-banner","--variant_info":"bds0114NotificationBanner---variant_info","--variant_success":"bds0114NotificationBanner---variant_success","--variant_warning":"bds0114NotificationBanner---variant_warning","--variant_error":"bds0114NotificationBanner---variant_error","content":"bds0114NotificationBanner-content","action":"bds0114NotificationBanner-action","dismiss":"bds0114NotificationBanner-dismiss"};
447
447
 
448
448
  // src/components/ui/NotificationBanner/NotificationBanner.tsx
449
449
  import { cn as cn11 } from "@boostdev/design-system-foundation";
@@ -482,7 +482,7 @@ function NotificationBanner({
482
482
  }
483
483
 
484
484
  // src/components/ui/Pagination/Pagination.module.css
485
- var Pagination_default = {"pagination":"bds0112Pagination-pagination","list":"bds0112Pagination-list","button":"bds0112Pagination-button","--active":"bds0112Pagination---active","--nav":"bds0112Pagination---nav","ellipsis":"bds0112Pagination-ellipsis"};
485
+ var Pagination_default = {"pagination":"bds0114Pagination-pagination","list":"bds0114Pagination-list","button":"bds0114Pagination-button","--active":"bds0114Pagination---active","--nav":"bds0114Pagination---nav","ellipsis":"bds0114Pagination-ellipsis"};
486
486
 
487
487
  // src/components/ui/Pagination/Pagination.tsx
488
488
  import { cn as cn12 } from "@boostdev/design-system-foundation";
@@ -546,7 +546,7 @@ function Pagination({
546
546
  }
547
547
 
548
548
  // src/components/ui/Progress/Progress.module.css
549
- var Progress_default = {"container":"bds0112Progress-container","labelRow":"bds0112Progress-labelRow","label":"bds0112Progress-label","value":"bds0112Progress-value","track":"bds0112Progress-track","--size_small":"bds0112Progress---size_small","--size_medium":"bds0112Progress---size_medium","--size_large":"bds0112Progress---size_large","fill":"bds0112Progress-fill"};
549
+ var Progress_default = {"container":"bds0114Progress-container","labelRow":"bds0114Progress-labelRow","label":"bds0114Progress-label","value":"bds0114Progress-value","track":"bds0114Progress-track","--size_small":"bds0114Progress---size_small","--size_medium":"bds0114Progress---size_medium","--size_large":"bds0114Progress---size_large","fill":"bds0114Progress-fill"};
550
550
 
551
551
  // src/components/ui/Progress/Progress.tsx
552
552
  import { cn as cn13 } from "@boostdev/design-system-foundation";
@@ -584,7 +584,7 @@ function Progress({
584
584
  }
585
585
 
586
586
  // src/components/ui/ProgressCircle/ProgressCircle.module.css
587
- var ProgressCircle_default = {"wrapper":"bds0112ProgressCircle-wrapper","svg":"bds0112ProgressCircle-svg","track":"bds0112ProgressCircle-track","fill":"bds0112ProgressCircle-fill","value":"bds0112ProgressCircle-value","--size_small":"bds0112ProgressCircle---size_small","--size_medium":"bds0112ProgressCircle---size_medium","--size_large":"bds0112ProgressCircle---size_large"};
587
+ var ProgressCircle_default = {"wrapper":"bds0114ProgressCircle-wrapper","svg":"bds0114ProgressCircle-svg","track":"bds0114ProgressCircle-track","fill":"bds0114ProgressCircle-fill","value":"bds0114ProgressCircle-value","--size_small":"bds0114ProgressCircle---size_small","--size_medium":"bds0114ProgressCircle---size_medium","--size_large":"bds0114ProgressCircle---size_large"};
588
588
 
589
589
  // src/components/ui/ProgressCircle/ProgressCircle.tsx
590
590
  import { cn as cn14 } from "@boostdev/design-system-foundation";
@@ -663,7 +663,7 @@ function ProgressCircle({
663
663
  }
664
664
 
665
665
  // src/components/ui/Separator/Separator.module.css
666
- var Separator_default = {"separator":"bds0112Separator-separator","--horizontal":"bds0112Separator---horizontal","--vertical":"bds0112Separator---vertical"};
666
+ var Separator_default = {"separator":"bds0114Separator-separator","--horizontal":"bds0114Separator---horizontal","--vertical":"bds0114Separator---vertical"};
667
667
 
668
668
  // src/components/ui/Separator/Separator.tsx
669
669
  import { cn as cn15 } from "@boostdev/design-system-foundation";
@@ -686,7 +686,7 @@ function Separator({ orientation = "horizontal", className }) {
686
686
  import { cn as cn16 } from "@boostdev/design-system-foundation";
687
687
 
688
688
  // src/components/ui/Skeleton/Skeleton.module.css
689
- var Skeleton_default = {"skeleton":"bds0112Skeleton-skeleton"};
689
+ var Skeleton_default = {"skeleton":"bds0114Skeleton-skeleton"};
690
690
 
691
691
  // src/components/ui/Skeleton/Skeleton.tsx
692
692
  import { jsx as jsx16 } from "react/jsx-runtime";
@@ -695,7 +695,7 @@ function Skeleton({ className }) {
695
695
  }
696
696
 
697
697
  // src/components/ui/SkipLink/SkipLink.module.css
698
- var SkipLink_default = {"skipLink":"bds0112SkipLink-skipLink"};
698
+ var SkipLink_default = {"skipLink":"bds0114SkipLink-skipLink"};
699
699
 
700
700
  // src/components/ui/SkipLink/SkipLink.tsx
701
701
  import { jsx as jsx17 } from "react/jsx-runtime";
@@ -704,7 +704,7 @@ function SkipLink({ href = "#main", children = "Skip to main content" }) {
704
704
  }
705
705
 
706
706
  // src/components/ui/Table/Table.module.css
707
- var Table_default = {"wrapper":"bds0112Table-wrapper","table":"bds0112Table-table","caption":"bds0112Table-caption","thead":"bds0112Table-thead","th":"bds0112Table-th","--sortable":"bds0112Table---sortable","sortButton":"bds0112Table-sortButton","sortIcon":"bds0112Table-sortIcon","--sort-active":"bds0112Table---sort-active","--sort-desc":"bds0112Table---sort-desc","tbody":"bds0112Table-tbody","tr":"bds0112Table-tr","td":"bds0112Table-td"};
707
+ var Table_default = {"wrapper":"bds0114Table-wrapper","table":"bds0114Table-table","caption":"bds0114Table-caption","thead":"bds0114Table-thead","th":"bds0114Table-th","--sortable":"bds0114Table---sortable","sortButton":"bds0114Table-sortButton","sortIcon":"bds0114Table-sortIcon","--sort-active":"bds0114Table---sort-active","--sort-desc":"bds0114Table---sort-desc","tbody":"bds0114Table-tbody","tr":"bds0114Table-tr","td":"bds0114Table-td"};
708
708
 
709
709
  // src/components/ui/Table/Table.tsx
710
710
  import { cn as cn17 } from "@boostdev/design-system-foundation";
@@ -773,7 +773,7 @@ function Table({
773
773
  import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
774
774
 
775
775
  // src/components/ui/Tabs/Tabs.module.css
776
- var Tabs_default = {"tabs":"bds0112Tabs-tabs","tabList":"bds0112Tabs-tabList","tab":"bds0112Tabs-tab","--active":"bds0112Tabs---active","panel":"bds0112Tabs-panel"};
776
+ var Tabs_default = {"tabs":"bds0114Tabs-tabs","tabList":"bds0114Tabs-tabList","tab":"bds0114Tabs-tab","--active":"bds0114Tabs---active","panel":"bds0114Tabs-panel"};
777
777
 
778
778
  // src/components/ui/Tabs/Tabs.tsx
779
779
  import { cn as cn18 } from "@boostdev/design-system-foundation";
@@ -854,7 +854,7 @@ function Tabs({ tabs, defaultTab, className }) {
854
854
  import { cloneElement, isValidElement, useId as useId5 } from "react";
855
855
 
856
856
  // src/components/ui/Tooltip/Tooltip.module.css
857
- var Tooltip_default = {"wrapper":"bds0112Tooltip-wrapper","tooltip":"bds0112Tooltip-tooltip","--placement_top":"bds0112Tooltip---placement_top","--placement_bottom":"bds0112Tooltip---placement_bottom","--placement_left":"bds0112Tooltip---placement_left","--placement_right":"bds0112Tooltip---placement_right"};
857
+ var Tooltip_default = {"wrapper":"bds0114Tooltip-wrapper","tooltip":"bds0114Tooltip-tooltip","--placement_top":"bds0114Tooltip---placement_top","--placement_bottom":"bds0114Tooltip---placement_bottom","--placement_left":"bds0114Tooltip---placement_left","--placement_right":"bds0114Tooltip---placement_right"};
858
858
 
859
859
  // src/components/ui/Tooltip/Tooltip.tsx
860
860
  import { cn as cn19 } from "@boostdev/design-system-foundation";
@@ -884,7 +884,7 @@ function Tooltip({
884
884
  }
885
885
 
886
886
  // src/components/ui/Typography/Typography.module.css
887
- var Typography_default = {"typography":"bds0112Typography-typography","--h1":"bds0112Typography---h1","--h2":"bds0112Typography---h2","--h3":"bds0112Typography---h3","--body":"bds0112Typography---body","--body_s":"bds0112Typography---body_s"};
887
+ var Typography_default = {"typography":"bds0114Typography-typography","--h1":"bds0114Typography---h1","--h2":"bds0114Typography---h2","--h3":"bds0114Typography---h3","--body":"bds0114Typography---body","--body_s":"bds0114Typography---body_s"};
888
888
 
889
889
  // src/components/ui/Typography/Typography.tsx
890
890
  import { cn as cn20 } from "@boostdev/design-system-foundation";
@@ -902,7 +902,7 @@ function Typography({ variant = "body", component, children, className }) {
902
902
  }
903
903
 
904
904
  // src/components/interaction/Button/Button.module.css
905
- var Button_default = {"button":"bds0112Button-button","--primary":"bds0112Button---primary","--secondary":"bds0112Button---secondary","--size_small":"bds0112Button---size_small","--size_medium":"bds0112Button---size_medium","--size_large":"bds0112Button---size_large","--hasPulse":"bds0112Button---hasPulse","prefix":"bds0112Button-prefix","suffix":"bds0112Button-suffix"};
905
+ var Button_default = {"button":"bds0114Button-button","--primary":"bds0114Button---primary","--secondary":"bds0114Button---secondary","--size_small":"bds0114Button---size_small","--size_medium":"bds0114Button---size_medium","--size_large":"bds0114Button---size_large","--hasPulse":"bds0114Button---hasPulse","prefix":"bds0114Button-prefix","suffix":"bds0114Button-suffix"};
906
906
 
907
907
  // src/components/interaction/Button/Button.tsx
908
908
  import { cn as cn21 } from "@boostdev/design-system-foundation";
@@ -978,7 +978,7 @@ function Button({
978
978
  import { useState as useState4, useEffect, useRef as useRef3, useId as useId6, useMemo } from "react";
979
979
 
980
980
  // src/components/interaction/Command/Command.module.css
981
- var Command_default = {"dialog":"bds0112Command-dialog","palette":"bds0112Command-palette","searchRow":"bds0112Command-searchRow","searchIcon":"bds0112Command-searchIcon","search":"bds0112Command-search","escHint":"bds0112Command-escHint","list":"bds0112Command-list","groupList":"bds0112Command-groupList","group":"bds0112Command-group","item":"bds0112Command-item","itemActive":"bds0112Command-itemActive","itemLabel":"bds0112Command-itemLabel","itemDesc":"bds0112Command-itemDesc","shortcut":"bds0112Command-shortcut","empty":"bds0112Command-empty"};
981
+ var Command_default = {"dialog":"bds0114Command-dialog","palette":"bds0114Command-palette","searchRow":"bds0114Command-searchRow","searchIcon":"bds0114Command-searchIcon","search":"bds0114Command-search","escHint":"bds0114Command-escHint","list":"bds0114Command-list","groupList":"bds0114Command-groupList","group":"bds0114Command-group","item":"bds0114Command-item","itemActive":"bds0114Command-itemActive","itemLabel":"bds0114Command-itemLabel","itemDesc":"bds0114Command-itemDesc","shortcut":"bds0114Command-shortcut","empty":"bds0114Command-empty"};
982
982
 
983
983
  // src/components/interaction/Command/Command.tsx
984
984
  import { cn as cn22 } from "@boostdev/design-system-foundation";
@@ -1117,7 +1117,7 @@ function Command({
1117
1117
  import { useEffect as useEffect2, useRef as useRef4 } from "react";
1118
1118
 
1119
1119
  // src/components/interaction/Dialog/Dialog.module.css
1120
- var Dialog_default = {"dialog":"bds0112Dialog-dialog","dialogContent":"bds0112Dialog-dialogContent","closeForm":"bds0112Dialog-closeForm","closeButton":"bds0112Dialog-closeButton"};
1120
+ var Dialog_default = {"dialog":"bds0114Dialog-dialog","dialogContent":"bds0114Dialog-dialogContent","closeForm":"bds0114Dialog-closeForm","closeButton":"bds0114Dialog-closeButton"};
1121
1121
 
1122
1122
  // src/components/interaction/Dialog/Dialog.tsx
1123
1123
  import { cn as cn23 } from "@boostdev/design-system-foundation";
@@ -1173,7 +1173,7 @@ function Dialog({ children, isOpen = false, className, onClose }) {
1173
1173
  import { useEffect as useEffect3, useRef as useRef5 } from "react";
1174
1174
 
1175
1175
  // src/components/interaction/Drawer/Drawer.module.css
1176
- var Drawer_default = {"drawer":"bds0112Drawer-drawer","panel":"bds0112Drawer-panel","--side_right":"bds0112Drawer---side_right","--side_left":"bds0112Drawer---side_left","header":"bds0112Drawer-header","title":"bds0112Drawer-title","closeButton":"bds0112Drawer-closeButton","body":"bds0112Drawer-body"};
1176
+ var Drawer_default = {"drawer":"bds0114Drawer-drawer","panel":"bds0114Drawer-panel","--side_right":"bds0114Drawer---side_right","--side_left":"bds0114Drawer---side_left","header":"bds0114Drawer-header","closeButton":"bds0114Drawer-closeButton","body":"bds0114Drawer-body"};
1177
1177
 
1178
1178
  // src/components/interaction/Drawer/Drawer.tsx
1179
1179
  import { cn as cn24 } from "@boostdev/design-system-foundation";
@@ -1184,6 +1184,7 @@ function Drawer({
1184
1184
  title,
1185
1185
  children,
1186
1186
  side = "right",
1187
+ arialLabel = "",
1187
1188
  className
1188
1189
  }) {
1189
1190
  const dialogRef = useRef5(null);
@@ -1208,12 +1209,12 @@ function Drawer({
1208
1209
  {
1209
1210
  ref: dialogRef,
1210
1211
  className: cn24(Drawer_default.drawer, Drawer_default[`--side_${side}`], className),
1211
- "aria-label": title,
1212
+ "aria-label": arialLabel,
1212
1213
  onClick: handleClick,
1213
1214
  onCancel: handleCancel,
1214
1215
  children: /* @__PURE__ */ jsxs18("div", { className: Drawer_default.panel, children: [
1215
1216
  /* @__PURE__ */ jsxs18("div", { className: Drawer_default.header, children: [
1216
- /* @__PURE__ */ jsx25("h2", { className: Drawer_default.title, children: title }),
1217
+ !!title && title,
1217
1218
  /* @__PURE__ */ jsx25(
1218
1219
  "button",
1219
1220
  {
@@ -1242,7 +1243,7 @@ import {
1242
1243
  } from "react";
1243
1244
 
1244
1245
  // src/components/interaction/DropdownMenu/DropdownMenu.module.css
1245
- var DropdownMenu_default = {"wrapper":"bds0112DropdownMenu-wrapper","menu":"bds0112DropdownMenu-menu","--placement_bottom-start":"bds0112DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds0112DropdownMenu---placement_bottom-end","separator":"bds0112DropdownMenu-separator","item":"bds0112DropdownMenu-item","icon":"bds0112DropdownMenu-icon"};
1246
+ var DropdownMenu_default = {"wrapper":"bds0114DropdownMenu-wrapper","menu":"bds0114DropdownMenu-menu","--placement_bottom-start":"bds0114DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds0114DropdownMenu---placement_bottom-end","separator":"bds0114DropdownMenu-separator","item":"bds0114DropdownMenu-item","icon":"bds0114DropdownMenu-icon"};
1246
1247
 
1247
1248
  // src/components/interaction/DropdownMenu/DropdownMenu.tsx
1248
1249
  import { cn as cn25 } from "@boostdev/design-system-foundation";
@@ -1362,7 +1363,7 @@ import {
1362
1363
  } from "react";
1363
1364
 
1364
1365
  // src/components/interaction/Popover/Popover.module.css
1365
- var Popover_default = {"wrapper":"bds0112Popover-wrapper","panel":"bds0112Popover-panel","--placement_bottom":"bds0112Popover---placement_bottom","--placement_top":"bds0112Popover---placement_top","--placement_right":"bds0112Popover---placement_right","--placement_left":"bds0112Popover---placement_left"};
1366
+ var Popover_default = {"wrapper":"bds0114Popover-wrapper","panel":"bds0114Popover-panel","--placement_bottom":"bds0114Popover---placement_bottom","--placement_top":"bds0114Popover---placement_top","--placement_right":"bds0114Popover---placement_right","--placement_left":"bds0114Popover---placement_left"};
1366
1367
 
1367
1368
  // src/components/interaction/Popover/Popover.tsx
1368
1369
  import { cn as cn26 } from "@boostdev/design-system-foundation";
@@ -1418,7 +1419,7 @@ function Popover({
1418
1419
  }
1419
1420
 
1420
1421
  // src/components/interaction/Rating/Rating.module.css
1421
- var Rating_default = {"rating":"bds0112Rating-rating","star":"bds0112Rating-star","--filled":"bds0112Rating---filled"};
1422
+ var Rating_default = {"rating":"bds0114Rating-rating","star":"bds0114Rating-star","--filled":"bds0114Rating---filled"};
1422
1423
 
1423
1424
  // src/components/interaction/Rating/Rating.tsx
1424
1425
  import { cn as cn27 } from "@boostdev/design-system-foundation";
@@ -1449,7 +1450,7 @@ function Rating({ value, max = 5, className }) {
1449
1450
  import { useState as useState7, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2 } from "react";
1450
1451
 
1451
1452
  // src/components/interaction/Toast/Toast.module.css
1452
- var Toast_default = {"toastContainer":"bds0112Toast-toastContainer","toast":"bds0112Toast-toast","message":"bds0112Toast-message","closeButton":"bds0112Toast-closeButton"};
1453
+ var Toast_default = {"toastContainer":"bds0114Toast-toastContainer","toast":"bds0114Toast-toast","--variant_success":"bds0114Toast---variant_success","--variant_warning":"bds0114Toast---variant_warning","--variant_info":"bds0114Toast---variant_info","--variant_error":"bds0114Toast---variant_error","message":"bds0114Toast-message","closeButton":"bds0114Toast-closeButton"};
1453
1454
 
1454
1455
  // src/components/interaction/Toast/Toast.tsx
1455
1456
  import { cn as cn28 } from "@boostdev/design-system-foundation";
@@ -1499,10 +1500,10 @@ function useToast() {
1499
1500
  import { useId as useId9 } from "react";
1500
1501
 
1501
1502
  // src/components/interaction/form/Checkbox/Checkbox.module.css
1502
- var Checkbox_default = {"checkboxGroup":"bds0112Checkbox-checkboxGroup","inputWrapper":"bds0112Checkbox-inputWrapper","checkbox":"bds0112Checkbox-checkbox","checkboxError":"bds0112Checkbox-checkboxError"};
1503
+ var Checkbox_default = {"checkboxGroup":"bds0114Checkbox-checkboxGroup","inputWrapper":"bds0114Checkbox-inputWrapper","checkbox":"bds0114Checkbox-checkbox","checkboxError":"bds0114Checkbox-checkboxError"};
1503
1504
 
1504
1505
  // src/components/interaction/form/atoms/Message.module.css
1505
- var Message_default = {"error":"bds0112Message-error","hint":"bds0112Message-hint"};
1506
+ var Message_default = {"error":"bds0114Message-error","hint":"bds0114Message-hint"};
1506
1507
 
1507
1508
  // src/components/interaction/form/atoms/Message.tsx
1508
1509
  import { jsx as jsx30 } from "react/jsx-runtime";
@@ -1512,7 +1513,7 @@ var Message = ({ message, type, inputId }) => {
1512
1513
  };
1513
1514
 
1514
1515
  // src/components/interaction/form/atoms/Label.module.css
1515
- var Label_default = {"label":"bds0112Label-label"};
1516
+ var Label_default = {"label":"bds0114Label-label"};
1516
1517
 
1517
1518
  // src/components/interaction/form/atoms/Label.tsx
1518
1519
  import { jsx as jsx31 } from "react/jsx-runtime";
@@ -1524,7 +1525,7 @@ var Label = ({ label, id }) => {
1524
1525
  import { cn as cn30 } from "@boostdev/design-system-foundation";
1525
1526
 
1526
1527
  // src/components/interaction/form/atoms/InputContainer.module.css
1527
- var InputContainer_default = {"container":"bds0112InputContainer-container"};
1528
+ var InputContainer_default = {"container":"bds0114InputContainer-container"};
1528
1529
 
1529
1530
  // src/components/interaction/form/atoms/InputContainer.tsx
1530
1531
  import { cn as cn29 } from "@boostdev/design-system-foundation";
@@ -1571,7 +1572,7 @@ import {
1571
1572
  } from "react";
1572
1573
 
1573
1574
  // src/components/interaction/form/Combobox/Combobox.module.css
1574
- var Combobox_default = {"formGroup":"bds0112Combobox-formGroup","inputWrapper":"bds0112Combobox-inputWrapper","input":"bds0112Combobox-input","inputError":"bds0112Combobox-inputError","chevron":"bds0112Combobox-chevron","listbox":"bds0112Combobox-listbox","option":"bds0112Combobox-option","--highlighted":"bds0112Combobox---highlighted","--selected":"bds0112Combobox---selected","--disabled":"bds0112Combobox---disabled"};
1575
+ var Combobox_default = {"formGroup":"bds0114Combobox-formGroup","inputWrapper":"bds0114Combobox-inputWrapper","input":"bds0114Combobox-input","inputError":"bds0114Combobox-inputError","chevron":"bds0114Combobox-chevron","listbox":"bds0114Combobox-listbox","option":"bds0114Combobox-option","--highlighted":"bds0114Combobox---highlighted","--selected":"bds0114Combobox---selected","--disabled":"bds0114Combobox---disabled"};
1575
1576
 
1576
1577
  // src/components/interaction/form/Combobox/Combobox.tsx
1577
1578
  import { cn as cn31 } from "@boostdev/design-system-foundation";
@@ -1722,7 +1723,7 @@ function Combobox({
1722
1723
  import { useId as useId11, useRef as useRef9, useState as useState9 } from "react";
1723
1724
 
1724
1725
  // src/components/interaction/form/FileInput/FileInput.module.css
1725
- var FileInput_default = {"formGroup":"bds0112FileInput-formGroup","dropZone":"bds0112FileInput-dropZone","isDragging":"bds0112FileInput-isDragging","hasError":"bds0112FileInput-hasError","isDisabled":"bds0112FileInput-isDisabled","icon":"bds0112FileInput-icon","prompt":"bds0112FileInput-prompt","acceptHint":"bds0112FileInput-acceptHint","hiddenInput":"bds0112FileInput-hiddenInput"};
1726
+ var FileInput_default = {"formGroup":"bds0114FileInput-formGroup","dropZone":"bds0114FileInput-dropZone","isDragging":"bds0114FileInput-isDragging","hasError":"bds0114FileInput-hasError","isDisabled":"bds0114FileInput-isDisabled","icon":"bds0114FileInput-icon","prompt":"bds0114FileInput-prompt","acceptHint":"bds0114FileInput-acceptHint","hiddenInput":"bds0114FileInput-hiddenInput"};
1726
1727
 
1727
1728
  // src/components/interaction/form/FileInput/FileInput.tsx
1728
1729
  import { cn as cn32 } from "@boostdev/design-system-foundation";
@@ -1819,7 +1820,7 @@ function FileInput({
1819
1820
  import { useId as useId12 } from "react";
1820
1821
 
1821
1822
  // src/components/interaction/form/FormInput/FormInput.module.css
1822
- var FormInput_default = {"formGroup":"bds0112FormInput-formGroup","input":"bds0112FormInput-input","inputError":"bds0112FormInput-inputError"};
1823
+ var FormInput_default = {"formGroup":"bds0114FormInput-formGroup","input":"bds0114FormInput-input","inputError":"bds0114FormInput-inputError"};
1823
1824
 
1824
1825
  // src/components/interaction/form/FormInput/FormInput.tsx
1825
1826
  import { cn as cn33 } from "@boostdev/design-system-foundation";
@@ -1860,7 +1861,7 @@ function FormInput({
1860
1861
  import { useId as useId13, useRef as useRef10, useState as useState10 } from "react";
1861
1862
 
1862
1863
  // src/components/interaction/form/NumberInput/NumberInput.module.css
1863
- var NumberInput_default = {"formGroup":"bds0112NumberInput-formGroup","inputRow":"bds0112NumberInput-inputRow","input":"bds0112NumberInput-input","inputError":"bds0112NumberInput-inputError","stepper":"bds0112NumberInput-stepper"};
1864
+ var NumberInput_default = {"formGroup":"bds0114NumberInput-formGroup","inputRow":"bds0114NumberInput-inputRow","input":"bds0114NumberInput-input","inputError":"bds0114NumberInput-inputError","stepper":"bds0114NumberInput-stepper"};
1864
1865
 
1865
1866
  // src/components/interaction/form/NumberInput/NumberInput.tsx
1866
1867
  import { cn as cn34 } from "@boostdev/design-system-foundation";
@@ -1955,12 +1956,12 @@ function NumberInput({
1955
1956
  import { useId as useId14 } from "react";
1956
1957
 
1957
1958
  // src/components/interaction/form/Radio/Radio.module.css
1958
- var Radio_default = {"radioGroup":"bds0112Radio-radioGroup","inputWrapper":"bds0112Radio-inputWrapper","radio":"bds0112Radio-radio","radioError":"bds0112Radio-radioError"};
1959
+ var Radio_default = {"radioGroup":"bds0114Radio-radioGroup","inputWrapper":"bds0114Radio-inputWrapper","textWrapper":"bds0114Radio-textWrapper","description":"bds0114Radio-description","radio":"bds0114Radio-radio","radioError":"bds0114Radio-radioError"};
1959
1960
 
1960
1961
  // src/components/interaction/form/Radio/Radio.tsx
1961
1962
  import { cn as cn35 } from "@boostdev/design-system-foundation";
1962
1963
  import { jsx as jsx38, jsxs as jsxs27 } from "react/jsx-runtime";
1963
- function Radio({ label, name, error, hint, className, ...props }) {
1964
+ function Radio({ label, name, description, error, hint, className, ...props }) {
1964
1965
  const id = name + useId14();
1965
1966
  const hintId = id + "hint";
1966
1967
  const errorId = id + "error";
@@ -1979,7 +1980,10 @@ function Radio({ label, name, error, hint, className, ...props }) {
1979
1980
  ...props
1980
1981
  }
1981
1982
  ),
1982
- /* @__PURE__ */ jsx38(Label, { id, label })
1983
+ /* @__PURE__ */ jsxs27("div", { className: Radio_default.textWrapper, children: [
1984
+ /* @__PURE__ */ jsx38(Label, { id, label }),
1985
+ description && /* @__PURE__ */ jsx38("span", { className: Radio_default.description, children: description })
1986
+ ] })
1983
1987
  ] }),
1984
1988
  /* @__PURE__ */ jsx38(Message, { inputId: id, type: "error", message: error }),
1985
1989
  /* @__PURE__ */ jsx38(Message, { inputId: id, type: "hint", message: hint })
@@ -1990,7 +1994,7 @@ function Radio({ label, name, error, hint, className, ...props }) {
1990
1994
  import { useId as useId15 } from "react";
1991
1995
 
1992
1996
  // src/components/interaction/form/Select/Select.module.css
1993
- var Select_default = {"formGroup":"bds0112Select-formGroup","selectWrapper":"bds0112Select-selectWrapper","select":"bds0112Select-select","selectError":"bds0112Select-selectError","chevron":"bds0112Select-chevron"};
1997
+ var Select_default = {"formGroup":"bds0114Select-formGroup","selectWrapper":"bds0114Select-selectWrapper","select":"bds0114Select-select","selectError":"bds0114Select-selectError","chevron":"bds0114Select-chevron"};
1994
1998
 
1995
1999
  // src/components/interaction/form/Select/Select.tsx
1996
2000
  import { cn as cn36 } from "@boostdev/design-system-foundation";
@@ -2038,7 +2042,7 @@ function Select({
2038
2042
  import { useId as useId16, useState as useState11 } from "react";
2039
2043
 
2040
2044
  // src/components/interaction/form/Slider/Slider.module.css
2041
- var Slider_default = {"formGroup":"bds0112Slider-formGroup","labelRow":"bds0112Slider-labelRow","value":"bds0112Slider-value","slider":"bds0112Slider-slider","sliderError":"bds0112Slider-sliderError"};
2045
+ var Slider_default = {"formGroup":"bds0114Slider-formGroup","labelRow":"bds0114Slider-labelRow","value":"bds0114Slider-value","slider":"bds0114Slider-slider","sliderError":"bds0114Slider-sliderError"};
2042
2046
 
2043
2047
  // src/components/interaction/form/Slider/Slider.tsx
2044
2048
  import { cn as cn37 } from "@boostdev/design-system-foundation";
@@ -2099,7 +2103,7 @@ function Slider({
2099
2103
  import { useId as useId17 } from "react";
2100
2104
 
2101
2105
  // src/components/interaction/form/Switch/Switch.module.css
2102
- var Switch_default = {"switchGroup":"bds0112Switch-switchGroup","--size_small":"bds0112Switch---size_small","--size_medium":"bds0112Switch---size_medium","--size_large":"bds0112Switch---size_large","inputWrapper":"bds0112Switch-inputWrapper","trackWrapper":"bds0112Switch-trackWrapper","switch":"bds0112Switch-switch","track":"bds0112Switch-track","thumb":"bds0112Switch-thumb","switchError":"bds0112Switch-switchError"};
2106
+ var Switch_default = {"switchGroup":"bds0114Switch-switchGroup","--size_small":"bds0114Switch---size_small","--size_medium":"bds0114Switch---size_medium","--size_large":"bds0114Switch---size_large","inputWrapper":"bds0114Switch-inputWrapper","trackWrapper":"bds0114Switch-trackWrapper","switch":"bds0114Switch-switch","track":"bds0114Switch-track","thumb":"bds0114Switch-thumb","switchError":"bds0114Switch-switchError"};
2103
2107
 
2104
2108
  // src/components/interaction/form/Switch/Switch.tsx
2105
2109
  import { cn as cn38 } from "@boostdev/design-system-foundation";
@@ -2145,7 +2149,7 @@ function Switch({
2145
2149
  import { useId as useId18 } from "react";
2146
2150
 
2147
2151
  // src/components/interaction/form/Textarea/Textarea.module.css
2148
- var Textarea_default = {"formGroup":"bds0112Textarea-formGroup","textarea":"bds0112Textarea-textarea","textareaError":"bds0112Textarea-textareaError"};
2152
+ var Textarea_default = {"formGroup":"bds0114Textarea-formGroup","textarea":"bds0114Textarea-textarea","textareaError":"bds0114Textarea-textareaError"};
2149
2153
 
2150
2154
  // src/components/interaction/form/Textarea/Textarea.tsx
2151
2155
  import { cn as cn39 } from "@boostdev/design-system-foundation";
@@ -2181,7 +2185,7 @@ function Textarea({
2181
2185
  }
2182
2186
 
2183
2187
  // src/components/layout/ButtonGroup/ButtonGroup.module.css
2184
- var ButtonGroup_default = {"buttonGroup":"bds0112ButtonGroup-buttonGroup","container":"bds0112ButtonGroup-container","--variant__card":"bds0112ButtonGroup---variant__card","--variant__flow":"bds0112ButtonGroup---variant__flow","--variant__modal":"bds0112ButtonGroup---variant__modal","--variant__content":"bds0112ButtonGroup---variant__content","--variant__grid":"bds0112ButtonGroup---variant__grid"};
2188
+ var ButtonGroup_default = {"buttonGroup":"bds0114ButtonGroup-buttonGroup","container":"bds0114ButtonGroup-container","--variant_card":"bds0114ButtonGroup---variant_card","--variant_flow":"bds0114ButtonGroup---variant_flow","--variant_modal":"bds0114ButtonGroup---variant_modal","--variant_content":"bds0114ButtonGroup---variant_content","--variant_grid":"bds0114ButtonGroup---variant_grid"};
2185
2189
 
2186
2190
  // src/components/layout/ButtonGroup/ButtonGroup.tsx
2187
2191
  import { cn as cn40 } from "@boostdev/design-system-foundation";
@@ -2191,7 +2195,7 @@ function ButtonGroup({ children, className, variant }) {
2191
2195
  }
2192
2196
 
2193
2197
  // src/components/layout/Card/Card.module.css
2194
- var Card_default = {"card":"bds0112Card-card","--default":"bds0112Card---default","--elevated":"bds0112Card---elevated","--outlined":"bds0112Card---outlined","--clickable":"bds0112Card---clickable","--padding-none":"bds0112Card---padding-none","--padding-small":"bds0112Card---padding-small","--padding-medium":"bds0112Card---padding-medium","--padding-large":"bds0112Card---padding-large","--text-start":"bds0112Card---text-start","--text-center":"bds0112Card---text-center","--text-end":"bds0112Card---text-end"};
2198
+ var Card_default = {"card":"bds0114Card-card","--default":"bds0114Card---default","--elevated":"bds0114Card---elevated","--outlined":"bds0114Card---outlined","--clickable":"bds0114Card---clickable","--padding-none":"bds0114Card---padding-none","--padding-small":"bds0114Card---padding-small","--padding-medium":"bds0114Card---padding-medium","--padding-large":"bds0114Card---padding-large","--text-start":"bds0114Card---text-start","--text-center":"bds0114Card---text-center","--text-end":"bds0114Card---text-end"};
2195
2199
 
2196
2200
  // src/components/layout/Card/Card.tsx
2197
2201
  import { cn as cn41 } from "@boostdev/design-system-foundation";
@@ -2229,7 +2233,7 @@ function Card({
2229
2233
  }
2230
2234
 
2231
2235
  // src/components/layout/SectionHeader/SectionHeader.module.css
2232
- var SectionHeader_default = {"sectionHeader":"bds0112SectionHeader-sectionHeader","title":"bds0112SectionHeader-title","subtitle":"bds0112SectionHeader-subtitle","--start":"bds0112SectionHeader---start","--center":"bds0112SectionHeader---center","--end":"bds0112SectionHeader---end","--small":"bds0112SectionHeader---small","--medium":"bds0112SectionHeader---medium","--large":"bds0112SectionHeader---large"};
2236
+ var SectionHeader_default = {"sectionHeader":"bds0114SectionHeader-sectionHeader","title":"bds0114SectionHeader-title","subtitle":"bds0114SectionHeader-subtitle","--start":"bds0114SectionHeader---start","--center":"bds0114SectionHeader---center","--end":"bds0114SectionHeader---end","--small":"bds0114SectionHeader---small","--medium":"bds0114SectionHeader---medium","--large":"bds0114SectionHeader---large"};
2233
2237
 
2234
2238
  // src/components/layout/SectionHeader/SectionHeader.tsx
2235
2239
  import { cn as cn42 } from "@boostdev/design-system-foundation";
@@ -2250,7 +2254,7 @@ function SectionHeader({
2250
2254
  }
2251
2255
 
2252
2256
  // src/components/layout/IconWrapper/IconWrapper.module.css
2253
- var IconWrapper_default = {"wrapper":"bds0112IconWrapper-wrapper"};
2257
+ var IconWrapper_default = {"wrapper":"bds0114IconWrapper-wrapper"};
2254
2258
 
2255
2259
  // src/components/layout/IconWrapper/IconWrapper.tsx
2256
2260
  import { cn as cn43 } from "@boostdev/design-system-foundation";