@boostdev/design-system-components 0.1.13 → 0.1.15

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 (128) hide show
  1. package/AGENTS.md +1 -1
  2. package/README.md +1 -1
  3. package/dist/client.cjs +406 -362
  4. package/dist/client.css +560 -511
  5. package/dist/client.d.cts +27 -5
  6. package/dist/client.d.ts +27 -5
  7. package/dist/client.js +405 -362
  8. package/dist/index.cjs +406 -362
  9. package/dist/index.css +560 -511
  10. package/dist/index.d.cts +27 -5
  11. package/dist/index.d.ts +27 -5
  12. package/dist/index.js +405 -362
  13. package/package.json +4 -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 +1 -1
  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/Collapsible/Collapsible.mdx +59 -0
  86. package/src/components/ui/Collapsible/Collapsible.module.css +76 -0
  87. package/src/components/ui/Collapsible/Collapsible.spec.tsx +75 -0
  88. package/src/components/ui/Collapsible/Collapsible.stories.tsx +57 -0
  89. package/src/components/ui/Collapsible/Collapsible.tsx +55 -0
  90. package/src/components/ui/Collapsible/index.ts +2 -0
  91. package/src/components/ui/DescriptionList/DescriptionList.mdx +28 -0
  92. package/src/components/ui/DescriptionList/DescriptionList.stories.tsx +0 -1
  93. package/src/components/ui/Link/Link.mdx +44 -0
  94. package/src/components/ui/Link/Link.module.css +2 -5
  95. package/src/components/ui/Link/Link.stories.tsx +0 -1
  96. package/src/components/ui/Loading/Loading.mdx +52 -0
  97. package/src/components/ui/Loading/Loading.stories.tsx +0 -1
  98. package/src/components/ui/NotificationBanner/NotificationBanner.mdx +45 -0
  99. package/src/components/ui/NotificationBanner/NotificationBanner.module.css +3 -7
  100. package/src/components/ui/NotificationBanner/NotificationBanner.stories.tsx +2 -2
  101. package/src/components/ui/Pagination/Pagination.mdx +39 -0
  102. package/src/components/ui/Pagination/Pagination.module.css +3 -7
  103. package/src/components/ui/Pagination/Pagination.stories.tsx +0 -1
  104. package/src/components/ui/Progress/Progress.mdx +52 -0
  105. package/src/components/ui/Progress/Progress.module.css +1 -3
  106. package/src/components/ui/Progress/Progress.stories.tsx +0 -1
  107. package/src/components/ui/ProgressCircle/ProgressCircle.mdx +46 -0
  108. package/src/components/ui/ProgressCircle/ProgressCircle.stories.tsx +0 -1
  109. package/src/components/ui/Separator/Separator.mdx +29 -0
  110. package/src/components/ui/Separator/Separator.stories.tsx +0 -1
  111. package/src/components/ui/Skeleton/Skeleton.mdx +36 -0
  112. package/src/components/ui/Skeleton/Skeleton.stories.tsx +0 -1
  113. package/src/components/ui/SkipLink/SkipLink.mdx +34 -0
  114. package/src/components/ui/SkipLink/SkipLink.stories.tsx +0 -1
  115. package/src/components/ui/Table/Table.mdx +38 -0
  116. package/src/components/ui/Table/Table.stories.tsx +0 -1
  117. package/src/components/ui/Tabs/Tabs.mdx +40 -0
  118. package/src/components/ui/Tabs/Tabs.module.css +2 -5
  119. package/src/components/ui/Tabs/Tabs.stories.tsx +0 -1
  120. package/src/components/ui/Tooltip/Tooltip.mdx +43 -0
  121. package/src/components/ui/Tooltip/Tooltip.module.css +2 -5
  122. package/src/components/ui/Tooltip/Tooltip.stories.tsx +6 -6
  123. package/src/components/ui/Typography/Typography.mdx +41 -0
  124. package/src/components/ui/Typography/Typography.stories.tsx +0 -1
  125. package/src/index.ts +2 -0
  126. package/src/static/logo.svg +8 -0
  127. package/src/stories/Introduction.css +17 -0
  128. package/src/stories/Introduction.mdx +129 -0
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { useId, useState } from "react";
3
3
 
4
4
  // src/components/ui/Accordion/Accordion.module.css
5
- var Accordion_default = {"accordion":"bds0113Accordion-accordion","item":"bds0113Accordion-item","heading":"bds0113Accordion-heading","trigger":"bds0113Accordion-trigger","triggerLabel":"bds0113Accordion-triggerLabel","chevron":"bds0113Accordion-chevron","--open":"bds0113Accordion---open","panel":"bds0113Accordion-panel","panelContent":"bds0113Accordion-panelContent"};
5
+ var Accordion_default = {"accordion":"bds0115Accordion-accordion","item":"bds0115Accordion-item","heading":"bds0115Accordion-heading","trigger":"bds0115Accordion-trigger","triggerLabel":"bds0115Accordion-triggerLabel","chevron":"bds0115Accordion-chevron","--open":"bds0115Accordion---open","panel":"bds0115Accordion-panel","panelContent":"bds0115Accordion-panelContent"};
6
6
 
7
7
  // src/components/ui/Accordion/Accordion.tsx
8
8
  import { cn } from "@boostdev/design-system-foundation";
@@ -70,7 +70,7 @@ function Accordion({
70
70
  }
71
71
 
72
72
  // src/components/ui/Alert/Alert.module.css
73
- var Alert_default = {"alert":"bds0113Alert-alert","--variant_info":"bds0113Alert---variant_info","--variant_success":"bds0113Alert---variant_success","--variant_warning":"bds0113Alert---variant_warning","--variant_error":"bds0113Alert---variant_error","icon":"bds0113Alert-icon","content":"bds0113Alert-content","title":"bds0113Alert-title","dismiss":"bds0113Alert-dismiss"};
73
+ var Alert_default = {"alert":"bds0115Alert-alert","--variant_info":"bds0115Alert---variant_info","--variant_success":"bds0115Alert---variant_success","--variant_warning":"bds0115Alert---variant_warning","--variant_error":"bds0115Alert---variant_error","icon":"bds0115Alert-icon","content":"bds0115Alert-content","title":"bds0115Alert-title","dismiss":"bds0115Alert-dismiss"};
74
74
 
75
75
  // src/components/ui/Alert/Alert.tsx
76
76
  import { cn as cn2 } from "@boostdev/design-system-foundation";
@@ -113,7 +113,7 @@ function Alert({
113
113
  }
114
114
 
115
115
  // src/components/ui/Avatar/Avatar.module.css
116
- var Avatar_default = {"avatar":"bds0113Avatar-avatar","--fallback":"bds0113Avatar---fallback","--size_small":"bds0113Avatar---size_small","--size_medium":"bds0113Avatar---size_medium","--size_large":"bds0113Avatar---size_large","image":"bds0113Avatar-image","initials":"bds0113Avatar-initials"};
116
+ var Avatar_default = {"avatar":"bds0115Avatar-avatar","--fallback":"bds0115Avatar---fallback","--size_small":"bds0115Avatar---size_small","--size_medium":"bds0115Avatar---size_medium","--size_large":"bds0115Avatar---size_large","image":"bds0115Avatar-image","initials":"bds0115Avatar-initials"};
117
117
 
118
118
  // src/components/ui/Avatar/Avatar.tsx
119
119
  import { cn as cn3 } from "@boostdev/design-system-foundation";
@@ -139,7 +139,7 @@ function Avatar({ src, alt, name, size = "medium", className }) {
139
139
  }
140
140
 
141
141
  // src/components/ui/Badge/Badge.module.css
142
- var Badge_default = {"badge":"bds0113Badge-badge","--variant_primary":"bds0113Badge---variant_primary","--variant_secondary":"bds0113Badge---variant_secondary","--variant_success":"bds0113Badge---variant_success","--variant_error":"bds0113Badge---variant_error","--variant_warning":"bds0113Badge---variant_warning"};
142
+ var Badge_default = {"badge":"bds0115Badge-badge","--variant_primary":"bds0115Badge---variant_primary","--variant_secondary":"bds0115Badge---variant_secondary","--variant_success":"bds0115Badge---variant_success","--variant_error":"bds0115Badge---variant_error","--variant_warning":"bds0115Badge---variant_warning"};
143
143
 
144
144
  // src/components/ui/Badge/Badge.tsx
145
145
  import { cn as cn4 } from "@boostdev/design-system-foundation";
@@ -149,7 +149,7 @@ function Badge({ children, variant = "primary", className }) {
149
149
  }
150
150
 
151
151
  // src/components/ui/Breadcrumb/Breadcrumb.module.css
152
- var Breadcrumb_default = {"breadcrumb":"bds0113Breadcrumb-breadcrumb","list":"bds0113Breadcrumb-list","item":"bds0113Breadcrumb-item","link":"bds0113Breadcrumb-link","separator":"bds0113Breadcrumb-separator","current":"bds0113Breadcrumb-current"};
152
+ var Breadcrumb_default = {"breadcrumb":"bds0115Breadcrumb-breadcrumb","list":"bds0115Breadcrumb-list","item":"bds0115Breadcrumb-item","link":"bds0115Breadcrumb-link","separator":"bds0115Breadcrumb-separator","current":"bds0115Breadcrumb-current"};
153
153
 
154
154
  // src/components/ui/Breadcrumb/Breadcrumb.tsx
155
155
  import { cn as cn5 } from "@boostdev/design-system-foundation";
@@ -164,15 +164,53 @@ function Breadcrumb({ items, className }) {
164
164
  }) }) });
165
165
  }
166
166
 
167
+ // src/components/ui/Collapsible/Collapsible.module.css
168
+ var Collapsible_default = {"collapsible":"bds0115Collapsible-collapsible","summary":"bds0115Collapsible-summary","summaryContent":"bds0115Collapsible-summaryContent","icon":"bds0115Collapsible-icon","content":"bds0115Collapsible-content"};
169
+
170
+ // src/components/ui/Collapsible/Collapsible.tsx
171
+ import { cn as cn6 } from "@boostdev/design-system-foundation";
172
+ import { jsx as jsx6, jsxs as jsxs4 } from "react/jsx-runtime";
173
+ function Collapsible({
174
+ summary,
175
+ children,
176
+ open,
177
+ defaultOpen,
178
+ onToggle,
179
+ name,
180
+ className,
181
+ ...rest
182
+ }) {
183
+ const handleToggle = (e) => {
184
+ onToggle?.(e.currentTarget.open);
185
+ };
186
+ return /* @__PURE__ */ jsxs4(
187
+ "details",
188
+ {
189
+ className: cn6(Collapsible_default.collapsible, className),
190
+ open: open ?? defaultOpen,
191
+ name,
192
+ onToggle: handleToggle,
193
+ ...rest,
194
+ children: [
195
+ /* @__PURE__ */ jsxs4("summary", { className: Collapsible_default.summary, children: [
196
+ /* @__PURE__ */ jsx6("span", { className: Collapsible_default.summaryContent, children: summary }),
197
+ /* @__PURE__ */ jsx6("span", { className: Collapsible_default.icon, "aria-hidden": "true" })
198
+ ] }),
199
+ /* @__PURE__ */ jsx6("div", { className: Collapsible_default.content, children })
200
+ ]
201
+ }
202
+ );
203
+ }
204
+
167
205
  // src/components/ui/Calendar/Calendar.tsx
168
206
  import { useState as useState2, useId as useId2 } from "react";
169
207
 
170
208
  // src/components/ui/Calendar/Calendar.module.css
171
- var Calendar_default = {"calendar":"bds0113Calendar-calendar","header":"bds0113Calendar-header","monthYear":"bds0113Calendar-monthYear","navBtn":"bds0113Calendar-navBtn","grid":"bds0113Calendar-grid","weekday":"bds0113Calendar-weekday","empty":"bds0113Calendar-empty","day":"bds0113Calendar-day","disabled":"bds0113Calendar-disabled","selected":"bds0113Calendar-selected","today":"bds0113Calendar-today"};
209
+ var Calendar_default = {"calendar":"bds0115Calendar-calendar","header":"bds0115Calendar-header","monthYear":"bds0115Calendar-monthYear","navBtn":"bds0115Calendar-navBtn","grid":"bds0115Calendar-grid","weekday":"bds0115Calendar-weekday","empty":"bds0115Calendar-empty","day":"bds0115Calendar-day","disabled":"bds0115Calendar-disabled","selected":"bds0115Calendar-selected","today":"bds0115Calendar-today"};
172
210
 
173
211
  // src/components/ui/Calendar/Calendar.tsx
174
- import { cn as cn6 } from "@boostdev/design-system-foundation";
175
- import { jsx as jsx6, jsxs as jsxs4 } from "react/jsx-runtime";
212
+ import { cn as cn7 } from "@boostdev/design-system-foundation";
213
+ import { jsx as jsx7, jsxs as jsxs5 } from "react/jsx-runtime";
176
214
  var DAYS = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"];
177
215
  var MONTHS = [
178
216
  "January",
@@ -259,54 +297,54 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
259
297
  ...Array.from({ length: daysInMonth }, (_, i) => ({ day: i + 1 }))
260
298
  ];
261
299
  while (cells.length % 7 !== 0) cells.push(null);
262
- return /* @__PURE__ */ jsxs4("div", { className: cn6(Calendar_default.calendar, className), role: "group", "aria-labelledby": titleId, children: [
263
- /* @__PURE__ */ jsxs4("div", { className: Calendar_default.header, children: [
264
- /* @__PURE__ */ jsx6(
300
+ return /* @__PURE__ */ jsxs5("div", { className: cn7(Calendar_default.calendar, className), role: "group", "aria-labelledby": titleId, children: [
301
+ /* @__PURE__ */ jsxs5("div", { className: Calendar_default.header, children: [
302
+ /* @__PURE__ */ jsx7(
265
303
  "button",
266
304
  {
267
305
  type: "button",
268
306
  className: Calendar_default.navBtn,
269
307
  "aria-label": "Previous month",
270
308
  onClick: () => navigate(-1),
271
- children: /* @__PURE__ */ jsx6("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx6("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
309
+ children: /* @__PURE__ */ jsx7("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx7("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
272
310
  }
273
311
  ),
274
- /* @__PURE__ */ jsxs4("span", { id: titleId, className: Calendar_default.monthYear, "aria-live": "polite", children: [
312
+ /* @__PURE__ */ jsxs5("span", { id: titleId, className: Calendar_default.monthYear, "aria-live": "polite", children: [
275
313
  MONTHS[viewMonth],
276
314
  " ",
277
315
  viewYear
278
316
  ] }),
279
- /* @__PURE__ */ jsx6(
317
+ /* @__PURE__ */ jsx7(
280
318
  "button",
281
319
  {
282
320
  type: "button",
283
321
  className: Calendar_default.navBtn,
284
322
  "aria-label": "Next month",
285
323
  onClick: () => navigate(1),
286
- children: /* @__PURE__ */ jsx6("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx6("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
324
+ children: /* @__PURE__ */ jsx7("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx7("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
287
325
  }
288
326
  )
289
327
  ] }),
290
- /* @__PURE__ */ jsxs4(
328
+ /* @__PURE__ */ jsxs5(
291
329
  "table",
292
330
  {
293
331
  className: Calendar_default.grid,
294
332
  role: "grid",
295
333
  "aria-labelledby": titleId,
296
334
  children: [
297
- /* @__PURE__ */ jsx6("thead", { children: /* @__PURE__ */ jsx6("tr", { children: DAYS.map((d) => /* @__PURE__ */ jsx6("th", { scope: "col", abbr: d, className: Calendar_default.weekday, children: d }, d)) }) }),
298
- /* @__PURE__ */ jsx6("tbody", { children: Array.from({ length: cells.length / 7 }, (_, row) => /* @__PURE__ */ jsx6("tr", { children: cells.slice(row * 7, row * 7 + 7).map((cell, col) => {
299
- if (!cell) return /* @__PURE__ */ jsx6("td", { className: Calendar_default.empty, "aria-hidden": "true" }, col);
335
+ /* @__PURE__ */ jsx7("thead", { children: /* @__PURE__ */ jsx7("tr", { children: DAYS.map((d) => /* @__PURE__ */ jsx7("th", { scope: "col", abbr: d, className: Calendar_default.weekday, children: d }, d)) }) }),
336
+ /* @__PURE__ */ jsx7("tbody", { children: Array.from({ length: cells.length / 7 }, (_, row) => /* @__PURE__ */ jsx7("tr", { children: cells.slice(row * 7, row * 7 + 7).map((cell, col) => {
337
+ if (!cell) return /* @__PURE__ */ jsx7("td", { className: Calendar_default.empty, "aria-hidden": "true" }, col);
300
338
  const date = new Date(viewYear, viewMonth, cell.day);
301
339
  const isSelected = selected ? isSameDay(date, selected) : false;
302
340
  const isToday = isSameDay(date, today);
303
341
  const disabled = isOutOfRange(date, min, max);
304
342
  const isFocused = focusedDay === cell.day;
305
- return /* @__PURE__ */ jsx6("td", { role: "gridcell", children: /* @__PURE__ */ jsx6(
343
+ return /* @__PURE__ */ jsx7("td", { role: "gridcell", children: /* @__PURE__ */ jsx7(
306
344
  "button",
307
345
  {
308
346
  type: "button",
309
- className: cn6(
347
+ className: cn7(
310
348
  Calendar_default.day,
311
349
  isSelected && Calendar_default.selected,
312
350
  isToday && !isSelected && Calendar_default.today,
@@ -334,11 +372,11 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
334
372
  import { useRef, useId as useId3 } from "react";
335
373
 
336
374
  // src/components/ui/Carousel/Carousel.module.css
337
- var Carousel_default = {"carousel":"bds0113Carousel-carousel","track":"bds0113Carousel-track","slide":"bds0113Carousel-slide","navBtn":"bds0113Carousel-navBtn"};
375
+ var Carousel_default = {"carousel":"bds0115Carousel-carousel","track":"bds0115Carousel-track","slide":"bds0115Carousel-slide","navBtn":"bds0115Carousel-navBtn"};
338
376
 
339
377
  // src/components/ui/Carousel/Carousel.tsx
340
- import { cn as cn7 } from "@boostdev/design-system-foundation";
341
- import { jsx as jsx7, jsxs as jsxs5 } from "react/jsx-runtime";
378
+ import { cn as cn8 } from "@boostdev/design-system-foundation";
379
+ import { jsx as jsx8, jsxs as jsxs6 } from "react/jsx-runtime";
342
380
  function Carousel({ items, label, className }) {
343
381
  const trackRef = useRef(null);
344
382
  const listId = useId3();
@@ -350,61 +388,61 @@ function Carousel({ items, label, className }) {
350
388
  behavior: "smooth"
351
389
  });
352
390
  };
353
- return /* @__PURE__ */ jsxs5("section", { "aria-label": label, className: cn7(Carousel_default.carousel, className), children: [
354
- /* @__PURE__ */ jsx7(
391
+ return /* @__PURE__ */ jsxs6("section", { "aria-label": label, className: cn8(Carousel_default.carousel, className), children: [
392
+ /* @__PURE__ */ jsx8(
355
393
  "button",
356
394
  {
357
395
  type: "button",
358
- className: cn7(Carousel_default.navBtn, Carousel_default["--prev"]),
396
+ className: cn8(Carousel_default.navBtn, Carousel_default["--prev"]),
359
397
  "aria-label": "Previous",
360
398
  "aria-controls": listId,
361
399
  onClick: () => scroll("prev"),
362
- children: /* @__PURE__ */ jsx7("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx7("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
400
+ children: /* @__PURE__ */ jsx8("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx8("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
363
401
  }
364
402
  ),
365
- /* @__PURE__ */ jsx7(
403
+ /* @__PURE__ */ jsx8(
366
404
  "div",
367
405
  {
368
406
  ref: trackRef,
369
407
  id: listId,
370
408
  role: "list",
371
409
  className: Carousel_default.track,
372
- children: items.map((item, i) => /* @__PURE__ */ jsx7("div", { role: "listitem", className: Carousel_default.slide, children: item }, i))
410
+ children: items.map((item, i) => /* @__PURE__ */ jsx8("div", { role: "listitem", className: Carousel_default.slide, children: item }, i))
373
411
  }
374
412
  ),
375
- /* @__PURE__ */ jsx7(
413
+ /* @__PURE__ */ jsx8(
376
414
  "button",
377
415
  {
378
416
  type: "button",
379
- className: cn7(Carousel_default.navBtn, Carousel_default["--next"]),
417
+ className: cn8(Carousel_default.navBtn, Carousel_default["--next"]),
380
418
  "aria-label": "Next",
381
419
  "aria-controls": listId,
382
420
  onClick: () => scroll("next"),
383
- children: /* @__PURE__ */ jsx7("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx7("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
421
+ children: /* @__PURE__ */ jsx8("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx8("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
384
422
  }
385
423
  )
386
424
  ] });
387
425
  }
388
426
 
389
427
  // src/components/ui/DescriptionList/DescriptionList.module.css
390
- var DescriptionList_default = {"list":"bds0113DescriptionList-list","group":"bds0113DescriptionList-group","term":"bds0113DescriptionList-term","details":"bds0113DescriptionList-details","--layout_inline":"bds0113DescriptionList---layout_inline"};
428
+ var DescriptionList_default = {"list":"bds0115DescriptionList-list","group":"bds0115DescriptionList-group","term":"bds0115DescriptionList-term","details":"bds0115DescriptionList-details","--layout_inline":"bds0115DescriptionList---layout_inline"};
391
429
 
392
430
  // src/components/ui/DescriptionList/DescriptionList.tsx
393
- import { cn as cn8 } from "@boostdev/design-system-foundation";
394
- import { jsx as jsx8, jsxs as jsxs6 } from "react/jsx-runtime";
431
+ import { cn as cn9 } from "@boostdev/design-system-foundation";
432
+ import { jsx as jsx9, jsxs as jsxs7 } from "react/jsx-runtime";
395
433
  function DescriptionList({ items, layout = "stacked", className }) {
396
- return /* @__PURE__ */ jsx8("dl", { className: cn8(DescriptionList_default.list, DescriptionList_default[`--layout_${layout}`], className), children: items.map((item, i) => /* @__PURE__ */ jsxs6("div", { className: DescriptionList_default.group, children: [
397
- /* @__PURE__ */ jsx8("dt", { className: DescriptionList_default.term, children: item.term }),
398
- Array.isArray(item.details) ? item.details.map((d, j) => /* @__PURE__ */ jsx8("dd", { className: DescriptionList_default.details, children: d }, j)) : /* @__PURE__ */ jsx8("dd", { className: DescriptionList_default.details, children: item.details })
434
+ return /* @__PURE__ */ jsx9("dl", { className: cn9(DescriptionList_default.list, DescriptionList_default[`--layout_${layout}`], className), children: items.map((item, i) => /* @__PURE__ */ jsxs7("div", { className: DescriptionList_default.group, children: [
435
+ /* @__PURE__ */ jsx9("dt", { className: DescriptionList_default.term, children: item.term }),
436
+ Array.isArray(item.details) ? item.details.map((d, j) => /* @__PURE__ */ jsx9("dd", { className: DescriptionList_default.details, children: d }, j)) : /* @__PURE__ */ jsx9("dd", { className: DescriptionList_default.details, children: item.details })
399
437
  ] }, i)) });
400
438
  }
401
439
 
402
440
  // src/components/ui/Link/Link.module.css
403
- var Link_default = {"link":"bds0113Link-link","--variant_default":"bds0113Link---variant_default","--variant_subtle":"bds0113Link---variant_subtle","--variant_standalone":"bds0113Link---variant_standalone","externalLabel":"bds0113Link-externalLabel"};
441
+ var Link_default = {"link":"bds0115Link-link","--variant_default":"bds0115Link---variant_default","--variant_subtle":"bds0115Link---variant_subtle","--variant_standalone":"bds0115Link---variant_standalone","externalLabel":"bds0115Link-externalLabel"};
404
442
 
405
443
  // src/components/ui/Link/Link.tsx
406
- import { cn as cn9 } from "@boostdev/design-system-foundation";
407
- import { jsx as jsx9, jsxs as jsxs7 } from "react/jsx-runtime";
444
+ import { cn as cn10 } from "@boostdev/design-system-foundation";
445
+ import { jsx as jsx10, jsxs as jsxs8 } from "react/jsx-runtime";
408
446
  function Link({
409
447
  as,
410
448
  children,
@@ -416,36 +454,36 @@ function Link({
416
454
  }) {
417
455
  const Component = as ?? "a";
418
456
  const externalProps = external ? { target: "_blank", rel: "noreferrer noopener" } : {};
419
- return /* @__PURE__ */ jsxs7(
457
+ return /* @__PURE__ */ jsxs8(
420
458
  Component,
421
459
  {
422
- className: cn9(Link_default.link, Link_default[`--variant_${variant}`], className),
460
+ className: cn10(Link_default.link, Link_default[`--variant_${variant}`], className),
423
461
  ...externalProps,
424
462
  ...props,
425
463
  children: [
426
464
  children,
427
- external && /* @__PURE__ */ jsx9("span", { className: Link_default.externalLabel, children: externalLabel })
465
+ external && /* @__PURE__ */ jsx10("span", { className: Link_default.externalLabel, children: externalLabel })
428
466
  ]
429
467
  }
430
468
  );
431
469
  }
432
470
 
433
471
  // src/components/ui/Loading/Loading.module.css
434
- var Loading_default = {"loading":"bds0113Loading-loading","spinner":"bds0113Loading-spinner","--size_small":"bds0113Loading---size_small","--size_large":"bds0113Loading---size_large"};
472
+ var Loading_default = {"loading":"bds0115Loading-loading","spinner":"bds0115Loading-spinner","--size_small":"bds0115Loading---size_small","--size_large":"bds0115Loading---size_large"};
435
473
 
436
474
  // src/components/ui/Loading/Loading.tsx
437
- import { cn as cn10 } from "@boostdev/design-system-foundation";
438
- import { jsx as jsx10 } from "react/jsx-runtime";
475
+ import { cn as cn11 } from "@boostdev/design-system-foundation";
476
+ import { jsx as jsx11 } from "react/jsx-runtime";
439
477
  function Loading({ size = "medium", className }) {
440
- return /* @__PURE__ */ jsx10("div", { className: cn10(Loading_default.loading, Loading_default[`--size_${size}`], className), children: /* @__PURE__ */ jsx10("div", { className: Loading_default.spinner, role: "status", "aria-label": "Loading" }) });
478
+ return /* @__PURE__ */ jsx11("div", { className: cn11(Loading_default.loading, Loading_default[`--size_${size}`], className), children: /* @__PURE__ */ jsx11("div", { className: Loading_default.spinner, role: "status", "aria-label": "Loading" }) });
441
479
  }
442
480
 
443
481
  // src/components/ui/NotificationBanner/NotificationBanner.module.css
444
- var NotificationBanner_default = {"banner":"bds0113NotificationBanner-banner","--variant_info":"bds0113NotificationBanner---variant_info","--variant_success":"bds0113NotificationBanner---variant_success","--variant_warning":"bds0113NotificationBanner---variant_warning","--variant_error":"bds0113NotificationBanner---variant_error","content":"bds0113NotificationBanner-content","action":"bds0113NotificationBanner-action","dismiss":"bds0113NotificationBanner-dismiss"};
482
+ var NotificationBanner_default = {"banner":"bds0115NotificationBanner-banner","--variant_info":"bds0115NotificationBanner---variant_info","--variant_success":"bds0115NotificationBanner---variant_success","--variant_warning":"bds0115NotificationBanner---variant_warning","--variant_error":"bds0115NotificationBanner---variant_error","content":"bds0115NotificationBanner-content","action":"bds0115NotificationBanner-action","dismiss":"bds0115NotificationBanner-dismiss"};
445
483
 
446
484
  // src/components/ui/NotificationBanner/NotificationBanner.tsx
447
- import { cn as cn11 } from "@boostdev/design-system-foundation";
448
- import { jsx as jsx11, jsxs as jsxs8 } from "react/jsx-runtime";
485
+ import { cn as cn12 } from "@boostdev/design-system-foundation";
486
+ import { jsx as jsx12, jsxs as jsxs9 } from "react/jsx-runtime";
449
487
  function NotificationBanner({
450
488
  variant = "info",
451
489
  children,
@@ -454,24 +492,24 @@ function NotificationBanner({
454
492
  className
455
493
  }) {
456
494
  const isUrgent = variant === "error" || variant === "warning";
457
- return /* @__PURE__ */ jsxs8(
495
+ return /* @__PURE__ */ jsxs9(
458
496
  "div",
459
497
  {
460
498
  role: isUrgent ? "alert" : "status",
461
499
  "aria-live": isUrgent ? "assertive" : "polite",
462
500
  "aria-atomic": "true",
463
- className: cn11(NotificationBanner_default.banner, NotificationBanner_default[`--variant_${variant}`], className),
501
+ className: cn12(NotificationBanner_default.banner, NotificationBanner_default[`--variant_${variant}`], className),
464
502
  children: [
465
- /* @__PURE__ */ jsx11("div", { className: NotificationBanner_default.content, children }),
466
- action && /* @__PURE__ */ jsx11("div", { className: NotificationBanner_default.action, children: action }),
467
- onDismiss && /* @__PURE__ */ jsx11(
503
+ /* @__PURE__ */ jsx12("div", { className: NotificationBanner_default.content, children }),
504
+ action && /* @__PURE__ */ jsx12("div", { className: NotificationBanner_default.action, children: action }),
505
+ onDismiss && /* @__PURE__ */ jsx12(
468
506
  "button",
469
507
  {
470
508
  type: "button",
471
509
  className: NotificationBanner_default.dismiss,
472
510
  onClick: onDismiss,
473
511
  "aria-label": "Dismiss notification",
474
- children: /* @__PURE__ */ jsx11("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
512
+ children: /* @__PURE__ */ jsx12("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
475
513
  }
476
514
  )
477
515
  ]
@@ -480,11 +518,11 @@ function NotificationBanner({
480
518
  }
481
519
 
482
520
  // src/components/ui/Pagination/Pagination.module.css
483
- var Pagination_default = {"pagination":"bds0113Pagination-pagination","list":"bds0113Pagination-list","button":"bds0113Pagination-button","--active":"bds0113Pagination---active","--nav":"bds0113Pagination---nav","ellipsis":"bds0113Pagination-ellipsis"};
521
+ var Pagination_default = {"pagination":"bds0115Pagination-pagination","list":"bds0115Pagination-list","button":"bds0115Pagination-button","--active":"bds0115Pagination---active","--nav":"bds0115Pagination---nav","ellipsis":"bds0115Pagination-ellipsis"};
484
522
 
485
523
  // src/components/ui/Pagination/Pagination.tsx
486
- import { cn as cn12 } from "@boostdev/design-system-foundation";
487
- import { jsx as jsx12, jsxs as jsxs9 } from "react/jsx-runtime";
524
+ import { cn as cn13 } from "@boostdev/design-system-foundation";
525
+ import { jsx as jsx13, jsxs as jsxs10 } from "react/jsx-runtime";
488
526
  function getPageRange(current, total) {
489
527
  const delta = 1;
490
528
  const range = [];
@@ -504,24 +542,24 @@ function Pagination({
504
542
  className
505
543
  }) {
506
544
  const pages = getPageRange(currentPage, totalPages);
507
- return /* @__PURE__ */ jsx12("nav", { "aria-label": "Pagination", className: cn12(Pagination_default.pagination, className), children: /* @__PURE__ */ jsxs9("ul", { className: Pagination_default.list, children: [
508
- /* @__PURE__ */ jsx12("li", { children: /* @__PURE__ */ jsx12(
545
+ return /* @__PURE__ */ jsx13("nav", { "aria-label": "Pagination", className: cn13(Pagination_default.pagination, className), children: /* @__PURE__ */ jsxs10("ul", { className: Pagination_default.list, children: [
546
+ /* @__PURE__ */ jsx13("li", { children: /* @__PURE__ */ jsx13(
509
547
  "button",
510
548
  {
511
549
  type: "button",
512
- className: cn12(Pagination_default.button, Pagination_default["--nav"]),
550
+ className: cn13(Pagination_default.button, Pagination_default["--nav"]),
513
551
  onClick: () => onPageChange(currentPage - 1),
514
552
  disabled: currentPage <= 1,
515
553
  "aria-label": "Previous page",
516
- children: /* @__PURE__ */ jsx12("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
554
+ children: /* @__PURE__ */ jsx13("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx13("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
517
555
  }
518
556
  ) }),
519
557
  pages.map(
520
- (page, index) => page === "..." ? /* @__PURE__ */ jsx12("li", { children: /* @__PURE__ */ jsx12("span", { className: Pagination_default.ellipsis, "aria-hidden": "true", children: "\u2026" }) }, `ellipsis-${index}`) : /* @__PURE__ */ jsx12("li", { children: /* @__PURE__ */ jsx12(
558
+ (page, index) => page === "..." ? /* @__PURE__ */ jsx13("li", { children: /* @__PURE__ */ jsx13("span", { className: Pagination_default.ellipsis, "aria-hidden": "true", children: "\u2026" }) }, `ellipsis-${index}`) : /* @__PURE__ */ jsx13("li", { children: /* @__PURE__ */ jsx13(
521
559
  "button",
522
560
  {
523
561
  type: "button",
524
- className: cn12(Pagination_default.button, currentPage === page ? Pagination_default["--active"] : void 0),
562
+ className: cn13(Pagination_default.button, currentPage === page ? Pagination_default["--active"] : void 0),
525
563
  onClick: () => onPageChange(page),
526
564
  "aria-label": `Page ${page}`,
527
565
  "aria-current": currentPage === page ? "page" : void 0,
@@ -529,26 +567,26 @@ function Pagination({
529
567
  }
530
568
  ) }, page)
531
569
  ),
532
- /* @__PURE__ */ jsx12("li", { children: /* @__PURE__ */ jsx12(
570
+ /* @__PURE__ */ jsx13("li", { children: /* @__PURE__ */ jsx13(
533
571
  "button",
534
572
  {
535
573
  type: "button",
536
- className: cn12(Pagination_default.button, Pagination_default["--nav"]),
574
+ className: cn13(Pagination_default.button, Pagination_default["--nav"]),
537
575
  onClick: () => onPageChange(currentPage + 1),
538
576
  disabled: currentPage >= totalPages,
539
577
  "aria-label": "Next page",
540
- children: /* @__PURE__ */ jsx12("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
578
+ children: /* @__PURE__ */ jsx13("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx13("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
541
579
  }
542
580
  ) })
543
581
  ] }) });
544
582
  }
545
583
 
546
584
  // src/components/ui/Progress/Progress.module.css
547
- var Progress_default = {"container":"bds0113Progress-container","labelRow":"bds0113Progress-labelRow","label":"bds0113Progress-label","value":"bds0113Progress-value","track":"bds0113Progress-track","--size_small":"bds0113Progress---size_small","--size_medium":"bds0113Progress---size_medium","--size_large":"bds0113Progress---size_large","fill":"bds0113Progress-fill"};
585
+ var Progress_default = {"container":"bds0115Progress-container","labelRow":"bds0115Progress-labelRow","label":"bds0115Progress-label","value":"bds0115Progress-value","track":"bds0115Progress-track","--size_small":"bds0115Progress---size_small","--size_medium":"bds0115Progress---size_medium","--size_large":"bds0115Progress---size_large","fill":"bds0115Progress-fill"};
548
586
 
549
587
  // src/components/ui/Progress/Progress.tsx
550
- import { cn as cn13 } from "@boostdev/design-system-foundation";
551
- import { jsx as jsx13, jsxs as jsxs10 } from "react/jsx-runtime";
588
+ import { cn as cn14 } from "@boostdev/design-system-foundation";
589
+ import { jsx as jsx14, jsxs as jsxs11 } from "react/jsx-runtime";
552
590
  function Progress({
553
591
  value,
554
592
  max = 100,
@@ -558,15 +596,15 @@ function Progress({
558
596
  className
559
597
  }) {
560
598
  const percentage = Math.min(100, Math.max(0, value / max * 100));
561
- return /* @__PURE__ */ jsxs10("div", { className: cn13(Progress_default.container, className), children: [
562
- showLabel && /* @__PURE__ */ jsxs10("div", { className: Progress_default.labelRow, children: [
563
- /* @__PURE__ */ jsx13("span", { className: Progress_default.label, children: label }),
564
- /* @__PURE__ */ jsxs10("span", { className: Progress_default.value, children: [
599
+ return /* @__PURE__ */ jsxs11("div", { className: cn14(Progress_default.container, className), children: [
600
+ showLabel && /* @__PURE__ */ jsxs11("div", { className: Progress_default.labelRow, children: [
601
+ /* @__PURE__ */ jsx14("span", { className: Progress_default.label, children: label }),
602
+ /* @__PURE__ */ jsxs11("span", { className: Progress_default.value, children: [
565
603
  Math.round(percentage),
566
604
  "%"
567
605
  ] })
568
606
  ] }),
569
- /* @__PURE__ */ jsx13(
607
+ /* @__PURE__ */ jsx14(
570
608
  "div",
571
609
  {
572
610
  role: "progressbar",
@@ -574,19 +612,19 @@ function Progress({
574
612
  "aria-valuenow": value,
575
613
  "aria-valuemin": 0,
576
614
  "aria-valuemax": max,
577
- className: cn13(Progress_default.track, Progress_default[`--size_${size}`]),
578
- children: /* @__PURE__ */ jsx13("div", { className: Progress_default.fill, style: { width: `${percentage}%` } })
615
+ className: cn14(Progress_default.track, Progress_default[`--size_${size}`]),
616
+ children: /* @__PURE__ */ jsx14("div", { className: Progress_default.fill, style: { width: `${percentage}%` } })
579
617
  }
580
618
  )
581
619
  ] });
582
620
  }
583
621
 
584
622
  // src/components/ui/ProgressCircle/ProgressCircle.module.css
585
- var ProgressCircle_default = {"wrapper":"bds0113ProgressCircle-wrapper","svg":"bds0113ProgressCircle-svg","track":"bds0113ProgressCircle-track","fill":"bds0113ProgressCircle-fill","value":"bds0113ProgressCircle-value","--size_small":"bds0113ProgressCircle---size_small","--size_medium":"bds0113ProgressCircle---size_medium","--size_large":"bds0113ProgressCircle---size_large"};
623
+ var ProgressCircle_default = {"wrapper":"bds0115ProgressCircle-wrapper","svg":"bds0115ProgressCircle-svg","track":"bds0115ProgressCircle-track","fill":"bds0115ProgressCircle-fill","value":"bds0115ProgressCircle-value","--size_small":"bds0115ProgressCircle---size_small","--size_medium":"bds0115ProgressCircle---size_medium","--size_large":"bds0115ProgressCircle---size_large"};
586
624
 
587
625
  // src/components/ui/ProgressCircle/ProgressCircle.tsx
588
- import { cn as cn14 } from "@boostdev/design-system-foundation";
589
- import { jsx as jsx14, jsxs as jsxs11 } from "react/jsx-runtime";
626
+ import { cn as cn15 } from "@boostdev/design-system-foundation";
627
+ import { jsx as jsx15, jsxs as jsxs12 } from "react/jsx-runtime";
590
628
  var SIZE_PX = { small: 40, medium: 64, large: 96 };
591
629
  var STROKE_WIDTH = 4;
592
630
  function ProgressCircle({
@@ -603,7 +641,7 @@ function ProgressCircle({
603
641
  const circumference = 2 * Math.PI * radius;
604
642
  const offset = circumference - percentage / 100 * circumference;
605
643
  const cx = px / 2;
606
- return /* @__PURE__ */ jsxs11(
644
+ return /* @__PURE__ */ jsxs12(
607
645
  "div",
608
646
  {
609
647
  role: "progressbar",
@@ -611,9 +649,9 @@ function ProgressCircle({
611
649
  "aria-valuenow": value,
612
650
  "aria-valuemin": 0,
613
651
  "aria-valuemax": max,
614
- className: cn14(ProgressCircle_default.wrapper, ProgressCircle_default[`--size_${size}`], className),
652
+ className: cn15(ProgressCircle_default.wrapper, ProgressCircle_default[`--size_${size}`], className),
615
653
  children: [
616
- /* @__PURE__ */ jsxs11(
654
+ /* @__PURE__ */ jsxs12(
617
655
  "svg",
618
656
  {
619
657
  width: px,
@@ -622,7 +660,7 @@ function ProgressCircle({
622
660
  "aria-hidden": "true",
623
661
  className: ProgressCircle_default.svg,
624
662
  children: [
625
- /* @__PURE__ */ jsx14(
663
+ /* @__PURE__ */ jsx15(
626
664
  "circle",
627
665
  {
628
666
  className: ProgressCircle_default.track,
@@ -633,7 +671,7 @@ function ProgressCircle({
633
671
  fill: "none"
634
672
  }
635
673
  ),
636
- /* @__PURE__ */ jsx14(
674
+ /* @__PURE__ */ jsx15(
637
675
  "circle",
638
676
  {
639
677
  className: ProgressCircle_default.fill,
@@ -651,7 +689,7 @@ function ProgressCircle({
651
689
  ]
652
690
  }
653
691
  ),
654
- showValue && /* @__PURE__ */ jsxs11("span", { className: ProgressCircle_default.value, "aria-hidden": "true", children: [
692
+ showValue && /* @__PURE__ */ jsxs12("span", { className: ProgressCircle_default.value, "aria-hidden": "true", children: [
655
693
  Math.round(percentage),
656
694
  "%"
657
695
  ] })
@@ -661,52 +699,52 @@ function ProgressCircle({
661
699
  }
662
700
 
663
701
  // src/components/ui/Separator/Separator.module.css
664
- var Separator_default = {"separator":"bds0113Separator-separator","--horizontal":"bds0113Separator---horizontal","--vertical":"bds0113Separator---vertical"};
702
+ var Separator_default = {"separator":"bds0115Separator-separator","--horizontal":"bds0115Separator---horizontal","--vertical":"bds0115Separator---vertical"};
665
703
 
666
704
  // src/components/ui/Separator/Separator.tsx
667
- import { cn as cn15 } from "@boostdev/design-system-foundation";
668
- import { jsx as jsx15 } from "react/jsx-runtime";
705
+ import { cn as cn16 } from "@boostdev/design-system-foundation";
706
+ import { jsx as jsx16 } from "react/jsx-runtime";
669
707
  function Separator({ orientation = "horizontal", className }) {
670
708
  if (orientation === "vertical") {
671
- return /* @__PURE__ */ jsx15(
709
+ return /* @__PURE__ */ jsx16(
672
710
  "div",
673
711
  {
674
712
  role: "separator",
675
713
  "aria-orientation": "vertical",
676
- className: cn15(Separator_default.separator, Separator_default["--vertical"], className)
714
+ className: cn16(Separator_default.separator, Separator_default["--vertical"], className)
677
715
  }
678
716
  );
679
717
  }
680
- return /* @__PURE__ */ jsx15("hr", { className: cn15(Separator_default.separator, Separator_default["--horizontal"], className) });
718
+ return /* @__PURE__ */ jsx16("hr", { className: cn16(Separator_default.separator, Separator_default["--horizontal"], className) });
681
719
  }
682
720
 
683
721
  // src/components/ui/Skeleton/Skeleton.tsx
684
- import { cn as cn16 } from "@boostdev/design-system-foundation";
722
+ import { cn as cn17 } from "@boostdev/design-system-foundation";
685
723
 
686
724
  // src/components/ui/Skeleton/Skeleton.module.css
687
- var Skeleton_default = {"skeleton":"bds0113Skeleton-skeleton"};
725
+ var Skeleton_default = {"skeleton":"bds0115Skeleton-skeleton"};
688
726
 
689
727
  // src/components/ui/Skeleton/Skeleton.tsx
690
- import { jsx as jsx16 } from "react/jsx-runtime";
728
+ import { jsx as jsx17 } from "react/jsx-runtime";
691
729
  function Skeleton({ className }) {
692
- return /* @__PURE__ */ jsx16("div", { "aria-hidden": "true", className: cn16(Skeleton_default.skeleton, className) });
730
+ return /* @__PURE__ */ jsx17("div", { "aria-hidden": "true", className: cn17(Skeleton_default.skeleton, className) });
693
731
  }
694
732
 
695
733
  // src/components/ui/SkipLink/SkipLink.module.css
696
- var SkipLink_default = {"skipLink":"bds0113SkipLink-skipLink"};
734
+ var SkipLink_default = {"skipLink":"bds0115SkipLink-skipLink"};
697
735
 
698
736
  // src/components/ui/SkipLink/SkipLink.tsx
699
- import { jsx as jsx17 } from "react/jsx-runtime";
737
+ import { jsx as jsx18 } from "react/jsx-runtime";
700
738
  function SkipLink({ href = "#main", children = "Skip to main content" }) {
701
- return /* @__PURE__ */ jsx17("a", { href, className: SkipLink_default.skipLink, children });
739
+ return /* @__PURE__ */ jsx18("a", { href, className: SkipLink_default.skipLink, children });
702
740
  }
703
741
 
704
742
  // src/components/ui/Table/Table.module.css
705
- var Table_default = {"wrapper":"bds0113Table-wrapper","table":"bds0113Table-table","caption":"bds0113Table-caption","thead":"bds0113Table-thead","th":"bds0113Table-th","--sortable":"bds0113Table---sortable","sortButton":"bds0113Table-sortButton","sortIcon":"bds0113Table-sortIcon","--sort-active":"bds0113Table---sort-active","--sort-desc":"bds0113Table---sort-desc","tbody":"bds0113Table-tbody","tr":"bds0113Table-tr","td":"bds0113Table-td"};
743
+ var Table_default = {"wrapper":"bds0115Table-wrapper","table":"bds0115Table-table","caption":"bds0115Table-caption","thead":"bds0115Table-thead","th":"bds0115Table-th","--sortable":"bds0115Table---sortable","sortButton":"bds0115Table-sortButton","sortIcon":"bds0115Table-sortIcon","--sort-active":"bds0115Table---sort-active","--sort-desc":"bds0115Table---sort-desc","tbody":"bds0115Table-tbody","tr":"bds0115Table-tr","td":"bds0115Table-td"};
706
744
 
707
745
  // src/components/ui/Table/Table.tsx
708
- import { cn as cn17 } from "@boostdev/design-system-foundation";
709
- import { jsx as jsx18, jsxs as jsxs12 } from "react/jsx-runtime";
746
+ import { cn as cn18 } from "@boostdev/design-system-foundation";
747
+ import { jsx as jsx19, jsxs as jsxs13 } from "react/jsx-runtime";
710
748
  function Table({
711
749
  columns,
712
750
  rows,
@@ -725,15 +763,15 @@ function Table({
725
763
  if (sortKey !== key) return "none";
726
764
  return sortDirection === "asc" ? "ascending" : "descending";
727
765
  };
728
- return /* @__PURE__ */ jsx18("div", { className: cn17(Table_default.wrapper, className), children: /* @__PURE__ */ jsxs12("table", { className: Table_default.table, children: [
729
- caption && /* @__PURE__ */ jsx18("caption", { className: Table_default.caption, children: caption }),
730
- /* @__PURE__ */ jsx18("thead", { className: Table_default.thead, children: /* @__PURE__ */ jsx18("tr", { children: columns.map((col) => /* @__PURE__ */ jsx18(
766
+ return /* @__PURE__ */ jsx19("div", { className: cn18(Table_default.wrapper, className), children: /* @__PURE__ */ jsxs13("table", { className: Table_default.table, children: [
767
+ caption && /* @__PURE__ */ jsx19("caption", { className: Table_default.caption, children: caption }),
768
+ /* @__PURE__ */ jsx19("thead", { className: Table_default.thead, children: /* @__PURE__ */ jsx19("tr", { children: columns.map((col) => /* @__PURE__ */ jsx19(
731
769
  "th",
732
770
  {
733
771
  scope: "col",
734
772
  "aria-sort": col.sortable ? getAriaSort(col.key) : void 0,
735
- className: cn17(Table_default.th, col.sortable ? Table_default["--sortable"] : void 0),
736
- children: col.sortable ? /* @__PURE__ */ jsxs12(
773
+ className: cn18(Table_default.th, col.sortable ? Table_default["--sortable"] : void 0),
774
+ children: col.sortable ? /* @__PURE__ */ jsxs13(
737
775
  "button",
738
776
  {
739
777
  type: "button",
@@ -741,11 +779,11 @@ function Table({
741
779
  onClick: () => handleSort(col.key),
742
780
  children: [
743
781
  col.header,
744
- /* @__PURE__ */ jsx18(
782
+ /* @__PURE__ */ jsx19(
745
783
  "svg",
746
784
  {
747
785
  "aria-hidden": "true",
748
- className: cn17(
786
+ className: cn18(
749
787
  Table_default.sortIcon,
750
788
  sortKey === col.key ? Table_default["--sort-active"] : void 0,
751
789
  sortKey === col.key && sortDirection === "desc" ? Table_default["--sort-desc"] : void 0
@@ -754,7 +792,7 @@ function Table({
754
792
  fill: "none",
755
793
  stroke: "currentColor",
756
794
  strokeWidth: "2",
757
- children: /* @__PURE__ */ jsx18("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" })
795
+ children: /* @__PURE__ */ jsx19("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" })
758
796
  }
759
797
  )
760
798
  ]
@@ -763,7 +801,7 @@ function Table({
763
801
  },
764
802
  col.key
765
803
  )) }) }),
766
- /* @__PURE__ */ jsx18("tbody", { className: Table_default.tbody, children: rows.map((row, rowIndex) => /* @__PURE__ */ jsx18("tr", { className: Table_default.tr, children: columns.map((col) => /* @__PURE__ */ jsx18("td", { className: Table_default.td, children: col.render ? col.render(row) : String(row[col.key] ?? "") }, col.key)) }, rowIndex)) })
804
+ /* @__PURE__ */ jsx19("tbody", { className: Table_default.tbody, children: rows.map((row, rowIndex) => /* @__PURE__ */ jsx19("tr", { className: Table_default.tr, children: columns.map((col) => /* @__PURE__ */ jsx19("td", { className: Table_default.td, children: col.render ? col.render(row) : String(row[col.key] ?? "") }, col.key)) }, rowIndex)) })
767
805
  ] }) });
768
806
  }
769
807
 
@@ -771,11 +809,11 @@ function Table({
771
809
  import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
772
810
 
773
811
  // src/components/ui/Tabs/Tabs.module.css
774
- var Tabs_default = {"tabs":"bds0113Tabs-tabs","tabList":"bds0113Tabs-tabList","tab":"bds0113Tabs-tab","--active":"bds0113Tabs---active","panel":"bds0113Tabs-panel"};
812
+ var Tabs_default = {"tabs":"bds0115Tabs-tabs","tabList":"bds0115Tabs-tabList","tab":"bds0115Tabs-tab","--active":"bds0115Tabs---active","panel":"bds0115Tabs-panel"};
775
813
 
776
814
  // src/components/ui/Tabs/Tabs.tsx
777
- import { cn as cn18 } from "@boostdev/design-system-foundation";
778
- import { jsx as jsx19, jsxs as jsxs13 } from "react/jsx-runtime";
815
+ import { cn as cn19 } from "@boostdev/design-system-foundation";
816
+ import { jsx as jsx20, jsxs as jsxs14 } from "react/jsx-runtime";
779
817
  function Tabs({ tabs, defaultTab, className }) {
780
818
  const baseId = useId4();
781
819
  const [activeTab, setActiveTab] = useState3(defaultTab ?? tabs[0]?.id);
@@ -801,12 +839,12 @@ function Tabs({ tabs, defaultTab, className }) {
801
839
  focusAt(enabledIndexes[enabledIndexes.length - 1]);
802
840
  }
803
841
  };
804
- return /* @__PURE__ */ jsxs13("div", { className: cn18(Tabs_default.tabs, className), children: [
805
- /* @__PURE__ */ jsx19("div", { role: "tablist", className: Tabs_default.tabList, children: tabs.map((tab, i) => {
842
+ return /* @__PURE__ */ jsxs14("div", { className: cn19(Tabs_default.tabs, className), children: [
843
+ /* @__PURE__ */ jsx20("div", { role: "tablist", className: Tabs_default.tabList, children: tabs.map((tab, i) => {
806
844
  const tabId = `${baseId}-tab-${tab.id}`;
807
845
  const panelId = `${baseId}-panel-${tab.id}`;
808
846
  const isActive = activeTab === tab.id;
809
- return /* @__PURE__ */ jsx19(
847
+ return /* @__PURE__ */ jsx20(
810
848
  "button",
811
849
  {
812
850
  ref: (el) => {
@@ -819,7 +857,7 @@ function Tabs({ tabs, defaultTab, className }) {
819
857
  "aria-controls": panelId,
820
858
  tabIndex: isActive ? 0 : -1,
821
859
  disabled: tab.disabled,
822
- className: cn18(Tabs_default.tab, isActive ? Tabs_default["--active"] : void 0),
860
+ className: cn19(Tabs_default.tab, isActive ? Tabs_default["--active"] : void 0),
823
861
  onClick: () => setActiveTab(tab.id),
824
862
  onKeyDown: (e) => handleKeyDown(e, i),
825
863
  children: tab.label
@@ -831,7 +869,7 @@ function Tabs({ tabs, defaultTab, className }) {
831
869
  const tabId = `${baseId}-tab-${tab.id}`;
832
870
  const panelId = `${baseId}-panel-${tab.id}`;
833
871
  const isActive = activeTab === tab.id;
834
- return /* @__PURE__ */ jsx19(
872
+ return /* @__PURE__ */ jsx20(
835
873
  "div",
836
874
  {
837
875
  id: panelId,
@@ -852,11 +890,11 @@ function Tabs({ tabs, defaultTab, className }) {
852
890
  import { cloneElement, isValidElement, useId as useId5 } from "react";
853
891
 
854
892
  // src/components/ui/Tooltip/Tooltip.module.css
855
- var Tooltip_default = {"wrapper":"bds0113Tooltip-wrapper","tooltip":"bds0113Tooltip-tooltip","--placement_top":"bds0113Tooltip---placement_top","--placement_bottom":"bds0113Tooltip---placement_bottom","--placement_left":"bds0113Tooltip---placement_left","--placement_right":"bds0113Tooltip---placement_right"};
893
+ var Tooltip_default = {"wrapper":"bds0115Tooltip-wrapper","tooltip":"bds0115Tooltip-tooltip","--placement_top":"bds0115Tooltip---placement_top","--placement_bottom":"bds0115Tooltip---placement_bottom","--placement_left":"bds0115Tooltip---placement_left","--placement_right":"bds0115Tooltip---placement_right"};
856
894
 
857
895
  // src/components/ui/Tooltip/Tooltip.tsx
858
- import { cn as cn19 } from "@boostdev/design-system-foundation";
859
- import { jsx as jsx20, jsxs as jsxs14 } from "react/jsx-runtime";
896
+ import { cn as cn20 } from "@boostdev/design-system-foundation";
897
+ import { jsx as jsx21, jsxs as jsxs15 } from "react/jsx-runtime";
860
898
  function Tooltip({
861
899
  content,
862
900
  placement = "top",
@@ -867,14 +905,14 @@ function Tooltip({
867
905
  const trigger = isValidElement(children) ? cloneElement(children, {
868
906
  "aria-describedby": tooltipId
869
907
  }) : children;
870
- return /* @__PURE__ */ jsxs14("span", { className: cn19(Tooltip_default.wrapper, className), children: [
908
+ return /* @__PURE__ */ jsxs15("span", { className: cn20(Tooltip_default.wrapper, className), children: [
871
909
  trigger,
872
- /* @__PURE__ */ jsx20(
910
+ /* @__PURE__ */ jsx21(
873
911
  "span",
874
912
  {
875
913
  id: tooltipId,
876
914
  role: "tooltip",
877
- className: cn19(Tooltip_default.tooltip, Tooltip_default[`--placement_${placement}`]),
915
+ className: cn20(Tooltip_default.tooltip, Tooltip_default[`--placement_${placement}`]),
878
916
  children: content
879
917
  }
880
918
  )
@@ -882,11 +920,11 @@ function Tooltip({
882
920
  }
883
921
 
884
922
  // src/components/ui/Typography/Typography.module.css
885
- var Typography_default = {"typography":"bds0113Typography-typography","--h1":"bds0113Typography---h1","--h2":"bds0113Typography---h2","--h3":"bds0113Typography---h3","--body":"bds0113Typography---body","--body_s":"bds0113Typography---body_s"};
923
+ var Typography_default = {"typography":"bds0115Typography-typography","--h1":"bds0115Typography---h1","--h2":"bds0115Typography---h2","--h3":"bds0115Typography---h3","--body":"bds0115Typography---body","--body_s":"bds0115Typography---body_s"};
886
924
 
887
925
  // src/components/ui/Typography/Typography.tsx
888
- import { cn as cn20 } from "@boostdev/design-system-foundation";
889
- import { jsx as jsx21 } from "react/jsx-runtime";
926
+ import { cn as cn21 } from "@boostdev/design-system-foundation";
927
+ import { jsx as jsx22 } from "react/jsx-runtime";
890
928
  var variantToElement = {
891
929
  h1: "h1",
892
930
  h2: "h2",
@@ -896,15 +934,15 @@ var variantToElement = {
896
934
  };
897
935
  function Typography({ variant = "body", component, children, className }) {
898
936
  const Component = component || variantToElement[variant];
899
- return /* @__PURE__ */ jsx21(Component, { className: cn20(Typography_default.typography, Typography_default[`--${variant}`], className), children });
937
+ return /* @__PURE__ */ jsx22(Component, { className: cn21(Typography_default.typography, Typography_default[`--${variant}`], className), children });
900
938
  }
901
939
 
902
940
  // src/components/interaction/Button/Button.module.css
903
- var Button_default = {"button":"bds0113Button-button","--primary":"bds0113Button---primary","--secondary":"bds0113Button---secondary","--size_small":"bds0113Button---size_small","--size_medium":"bds0113Button---size_medium","--size_large":"bds0113Button---size_large","--hasPulse":"bds0113Button---hasPulse","prefix":"bds0113Button-prefix","suffix":"bds0113Button-suffix"};
941
+ var Button_default = {"button":"bds0115Button-button","--primary":"bds0115Button---primary","--secondary":"bds0115Button---secondary","--size_small":"bds0115Button---size_small","--size_medium":"bds0115Button---size_medium","--size_large":"bds0115Button---size_large","--hasPulse":"bds0115Button---hasPulse","prefix":"bds0115Button-prefix","suffix":"bds0115Button-suffix"};
904
942
 
905
943
  // src/components/interaction/Button/Button.tsx
906
- import { cn as cn21 } from "@boostdev/design-system-foundation";
907
- import { Fragment as Fragment2, jsx as jsx22, jsxs as jsxs15 } from "react/jsx-runtime";
944
+ import { cn as cn22 } from "@boostdev/design-system-foundation";
945
+ import { Fragment as Fragment2, jsx as jsx23, jsxs as jsxs16 } from "react/jsx-runtime";
908
946
  function Button({
909
947
  children,
910
948
  className,
@@ -921,7 +959,7 @@ function Button({
921
959
  onClick,
922
960
  ...rest
923
961
  }) {
924
- const classNames = cn21(
962
+ const classNames = cn22(
925
963
  Button_default.button,
926
964
  Button_default[`--${variant}`],
927
965
  Button_default[`--size_${size}`],
@@ -938,13 +976,13 @@ function Button({
938
976
  const handleButtonClick = (e) => {
939
977
  onClick?.(e);
940
978
  };
941
- const content = /* @__PURE__ */ jsxs15(Fragment2, { children: [
942
- Boolean(iconStart) && /* @__PURE__ */ jsx22("span", { className: Button_default.prefix, children: iconStart }),
979
+ const content = /* @__PURE__ */ jsxs16(Fragment2, { children: [
980
+ Boolean(iconStart) && /* @__PURE__ */ jsx23("span", { className: Button_default.prefix, children: iconStart }),
943
981
  children,
944
- Boolean(iconEnd) && /* @__PURE__ */ jsx22("span", { className: Button_default.suffix, children: iconEnd })
982
+ Boolean(iconEnd) && /* @__PURE__ */ jsx23("span", { className: Button_default.suffix, children: iconEnd })
945
983
  ] });
946
984
  if (href) {
947
- return /* @__PURE__ */ jsx22(
985
+ return /* @__PURE__ */ jsx23(
948
986
  "a",
949
987
  {
950
988
  className: classNames,
@@ -959,7 +997,7 @@ function Button({
959
997
  }
960
998
  );
961
999
  }
962
- return /* @__PURE__ */ jsx22(
1000
+ return /* @__PURE__ */ jsx23(
963
1001
  "button",
964
1002
  {
965
1003
  type,
@@ -976,11 +1014,11 @@ function Button({
976
1014
  import { useState as useState4, useEffect, useRef as useRef3, useId as useId6, useMemo } from "react";
977
1015
 
978
1016
  // src/components/interaction/Command/Command.module.css
979
- var Command_default = {"dialog":"bds0113Command-dialog","palette":"bds0113Command-palette","searchRow":"bds0113Command-searchRow","searchIcon":"bds0113Command-searchIcon","search":"bds0113Command-search","escHint":"bds0113Command-escHint","list":"bds0113Command-list","groupList":"bds0113Command-groupList","group":"bds0113Command-group","item":"bds0113Command-item","itemActive":"bds0113Command-itemActive","itemLabel":"bds0113Command-itemLabel","itemDesc":"bds0113Command-itemDesc","shortcut":"bds0113Command-shortcut","empty":"bds0113Command-empty"};
1017
+ var Command_default = {"dialog":"bds0115Command-dialog","palette":"bds0115Command-palette","searchRow":"bds0115Command-searchRow","searchIcon":"bds0115Command-searchIcon","search":"bds0115Command-search","escHint":"bds0115Command-escHint","list":"bds0115Command-list","groupList":"bds0115Command-groupList","group":"bds0115Command-group","item":"bds0115Command-item","itemActive":"bds0115Command-itemActive","itemLabel":"bds0115Command-itemLabel","itemDesc":"bds0115Command-itemDesc","shortcut":"bds0115Command-shortcut","empty":"bds0115Command-empty"};
980
1018
 
981
1019
  // src/components/interaction/Command/Command.tsx
982
- import { cn as cn22 } from "@boostdev/design-system-foundation";
983
- import { jsx as jsx23, jsxs as jsxs16 } from "react/jsx-runtime";
1020
+ import { cn as cn23 } from "@boostdev/design-system-foundation";
1021
+ import { jsx as jsx24, jsxs as jsxs17 } from "react/jsx-runtime";
984
1022
  function Command({
985
1023
  isOpen,
986
1024
  onClose,
@@ -1047,20 +1085,20 @@ function Command({
1047
1085
  item.onSelect();
1048
1086
  onClose();
1049
1087
  };
1050
- return /* @__PURE__ */ jsx23(
1088
+ return /* @__PURE__ */ jsx24(
1051
1089
  "dialog",
1052
1090
  {
1053
1091
  ref: dialogRef,
1054
- className: cn22(Command_default.dialog, className),
1092
+ className: cn23(Command_default.dialog, className),
1055
1093
  "aria-label": "Command palette",
1056
1094
  onCancel: handleCancel,
1057
- children: /* @__PURE__ */ jsxs16("div", { className: Command_default.palette, onKeyDown: handleKeyDown, children: [
1058
- /* @__PURE__ */ jsxs16("div", { className: Command_default.searchRow, children: [
1059
- /* @__PURE__ */ jsxs16("svg", { "aria-hidden": "true", className: Command_default.searchIcon, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
1060
- /* @__PURE__ */ jsx23("circle", { cx: "11", cy: "11", r: "8" }),
1061
- /* @__PURE__ */ jsx23("path", { strokeLinecap: "round", d: "M21 21l-4.35-4.35" })
1095
+ children: /* @__PURE__ */ jsxs17("div", { className: Command_default.palette, onKeyDown: handleKeyDown, children: [
1096
+ /* @__PURE__ */ jsxs17("div", { className: Command_default.searchRow, children: [
1097
+ /* @__PURE__ */ jsxs17("svg", { "aria-hidden": "true", className: Command_default.searchIcon, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
1098
+ /* @__PURE__ */ jsx24("circle", { cx: "11", cy: "11", r: "8" }),
1099
+ /* @__PURE__ */ jsx24("path", { strokeLinecap: "round", d: "M21 21l-4.35-4.35" })
1062
1100
  ] }),
1063
- /* @__PURE__ */ jsx23(
1101
+ /* @__PURE__ */ jsx24(
1064
1102
  "input",
1065
1103
  {
1066
1104
  ref: inputRef,
@@ -1076,32 +1114,32 @@ function Command({
1076
1114
  onChange: (e) => setQuery(e.target.value)
1077
1115
  }
1078
1116
  ),
1079
- /* @__PURE__ */ jsx23("kbd", { className: Command_default.escHint, children: "Esc" })
1117
+ /* @__PURE__ */ jsx24("kbd", { className: Command_default.escHint, children: "Esc" })
1080
1118
  ] }),
1081
- filtered.length > 0 ? /* @__PURE__ */ jsx23("ul", { id: listboxId, role: "listbox", className: Command_default.list, "aria-label": "Commands", children: Array.from(groups.entries()).map(([group, groupItems]) => /* @__PURE__ */ jsxs16("li", { role: "presentation", children: [
1082
- group && /* @__PURE__ */ jsx23("div", { className: Command_default.group, role: "presentation", children: group }),
1083
- /* @__PURE__ */ jsx23("ul", { role: "group", "aria-label": group || void 0, className: Command_default.groupList, children: groupItems.map((item) => {
1119
+ filtered.length > 0 ? /* @__PURE__ */ jsx24("ul", { id: listboxId, role: "listbox", className: Command_default.list, "aria-label": "Commands", children: Array.from(groups.entries()).map(([group, groupItems]) => /* @__PURE__ */ jsxs17("li", { role: "presentation", children: [
1120
+ group && /* @__PURE__ */ jsx24("div", { className: Command_default.group, role: "presentation", children: group }),
1121
+ /* @__PURE__ */ jsx24("ul", { role: "group", "aria-label": group || void 0, className: Command_default.groupList, children: groupItems.map((item) => {
1084
1122
  const flatIndex = filtered.indexOf(item);
1085
1123
  const isActive = flatIndex === activeIndex;
1086
- return /* @__PURE__ */ jsxs16(
1124
+ return /* @__PURE__ */ jsxs17(
1087
1125
  "li",
1088
1126
  {
1089
1127
  id: `cmd-${item.id}`,
1090
1128
  role: "option",
1091
1129
  "aria-selected": isActive,
1092
- className: cn22(Command_default.item, isActive && Command_default.itemActive),
1130
+ className: cn23(Command_default.item, isActive && Command_default.itemActive),
1093
1131
  onPointerDown: (e) => e.preventDefault(),
1094
1132
  onClick: () => selectItem(item),
1095
1133
  children: [
1096
- /* @__PURE__ */ jsx23("span", { className: Command_default.itemLabel, children: item.label }),
1097
- item.description && /* @__PURE__ */ jsx23("span", { className: Command_default.itemDesc, children: item.description }),
1098
- item.shortcut && /* @__PURE__ */ jsx23("kbd", { className: Command_default.shortcut, children: item.shortcut })
1134
+ /* @__PURE__ */ jsx24("span", { className: Command_default.itemLabel, children: item.label }),
1135
+ item.description && /* @__PURE__ */ jsx24("span", { className: Command_default.itemDesc, children: item.description }),
1136
+ item.shortcut && /* @__PURE__ */ jsx24("kbd", { className: Command_default.shortcut, children: item.shortcut })
1099
1137
  ]
1100
1138
  },
1101
1139
  item.id
1102
1140
  );
1103
1141
  }) })
1104
- ] }, group)) }) : /* @__PURE__ */ jsxs16("div", { className: Command_default.empty, "aria-live": "polite", children: [
1142
+ ] }, group)) }) : /* @__PURE__ */ jsxs17("div", { className: Command_default.empty, "aria-live": "polite", children: [
1105
1143
  "No results for \u201C",
1106
1144
  query,
1107
1145
  "\u201D"
@@ -1115,11 +1153,11 @@ function Command({
1115
1153
  import { useEffect as useEffect2, useRef as useRef4 } from "react";
1116
1154
 
1117
1155
  // src/components/interaction/Dialog/Dialog.module.css
1118
- var Dialog_default = {"dialog":"bds0113Dialog-dialog","dialogContent":"bds0113Dialog-dialogContent","closeForm":"bds0113Dialog-closeForm","closeButton":"bds0113Dialog-closeButton"};
1156
+ var Dialog_default = {"dialog":"bds0115Dialog-dialog","dialogContent":"bds0115Dialog-dialogContent","closeForm":"bds0115Dialog-closeForm","closeButton":"bds0115Dialog-closeButton"};
1119
1157
 
1120
1158
  // src/components/interaction/Dialog/Dialog.tsx
1121
- import { cn as cn23 } from "@boostdev/design-system-foundation";
1122
- import { jsx as jsx24, jsxs as jsxs17 } from "react/jsx-runtime";
1159
+ import { cn as cn24 } from "@boostdev/design-system-foundation";
1160
+ import { jsx as jsx25, jsxs as jsxs18 } from "react/jsx-runtime";
1123
1161
  function Dialog({ children, isOpen = false, className, onClose }) {
1124
1162
  const dialogRef = useRef4(null);
1125
1163
  useEffect2(() => {
@@ -1143,25 +1181,25 @@ function Dialog({ children, isOpen = false, className, onClose }) {
1143
1181
  e.preventDefault();
1144
1182
  onClose?.();
1145
1183
  };
1146
- return /* @__PURE__ */ jsxs17(
1184
+ return /* @__PURE__ */ jsxs18(
1147
1185
  "dialog",
1148
1186
  {
1149
1187
  ref: dialogRef,
1150
- className: cn23(className, Dialog_default.dialog),
1188
+ className: cn24(className, Dialog_default.dialog),
1151
1189
  onClick: handleBackdropClick,
1152
1190
  onCancel: handleCancel,
1153
1191
  children: [
1154
- /* @__PURE__ */ jsx24("form", { method: "dialog", className: Dialog_default.closeForm, children: /* @__PURE__ */ jsx24(
1192
+ /* @__PURE__ */ jsx25("form", { method: "dialog", className: Dialog_default.closeForm, children: /* @__PURE__ */ jsx25(
1155
1193
  "button",
1156
1194
  {
1157
1195
  type: "submit",
1158
1196
  className: Dialog_default.closeButton,
1159
1197
  onClick: onClose,
1160
1198
  "aria-label": "Close dialog",
1161
- children: /* @__PURE__ */ jsx24("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx24("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
1199
+ children: /* @__PURE__ */ jsx25("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx25("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
1162
1200
  }
1163
1201
  ) }),
1164
- /* @__PURE__ */ jsx24("div", { className: Dialog_default.dialogContent, children })
1202
+ /* @__PURE__ */ jsx25("div", { className: Dialog_default.dialogContent, children })
1165
1203
  ]
1166
1204
  }
1167
1205
  );
@@ -1171,17 +1209,18 @@ function Dialog({ children, isOpen = false, className, onClose }) {
1171
1209
  import { useEffect as useEffect3, useRef as useRef5 } from "react";
1172
1210
 
1173
1211
  // src/components/interaction/Drawer/Drawer.module.css
1174
- var Drawer_default = {"drawer":"bds0113Drawer-drawer","panel":"bds0113Drawer-panel","--side_right":"bds0113Drawer---side_right","--side_left":"bds0113Drawer---side_left","header":"bds0113Drawer-header","title":"bds0113Drawer-title","closeButton":"bds0113Drawer-closeButton","body":"bds0113Drawer-body"};
1212
+ var Drawer_default = {"drawer":"bds0115Drawer-drawer","panel":"bds0115Drawer-panel","--side_right":"bds0115Drawer---side_right","--side_left":"bds0115Drawer---side_left","header":"bds0115Drawer-header","closeButton":"bds0115Drawer-closeButton","body":"bds0115Drawer-body"};
1175
1213
 
1176
1214
  // src/components/interaction/Drawer/Drawer.tsx
1177
- import { cn as cn24 } from "@boostdev/design-system-foundation";
1178
- import { jsx as jsx25, jsxs as jsxs18 } from "react/jsx-runtime";
1215
+ import { cn as cn25 } from "@boostdev/design-system-foundation";
1216
+ import { jsx as jsx26, jsxs as jsxs19 } from "react/jsx-runtime";
1179
1217
  function Drawer({
1180
1218
  isOpen,
1181
1219
  onClose,
1182
1220
  title,
1183
1221
  children,
1184
1222
  side = "right",
1223
+ arialLabel = "",
1185
1224
  className
1186
1225
  }) {
1187
1226
  const dialogRef = useRef5(null);
@@ -1201,29 +1240,29 @@ function Drawer({
1201
1240
  e.preventDefault();
1202
1241
  onClose();
1203
1242
  };
1204
- return /* @__PURE__ */ jsx25(
1243
+ return /* @__PURE__ */ jsx26(
1205
1244
  "dialog",
1206
1245
  {
1207
1246
  ref: dialogRef,
1208
- className: cn24(Drawer_default.drawer, Drawer_default[`--side_${side}`], className),
1209
- "aria-label": title,
1247
+ className: cn25(Drawer_default.drawer, Drawer_default[`--side_${side}`], className),
1248
+ "aria-label": arialLabel,
1210
1249
  onClick: handleClick,
1211
1250
  onCancel: handleCancel,
1212
- children: /* @__PURE__ */ jsxs18("div", { className: Drawer_default.panel, children: [
1213
- /* @__PURE__ */ jsxs18("div", { className: Drawer_default.header, children: [
1214
- /* @__PURE__ */ jsx25("h2", { className: Drawer_default.title, children: title }),
1215
- /* @__PURE__ */ jsx25(
1251
+ children: /* @__PURE__ */ jsxs19("div", { className: Drawer_default.panel, children: [
1252
+ /* @__PURE__ */ jsxs19("div", { className: Drawer_default.header, children: [
1253
+ !!title && title,
1254
+ /* @__PURE__ */ jsx26(
1216
1255
  "button",
1217
1256
  {
1218
1257
  type: "button",
1219
1258
  className: Drawer_default.closeButton,
1220
1259
  onClick: onClose,
1221
1260
  "aria-label": "Close drawer",
1222
- children: /* @__PURE__ */ jsx25("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx25("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
1261
+ children: /* @__PURE__ */ jsx26("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx26("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
1223
1262
  }
1224
1263
  )
1225
1264
  ] }),
1226
- /* @__PURE__ */ jsx25("div", { className: Drawer_default.body, children })
1265
+ /* @__PURE__ */ jsx26("div", { className: Drawer_default.body, children })
1227
1266
  ] })
1228
1267
  }
1229
1268
  );
@@ -1240,11 +1279,11 @@ import {
1240
1279
  } from "react";
1241
1280
 
1242
1281
  // src/components/interaction/DropdownMenu/DropdownMenu.module.css
1243
- var DropdownMenu_default = {"wrapper":"bds0113DropdownMenu-wrapper","menu":"bds0113DropdownMenu-menu","--placement_bottom-start":"bds0113DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds0113DropdownMenu---placement_bottom-end","separator":"bds0113DropdownMenu-separator","item":"bds0113DropdownMenu-item","icon":"bds0113DropdownMenu-icon"};
1282
+ var DropdownMenu_default = {"wrapper":"bds0115DropdownMenu-wrapper","menu":"bds0115DropdownMenu-menu","--placement_bottom-start":"bds0115DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds0115DropdownMenu---placement_bottom-end","separator":"bds0115DropdownMenu-separator","item":"bds0115DropdownMenu-item","icon":"bds0115DropdownMenu-icon"};
1244
1283
 
1245
1284
  // src/components/interaction/DropdownMenu/DropdownMenu.tsx
1246
- import { cn as cn25 } from "@boostdev/design-system-foundation";
1247
- import { jsx as jsx26, jsxs as jsxs19 } from "react/jsx-runtime";
1285
+ import { cn as cn26 } from "@boostdev/design-system-foundation";
1286
+ import { jsx as jsx27, jsxs as jsxs20 } from "react/jsx-runtime";
1248
1287
  function DropdownMenu({
1249
1288
  trigger,
1250
1289
  items,
@@ -1312,17 +1351,17 @@ function DropdownMenu({
1312
1351
  if (typeof existingOnClick === "function") existingOnClick(e);
1313
1352
  }
1314
1353
  }) : trigger;
1315
- return /* @__PURE__ */ jsxs19("div", { ref: containerRef, className: cn25(DropdownMenu_default.wrapper, className), children: [
1354
+ return /* @__PURE__ */ jsxs20("div", { ref: containerRef, className: cn26(DropdownMenu_default.wrapper, className), children: [
1316
1355
  triggerEl,
1317
- isOpen && /* @__PURE__ */ jsx26(
1356
+ isOpen && /* @__PURE__ */ jsx27(
1318
1357
  "ul",
1319
1358
  {
1320
1359
  id: menuId,
1321
1360
  role: "menu",
1322
- className: cn25(DropdownMenu_default.menu, DropdownMenu_default[`--placement_${placement}`]),
1323
- children: items.map((item, index) => /* @__PURE__ */ jsxs19("li", { role: "presentation", children: [
1324
- item.separator && /* @__PURE__ */ jsx26("hr", { className: DropdownMenu_default.separator, role: "separator" }),
1325
- /* @__PURE__ */ jsxs19(
1361
+ className: cn26(DropdownMenu_default.menu, DropdownMenu_default[`--placement_${placement}`]),
1362
+ children: items.map((item, index) => /* @__PURE__ */ jsxs20("li", { role: "presentation", children: [
1363
+ item.separator && /* @__PURE__ */ jsx27("hr", { className: DropdownMenu_default.separator, role: "separator" }),
1364
+ /* @__PURE__ */ jsxs20(
1326
1365
  "button",
1327
1366
  {
1328
1367
  ref: (el) => {
@@ -1338,7 +1377,7 @@ function DropdownMenu({
1338
1377
  },
1339
1378
  onKeyDown: (e) => handleItemKeyDown(e, index),
1340
1379
  children: [
1341
- item.icon && /* @__PURE__ */ jsx26("span", { className: DropdownMenu_default.icon, "aria-hidden": "true", children: item.icon }),
1380
+ item.icon && /* @__PURE__ */ jsx27("span", { className: DropdownMenu_default.icon, "aria-hidden": "true", children: item.icon }),
1342
1381
  item.label
1343
1382
  ]
1344
1383
  }
@@ -1360,11 +1399,11 @@ import {
1360
1399
  } from "react";
1361
1400
 
1362
1401
  // src/components/interaction/Popover/Popover.module.css
1363
- var Popover_default = {"wrapper":"bds0113Popover-wrapper","panel":"bds0113Popover-panel","--placement_bottom":"bds0113Popover---placement_bottom","--placement_top":"bds0113Popover---placement_top","--placement_right":"bds0113Popover---placement_right","--placement_left":"bds0113Popover---placement_left"};
1402
+ var Popover_default = {"wrapper":"bds0115Popover-wrapper","panel":"bds0115Popover-panel","--placement_bottom":"bds0115Popover---placement_bottom","--placement_top":"bds0115Popover---placement_top","--placement_right":"bds0115Popover---placement_right","--placement_left":"bds0115Popover---placement_left"};
1364
1403
 
1365
1404
  // src/components/interaction/Popover/Popover.tsx
1366
- import { cn as cn26 } from "@boostdev/design-system-foundation";
1367
- import { jsx as jsx27, jsxs as jsxs20 } from "react/jsx-runtime";
1405
+ import { cn as cn27 } from "@boostdev/design-system-foundation";
1406
+ import { jsx as jsx28, jsxs as jsxs21 } from "react/jsx-runtime";
1368
1407
  function Popover({
1369
1408
  children,
1370
1409
  content,
@@ -1400,15 +1439,15 @@ function Popover({
1400
1439
  if (typeof existingOnClick === "function") existingOnClick(e);
1401
1440
  }
1402
1441
  }) : children;
1403
- return /* @__PURE__ */ jsxs20("span", { ref: containerRef, className: cn26(Popover_default.wrapper, className), children: [
1442
+ return /* @__PURE__ */ jsxs21("span", { ref: containerRef, className: cn27(Popover_default.wrapper, className), children: [
1404
1443
  trigger,
1405
- isOpen && /* @__PURE__ */ jsx27(
1444
+ isOpen && /* @__PURE__ */ jsx28(
1406
1445
  "div",
1407
1446
  {
1408
1447
  id: panelId,
1409
1448
  role: "dialog",
1410
1449
  "aria-modal": "false",
1411
- className: cn26(Popover_default.panel, Popover_default[`--placement_${placement}`]),
1450
+ className: cn27(Popover_default.panel, Popover_default[`--placement_${placement}`]),
1412
1451
  children: content
1413
1452
  }
1414
1453
  )
@@ -1416,26 +1455,26 @@ function Popover({
1416
1455
  }
1417
1456
 
1418
1457
  // src/components/interaction/Rating/Rating.module.css
1419
- var Rating_default = {"rating":"bds0113Rating-rating","star":"bds0113Rating-star","--filled":"bds0113Rating---filled"};
1458
+ var Rating_default = {"rating":"bds0115Rating-rating","star":"bds0115Rating-star","--filled":"bds0115Rating---filled"};
1420
1459
 
1421
1460
  // src/components/interaction/Rating/Rating.tsx
1422
- import { cn as cn27 } from "@boostdev/design-system-foundation";
1423
- import { jsx as jsx28 } from "react/jsx-runtime";
1461
+ import { cn as cn28 } from "@boostdev/design-system-foundation";
1462
+ import { jsx as jsx29 } from "react/jsx-runtime";
1424
1463
  function Rating({ value, max = 5, className }) {
1425
- return /* @__PURE__ */ jsx28(
1464
+ return /* @__PURE__ */ jsx29(
1426
1465
  "div",
1427
1466
  {
1428
- className: cn27(Rating_default.rating, className),
1467
+ className: cn28(Rating_default.rating, className),
1429
1468
  role: "img",
1430
1469
  "aria-label": `${value} out of ${max} stars`,
1431
- children: Array.from({ length: max }).map((_, i) => /* @__PURE__ */ jsx28(
1470
+ children: Array.from({ length: max }).map((_, i) => /* @__PURE__ */ jsx29(
1432
1471
  "svg",
1433
1472
  {
1434
1473
  "aria-hidden": "true",
1435
- className: cn27(Rating_default.star, i < value && Rating_default["--filled"]),
1474
+ className: cn28(Rating_default.star, i < value && Rating_default["--filled"]),
1436
1475
  fill: "currentColor",
1437
1476
  viewBox: "0 0 24 24",
1438
- children: /* @__PURE__ */ jsx28("path", { d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z" })
1477
+ children: /* @__PURE__ */ jsx29("path", { d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z" })
1439
1478
  },
1440
1479
  i
1441
1480
  ))
@@ -1447,11 +1486,11 @@ function Rating({ value, max = 5, className }) {
1447
1486
  import { useState as useState7, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2 } from "react";
1448
1487
 
1449
1488
  // src/components/interaction/Toast/Toast.module.css
1450
- var Toast_default = {"toastContainer":"bds0113Toast-toastContainer","toast":"bds0113Toast-toast","message":"bds0113Toast-message","closeButton":"bds0113Toast-closeButton"};
1489
+ var Toast_default = {"toastContainer":"bds0115Toast-toastContainer","toast":"bds0115Toast-toast","--variant_success":"bds0115Toast---variant_success","--variant_warning":"bds0115Toast---variant_warning","--variant_info":"bds0115Toast---variant_info","--variant_error":"bds0115Toast---variant_error","message":"bds0115Toast-message","closeButton":"bds0115Toast-closeButton"};
1451
1490
 
1452
1491
  // src/components/interaction/Toast/Toast.tsx
1453
- import { cn as cn28 } from "@boostdev/design-system-foundation";
1454
- import { jsx as jsx29, jsxs as jsxs21 } from "react/jsx-runtime";
1492
+ import { cn as cn29 } from "@boostdev/design-system-foundation";
1493
+ import { jsx as jsx30, jsxs as jsxs22 } from "react/jsx-runtime";
1455
1494
  var ToastContext = createContext(void 0);
1456
1495
  function ToastProvider({ children }) {
1457
1496
  const [toasts, setToasts] = useState7([]);
@@ -1463,9 +1502,9 @@ function ToastProvider({ children }) {
1463
1502
  setToasts((prev) => prev.filter((toast) => toast.id !== id));
1464
1503
  }, []);
1465
1504
  const value = useMemo2(() => ({ showToast }), [showToast]);
1466
- return /* @__PURE__ */ jsxs21(ToastContext.Provider, { value, children: [
1505
+ return /* @__PURE__ */ jsxs22(ToastContext.Provider, { value, children: [
1467
1506
  children,
1468
- /* @__PURE__ */ jsx29("div", { className: Toast_default.toastContainer, children: toasts.map((toast) => /* @__PURE__ */ jsx29(
1507
+ /* @__PURE__ */ jsx30("div", { className: Toast_default.toastContainer, children: toasts.map((toast) => /* @__PURE__ */ jsx30(
1469
1508
  ToastItem,
1470
1509
  {
1471
1510
  toast,
@@ -1480,9 +1519,9 @@ function ToastItem({ toast, onRemove }) {
1480
1519
  const timer = setTimeout(onRemove, 5e3);
1481
1520
  return () => clearTimeout(timer);
1482
1521
  }, [onRemove]);
1483
- return /* @__PURE__ */ jsxs21("div", { className: cn28(Toast_default.toast, Toast_default[`--variant_${toast.variant}`]), role: "status", children: [
1484
- /* @__PURE__ */ jsx29("span", { className: Toast_default.message, children: toast.message }),
1485
- /* @__PURE__ */ jsx29("button", { type: "button", className: Toast_default.closeButton, onClick: onRemove, "aria-label": "Dismiss", children: /* @__PURE__ */ jsx29("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx29("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) }) })
1522
+ return /* @__PURE__ */ jsxs22("div", { className: cn29(Toast_default.toast, Toast_default[`--variant_${toast.variant}`]), role: "status", children: [
1523
+ /* @__PURE__ */ jsx30("span", { className: Toast_default.message, children: toast.message }),
1524
+ /* @__PURE__ */ jsx30("button", { type: "button", className: Toast_default.closeButton, onClick: onRemove, "aria-label": "Dismiss", children: /* @__PURE__ */ jsx30("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx30("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) }) })
1486
1525
  ] });
1487
1526
  }
1488
1527
  function useToast() {
@@ -1497,50 +1536,50 @@ function useToast() {
1497
1536
  import { useId as useId9 } from "react";
1498
1537
 
1499
1538
  // src/components/interaction/form/Checkbox/Checkbox.module.css
1500
- var Checkbox_default = {"checkboxGroup":"bds0113Checkbox-checkboxGroup","inputWrapper":"bds0113Checkbox-inputWrapper","checkbox":"bds0113Checkbox-checkbox","checkboxError":"bds0113Checkbox-checkboxError"};
1539
+ var Checkbox_default = {"checkboxGroup":"bds0115Checkbox-checkboxGroup","inputWrapper":"bds0115Checkbox-inputWrapper","checkbox":"bds0115Checkbox-checkbox","checkboxError":"bds0115Checkbox-checkboxError"};
1501
1540
 
1502
1541
  // src/components/interaction/form/atoms/Message.module.css
1503
- var Message_default = {"error":"bds0113Message-error","hint":"bds0113Message-hint"};
1542
+ var Message_default = {"error":"bds0115Message-error","hint":"bds0115Message-hint"};
1504
1543
 
1505
1544
  // src/components/interaction/form/atoms/Message.tsx
1506
- import { jsx as jsx30 } from "react/jsx-runtime";
1545
+ import { jsx as jsx31 } from "react/jsx-runtime";
1507
1546
  var Message = ({ message, type, inputId }) => {
1508
1547
  if (!message) return null;
1509
- return /* @__PURE__ */ jsx30("p", { id: inputId + type, className: Message_default[type], children: message });
1548
+ return /* @__PURE__ */ jsx31("p", { id: inputId + type, className: Message_default[type], children: message });
1510
1549
  };
1511
1550
 
1512
1551
  // src/components/interaction/form/atoms/Label.module.css
1513
- var Label_default = {"label":"bds0113Label-label"};
1552
+ var Label_default = {"label":"bds0115Label-label"};
1514
1553
 
1515
1554
  // src/components/interaction/form/atoms/Label.tsx
1516
- import { jsx as jsx31 } from "react/jsx-runtime";
1555
+ import { jsx as jsx32 } from "react/jsx-runtime";
1517
1556
  var Label = ({ label, id }) => {
1518
- return /* @__PURE__ */ jsx31("label", { htmlFor: id, className: Label_default.label, children: label });
1557
+ return /* @__PURE__ */ jsx32("label", { htmlFor: id, className: Label_default.label, children: label });
1519
1558
  };
1520
1559
 
1521
1560
  // src/components/interaction/form/Checkbox/Checkbox.tsx
1522
- import { cn as cn30 } from "@boostdev/design-system-foundation";
1561
+ import { cn as cn31 } from "@boostdev/design-system-foundation";
1523
1562
 
1524
1563
  // src/components/interaction/form/atoms/InputContainer.module.css
1525
- var InputContainer_default = {"container":"bds0113InputContainer-container"};
1564
+ var InputContainer_default = {"container":"bds0115InputContainer-container"};
1526
1565
 
1527
1566
  // src/components/interaction/form/atoms/InputContainer.tsx
1528
- import { cn as cn29 } from "@boostdev/design-system-foundation";
1529
- import { jsx as jsx32 } from "react/jsx-runtime";
1567
+ import { cn as cn30 } from "@boostdev/design-system-foundation";
1568
+ import { jsx as jsx33 } from "react/jsx-runtime";
1530
1569
  var InputContainer = ({ children, className }) => {
1531
- return /* @__PURE__ */ jsx32("div", { className: cn29(InputContainer_default.container, className), children });
1570
+ return /* @__PURE__ */ jsx33("div", { className: cn30(InputContainer_default.container, className), children });
1532
1571
  };
1533
1572
 
1534
1573
  // src/components/interaction/form/Checkbox/Checkbox.tsx
1535
- import { jsx as jsx33, jsxs as jsxs22 } from "react/jsx-runtime";
1574
+ import { jsx as jsx34, jsxs as jsxs23 } from "react/jsx-runtime";
1536
1575
  function Checkbox({ label, name, error, hint, className, ...props }) {
1537
1576
  const id = name + useId9();
1538
1577
  const hintId = id + "hint";
1539
1578
  const errorId = id + "error";
1540
1579
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
1541
- return /* @__PURE__ */ jsxs22(InputContainer, { className: cn30(Checkbox_default.checkboxGroup, className), children: [
1542
- /* @__PURE__ */ jsxs22("div", { className: Checkbox_default.inputWrapper, children: [
1543
- /* @__PURE__ */ jsx33(
1580
+ return /* @__PURE__ */ jsxs23(InputContainer, { className: cn31(Checkbox_default.checkboxGroup, className), children: [
1581
+ /* @__PURE__ */ jsxs23("div", { className: Checkbox_default.inputWrapper, children: [
1582
+ /* @__PURE__ */ jsx34(
1544
1583
  "input",
1545
1584
  {
1546
1585
  "aria-describedby": describedBy,
@@ -1548,14 +1587,14 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
1548
1587
  type: "checkbox",
1549
1588
  id,
1550
1589
  name,
1551
- className: cn30(Checkbox_default.checkbox, error && Checkbox_default.checkboxError),
1590
+ className: cn31(Checkbox_default.checkbox, error && Checkbox_default.checkboxError),
1552
1591
  ...props
1553
1592
  }
1554
1593
  ),
1555
- /* @__PURE__ */ jsx33(Label, { id, label })
1594
+ /* @__PURE__ */ jsx34(Label, { id, label })
1556
1595
  ] }),
1557
- /* @__PURE__ */ jsx33(Message, { inputId: id, type: "error", message: error }),
1558
- /* @__PURE__ */ jsx33(Message, { inputId: id, type: "hint", message: hint })
1596
+ /* @__PURE__ */ jsx34(Message, { inputId: id, type: "error", message: error }),
1597
+ /* @__PURE__ */ jsx34(Message, { inputId: id, type: "hint", message: hint })
1559
1598
  ] });
1560
1599
  }
1561
1600
 
@@ -1569,11 +1608,11 @@ import {
1569
1608
  } from "react";
1570
1609
 
1571
1610
  // src/components/interaction/form/Combobox/Combobox.module.css
1572
- var Combobox_default = {"formGroup":"bds0113Combobox-formGroup","inputWrapper":"bds0113Combobox-inputWrapper","input":"bds0113Combobox-input","inputError":"bds0113Combobox-inputError","chevron":"bds0113Combobox-chevron","listbox":"bds0113Combobox-listbox","option":"bds0113Combobox-option","--highlighted":"bds0113Combobox---highlighted","--selected":"bds0113Combobox---selected","--disabled":"bds0113Combobox---disabled"};
1611
+ var Combobox_default = {"formGroup":"bds0115Combobox-formGroup","inputWrapper":"bds0115Combobox-inputWrapper","input":"bds0115Combobox-input","inputError":"bds0115Combobox-inputError","chevron":"bds0115Combobox-chevron","listbox":"bds0115Combobox-listbox","option":"bds0115Combobox-option","--highlighted":"bds0115Combobox---highlighted","--selected":"bds0115Combobox---selected","--disabled":"bds0115Combobox---disabled"};
1573
1612
 
1574
1613
  // src/components/interaction/form/Combobox/Combobox.tsx
1575
- import { cn as cn31 } from "@boostdev/design-system-foundation";
1576
- import { jsx as jsx34, jsxs as jsxs23 } from "react/jsx-runtime";
1614
+ import { cn as cn32 } from "@boostdev/design-system-foundation";
1615
+ import { jsx as jsx35, jsxs as jsxs24 } from "react/jsx-runtime";
1577
1616
  function Combobox({
1578
1617
  label,
1579
1618
  name,
@@ -1651,10 +1690,10 @@ function Combobox({
1651
1690
  setIsOpen(false);
1652
1691
  }
1653
1692
  };
1654
- return /* @__PURE__ */ jsxs23(InputContainer, { className: cn31(Combobox_default.formGroup, className), children: [
1655
- /* @__PURE__ */ jsx34(Label, { id, label }),
1656
- /* @__PURE__ */ jsxs23("div", { ref: containerRef, className: Combobox_default.inputWrapper, children: [
1657
- /* @__PURE__ */ jsx34(
1693
+ return /* @__PURE__ */ jsxs24(InputContainer, { className: cn32(Combobox_default.formGroup, className), children: [
1694
+ /* @__PURE__ */ jsx35(Label, { id, label }),
1695
+ /* @__PURE__ */ jsxs24("div", { ref: containerRef, className: Combobox_default.inputWrapper, children: [
1696
+ /* @__PURE__ */ jsx35(
1658
1697
  "input",
1659
1698
  {
1660
1699
  ref: inputRef,
@@ -1673,28 +1712,28 @@ function Combobox({
1673
1712
  placeholder,
1674
1713
  value: inputValue,
1675
1714
  disabled,
1676
- className: cn31(Combobox_default.input, error ? Combobox_default.inputError : void 0),
1715
+ className: cn32(Combobox_default.input, error ? Combobox_default.inputError : void 0),
1677
1716
  onChange: handleInputChange,
1678
1717
  onKeyDown: handleKeyDown,
1679
1718
  onFocus: () => setIsOpen(true)
1680
1719
  }
1681
1720
  ),
1682
- /* @__PURE__ */ jsx34("span", { className: Combobox_default.chevron, "aria-hidden": "true", children: /* @__PURE__ */ jsx34("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx34("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" }) }) }),
1683
- isOpen && filtered.length > 0 && /* @__PURE__ */ jsx34(
1721
+ /* @__PURE__ */ jsx35("span", { className: Combobox_default.chevron, "aria-hidden": "true", children: /* @__PURE__ */ jsx35("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx35("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" }) }) }),
1722
+ isOpen && filtered.length > 0 && /* @__PURE__ */ jsx35(
1684
1723
  "ul",
1685
1724
  {
1686
1725
  id: listboxId,
1687
1726
  role: "listbox",
1688
1727
  "aria-label": String(label),
1689
1728
  className: Combobox_default.listbox,
1690
- children: filtered.map((option, index) => /* @__PURE__ */ jsx34(
1729
+ children: filtered.map((option, index) => /* @__PURE__ */ jsx35(
1691
1730
  "li",
1692
1731
  {
1693
1732
  id: getOptionId(index),
1694
1733
  role: "option",
1695
1734
  "aria-selected": option.value === value,
1696
1735
  "aria-disabled": option.disabled,
1697
- className: cn31(
1736
+ className: cn32(
1698
1737
  Combobox_default.option,
1699
1738
  index === highlightedIndex ? Combobox_default["--highlighted"] : void 0,
1700
1739
  option.value === value ? Combobox_default["--selected"] : void 0,
@@ -1711,8 +1750,8 @@ function Combobox({
1711
1750
  }
1712
1751
  )
1713
1752
  ] }),
1714
- /* @__PURE__ */ jsx34(Message, { inputId: id, type: "error", message: error }),
1715
- /* @__PURE__ */ jsx34(Message, { inputId: id, type: "hint", message: hint })
1753
+ /* @__PURE__ */ jsx35(Message, { inputId: id, type: "error", message: error }),
1754
+ /* @__PURE__ */ jsx35(Message, { inputId: id, type: "hint", message: hint })
1716
1755
  ] });
1717
1756
  }
1718
1757
 
@@ -1720,11 +1759,11 @@ function Combobox({
1720
1759
  import { useId as useId11, useRef as useRef9, useState as useState9 } from "react";
1721
1760
 
1722
1761
  // src/components/interaction/form/FileInput/FileInput.module.css
1723
- var FileInput_default = {"formGroup":"bds0113FileInput-formGroup","dropZone":"bds0113FileInput-dropZone","isDragging":"bds0113FileInput-isDragging","hasError":"bds0113FileInput-hasError","isDisabled":"bds0113FileInput-isDisabled","icon":"bds0113FileInput-icon","prompt":"bds0113FileInput-prompt","acceptHint":"bds0113FileInput-acceptHint","hiddenInput":"bds0113FileInput-hiddenInput"};
1762
+ var FileInput_default = {"formGroup":"bds0115FileInput-formGroup","dropZone":"bds0115FileInput-dropZone","isDragging":"bds0115FileInput-isDragging","hasError":"bds0115FileInput-hasError","isDisabled":"bds0115FileInput-isDisabled","icon":"bds0115FileInput-icon","prompt":"bds0115FileInput-prompt","acceptHint":"bds0115FileInput-acceptHint","hiddenInput":"bds0115FileInput-hiddenInput"};
1724
1763
 
1725
1764
  // src/components/interaction/form/FileInput/FileInput.tsx
1726
- import { cn as cn32 } from "@boostdev/design-system-foundation";
1727
- import { Fragment as Fragment3, jsx as jsx35, jsxs as jsxs24 } from "react/jsx-runtime";
1765
+ import { cn as cn33 } from "@boostdev/design-system-foundation";
1766
+ import { Fragment as Fragment3, jsx as jsx36, jsxs as jsxs25 } from "react/jsx-runtime";
1728
1767
  function FileInput({
1729
1768
  label,
1730
1769
  name,
@@ -1772,24 +1811,24 @@ function FileInput({
1772
1811
  if (!disabled) setIsDragging(true);
1773
1812
  };
1774
1813
  const handleDragLeave = () => setIsDragging(false);
1775
- return /* @__PURE__ */ jsxs24(InputContainer, { className: cn32(FileInput_default.formGroup, className), children: [
1776
- /* @__PURE__ */ jsx35(Label, { id: uid, label }),
1777
- /* @__PURE__ */ jsxs24(
1814
+ return /* @__PURE__ */ jsxs25(InputContainer, { className: cn33(FileInput_default.formGroup, className), children: [
1815
+ /* @__PURE__ */ jsx36(Label, { id: uid, label }),
1816
+ /* @__PURE__ */ jsxs25(
1778
1817
  "label",
1779
1818
  {
1780
1819
  htmlFor: uid,
1781
- className: cn32(FileInput_default.dropZone, isDragging && FileInput_default.isDragging, error && FileInput_default.hasError, disabled && FileInput_default.isDisabled),
1820
+ className: cn33(FileInput_default.dropZone, isDragging && FileInput_default.isDragging, error && FileInput_default.hasError, disabled && FileInput_default.isDisabled),
1782
1821
  onDrop: handleDrop,
1783
1822
  onDragOver: handleDragOver,
1784
1823
  onDragLeave: handleDragLeave,
1785
1824
  children: [
1786
- /* @__PURE__ */ jsx35("svg", { "aria-hidden": "true", className: FileInput_default.icon, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: /* @__PURE__ */ jsx35("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5m-13.5-9L12 3m0 0l4.5 4.5M12 3v13.5" }) }),
1787
- /* @__PURE__ */ jsx35("span", { className: FileInput_default.prompt, children: fileNames.length > 0 ? fileNames.join(", ") : /* @__PURE__ */ jsxs24(Fragment3, { children: [
1788
- /* @__PURE__ */ jsx35("strong", { children: "Click to upload" }),
1825
+ /* @__PURE__ */ jsx36("svg", { "aria-hidden": "true", className: FileInput_default.icon, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: /* @__PURE__ */ jsx36("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5m-13.5-9L12 3m0 0l4.5 4.5M12 3v13.5" }) }),
1826
+ /* @__PURE__ */ jsx36("span", { className: FileInput_default.prompt, children: fileNames.length > 0 ? fileNames.join(", ") : /* @__PURE__ */ jsxs25(Fragment3, { children: [
1827
+ /* @__PURE__ */ jsx36("strong", { children: "Click to upload" }),
1789
1828
  " or drag and drop"
1790
1829
  ] }) }),
1791
- accept && /* @__PURE__ */ jsx35("span", { className: FileInput_default.acceptHint, children: accept }),
1792
- /* @__PURE__ */ jsx35(
1830
+ accept && /* @__PURE__ */ jsx36("span", { className: FileInput_default.acceptHint, children: accept }),
1831
+ /* @__PURE__ */ jsx36(
1793
1832
  "input",
1794
1833
  {
1795
1834
  ref: inputRef,
@@ -1808,8 +1847,8 @@ function FileInput({
1808
1847
  ]
1809
1848
  }
1810
1849
  ),
1811
- /* @__PURE__ */ jsx35(Message, { inputId: uid, type: "error", message: error }),
1812
- /* @__PURE__ */ jsx35(Message, { inputId: uid, type: "hint", message: hint })
1850
+ /* @__PURE__ */ jsx36(Message, { inputId: uid, type: "error", message: error }),
1851
+ /* @__PURE__ */ jsx36(Message, { inputId: uid, type: "hint", message: hint })
1813
1852
  ] });
1814
1853
  }
1815
1854
 
@@ -1817,11 +1856,11 @@ function FileInput({
1817
1856
  import { useId as useId12 } from "react";
1818
1857
 
1819
1858
  // src/components/interaction/form/FormInput/FormInput.module.css
1820
- var FormInput_default = {"formGroup":"bds0113FormInput-formGroup","input":"bds0113FormInput-input","inputError":"bds0113FormInput-inputError"};
1859
+ var FormInput_default = {"formGroup":"bds0115FormInput-formGroup","input":"bds0115FormInput-input","inputError":"bds0115FormInput-inputError"};
1821
1860
 
1822
1861
  // src/components/interaction/form/FormInput/FormInput.tsx
1823
- import { cn as cn33 } from "@boostdev/design-system-foundation";
1824
- import { jsx as jsx36, jsxs as jsxs25 } from "react/jsx-runtime";
1862
+ import { cn as cn34 } from "@boostdev/design-system-foundation";
1863
+ import { jsx as jsx37, jsxs as jsxs26 } from "react/jsx-runtime";
1825
1864
  function FormInput({
1826
1865
  label,
1827
1866
  name,
@@ -1835,9 +1874,9 @@ function FormInput({
1835
1874
  const hintId = id + "hint";
1836
1875
  const errorId = id + "error";
1837
1876
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
1838
- return /* @__PURE__ */ jsxs25(InputContainer, { className: cn33(FormInput_default.formGroup, className), children: [
1839
- /* @__PURE__ */ jsx36(Label, { id, label }),
1840
- /* @__PURE__ */ jsx36(
1877
+ return /* @__PURE__ */ jsxs26(InputContainer, { className: cn34(FormInput_default.formGroup, className), children: [
1878
+ /* @__PURE__ */ jsx37(Label, { id, label }),
1879
+ /* @__PURE__ */ jsx37(
1841
1880
  "input",
1842
1881
  {
1843
1882
  "aria-invalid": !!error,
@@ -1845,12 +1884,12 @@ function FormInput({
1845
1884
  "aria-label": ariaLabel,
1846
1885
  id,
1847
1886
  name,
1848
- className: cn33(FormInput_default.input, error && FormInput_default.inputError),
1887
+ className: cn34(FormInput_default.input, error && FormInput_default.inputError),
1849
1888
  ...props
1850
1889
  }
1851
1890
  ),
1852
- /* @__PURE__ */ jsx36(Message, { inputId: id, type: "error", message: error }),
1853
- /* @__PURE__ */ jsx36(Message, { inputId: id, type: "hint", message: hint })
1891
+ /* @__PURE__ */ jsx37(Message, { inputId: id, type: "error", message: error }),
1892
+ /* @__PURE__ */ jsx37(Message, { inputId: id, type: "hint", message: hint })
1854
1893
  ] });
1855
1894
  }
1856
1895
 
@@ -1858,11 +1897,11 @@ function FormInput({
1858
1897
  import { useId as useId13, useRef as useRef10, useState as useState10 } from "react";
1859
1898
 
1860
1899
  // src/components/interaction/form/NumberInput/NumberInput.module.css
1861
- var NumberInput_default = {"formGroup":"bds0113NumberInput-formGroup","inputRow":"bds0113NumberInput-inputRow","input":"bds0113NumberInput-input","inputError":"bds0113NumberInput-inputError","stepper":"bds0113NumberInput-stepper"};
1900
+ var NumberInput_default = {"formGroup":"bds0115NumberInput-formGroup","inputRow":"bds0115NumberInput-inputRow","input":"bds0115NumberInput-input","inputError":"bds0115NumberInput-inputError","stepper":"bds0115NumberInput-stepper"};
1862
1901
 
1863
1902
  // src/components/interaction/form/NumberInput/NumberInput.tsx
1864
- import { cn as cn34 } from "@boostdev/design-system-foundation";
1865
- import { jsx as jsx37, jsxs as jsxs26 } from "react/jsx-runtime";
1903
+ import { cn as cn35 } from "@boostdev/design-system-foundation";
1904
+ import { jsx as jsx38, jsxs as jsxs27 } from "react/jsx-runtime";
1866
1905
  function NumberInput({
1867
1906
  label,
1868
1907
  name,
@@ -1894,10 +1933,10 @@ function NumberInput({
1894
1933
  if (!isControlled) setInternalValue(next);
1895
1934
  onChange?.(next);
1896
1935
  };
1897
- return /* @__PURE__ */ jsxs26(InputContainer, { className: cn34(NumberInput_default.formGroup, className), children: [
1898
- /* @__PURE__ */ jsx37(Label, { id: uid, label }),
1899
- /* @__PURE__ */ jsxs26("div", { className: NumberInput_default.inputRow, children: [
1900
- /* @__PURE__ */ jsx37(
1936
+ return /* @__PURE__ */ jsxs27(InputContainer, { className: cn35(NumberInput_default.formGroup, className), children: [
1937
+ /* @__PURE__ */ jsx38(Label, { id: uid, label }),
1938
+ /* @__PURE__ */ jsxs27("div", { className: NumberInput_default.inputRow, children: [
1939
+ /* @__PURE__ */ jsx38(
1901
1940
  "button",
1902
1941
  {
1903
1942
  type: "button",
@@ -1906,10 +1945,10 @@ function NumberInput({
1906
1945
  disabled: disabled || min !== void 0 && currentValue <= min,
1907
1946
  onClick: () => adjust(-step),
1908
1947
  tabIndex: -1,
1909
- children: /* @__PURE__ */ jsx37("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx37("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M5 12h14" }) })
1948
+ children: /* @__PURE__ */ jsx38("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx38("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M5 12h14" }) })
1910
1949
  }
1911
1950
  ),
1912
- /* @__PURE__ */ jsx37(
1951
+ /* @__PURE__ */ jsx38(
1913
1952
  "input",
1914
1953
  {
1915
1954
  ref: inputRef,
@@ -1923,7 +1962,7 @@ function NumberInput({
1923
1962
  disabled,
1924
1963
  "aria-invalid": !!error,
1925
1964
  "aria-describedby": describedBy,
1926
- className: cn34(NumberInput_default.input, error ? NumberInput_default.inputError : void 0),
1965
+ className: cn35(NumberInput_default.input, error ? NumberInput_default.inputError : void 0),
1927
1966
  onChange: (e) => {
1928
1967
  const v = parseFloat(e.target.value);
1929
1968
  if (!isControlled) setInternalValue(isNaN(v) ? 0 : v);
@@ -1931,7 +1970,7 @@ function NumberInput({
1931
1970
  }
1932
1971
  }
1933
1972
  ),
1934
- /* @__PURE__ */ jsx37(
1973
+ /* @__PURE__ */ jsx38(
1935
1974
  "button",
1936
1975
  {
1937
1976
  type: "button",
@@ -1940,12 +1979,12 @@ function NumberInput({
1940
1979
  disabled: disabled || max !== void 0 && currentValue >= max,
1941
1980
  onClick: () => adjust(step),
1942
1981
  tabIndex: -1,
1943
- children: /* @__PURE__ */ jsx37("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx37("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 5v14M5 12h14" }) })
1982
+ children: /* @__PURE__ */ jsx38("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ jsx38("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 5v14M5 12h14" }) })
1944
1983
  }
1945
1984
  )
1946
1985
  ] }),
1947
- /* @__PURE__ */ jsx37(Message, { inputId: uid, type: "error", message: error }),
1948
- /* @__PURE__ */ jsx37(Message, { inputId: uid, type: "hint", message: hint })
1986
+ /* @__PURE__ */ jsx38(Message, { inputId: uid, type: "error", message: error }),
1987
+ /* @__PURE__ */ jsx38(Message, { inputId: uid, type: "hint", message: hint })
1949
1988
  ] });
1950
1989
  }
1951
1990
 
@@ -1953,19 +1992,19 @@ function NumberInput({
1953
1992
  import { useId as useId14 } from "react";
1954
1993
 
1955
1994
  // src/components/interaction/form/Radio/Radio.module.css
1956
- var Radio_default = {"radioGroup":"bds0113Radio-radioGroup","inputWrapper":"bds0113Radio-inputWrapper","radio":"bds0113Radio-radio","radioError":"bds0113Radio-radioError"};
1995
+ var Radio_default = {"radioGroup":"bds0115Radio-radioGroup","inputWrapper":"bds0115Radio-inputWrapper","textWrapper":"bds0115Radio-textWrapper","description":"bds0115Radio-description","radio":"bds0115Radio-radio","radioError":"bds0115Radio-radioError"};
1957
1996
 
1958
1997
  // src/components/interaction/form/Radio/Radio.tsx
1959
- import { cn as cn35 } from "@boostdev/design-system-foundation";
1960
- import { jsx as jsx38, jsxs as jsxs27 } from "react/jsx-runtime";
1961
- function Radio({ label, name, error, hint, className, ...props }) {
1998
+ import { cn as cn36 } from "@boostdev/design-system-foundation";
1999
+ import { jsx as jsx39, jsxs as jsxs28 } from "react/jsx-runtime";
2000
+ function Radio({ label, name, description, error, hint, className, ...props }) {
1962
2001
  const id = name + useId14();
1963
2002
  const hintId = id + "hint";
1964
2003
  const errorId = id + "error";
1965
2004
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
1966
- return /* @__PURE__ */ jsxs27(InputContainer, { className: cn35(Radio_default.radioGroup, className), children: [
1967
- /* @__PURE__ */ jsxs27("div", { className: Radio_default.inputWrapper, children: [
1968
- /* @__PURE__ */ jsx38(
2005
+ return /* @__PURE__ */ jsxs28(InputContainer, { className: cn36(Radio_default.radioGroup, className), children: [
2006
+ /* @__PURE__ */ jsxs28("div", { className: Radio_default.inputWrapper, children: [
2007
+ /* @__PURE__ */ jsx39(
1969
2008
  "input",
1970
2009
  {
1971
2010
  "aria-describedby": describedBy,
@@ -1973,14 +2012,17 @@ function Radio({ label, name, error, hint, className, ...props }) {
1973
2012
  type: "radio",
1974
2013
  id,
1975
2014
  name,
1976
- className: cn35(Radio_default.radio, error && Radio_default.radioError),
2015
+ className: cn36(Radio_default.radio, error && Radio_default.radioError),
1977
2016
  ...props
1978
2017
  }
1979
2018
  ),
1980
- /* @__PURE__ */ jsx38(Label, { id, label })
2019
+ /* @__PURE__ */ jsxs28("div", { className: Radio_default.textWrapper, children: [
2020
+ /* @__PURE__ */ jsx39(Label, { id, label }),
2021
+ description && /* @__PURE__ */ jsx39("span", { className: Radio_default.description, children: description })
2022
+ ] })
1981
2023
  ] }),
1982
- /* @__PURE__ */ jsx38(Message, { inputId: id, type: "error", message: error }),
1983
- /* @__PURE__ */ jsx38(Message, { inputId: id, type: "hint", message: hint })
2024
+ /* @__PURE__ */ jsx39(Message, { inputId: id, type: "error", message: error }),
2025
+ /* @__PURE__ */ jsx39(Message, { inputId: id, type: "hint", message: hint })
1984
2026
  ] });
1985
2027
  }
1986
2028
 
@@ -1988,11 +2030,11 @@ function Radio({ label, name, error, hint, className, ...props }) {
1988
2030
  import { useId as useId15 } from "react";
1989
2031
 
1990
2032
  // src/components/interaction/form/Select/Select.module.css
1991
- var Select_default = {"formGroup":"bds0113Select-formGroup","selectWrapper":"bds0113Select-selectWrapper","select":"bds0113Select-select","selectError":"bds0113Select-selectError","chevron":"bds0113Select-chevron"};
2033
+ var Select_default = {"formGroup":"bds0115Select-formGroup","selectWrapper":"bds0115Select-selectWrapper","select":"bds0115Select-select","selectError":"bds0115Select-selectError","chevron":"bds0115Select-chevron"};
1992
2034
 
1993
2035
  // src/components/interaction/form/Select/Select.tsx
1994
- import { cn as cn36 } from "@boostdev/design-system-foundation";
1995
- import { jsx as jsx39, jsxs as jsxs28 } from "react/jsx-runtime";
2036
+ import { cn as cn37 } from "@boostdev/design-system-foundation";
2037
+ import { jsx as jsx40, jsxs as jsxs29 } from "react/jsx-runtime";
1996
2038
  function Select({
1997
2039
  label,
1998
2040
  name,
@@ -2007,28 +2049,28 @@ function Select({
2007
2049
  const hintId = id + "hint";
2008
2050
  const errorId = id + "error";
2009
2051
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
2010
- return /* @__PURE__ */ jsxs28(InputContainer, { className: cn36(Select_default.formGroup, className), children: [
2011
- /* @__PURE__ */ jsx39(Label, { id, label }),
2012
- /* @__PURE__ */ jsxs28("div", { className: Select_default.selectWrapper, children: [
2013
- /* @__PURE__ */ jsxs28(
2052
+ return /* @__PURE__ */ jsxs29(InputContainer, { className: cn37(Select_default.formGroup, className), children: [
2053
+ /* @__PURE__ */ jsx40(Label, { id, label }),
2054
+ /* @__PURE__ */ jsxs29("div", { className: Select_default.selectWrapper, children: [
2055
+ /* @__PURE__ */ jsxs29(
2014
2056
  "select",
2015
2057
  {
2016
2058
  id,
2017
2059
  name,
2018
2060
  "aria-invalid": !!error,
2019
2061
  "aria-describedby": describedBy,
2020
- className: cn36(Select_default.select, error ? Select_default.selectError : void 0),
2062
+ className: cn37(Select_default.select, error ? Select_default.selectError : void 0),
2021
2063
  ...props,
2022
2064
  children: [
2023
- placeholder && /* @__PURE__ */ jsx39("option", { value: "", disabled: true, hidden: true, children: placeholder }),
2024
- options.map(({ value, label: optLabel, disabled }) => /* @__PURE__ */ jsx39("option", { value, disabled, children: optLabel }, value))
2065
+ placeholder && /* @__PURE__ */ jsx40("option", { value: "", disabled: true, hidden: true, children: placeholder }),
2066
+ options.map(({ value, label: optLabel, disabled }) => /* @__PURE__ */ jsx40("option", { value, disabled, children: optLabel }, value))
2025
2067
  ]
2026
2068
  }
2027
2069
  ),
2028
- /* @__PURE__ */ jsx39("span", { className: Select_default.chevron, "aria-hidden": "true", children: /* @__PURE__ */ jsx39("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx39("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" }) }) })
2070
+ /* @__PURE__ */ jsx40("span", { className: Select_default.chevron, "aria-hidden": "true", children: /* @__PURE__ */ jsx40("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx40("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" }) }) })
2029
2071
  ] }),
2030
- /* @__PURE__ */ jsx39(Message, { inputId: id, type: "error", message: error }),
2031
- /* @__PURE__ */ jsx39(Message, { inputId: id, type: "hint", message: hint })
2072
+ /* @__PURE__ */ jsx40(Message, { inputId: id, type: "error", message: error }),
2073
+ /* @__PURE__ */ jsx40(Message, { inputId: id, type: "hint", message: hint })
2032
2074
  ] });
2033
2075
  }
2034
2076
 
@@ -2036,11 +2078,11 @@ function Select({
2036
2078
  import { useId as useId16, useState as useState11 } from "react";
2037
2079
 
2038
2080
  // src/components/interaction/form/Slider/Slider.module.css
2039
- var Slider_default = {"formGroup":"bds0113Slider-formGroup","labelRow":"bds0113Slider-labelRow","value":"bds0113Slider-value","slider":"bds0113Slider-slider","sliderError":"bds0113Slider-sliderError"};
2081
+ var Slider_default = {"formGroup":"bds0115Slider-formGroup","labelRow":"bds0115Slider-labelRow","value":"bds0115Slider-value","slider":"bds0115Slider-slider","sliderError":"bds0115Slider-sliderError"};
2040
2082
 
2041
2083
  // src/components/interaction/form/Slider/Slider.tsx
2042
- import { cn as cn37 } from "@boostdev/design-system-foundation";
2043
- import { jsx as jsx40, jsxs as jsxs29 } from "react/jsx-runtime";
2084
+ import { cn as cn38 } from "@boostdev/design-system-foundation";
2085
+ import { jsx as jsx41, jsxs as jsxs30 } from "react/jsx-runtime";
2044
2086
  function Slider({
2045
2087
  label,
2046
2088
  name,
@@ -2065,12 +2107,12 @@ function Slider({
2065
2107
  if (!isControlled) setInternalValue(Number(e.target.value));
2066
2108
  onChange?.(e);
2067
2109
  };
2068
- return /* @__PURE__ */ jsxs29(InputContainer, { className: cn37(Slider_default.formGroup, className), children: [
2069
- /* @__PURE__ */ jsxs29("div", { className: Slider_default.labelRow, children: [
2070
- /* @__PURE__ */ jsx40(Label, { id, label }),
2071
- showValue && /* @__PURE__ */ jsx40("span", { className: Slider_default.value, children: currentValue })
2110
+ return /* @__PURE__ */ jsxs30(InputContainer, { className: cn38(Slider_default.formGroup, className), children: [
2111
+ /* @__PURE__ */ jsxs30("div", { className: Slider_default.labelRow, children: [
2112
+ /* @__PURE__ */ jsx41(Label, { id, label }),
2113
+ showValue && /* @__PURE__ */ jsx41("span", { className: Slider_default.value, children: currentValue })
2072
2114
  ] }),
2073
- /* @__PURE__ */ jsx40(
2115
+ /* @__PURE__ */ jsx41(
2074
2116
  "input",
2075
2117
  {
2076
2118
  type: "range",
@@ -2082,14 +2124,14 @@ function Slider({
2082
2124
  "aria-valuemin": min,
2083
2125
  "aria-valuemax": max,
2084
2126
  "aria-valuenow": currentValue,
2085
- className: cn37(Slider_default.slider, error ? Slider_default.sliderError : void 0),
2127
+ className: cn38(Slider_default.slider, error ? Slider_default.sliderError : void 0),
2086
2128
  style: { "--slider_fill": `${fillPct}%` },
2087
2129
  onChange: handleChange,
2088
2130
  ...props
2089
2131
  }
2090
2132
  ),
2091
- /* @__PURE__ */ jsx40(Message, { inputId: id, type: "error", message: error }),
2092
- /* @__PURE__ */ jsx40(Message, { inputId: id, type: "hint", message: hint })
2133
+ /* @__PURE__ */ jsx41(Message, { inputId: id, type: "error", message: error }),
2134
+ /* @__PURE__ */ jsx41(Message, { inputId: id, type: "hint", message: hint })
2093
2135
  ] });
2094
2136
  }
2095
2137
 
@@ -2097,11 +2139,11 @@ function Slider({
2097
2139
  import { useId as useId17 } from "react";
2098
2140
 
2099
2141
  // src/components/interaction/form/Switch/Switch.module.css
2100
- var Switch_default = {"switchGroup":"bds0113Switch-switchGroup","--size_small":"bds0113Switch---size_small","--size_medium":"bds0113Switch---size_medium","--size_large":"bds0113Switch---size_large","inputWrapper":"bds0113Switch-inputWrapper","trackWrapper":"bds0113Switch-trackWrapper","switch":"bds0113Switch-switch","track":"bds0113Switch-track","thumb":"bds0113Switch-thumb","switchError":"bds0113Switch-switchError"};
2142
+ var Switch_default = {"switchGroup":"bds0115Switch-switchGroup","--size_small":"bds0115Switch---size_small","--size_medium":"bds0115Switch---size_medium","--size_large":"bds0115Switch---size_large","inputWrapper":"bds0115Switch-inputWrapper","trackWrapper":"bds0115Switch-trackWrapper","switch":"bds0115Switch-switch","track":"bds0115Switch-track","thumb":"bds0115Switch-thumb","switchError":"bds0115Switch-switchError"};
2101
2143
 
2102
2144
  // src/components/interaction/form/Switch/Switch.tsx
2103
- import { cn as cn38 } from "@boostdev/design-system-foundation";
2104
- import { jsx as jsx41, jsxs as jsxs30 } from "react/jsx-runtime";
2145
+ import { cn as cn39 } from "@boostdev/design-system-foundation";
2146
+ import { jsx as jsx42, jsxs as jsxs31 } from "react/jsx-runtime";
2105
2147
  function Switch({
2106
2148
  label,
2107
2149
  name,
@@ -2115,10 +2157,10 @@ function Switch({
2115
2157
  const hintId = id + "hint";
2116
2158
  const errorId = id + "error";
2117
2159
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
2118
- return /* @__PURE__ */ jsxs30(InputContainer, { className: cn38(Switch_default.switchGroup, Switch_default[`--size_${size}`], className), children: [
2119
- /* @__PURE__ */ jsxs30("div", { className: Switch_default.inputWrapper, children: [
2120
- /* @__PURE__ */ jsxs30("div", { className: Switch_default.trackWrapper, children: [
2121
- /* @__PURE__ */ jsx41(
2160
+ return /* @__PURE__ */ jsxs31(InputContainer, { className: cn39(Switch_default.switchGroup, Switch_default[`--size_${size}`], className), children: [
2161
+ /* @__PURE__ */ jsxs31("div", { className: Switch_default.inputWrapper, children: [
2162
+ /* @__PURE__ */ jsxs31("div", { className: Switch_default.trackWrapper, children: [
2163
+ /* @__PURE__ */ jsx42(
2122
2164
  "input",
2123
2165
  {
2124
2166
  type: "checkbox",
@@ -2126,16 +2168,16 @@ function Switch({
2126
2168
  id,
2127
2169
  name,
2128
2170
  "aria-describedby": describedBy,
2129
- className: cn38(Switch_default.switch, error ? Switch_default.switchError : void 0),
2171
+ className: cn39(Switch_default.switch, error ? Switch_default.switchError : void 0),
2130
2172
  ...props
2131
2173
  }
2132
2174
  ),
2133
- /* @__PURE__ */ jsx41("span", { className: Switch_default.track, "aria-hidden": "true", children: /* @__PURE__ */ jsx41("span", { className: Switch_default.thumb }) })
2175
+ /* @__PURE__ */ jsx42("span", { className: Switch_default.track, "aria-hidden": "true", children: /* @__PURE__ */ jsx42("span", { className: Switch_default.thumb }) })
2134
2176
  ] }),
2135
- /* @__PURE__ */ jsx41(Label, { id, label })
2177
+ /* @__PURE__ */ jsx42(Label, { id, label })
2136
2178
  ] }),
2137
- /* @__PURE__ */ jsx41(Message, { inputId: id, type: "error", message: error }),
2138
- /* @__PURE__ */ jsx41(Message, { inputId: id, type: "hint", message: hint })
2179
+ /* @__PURE__ */ jsx42(Message, { inputId: id, type: "error", message: error }),
2180
+ /* @__PURE__ */ jsx42(Message, { inputId: id, type: "hint", message: hint })
2139
2181
  ] });
2140
2182
  }
2141
2183
 
@@ -2143,11 +2185,11 @@ function Switch({
2143
2185
  import { useId as useId18 } from "react";
2144
2186
 
2145
2187
  // src/components/interaction/form/Textarea/Textarea.module.css
2146
- var Textarea_default = {"formGroup":"bds0113Textarea-formGroup","textarea":"bds0113Textarea-textarea","textareaError":"bds0113Textarea-textareaError"};
2188
+ var Textarea_default = {"formGroup":"bds0115Textarea-formGroup","textarea":"bds0115Textarea-textarea","textareaError":"bds0115Textarea-textareaError"};
2147
2189
 
2148
2190
  // src/components/interaction/form/Textarea/Textarea.tsx
2149
- import { cn as cn39 } from "@boostdev/design-system-foundation";
2150
- import { jsx as jsx42, jsxs as jsxs31 } from "react/jsx-runtime";
2191
+ import { cn as cn40 } from "@boostdev/design-system-foundation";
2192
+ import { jsx as jsx43, jsxs as jsxs32 } from "react/jsx-runtime";
2151
2193
  function Textarea({
2152
2194
  label,
2153
2195
  name,
@@ -2160,40 +2202,40 @@ function Textarea({
2160
2202
  const hintId = id + "hint";
2161
2203
  const errorId = id + "error";
2162
2204
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
2163
- return /* @__PURE__ */ jsxs31(InputContainer, { className: cn39(Textarea_default.formGroup, className), children: [
2164
- /* @__PURE__ */ jsx42(Label, { id, label }),
2165
- /* @__PURE__ */ jsx42(
2205
+ return /* @__PURE__ */ jsxs32(InputContainer, { className: cn40(Textarea_default.formGroup, className), children: [
2206
+ /* @__PURE__ */ jsx43(Label, { id, label }),
2207
+ /* @__PURE__ */ jsx43(
2166
2208
  "textarea",
2167
2209
  {
2168
2210
  id,
2169
2211
  name,
2170
2212
  "aria-invalid": !!error,
2171
2213
  "aria-describedby": describedBy,
2172
- className: cn39(Textarea_default.textarea, error ? Textarea_default.textareaError : void 0),
2214
+ className: cn40(Textarea_default.textarea, error ? Textarea_default.textareaError : void 0),
2173
2215
  ...props
2174
2216
  }
2175
2217
  ),
2176
- /* @__PURE__ */ jsx42(Message, { inputId: id, type: "error", message: error }),
2177
- /* @__PURE__ */ jsx42(Message, { inputId: id, type: "hint", message: hint })
2218
+ /* @__PURE__ */ jsx43(Message, { inputId: id, type: "error", message: error }),
2219
+ /* @__PURE__ */ jsx43(Message, { inputId: id, type: "hint", message: hint })
2178
2220
  ] });
2179
2221
  }
2180
2222
 
2181
2223
  // src/components/layout/ButtonGroup/ButtonGroup.module.css
2182
- var ButtonGroup_default = {"buttonGroup":"bds0113ButtonGroup-buttonGroup","container":"bds0113ButtonGroup-container","--variant__card":"bds0113ButtonGroup---variant__card","--variant__flow":"bds0113ButtonGroup---variant__flow","--variant__modal":"bds0113ButtonGroup---variant__modal","--variant__content":"bds0113ButtonGroup---variant__content","--variant__grid":"bds0113ButtonGroup---variant__grid"};
2224
+ var ButtonGroup_default = {"buttonGroup":"bds0115ButtonGroup-buttonGroup","container":"bds0115ButtonGroup-container","--variant_card":"bds0115ButtonGroup---variant_card","--variant_flow":"bds0115ButtonGroup---variant_flow","--variant_modal":"bds0115ButtonGroup---variant_modal","--variant_content":"bds0115ButtonGroup---variant_content","--variant_grid":"bds0115ButtonGroup---variant_grid"};
2183
2225
 
2184
2226
  // src/components/layout/ButtonGroup/ButtonGroup.tsx
2185
- import { cn as cn40 } from "@boostdev/design-system-foundation";
2186
- import { jsx as jsx43 } from "react/jsx-runtime";
2227
+ import { cn as cn41 } from "@boostdev/design-system-foundation";
2228
+ import { jsx as jsx44 } from "react/jsx-runtime";
2187
2229
  function ButtonGroup({ children, className, variant }) {
2188
- return /* @__PURE__ */ jsx43("div", { className: cn40(ButtonGroup_default.buttonGroup, className, variant && ButtonGroup_default[`--variant_${variant}`]), children: /* @__PURE__ */ jsx43("div", { className: ButtonGroup_default.container, children }) });
2230
+ return /* @__PURE__ */ jsx44("div", { className: cn41(ButtonGroup_default.buttonGroup, className, variant && ButtonGroup_default[`--variant_${variant}`]), children: /* @__PURE__ */ jsx44("div", { className: ButtonGroup_default.container, children }) });
2189
2231
  }
2190
2232
 
2191
2233
  // src/components/layout/Card/Card.module.css
2192
- var Card_default = {"card":"bds0113Card-card","--default":"bds0113Card---default","--elevated":"bds0113Card---elevated","--outlined":"bds0113Card---outlined","--clickable":"bds0113Card---clickable","--padding-none":"bds0113Card---padding-none","--padding-small":"bds0113Card---padding-small","--padding-medium":"bds0113Card---padding-medium","--padding-large":"bds0113Card---padding-large","--text-start":"bds0113Card---text-start","--text-center":"bds0113Card---text-center","--text-end":"bds0113Card---text-end"};
2234
+ var Card_default = {"card":"bds0115Card-card","--default":"bds0115Card---default","--elevated":"bds0115Card---elevated","--outlined":"bds0115Card---outlined","--clickable":"bds0115Card---clickable","--padding-none":"bds0115Card---padding-none","--padding-small":"bds0115Card---padding-small","--padding-medium":"bds0115Card---padding-medium","--padding-large":"bds0115Card---padding-large","--text-start":"bds0115Card---text-start","--text-center":"bds0115Card---text-center","--text-end":"bds0115Card---text-end"};
2193
2235
 
2194
2236
  // src/components/layout/Card/Card.tsx
2195
- import { cn as cn41 } from "@boostdev/design-system-foundation";
2196
- import { jsx as jsx44 } from "react/jsx-runtime";
2237
+ import { cn as cn42 } from "@boostdev/design-system-foundation";
2238
+ import { jsx as jsx45 } from "react/jsx-runtime";
2197
2239
  function Card({
2198
2240
  children,
2199
2241
  className,
@@ -2204,7 +2246,7 @@ function Card({
2204
2246
  onClick,
2205
2247
  "aria-label": ariaLabel
2206
2248
  }) {
2207
- const classNames = cn41(
2249
+ const classNames = cn42(
2208
2250
  Card_default.card,
2209
2251
  Card_default[`--${variant}`],
2210
2252
  Card_default[`--padding-${padding}`],
@@ -2213,7 +2255,7 @@ function Card({
2213
2255
  className
2214
2256
  );
2215
2257
  const Component = onClick ? "button" : "div";
2216
- return /* @__PURE__ */ jsx44(
2258
+ return /* @__PURE__ */ jsx45(
2217
2259
  Component,
2218
2260
  {
2219
2261
  className: classNames,
@@ -2227,11 +2269,11 @@ function Card({
2227
2269
  }
2228
2270
 
2229
2271
  // src/components/layout/SectionHeader/SectionHeader.module.css
2230
- var SectionHeader_default = {"sectionHeader":"bds0113SectionHeader-sectionHeader","title":"bds0113SectionHeader-title","subtitle":"bds0113SectionHeader-subtitle","--start":"bds0113SectionHeader---start","--center":"bds0113SectionHeader---center","--end":"bds0113SectionHeader---end","--small":"bds0113SectionHeader---small","--medium":"bds0113SectionHeader---medium","--large":"bds0113SectionHeader---large"};
2272
+ var SectionHeader_default = {"sectionHeader":"bds0115SectionHeader-sectionHeader","title":"bds0115SectionHeader-title","subtitle":"bds0115SectionHeader-subtitle","--start":"bds0115SectionHeader---start","--center":"bds0115SectionHeader---center","--end":"bds0115SectionHeader---end","--small":"bds0115SectionHeader---small","--medium":"bds0115SectionHeader---medium","--large":"bds0115SectionHeader---large"};
2231
2273
 
2232
2274
  // src/components/layout/SectionHeader/SectionHeader.tsx
2233
- import { cn as cn42 } from "@boostdev/design-system-foundation";
2234
- import { jsx as jsx45, jsxs as jsxs32 } from "react/jsx-runtime";
2275
+ import { cn as cn43 } from "@boostdev/design-system-foundation";
2276
+ import { jsx as jsx46, jsxs as jsxs33 } from "react/jsx-runtime";
2235
2277
  function SectionHeader({
2236
2278
  title,
2237
2279
  subtitle,
@@ -2241,24 +2283,24 @@ function SectionHeader({
2241
2283
  titleAs = "h2"
2242
2284
  }) {
2243
2285
  const Title = titleAs;
2244
- return /* @__PURE__ */ jsxs32("header", { className: cn42(SectionHeader_default.sectionHeader, SectionHeader_default[`--${alignment}`], SectionHeader_default[`--${size}`], className), children: [
2245
- /* @__PURE__ */ jsx45(Title, { className: SectionHeader_default.title, children: title }),
2246
- subtitle && /* @__PURE__ */ jsx45("p", { className: SectionHeader_default.subtitle, children: subtitle })
2286
+ return /* @__PURE__ */ jsxs33("header", { className: cn43(SectionHeader_default.sectionHeader, SectionHeader_default[`--${alignment}`], SectionHeader_default[`--${size}`], className), children: [
2287
+ /* @__PURE__ */ jsx46(Title, { className: SectionHeader_default.title, children: title }),
2288
+ subtitle && /* @__PURE__ */ jsx46("p", { className: SectionHeader_default.subtitle, children: subtitle })
2247
2289
  ] });
2248
2290
  }
2249
2291
 
2250
2292
  // src/components/layout/IconWrapper/IconWrapper.module.css
2251
- var IconWrapper_default = {"wrapper":"bds0113IconWrapper-wrapper"};
2293
+ var IconWrapper_default = {"wrapper":"bds0115IconWrapper-wrapper"};
2252
2294
 
2253
2295
  // src/components/layout/IconWrapper/IconWrapper.tsx
2254
- import { cn as cn43 } from "@boostdev/design-system-foundation";
2255
- import { jsx as jsx46 } from "react/jsx-runtime";
2296
+ import { cn as cn44 } from "@boostdev/design-system-foundation";
2297
+ import { jsx as jsx47 } from "react/jsx-runtime";
2256
2298
  function IconWrapper({ children, className }) {
2257
- return /* @__PURE__ */ jsx46("div", { className: cn43(className, IconWrapper_default.wrapper), children });
2299
+ return /* @__PURE__ */ jsx47("div", { className: cn44(className, IconWrapper_default.wrapper), children });
2258
2300
  }
2259
2301
 
2260
2302
  // src/index.ts
2261
- import { cn as cn44 } from "@boostdev/design-system-foundation";
2303
+ import { cn as cn45 } from "@boostdev/design-system-foundation";
2262
2304
  export {
2263
2305
  Accordion,
2264
2306
  Alert,
@@ -2271,6 +2313,7 @@ export {
2271
2313
  Card,
2272
2314
  Carousel,
2273
2315
  Checkbox,
2316
+ Collapsible,
2274
2317
  Combobox,
2275
2318
  Command,
2276
2319
  DescriptionList,
@@ -2303,6 +2346,6 @@ export {
2303
2346
  ToastProvider,
2304
2347
  Tooltip,
2305
2348
  Typography,
2306
- cn44 as cn,
2349
+ cn45 as cn,
2307
2350
  useToast
2308
2351
  };