@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.cjs CHANGED
@@ -31,6 +31,7 @@ __export(index_exports, {
31
31
  Card: () => Card,
32
32
  Carousel: () => Carousel,
33
33
  Checkbox: () => Checkbox,
34
+ Collapsible: () => Collapsible,
34
35
  Combobox: () => Combobox,
35
36
  Command: () => Command,
36
37
  DescriptionList: () => DescriptionList,
@@ -63,7 +64,7 @@ __export(index_exports, {
63
64
  ToastProvider: () => ToastProvider,
64
65
  Tooltip: () => Tooltip,
65
66
  Typography: () => Typography,
66
- cn: () => import_design_system_foundation44.cn,
67
+ cn: () => import_design_system_foundation45.cn,
67
68
  useToast: () => useToast
68
69
  });
69
70
  module.exports = __toCommonJS(index_exports);
@@ -72,7 +73,7 @@ module.exports = __toCommonJS(index_exports);
72
73
  var import_react = require("react");
73
74
 
74
75
  // src/components/ui/Accordion/Accordion.module.css
75
- 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"};
76
+ 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"};
76
77
 
77
78
  // src/components/ui/Accordion/Accordion.tsx
78
79
  var import_design_system_foundation = require("@boostdev/design-system-foundation");
@@ -140,7 +141,7 @@ function Accordion({
140
141
  }
141
142
 
142
143
  // src/components/ui/Alert/Alert.module.css
143
- 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"};
144
+ 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"};
144
145
 
145
146
  // src/components/ui/Alert/Alert.tsx
146
147
  var import_design_system_foundation2 = require("@boostdev/design-system-foundation");
@@ -183,7 +184,7 @@ function Alert({
183
184
  }
184
185
 
185
186
  // src/components/ui/Avatar/Avatar.module.css
186
- 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"};
187
+ 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"};
187
188
 
188
189
  // src/components/ui/Avatar/Avatar.tsx
189
190
  var import_design_system_foundation3 = require("@boostdev/design-system-foundation");
@@ -209,7 +210,7 @@ function Avatar({ src, alt, name, size = "medium", className }) {
209
210
  }
210
211
 
211
212
  // src/components/ui/Badge/Badge.module.css
212
- 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"};
213
+ 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"};
213
214
 
214
215
  // src/components/ui/Badge/Badge.tsx
215
216
  var import_design_system_foundation4 = require("@boostdev/design-system-foundation");
@@ -219,7 +220,7 @@ function Badge({ children, variant = "primary", className }) {
219
220
  }
220
221
 
221
222
  // src/components/ui/Breadcrumb/Breadcrumb.module.css
222
- var Breadcrumb_default = {"breadcrumb":"bds0113Breadcrumb-breadcrumb","list":"bds0113Breadcrumb-list","item":"bds0113Breadcrumb-item","link":"bds0113Breadcrumb-link","separator":"bds0113Breadcrumb-separator","current":"bds0113Breadcrumb-current"};
223
+ var Breadcrumb_default = {"breadcrumb":"bds0115Breadcrumb-breadcrumb","list":"bds0115Breadcrumb-list","item":"bds0115Breadcrumb-item","link":"bds0115Breadcrumb-link","separator":"bds0115Breadcrumb-separator","current":"bds0115Breadcrumb-current"};
223
224
 
224
225
  // src/components/ui/Breadcrumb/Breadcrumb.tsx
225
226
  var import_design_system_foundation5 = require("@boostdev/design-system-foundation");
@@ -234,15 +235,53 @@ function Breadcrumb({ items, className }) {
234
235
  }) }) });
235
236
  }
236
237
 
238
+ // src/components/ui/Collapsible/Collapsible.module.css
239
+ var Collapsible_default = {"collapsible":"bds0115Collapsible-collapsible","summary":"bds0115Collapsible-summary","summaryContent":"bds0115Collapsible-summaryContent","icon":"bds0115Collapsible-icon","content":"bds0115Collapsible-content"};
240
+
241
+ // src/components/ui/Collapsible/Collapsible.tsx
242
+ var import_design_system_foundation6 = require("@boostdev/design-system-foundation");
243
+ var import_jsx_runtime6 = require("react/jsx-runtime");
244
+ function Collapsible({
245
+ summary,
246
+ children,
247
+ open,
248
+ defaultOpen,
249
+ onToggle,
250
+ name,
251
+ className,
252
+ ...rest
253
+ }) {
254
+ const handleToggle = (e) => {
255
+ onToggle?.(e.currentTarget.open);
256
+ };
257
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
258
+ "details",
259
+ {
260
+ className: (0, import_design_system_foundation6.cn)(Collapsible_default.collapsible, className),
261
+ open: open ?? defaultOpen,
262
+ name,
263
+ onToggle: handleToggle,
264
+ ...rest,
265
+ children: [
266
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("summary", { className: Collapsible_default.summary, children: [
267
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: Collapsible_default.summaryContent, children: summary }),
268
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: Collapsible_default.icon, "aria-hidden": "true" })
269
+ ] }),
270
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: Collapsible_default.content, children })
271
+ ]
272
+ }
273
+ );
274
+ }
275
+
237
276
  // src/components/ui/Calendar/Calendar.tsx
238
277
  var import_react2 = require("react");
239
278
 
240
279
  // src/components/ui/Calendar/Calendar.module.css
241
- 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"};
280
+ 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"};
242
281
 
243
282
  // src/components/ui/Calendar/Calendar.tsx
244
- var import_design_system_foundation6 = require("@boostdev/design-system-foundation");
245
- var import_jsx_runtime6 = require("react/jsx-runtime");
283
+ var import_design_system_foundation7 = require("@boostdev/design-system-foundation");
284
+ var import_jsx_runtime7 = require("react/jsx-runtime");
246
285
  var DAYS = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"];
247
286
  var MONTHS = [
248
287
  "January",
@@ -329,54 +368,54 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
329
368
  ...Array.from({ length: daysInMonth }, (_, i) => ({ day: i + 1 }))
330
369
  ];
331
370
  while (cells.length % 7 !== 0) cells.push(null);
332
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: (0, import_design_system_foundation6.cn)(Calendar_default.calendar, className), role: "group", "aria-labelledby": titleId, children: [
333
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: Calendar_default.header, children: [
334
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
371
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: (0, import_design_system_foundation7.cn)(Calendar_default.calendar, className), role: "group", "aria-labelledby": titleId, children: [
372
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: Calendar_default.header, children: [
373
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
335
374
  "button",
336
375
  {
337
376
  type: "button",
338
377
  className: Calendar_default.navBtn,
339
378
  "aria-label": "Previous month",
340
379
  onClick: () => navigate(-1),
341
- children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
380
+ children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
342
381
  }
343
382
  ),
344
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("span", { id: titleId, className: Calendar_default.monthYear, "aria-live": "polite", children: [
383
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { id: titleId, className: Calendar_default.monthYear, "aria-live": "polite", children: [
345
384
  MONTHS[viewMonth],
346
385
  " ",
347
386
  viewYear
348
387
  ] }),
349
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
388
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
350
389
  "button",
351
390
  {
352
391
  type: "button",
353
392
  className: Calendar_default.navBtn,
354
393
  "aria-label": "Next month",
355
394
  onClick: () => navigate(1),
356
- children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
395
+ children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
357
396
  }
358
397
  )
359
398
  ] }),
360
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
399
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
361
400
  "table",
362
401
  {
363
402
  className: Calendar_default.grid,
364
403
  role: "grid",
365
404
  "aria-labelledby": titleId,
366
405
  children: [
367
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("thead", { children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("tr", { children: DAYS.map((d) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("th", { scope: "col", abbr: d, className: Calendar_default.weekday, children: d }, d)) }) }),
368
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("tbody", { children: Array.from({ length: cells.length / 7 }, (_, row) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("tr", { children: cells.slice(row * 7, row * 7 + 7).map((cell, col) => {
369
- if (!cell) return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("td", { className: Calendar_default.empty, "aria-hidden": "true" }, col);
406
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("thead", { children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("tr", { children: DAYS.map((d) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("th", { scope: "col", abbr: d, className: Calendar_default.weekday, children: d }, d)) }) }),
407
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("tbody", { children: Array.from({ length: cells.length / 7 }, (_, row) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("tr", { children: cells.slice(row * 7, row * 7 + 7).map((cell, col) => {
408
+ if (!cell) return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("td", { className: Calendar_default.empty, "aria-hidden": "true" }, col);
370
409
  const date = new Date(viewYear, viewMonth, cell.day);
371
410
  const isSelected = selected ? isSameDay(date, selected) : false;
372
411
  const isToday = isSameDay(date, today);
373
412
  const disabled = isOutOfRange(date, min, max);
374
413
  const isFocused = focusedDay === cell.day;
375
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("td", { role: "gridcell", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
414
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("td", { role: "gridcell", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
376
415
  "button",
377
416
  {
378
417
  type: "button",
379
- className: (0, import_design_system_foundation6.cn)(
418
+ className: (0, import_design_system_foundation7.cn)(
380
419
  Calendar_default.day,
381
420
  isSelected && Calendar_default.selected,
382
421
  isToday && !isSelected && Calendar_default.today,
@@ -404,11 +443,11 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
404
443
  var import_react3 = require("react");
405
444
 
406
445
  // src/components/ui/Carousel/Carousel.module.css
407
- var Carousel_default = {"carousel":"bds0113Carousel-carousel","track":"bds0113Carousel-track","slide":"bds0113Carousel-slide","navBtn":"bds0113Carousel-navBtn"};
446
+ var Carousel_default = {"carousel":"bds0115Carousel-carousel","track":"bds0115Carousel-track","slide":"bds0115Carousel-slide","navBtn":"bds0115Carousel-navBtn"};
408
447
 
409
448
  // src/components/ui/Carousel/Carousel.tsx
410
- var import_design_system_foundation7 = require("@boostdev/design-system-foundation");
411
- var import_jsx_runtime7 = require("react/jsx-runtime");
449
+ var import_design_system_foundation8 = require("@boostdev/design-system-foundation");
450
+ var import_jsx_runtime8 = require("react/jsx-runtime");
412
451
  function Carousel({ items, label, className }) {
413
452
  const trackRef = (0, import_react3.useRef)(null);
414
453
  const listId = (0, import_react3.useId)();
@@ -420,61 +459,61 @@ function Carousel({ items, label, className }) {
420
459
  behavior: "smooth"
421
460
  });
422
461
  };
423
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { "aria-label": label, className: (0, import_design_system_foundation7.cn)(Carousel_default.carousel, className), children: [
424
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
462
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { "aria-label": label, className: (0, import_design_system_foundation8.cn)(Carousel_default.carousel, className), children: [
463
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
425
464
  "button",
426
465
  {
427
466
  type: "button",
428
- className: (0, import_design_system_foundation7.cn)(Carousel_default.navBtn, Carousel_default["--prev"]),
467
+ className: (0, import_design_system_foundation8.cn)(Carousel_default.navBtn, Carousel_default["--prev"]),
429
468
  "aria-label": "Previous",
430
469
  "aria-controls": listId,
431
470
  onClick: () => scroll("prev"),
432
- children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
471
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
433
472
  }
434
473
  ),
435
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
474
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
436
475
  "div",
437
476
  {
438
477
  ref: trackRef,
439
478
  id: listId,
440
479
  role: "list",
441
480
  className: Carousel_default.track,
442
- children: items.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { role: "listitem", className: Carousel_default.slide, children: item }, i))
481
+ children: items.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { role: "listitem", className: Carousel_default.slide, children: item }, i))
443
482
  }
444
483
  ),
445
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
484
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
446
485
  "button",
447
486
  {
448
487
  type: "button",
449
- className: (0, import_design_system_foundation7.cn)(Carousel_default.navBtn, Carousel_default["--next"]),
488
+ className: (0, import_design_system_foundation8.cn)(Carousel_default.navBtn, Carousel_default["--next"]),
450
489
  "aria-label": "Next",
451
490
  "aria-controls": listId,
452
491
  onClick: () => scroll("next"),
453
- children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
492
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
454
493
  }
455
494
  )
456
495
  ] });
457
496
  }
458
497
 
459
498
  // src/components/ui/DescriptionList/DescriptionList.module.css
460
- var DescriptionList_default = {"list":"bds0113DescriptionList-list","group":"bds0113DescriptionList-group","term":"bds0113DescriptionList-term","details":"bds0113DescriptionList-details","--layout_inline":"bds0113DescriptionList---layout_inline"};
499
+ var DescriptionList_default = {"list":"bds0115DescriptionList-list","group":"bds0115DescriptionList-group","term":"bds0115DescriptionList-term","details":"bds0115DescriptionList-details","--layout_inline":"bds0115DescriptionList---layout_inline"};
461
500
 
462
501
  // src/components/ui/DescriptionList/DescriptionList.tsx
463
- var import_design_system_foundation8 = require("@boostdev/design-system-foundation");
464
- var import_jsx_runtime8 = require("react/jsx-runtime");
502
+ var import_design_system_foundation9 = require("@boostdev/design-system-foundation");
503
+ var import_jsx_runtime9 = require("react/jsx-runtime");
465
504
  function DescriptionList({ items, layout = "stacked", className }) {
466
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("dl", { className: (0, import_design_system_foundation8.cn)(DescriptionList_default.list, DescriptionList_default[`--layout_${layout}`], className), children: items.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: DescriptionList_default.group, children: [
467
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("dt", { className: DescriptionList_default.term, children: item.term }),
468
- Array.isArray(item.details) ? item.details.map((d, j) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("dd", { className: DescriptionList_default.details, children: d }, j)) : /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("dd", { className: DescriptionList_default.details, children: item.details })
505
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("dl", { className: (0, import_design_system_foundation9.cn)(DescriptionList_default.list, DescriptionList_default[`--layout_${layout}`], className), children: items.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: DescriptionList_default.group, children: [
506
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("dt", { className: DescriptionList_default.term, children: item.term }),
507
+ Array.isArray(item.details) ? item.details.map((d, j) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("dd", { className: DescriptionList_default.details, children: d }, j)) : /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("dd", { className: DescriptionList_default.details, children: item.details })
469
508
  ] }, i)) });
470
509
  }
471
510
 
472
511
  // src/components/ui/Link/Link.module.css
473
- var Link_default = {"link":"bds0113Link-link","--variant_default":"bds0113Link---variant_default","--variant_subtle":"bds0113Link---variant_subtle","--variant_standalone":"bds0113Link---variant_standalone","externalLabel":"bds0113Link-externalLabel"};
512
+ var Link_default = {"link":"bds0115Link-link","--variant_default":"bds0115Link---variant_default","--variant_subtle":"bds0115Link---variant_subtle","--variant_standalone":"bds0115Link---variant_standalone","externalLabel":"bds0115Link-externalLabel"};
474
513
 
475
514
  // src/components/ui/Link/Link.tsx
476
- var import_design_system_foundation9 = require("@boostdev/design-system-foundation");
477
- var import_jsx_runtime9 = require("react/jsx-runtime");
515
+ var import_design_system_foundation10 = require("@boostdev/design-system-foundation");
516
+ var import_jsx_runtime10 = require("react/jsx-runtime");
478
517
  function Link({
479
518
  as,
480
519
  children,
@@ -486,36 +525,36 @@ function Link({
486
525
  }) {
487
526
  const Component = as ?? "a";
488
527
  const externalProps = external ? { target: "_blank", rel: "noreferrer noopener" } : {};
489
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
528
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
490
529
  Component,
491
530
  {
492
- className: (0, import_design_system_foundation9.cn)(Link_default.link, Link_default[`--variant_${variant}`], className),
531
+ className: (0, import_design_system_foundation10.cn)(Link_default.link, Link_default[`--variant_${variant}`], className),
493
532
  ...externalProps,
494
533
  ...props,
495
534
  children: [
496
535
  children,
497
- external && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: Link_default.externalLabel, children: externalLabel })
536
+ external && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: Link_default.externalLabel, children: externalLabel })
498
537
  ]
499
538
  }
500
539
  );
501
540
  }
502
541
 
503
542
  // src/components/ui/Loading/Loading.module.css
504
- var Loading_default = {"loading":"bds0113Loading-loading","spinner":"bds0113Loading-spinner","--size_small":"bds0113Loading---size_small","--size_large":"bds0113Loading---size_large"};
543
+ var Loading_default = {"loading":"bds0115Loading-loading","spinner":"bds0115Loading-spinner","--size_small":"bds0115Loading---size_small","--size_large":"bds0115Loading---size_large"};
505
544
 
506
545
  // src/components/ui/Loading/Loading.tsx
507
- var import_design_system_foundation10 = require("@boostdev/design-system-foundation");
508
- var import_jsx_runtime10 = require("react/jsx-runtime");
546
+ var import_design_system_foundation11 = require("@boostdev/design-system-foundation");
547
+ var import_jsx_runtime11 = require("react/jsx-runtime");
509
548
  function Loading({ size = "medium", className }) {
510
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: (0, import_design_system_foundation10.cn)(Loading_default.loading, Loading_default[`--size_${size}`], className), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: Loading_default.spinner, role: "status", "aria-label": "Loading" }) });
549
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: (0, import_design_system_foundation11.cn)(Loading_default.loading, Loading_default[`--size_${size}`], className), children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: Loading_default.spinner, role: "status", "aria-label": "Loading" }) });
511
550
  }
512
551
 
513
552
  // src/components/ui/NotificationBanner/NotificationBanner.module.css
514
- 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"};
553
+ 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"};
515
554
 
516
555
  // src/components/ui/NotificationBanner/NotificationBanner.tsx
517
- var import_design_system_foundation11 = require("@boostdev/design-system-foundation");
518
- var import_jsx_runtime11 = require("react/jsx-runtime");
556
+ var import_design_system_foundation12 = require("@boostdev/design-system-foundation");
557
+ var import_jsx_runtime12 = require("react/jsx-runtime");
519
558
  function NotificationBanner({
520
559
  variant = "info",
521
560
  children,
@@ -524,24 +563,24 @@ function NotificationBanner({
524
563
  className
525
564
  }) {
526
565
  const isUrgent = variant === "error" || variant === "warning";
527
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
566
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
528
567
  "div",
529
568
  {
530
569
  role: isUrgent ? "alert" : "status",
531
570
  "aria-live": isUrgent ? "assertive" : "polite",
532
571
  "aria-atomic": "true",
533
- className: (0, import_design_system_foundation11.cn)(NotificationBanner_default.banner, NotificationBanner_default[`--variant_${variant}`], className),
572
+ className: (0, import_design_system_foundation12.cn)(NotificationBanner_default.banner, NotificationBanner_default[`--variant_${variant}`], className),
534
573
  children: [
535
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: NotificationBanner_default.content, children }),
536
- action && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: NotificationBanner_default.action, children: action }),
537
- onDismiss && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
574
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: NotificationBanner_default.content, children }),
575
+ action && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: NotificationBanner_default.action, children: action }),
576
+ onDismiss && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
538
577
  "button",
539
578
  {
540
579
  type: "button",
541
580
  className: NotificationBanner_default.dismiss,
542
581
  onClick: onDismiss,
543
582
  "aria-label": "Dismiss notification",
544
- children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
583
+ children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
545
584
  }
546
585
  )
547
586
  ]
@@ -550,11 +589,11 @@ function NotificationBanner({
550
589
  }
551
590
 
552
591
  // src/components/ui/Pagination/Pagination.module.css
553
- var Pagination_default = {"pagination":"bds0113Pagination-pagination","list":"bds0113Pagination-list","button":"bds0113Pagination-button","--active":"bds0113Pagination---active","--nav":"bds0113Pagination---nav","ellipsis":"bds0113Pagination-ellipsis"};
592
+ var Pagination_default = {"pagination":"bds0115Pagination-pagination","list":"bds0115Pagination-list","button":"bds0115Pagination-button","--active":"bds0115Pagination---active","--nav":"bds0115Pagination---nav","ellipsis":"bds0115Pagination-ellipsis"};
554
593
 
555
594
  // src/components/ui/Pagination/Pagination.tsx
556
- var import_design_system_foundation12 = require("@boostdev/design-system-foundation");
557
- var import_jsx_runtime12 = require("react/jsx-runtime");
595
+ var import_design_system_foundation13 = require("@boostdev/design-system-foundation");
596
+ var import_jsx_runtime13 = require("react/jsx-runtime");
558
597
  function getPageRange(current, total) {
559
598
  const delta = 1;
560
599
  const range = [];
@@ -574,24 +613,24 @@ function Pagination({
574
613
  className
575
614
  }) {
576
615
  const pages = getPageRange(currentPage, totalPages);
577
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("nav", { "aria-label": "Pagination", className: (0, import_design_system_foundation12.cn)(Pagination_default.pagination, className), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("ul", { className: Pagination_default.list, children: [
578
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
616
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("nav", { "aria-label": "Pagination", className: (0, import_design_system_foundation13.cn)(Pagination_default.pagination, className), children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("ul", { className: Pagination_default.list, children: [
617
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
579
618
  "button",
580
619
  {
581
620
  type: "button",
582
- className: (0, import_design_system_foundation12.cn)(Pagination_default.button, Pagination_default["--nav"]),
621
+ className: (0, import_design_system_foundation13.cn)(Pagination_default.button, Pagination_default["--nav"]),
583
622
  onClick: () => onPageChange(currentPage - 1),
584
623
  disabled: currentPage <= 1,
585
624
  "aria-label": "Previous page",
586
- children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
625
+ children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) })
587
626
  }
588
627
  ) }),
589
628
  pages.map(
590
- (page, index) => page === "..." ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: Pagination_default.ellipsis, "aria-hidden": "true", children: "\u2026" }) }, `ellipsis-${index}`) : /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
629
+ (page, index) => page === "..." ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: Pagination_default.ellipsis, "aria-hidden": "true", children: "\u2026" }) }, `ellipsis-${index}`) : /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
591
630
  "button",
592
631
  {
593
632
  type: "button",
594
- className: (0, import_design_system_foundation12.cn)(Pagination_default.button, currentPage === page ? Pagination_default["--active"] : void 0),
633
+ className: (0, import_design_system_foundation13.cn)(Pagination_default.button, currentPage === page ? Pagination_default["--active"] : void 0),
595
634
  onClick: () => onPageChange(page),
596
635
  "aria-label": `Page ${page}`,
597
636
  "aria-current": currentPage === page ? "page" : void 0,
@@ -599,26 +638,26 @@ function Pagination({
599
638
  }
600
639
  ) }, page)
601
640
  ),
602
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
641
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
603
642
  "button",
604
643
  {
605
644
  type: "button",
606
- className: (0, import_design_system_foundation12.cn)(Pagination_default.button, Pagination_default["--nav"]),
645
+ className: (0, import_design_system_foundation13.cn)(Pagination_default.button, Pagination_default["--nav"]),
607
646
  onClick: () => onPageChange(currentPage + 1),
608
647
  disabled: currentPage >= totalPages,
609
648
  "aria-label": "Next page",
610
- children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
649
+ children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) })
611
650
  }
612
651
  ) })
613
652
  ] }) });
614
653
  }
615
654
 
616
655
  // src/components/ui/Progress/Progress.module.css
617
- 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"};
656
+ 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"};
618
657
 
619
658
  // src/components/ui/Progress/Progress.tsx
620
- var import_design_system_foundation13 = require("@boostdev/design-system-foundation");
621
- var import_jsx_runtime13 = require("react/jsx-runtime");
659
+ var import_design_system_foundation14 = require("@boostdev/design-system-foundation");
660
+ var import_jsx_runtime14 = require("react/jsx-runtime");
622
661
  function Progress({
623
662
  value,
624
663
  max = 100,
@@ -628,15 +667,15 @@ function Progress({
628
667
  className
629
668
  }) {
630
669
  const percentage = Math.min(100, Math.max(0, value / max * 100));
631
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: (0, import_design_system_foundation13.cn)(Progress_default.container, className), children: [
632
- showLabel && /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: Progress_default.labelRow, children: [
633
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: Progress_default.label, children: label }),
634
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("span", { className: Progress_default.value, children: [
670
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: (0, import_design_system_foundation14.cn)(Progress_default.container, className), children: [
671
+ showLabel && /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: Progress_default.labelRow, children: [
672
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: Progress_default.label, children: label }),
673
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("span", { className: Progress_default.value, children: [
635
674
  Math.round(percentage),
636
675
  "%"
637
676
  ] })
638
677
  ] }),
639
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
678
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
640
679
  "div",
641
680
  {
642
681
  role: "progressbar",
@@ -644,19 +683,19 @@ function Progress({
644
683
  "aria-valuenow": value,
645
684
  "aria-valuemin": 0,
646
685
  "aria-valuemax": max,
647
- className: (0, import_design_system_foundation13.cn)(Progress_default.track, Progress_default[`--size_${size}`]),
648
- children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: Progress_default.fill, style: { width: `${percentage}%` } })
686
+ className: (0, import_design_system_foundation14.cn)(Progress_default.track, Progress_default[`--size_${size}`]),
687
+ children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: Progress_default.fill, style: { width: `${percentage}%` } })
649
688
  }
650
689
  )
651
690
  ] });
652
691
  }
653
692
 
654
693
  // src/components/ui/ProgressCircle/ProgressCircle.module.css
655
- 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"};
694
+ 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"};
656
695
 
657
696
  // src/components/ui/ProgressCircle/ProgressCircle.tsx
658
- var import_design_system_foundation14 = require("@boostdev/design-system-foundation");
659
- var import_jsx_runtime14 = require("react/jsx-runtime");
697
+ var import_design_system_foundation15 = require("@boostdev/design-system-foundation");
698
+ var import_jsx_runtime15 = require("react/jsx-runtime");
660
699
  var SIZE_PX = { small: 40, medium: 64, large: 96 };
661
700
  var STROKE_WIDTH = 4;
662
701
  function ProgressCircle({
@@ -673,7 +712,7 @@ function ProgressCircle({
673
712
  const circumference = 2 * Math.PI * radius;
674
713
  const offset = circumference - percentage / 100 * circumference;
675
714
  const cx = px / 2;
676
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
715
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
677
716
  "div",
678
717
  {
679
718
  role: "progressbar",
@@ -681,9 +720,9 @@ function ProgressCircle({
681
720
  "aria-valuenow": value,
682
721
  "aria-valuemin": 0,
683
722
  "aria-valuemax": max,
684
- className: (0, import_design_system_foundation14.cn)(ProgressCircle_default.wrapper, ProgressCircle_default[`--size_${size}`], className),
723
+ className: (0, import_design_system_foundation15.cn)(ProgressCircle_default.wrapper, ProgressCircle_default[`--size_${size}`], className),
685
724
  children: [
686
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
725
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
687
726
  "svg",
688
727
  {
689
728
  width: px,
@@ -692,7 +731,7 @@ function ProgressCircle({
692
731
  "aria-hidden": "true",
693
732
  className: ProgressCircle_default.svg,
694
733
  children: [
695
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
734
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
696
735
  "circle",
697
736
  {
698
737
  className: ProgressCircle_default.track,
@@ -703,7 +742,7 @@ function ProgressCircle({
703
742
  fill: "none"
704
743
  }
705
744
  ),
706
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
745
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
707
746
  "circle",
708
747
  {
709
748
  className: ProgressCircle_default.fill,
@@ -721,7 +760,7 @@ function ProgressCircle({
721
760
  ]
722
761
  }
723
762
  ),
724
- showValue && /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("span", { className: ProgressCircle_default.value, "aria-hidden": "true", children: [
763
+ showValue && /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("span", { className: ProgressCircle_default.value, "aria-hidden": "true", children: [
725
764
  Math.round(percentage),
726
765
  "%"
727
766
  ] })
@@ -731,52 +770,52 @@ function ProgressCircle({
731
770
  }
732
771
 
733
772
  // src/components/ui/Separator/Separator.module.css
734
- var Separator_default = {"separator":"bds0113Separator-separator","--horizontal":"bds0113Separator---horizontal","--vertical":"bds0113Separator---vertical"};
773
+ var Separator_default = {"separator":"bds0115Separator-separator","--horizontal":"bds0115Separator---horizontal","--vertical":"bds0115Separator---vertical"};
735
774
 
736
775
  // src/components/ui/Separator/Separator.tsx
737
- var import_design_system_foundation15 = require("@boostdev/design-system-foundation");
738
- var import_jsx_runtime15 = require("react/jsx-runtime");
776
+ var import_design_system_foundation16 = require("@boostdev/design-system-foundation");
777
+ var import_jsx_runtime16 = require("react/jsx-runtime");
739
778
  function Separator({ orientation = "horizontal", className }) {
740
779
  if (orientation === "vertical") {
741
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
780
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
742
781
  "div",
743
782
  {
744
783
  role: "separator",
745
784
  "aria-orientation": "vertical",
746
- className: (0, import_design_system_foundation15.cn)(Separator_default.separator, Separator_default["--vertical"], className)
785
+ className: (0, import_design_system_foundation16.cn)(Separator_default.separator, Separator_default["--vertical"], className)
747
786
  }
748
787
  );
749
788
  }
750
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("hr", { className: (0, import_design_system_foundation15.cn)(Separator_default.separator, Separator_default["--horizontal"], className) });
789
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("hr", { className: (0, import_design_system_foundation16.cn)(Separator_default.separator, Separator_default["--horizontal"], className) });
751
790
  }
752
791
 
753
792
  // src/components/ui/Skeleton/Skeleton.tsx
754
- var import_design_system_foundation16 = require("@boostdev/design-system-foundation");
793
+ var import_design_system_foundation17 = require("@boostdev/design-system-foundation");
755
794
 
756
795
  // src/components/ui/Skeleton/Skeleton.module.css
757
- var Skeleton_default = {"skeleton":"bds0113Skeleton-skeleton"};
796
+ var Skeleton_default = {"skeleton":"bds0115Skeleton-skeleton"};
758
797
 
759
798
  // src/components/ui/Skeleton/Skeleton.tsx
760
- var import_jsx_runtime16 = require("react/jsx-runtime");
799
+ var import_jsx_runtime17 = require("react/jsx-runtime");
761
800
  function Skeleton({ className }) {
762
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { "aria-hidden": "true", className: (0, import_design_system_foundation16.cn)(Skeleton_default.skeleton, className) });
801
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { "aria-hidden": "true", className: (0, import_design_system_foundation17.cn)(Skeleton_default.skeleton, className) });
763
802
  }
764
803
 
765
804
  // src/components/ui/SkipLink/SkipLink.module.css
766
- var SkipLink_default = {"skipLink":"bds0113SkipLink-skipLink"};
805
+ var SkipLink_default = {"skipLink":"bds0115SkipLink-skipLink"};
767
806
 
768
807
  // src/components/ui/SkipLink/SkipLink.tsx
769
- var import_jsx_runtime17 = require("react/jsx-runtime");
808
+ var import_jsx_runtime18 = require("react/jsx-runtime");
770
809
  function SkipLink({ href = "#main", children = "Skip to main content" }) {
771
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("a", { href, className: SkipLink_default.skipLink, children });
810
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("a", { href, className: SkipLink_default.skipLink, children });
772
811
  }
773
812
 
774
813
  // src/components/ui/Table/Table.module.css
775
- 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"};
814
+ 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"};
776
815
 
777
816
  // src/components/ui/Table/Table.tsx
778
- var import_design_system_foundation17 = require("@boostdev/design-system-foundation");
779
- var import_jsx_runtime18 = require("react/jsx-runtime");
817
+ var import_design_system_foundation18 = require("@boostdev/design-system-foundation");
818
+ var import_jsx_runtime19 = require("react/jsx-runtime");
780
819
  function Table({
781
820
  columns,
782
821
  rows,
@@ -795,15 +834,15 @@ function Table({
795
834
  if (sortKey !== key) return "none";
796
835
  return sortDirection === "asc" ? "ascending" : "descending";
797
836
  };
798
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: (0, import_design_system_foundation17.cn)(Table_default.wrapper, className), children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("table", { className: Table_default.table, children: [
799
- caption && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("caption", { className: Table_default.caption, children: caption }),
800
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("thead", { className: Table_default.thead, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("tr", { children: columns.map((col) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
837
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: (0, import_design_system_foundation18.cn)(Table_default.wrapper, className), children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("table", { className: Table_default.table, children: [
838
+ caption && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("caption", { className: Table_default.caption, children: caption }),
839
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("thead", { className: Table_default.thead, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("tr", { children: columns.map((col) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
801
840
  "th",
802
841
  {
803
842
  scope: "col",
804
843
  "aria-sort": col.sortable ? getAriaSort(col.key) : void 0,
805
- className: (0, import_design_system_foundation17.cn)(Table_default.th, col.sortable ? Table_default["--sortable"] : void 0),
806
- children: col.sortable ? /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
844
+ className: (0, import_design_system_foundation18.cn)(Table_default.th, col.sortable ? Table_default["--sortable"] : void 0),
845
+ children: col.sortable ? /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
807
846
  "button",
808
847
  {
809
848
  type: "button",
@@ -811,11 +850,11 @@ function Table({
811
850
  onClick: () => handleSort(col.key),
812
851
  children: [
813
852
  col.header,
814
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
853
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
815
854
  "svg",
816
855
  {
817
856
  "aria-hidden": "true",
818
- className: (0, import_design_system_foundation17.cn)(
857
+ className: (0, import_design_system_foundation18.cn)(
819
858
  Table_default.sortIcon,
820
859
  sortKey === col.key ? Table_default["--sort-active"] : void 0,
821
860
  sortKey === col.key && sortDirection === "desc" ? Table_default["--sort-desc"] : void 0
@@ -824,7 +863,7 @@ function Table({
824
863
  fill: "none",
825
864
  stroke: "currentColor",
826
865
  strokeWidth: "2",
827
- children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" })
866
+ children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" })
828
867
  }
829
868
  )
830
869
  ]
@@ -833,7 +872,7 @@ function Table({
833
872
  },
834
873
  col.key
835
874
  )) }) }),
836
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("tbody", { className: Table_default.tbody, children: rows.map((row, rowIndex) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("tr", { className: Table_default.tr, children: columns.map((col) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("td", { className: Table_default.td, children: col.render ? col.render(row) : String(row[col.key] ?? "") }, col.key)) }, rowIndex)) })
875
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("tbody", { className: Table_default.tbody, children: rows.map((row, rowIndex) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("tr", { className: Table_default.tr, children: columns.map((col) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("td", { className: Table_default.td, children: col.render ? col.render(row) : String(row[col.key] ?? "") }, col.key)) }, rowIndex)) })
837
876
  ] }) });
838
877
  }
839
878
 
@@ -841,11 +880,11 @@ function Table({
841
880
  var import_react4 = require("react");
842
881
 
843
882
  // src/components/ui/Tabs/Tabs.module.css
844
- var Tabs_default = {"tabs":"bds0113Tabs-tabs","tabList":"bds0113Tabs-tabList","tab":"bds0113Tabs-tab","--active":"bds0113Tabs---active","panel":"bds0113Tabs-panel"};
883
+ var Tabs_default = {"tabs":"bds0115Tabs-tabs","tabList":"bds0115Tabs-tabList","tab":"bds0115Tabs-tab","--active":"bds0115Tabs---active","panel":"bds0115Tabs-panel"};
845
884
 
846
885
  // src/components/ui/Tabs/Tabs.tsx
847
- var import_design_system_foundation18 = require("@boostdev/design-system-foundation");
848
- var import_jsx_runtime19 = require("react/jsx-runtime");
886
+ var import_design_system_foundation19 = require("@boostdev/design-system-foundation");
887
+ var import_jsx_runtime20 = require("react/jsx-runtime");
849
888
  function Tabs({ tabs, defaultTab, className }) {
850
889
  const baseId = (0, import_react4.useId)();
851
890
  const [activeTab, setActiveTab] = (0, import_react4.useState)(defaultTab ?? tabs[0]?.id);
@@ -871,12 +910,12 @@ function Tabs({ tabs, defaultTab, className }) {
871
910
  focusAt(enabledIndexes[enabledIndexes.length - 1]);
872
911
  }
873
912
  };
874
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: (0, import_design_system_foundation18.cn)(Tabs_default.tabs, className), children: [
875
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { role: "tablist", className: Tabs_default.tabList, children: tabs.map((tab, i) => {
913
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: (0, import_design_system_foundation19.cn)(Tabs_default.tabs, className), children: [
914
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { role: "tablist", className: Tabs_default.tabList, children: tabs.map((tab, i) => {
876
915
  const tabId = `${baseId}-tab-${tab.id}`;
877
916
  const panelId = `${baseId}-panel-${tab.id}`;
878
917
  const isActive = activeTab === tab.id;
879
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
918
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
880
919
  "button",
881
920
  {
882
921
  ref: (el) => {
@@ -889,7 +928,7 @@ function Tabs({ tabs, defaultTab, className }) {
889
928
  "aria-controls": panelId,
890
929
  tabIndex: isActive ? 0 : -1,
891
930
  disabled: tab.disabled,
892
- className: (0, import_design_system_foundation18.cn)(Tabs_default.tab, isActive ? Tabs_default["--active"] : void 0),
931
+ className: (0, import_design_system_foundation19.cn)(Tabs_default.tab, isActive ? Tabs_default["--active"] : void 0),
893
932
  onClick: () => setActiveTab(tab.id),
894
933
  onKeyDown: (e) => handleKeyDown(e, i),
895
934
  children: tab.label
@@ -901,7 +940,7 @@ function Tabs({ tabs, defaultTab, className }) {
901
940
  const tabId = `${baseId}-tab-${tab.id}`;
902
941
  const panelId = `${baseId}-panel-${tab.id}`;
903
942
  const isActive = activeTab === tab.id;
904
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
943
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
905
944
  "div",
906
945
  {
907
946
  id: panelId,
@@ -922,11 +961,11 @@ function Tabs({ tabs, defaultTab, className }) {
922
961
  var import_react5 = require("react");
923
962
 
924
963
  // src/components/ui/Tooltip/Tooltip.module.css
925
- 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"};
964
+ 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"};
926
965
 
927
966
  // src/components/ui/Tooltip/Tooltip.tsx
928
- var import_design_system_foundation19 = require("@boostdev/design-system-foundation");
929
- var import_jsx_runtime20 = require("react/jsx-runtime");
967
+ var import_design_system_foundation20 = require("@boostdev/design-system-foundation");
968
+ var import_jsx_runtime21 = require("react/jsx-runtime");
930
969
  function Tooltip({
931
970
  content,
932
971
  placement = "top",
@@ -937,14 +976,14 @@ function Tooltip({
937
976
  const trigger = (0, import_react5.isValidElement)(children) ? (0, import_react5.cloneElement)(children, {
938
977
  "aria-describedby": tooltipId
939
978
  }) : children;
940
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("span", { className: (0, import_design_system_foundation19.cn)(Tooltip_default.wrapper, className), children: [
979
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("span", { className: (0, import_design_system_foundation20.cn)(Tooltip_default.wrapper, className), children: [
941
980
  trigger,
942
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
981
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
943
982
  "span",
944
983
  {
945
984
  id: tooltipId,
946
985
  role: "tooltip",
947
- className: (0, import_design_system_foundation19.cn)(Tooltip_default.tooltip, Tooltip_default[`--placement_${placement}`]),
986
+ className: (0, import_design_system_foundation20.cn)(Tooltip_default.tooltip, Tooltip_default[`--placement_${placement}`]),
948
987
  children: content
949
988
  }
950
989
  )
@@ -952,11 +991,11 @@ function Tooltip({
952
991
  }
953
992
 
954
993
  // src/components/ui/Typography/Typography.module.css
955
- var Typography_default = {"typography":"bds0113Typography-typography","--h1":"bds0113Typography---h1","--h2":"bds0113Typography---h2","--h3":"bds0113Typography---h3","--body":"bds0113Typography---body","--body_s":"bds0113Typography---body_s"};
994
+ var Typography_default = {"typography":"bds0115Typography-typography","--h1":"bds0115Typography---h1","--h2":"bds0115Typography---h2","--h3":"bds0115Typography---h3","--body":"bds0115Typography---body","--body_s":"bds0115Typography---body_s"};
956
995
 
957
996
  // src/components/ui/Typography/Typography.tsx
958
- var import_design_system_foundation20 = require("@boostdev/design-system-foundation");
959
- var import_jsx_runtime21 = require("react/jsx-runtime");
997
+ var import_design_system_foundation21 = require("@boostdev/design-system-foundation");
998
+ var import_jsx_runtime22 = require("react/jsx-runtime");
960
999
  var variantToElement = {
961
1000
  h1: "h1",
962
1001
  h2: "h2",
@@ -966,15 +1005,15 @@ var variantToElement = {
966
1005
  };
967
1006
  function Typography({ variant = "body", component, children, className }) {
968
1007
  const Component = component || variantToElement[variant];
969
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(Component, { className: (0, import_design_system_foundation20.cn)(Typography_default.typography, Typography_default[`--${variant}`], className), children });
1008
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(Component, { className: (0, import_design_system_foundation21.cn)(Typography_default.typography, Typography_default[`--${variant}`], className), children });
970
1009
  }
971
1010
 
972
1011
  // src/components/interaction/Button/Button.module.css
973
- 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"};
1012
+ 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"};
974
1013
 
975
1014
  // src/components/interaction/Button/Button.tsx
976
- var import_design_system_foundation21 = require("@boostdev/design-system-foundation");
977
- var import_jsx_runtime22 = require("react/jsx-runtime");
1015
+ var import_design_system_foundation22 = require("@boostdev/design-system-foundation");
1016
+ var import_jsx_runtime23 = require("react/jsx-runtime");
978
1017
  function Button({
979
1018
  children,
980
1019
  className,
@@ -991,7 +1030,7 @@ function Button({
991
1030
  onClick,
992
1031
  ...rest
993
1032
  }) {
994
- const classNames = (0, import_design_system_foundation21.cn)(
1033
+ const classNames = (0, import_design_system_foundation22.cn)(
995
1034
  Button_default.button,
996
1035
  Button_default[`--${variant}`],
997
1036
  Button_default[`--size_${size}`],
@@ -1008,13 +1047,13 @@ function Button({
1008
1047
  const handleButtonClick = (e) => {
1009
1048
  onClick?.(e);
1010
1049
  };
1011
- const content = /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_jsx_runtime22.Fragment, { children: [
1012
- Boolean(iconStart) && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { className: Button_default.prefix, children: iconStart }),
1050
+ const content = /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_jsx_runtime23.Fragment, { children: [
1051
+ Boolean(iconStart) && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { className: Button_default.prefix, children: iconStart }),
1013
1052
  children,
1014
- Boolean(iconEnd) && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { className: Button_default.suffix, children: iconEnd })
1053
+ Boolean(iconEnd) && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { className: Button_default.suffix, children: iconEnd })
1015
1054
  ] });
1016
1055
  if (href) {
1017
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1056
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1018
1057
  "a",
1019
1058
  {
1020
1059
  className: classNames,
@@ -1029,7 +1068,7 @@ function Button({
1029
1068
  }
1030
1069
  );
1031
1070
  }
1032
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1071
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1033
1072
  "button",
1034
1073
  {
1035
1074
  type,
@@ -1046,11 +1085,11 @@ function Button({
1046
1085
  var import_react6 = require("react");
1047
1086
 
1048
1087
  // src/components/interaction/Command/Command.module.css
1049
- 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"};
1088
+ 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"};
1050
1089
 
1051
1090
  // src/components/interaction/Command/Command.tsx
1052
- var import_design_system_foundation22 = require("@boostdev/design-system-foundation");
1053
- var import_jsx_runtime23 = require("react/jsx-runtime");
1091
+ var import_design_system_foundation23 = require("@boostdev/design-system-foundation");
1092
+ var import_jsx_runtime24 = require("react/jsx-runtime");
1054
1093
  function Command({
1055
1094
  isOpen,
1056
1095
  onClose,
@@ -1117,20 +1156,20 @@ function Command({
1117
1156
  item.onSelect();
1118
1157
  onClose();
1119
1158
  };
1120
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1159
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1121
1160
  "dialog",
1122
1161
  {
1123
1162
  ref: dialogRef,
1124
- className: (0, import_design_system_foundation22.cn)(Command_default.dialog, className),
1163
+ className: (0, import_design_system_foundation23.cn)(Command_default.dialog, className),
1125
1164
  "aria-label": "Command palette",
1126
1165
  onCancel: handleCancel,
1127
- children: /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: Command_default.palette, onKeyDown: handleKeyDown, children: [
1128
- /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: Command_default.searchRow, children: [
1129
- /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", { "aria-hidden": "true", className: Command_default.searchIcon, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
1130
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
1131
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { strokeLinecap: "round", d: "M21 21l-4.35-4.35" })
1166
+ children: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: Command_default.palette, onKeyDown: handleKeyDown, children: [
1167
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: Command_default.searchRow, children: [
1168
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("svg", { "aria-hidden": "true", className: Command_default.searchIcon, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
1169
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
1170
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { strokeLinecap: "round", d: "M21 21l-4.35-4.35" })
1132
1171
  ] }),
1133
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1172
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1134
1173
  "input",
1135
1174
  {
1136
1175
  ref: inputRef,
@@ -1146,32 +1185,32 @@ function Command({
1146
1185
  onChange: (e) => setQuery(e.target.value)
1147
1186
  }
1148
1187
  ),
1149
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("kbd", { className: Command_default.escHint, children: "Esc" })
1188
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("kbd", { className: Command_default.escHint, children: "Esc" })
1150
1189
  ] }),
1151
- filtered.length > 0 ? /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("ul", { id: listboxId, role: "listbox", className: Command_default.list, "aria-label": "Commands", children: Array.from(groups.entries()).map(([group, groupItems]) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("li", { role: "presentation", children: [
1152
- group && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: Command_default.group, role: "presentation", children: group }),
1153
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("ul", { role: "group", "aria-label": group || void 0, className: Command_default.groupList, children: groupItems.map((item) => {
1190
+ filtered.length > 0 ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("ul", { id: listboxId, role: "listbox", className: Command_default.list, "aria-label": "Commands", children: Array.from(groups.entries()).map(([group, groupItems]) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("li", { role: "presentation", children: [
1191
+ group && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: Command_default.group, role: "presentation", children: group }),
1192
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("ul", { role: "group", "aria-label": group || void 0, className: Command_default.groupList, children: groupItems.map((item) => {
1154
1193
  const flatIndex = filtered.indexOf(item);
1155
1194
  const isActive = flatIndex === activeIndex;
1156
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
1195
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
1157
1196
  "li",
1158
1197
  {
1159
1198
  id: `cmd-${item.id}`,
1160
1199
  role: "option",
1161
1200
  "aria-selected": isActive,
1162
- className: (0, import_design_system_foundation22.cn)(Command_default.item, isActive && Command_default.itemActive),
1201
+ className: (0, import_design_system_foundation23.cn)(Command_default.item, isActive && Command_default.itemActive),
1163
1202
  onPointerDown: (e) => e.preventDefault(),
1164
1203
  onClick: () => selectItem(item),
1165
1204
  children: [
1166
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { className: Command_default.itemLabel, children: item.label }),
1167
- item.description && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { className: Command_default.itemDesc, children: item.description }),
1168
- item.shortcut && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("kbd", { className: Command_default.shortcut, children: item.shortcut })
1205
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: Command_default.itemLabel, children: item.label }),
1206
+ item.description && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: Command_default.itemDesc, children: item.description }),
1207
+ item.shortcut && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("kbd", { className: Command_default.shortcut, children: item.shortcut })
1169
1208
  ]
1170
1209
  },
1171
1210
  item.id
1172
1211
  );
1173
1212
  }) })
1174
- ] }, group)) }) : /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: Command_default.empty, "aria-live": "polite", children: [
1213
+ ] }, group)) }) : /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: Command_default.empty, "aria-live": "polite", children: [
1175
1214
  "No results for \u201C",
1176
1215
  query,
1177
1216
  "\u201D"
@@ -1185,11 +1224,11 @@ function Command({
1185
1224
  var import_react7 = require("react");
1186
1225
 
1187
1226
  // src/components/interaction/Dialog/Dialog.module.css
1188
- var Dialog_default = {"dialog":"bds0113Dialog-dialog","dialogContent":"bds0113Dialog-dialogContent","closeForm":"bds0113Dialog-closeForm","closeButton":"bds0113Dialog-closeButton"};
1227
+ var Dialog_default = {"dialog":"bds0115Dialog-dialog","dialogContent":"bds0115Dialog-dialogContent","closeForm":"bds0115Dialog-closeForm","closeButton":"bds0115Dialog-closeButton"};
1189
1228
 
1190
1229
  // src/components/interaction/Dialog/Dialog.tsx
1191
- var import_design_system_foundation23 = require("@boostdev/design-system-foundation");
1192
- var import_jsx_runtime24 = require("react/jsx-runtime");
1230
+ var import_design_system_foundation24 = require("@boostdev/design-system-foundation");
1231
+ var import_jsx_runtime25 = require("react/jsx-runtime");
1193
1232
  function Dialog({ children, isOpen = false, className, onClose }) {
1194
1233
  const dialogRef = (0, import_react7.useRef)(null);
1195
1234
  (0, import_react7.useEffect)(() => {
@@ -1213,25 +1252,25 @@ function Dialog({ children, isOpen = false, className, onClose }) {
1213
1252
  e.preventDefault();
1214
1253
  onClose?.();
1215
1254
  };
1216
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
1255
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
1217
1256
  "dialog",
1218
1257
  {
1219
1258
  ref: dialogRef,
1220
- className: (0, import_design_system_foundation23.cn)(className, Dialog_default.dialog),
1259
+ className: (0, import_design_system_foundation24.cn)(className, Dialog_default.dialog),
1221
1260
  onClick: handleBackdropClick,
1222
1261
  onCancel: handleCancel,
1223
1262
  children: [
1224
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("form", { method: "dialog", className: Dialog_default.closeForm, children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1263
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("form", { method: "dialog", className: Dialog_default.closeForm, children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1225
1264
  "button",
1226
1265
  {
1227
1266
  type: "submit",
1228
1267
  className: Dialog_default.closeButton,
1229
1268
  onClick: onClose,
1230
1269
  "aria-label": "Close dialog",
1231
- children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
1270
+ children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
1232
1271
  }
1233
1272
  ) }),
1234
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: Dialog_default.dialogContent, children })
1273
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: Dialog_default.dialogContent, children })
1235
1274
  ]
1236
1275
  }
1237
1276
  );
@@ -1241,17 +1280,18 @@ function Dialog({ children, isOpen = false, className, onClose }) {
1241
1280
  var import_react8 = require("react");
1242
1281
 
1243
1282
  // src/components/interaction/Drawer/Drawer.module.css
1244
- 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"};
1283
+ 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"};
1245
1284
 
1246
1285
  // src/components/interaction/Drawer/Drawer.tsx
1247
- var import_design_system_foundation24 = require("@boostdev/design-system-foundation");
1248
- var import_jsx_runtime25 = require("react/jsx-runtime");
1286
+ var import_design_system_foundation25 = require("@boostdev/design-system-foundation");
1287
+ var import_jsx_runtime26 = require("react/jsx-runtime");
1249
1288
  function Drawer({
1250
1289
  isOpen,
1251
1290
  onClose,
1252
1291
  title,
1253
1292
  children,
1254
1293
  side = "right",
1294
+ arialLabel = "",
1255
1295
  className
1256
1296
  }) {
1257
1297
  const dialogRef = (0, import_react8.useRef)(null);
@@ -1271,29 +1311,29 @@ function Drawer({
1271
1311
  e.preventDefault();
1272
1312
  onClose();
1273
1313
  };
1274
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1314
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1275
1315
  "dialog",
1276
1316
  {
1277
1317
  ref: dialogRef,
1278
- className: (0, import_design_system_foundation24.cn)(Drawer_default.drawer, Drawer_default[`--side_${side}`], className),
1279
- "aria-label": title,
1318
+ className: (0, import_design_system_foundation25.cn)(Drawer_default.drawer, Drawer_default[`--side_${side}`], className),
1319
+ "aria-label": arialLabel,
1280
1320
  onClick: handleClick,
1281
1321
  onCancel: handleCancel,
1282
- children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { className: Drawer_default.panel, children: [
1283
- /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { className: Drawer_default.header, children: [
1284
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("h2", { className: Drawer_default.title, children: title }),
1285
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1322
+ children: /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { className: Drawer_default.panel, children: [
1323
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { className: Drawer_default.header, children: [
1324
+ !!title && title,
1325
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1286
1326
  "button",
1287
1327
  {
1288
1328
  type: "button",
1289
1329
  className: Drawer_default.closeButton,
1290
1330
  onClick: onClose,
1291
1331
  "aria-label": "Close drawer",
1292
- children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
1332
+ children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) })
1293
1333
  }
1294
1334
  )
1295
1335
  ] }),
1296
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: Drawer_default.body, children })
1336
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: Drawer_default.body, children })
1297
1337
  ] })
1298
1338
  }
1299
1339
  );
@@ -1303,11 +1343,11 @@ function Drawer({
1303
1343
  var import_react9 = require("react");
1304
1344
 
1305
1345
  // src/components/interaction/DropdownMenu/DropdownMenu.module.css
1306
- 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"};
1346
+ 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"};
1307
1347
 
1308
1348
  // src/components/interaction/DropdownMenu/DropdownMenu.tsx
1309
- var import_design_system_foundation25 = require("@boostdev/design-system-foundation");
1310
- var import_jsx_runtime26 = require("react/jsx-runtime");
1349
+ var import_design_system_foundation26 = require("@boostdev/design-system-foundation");
1350
+ var import_jsx_runtime27 = require("react/jsx-runtime");
1311
1351
  function DropdownMenu({
1312
1352
  trigger,
1313
1353
  items,
@@ -1375,17 +1415,17 @@ function DropdownMenu({
1375
1415
  if (typeof existingOnClick === "function") existingOnClick(e);
1376
1416
  }
1377
1417
  }) : trigger;
1378
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { ref: containerRef, className: (0, import_design_system_foundation25.cn)(DropdownMenu_default.wrapper, className), children: [
1418
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { ref: containerRef, className: (0, import_design_system_foundation26.cn)(DropdownMenu_default.wrapper, className), children: [
1379
1419
  triggerEl,
1380
- isOpen && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1420
+ isOpen && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1381
1421
  "ul",
1382
1422
  {
1383
1423
  id: menuId,
1384
1424
  role: "menu",
1385
- className: (0, import_design_system_foundation25.cn)(DropdownMenu_default.menu, DropdownMenu_default[`--placement_${placement}`]),
1386
- children: items.map((item, index) => /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("li", { role: "presentation", children: [
1387
- item.separator && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("hr", { className: DropdownMenu_default.separator, role: "separator" }),
1388
- /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
1425
+ className: (0, import_design_system_foundation26.cn)(DropdownMenu_default.menu, DropdownMenu_default[`--placement_${placement}`]),
1426
+ children: items.map((item, index) => /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("li", { role: "presentation", children: [
1427
+ item.separator && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("hr", { className: DropdownMenu_default.separator, role: "separator" }),
1428
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
1389
1429
  "button",
1390
1430
  {
1391
1431
  ref: (el) => {
@@ -1401,7 +1441,7 @@ function DropdownMenu({
1401
1441
  },
1402
1442
  onKeyDown: (e) => handleItemKeyDown(e, index),
1403
1443
  children: [
1404
- item.icon && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: DropdownMenu_default.icon, "aria-hidden": "true", children: item.icon }),
1444
+ item.icon && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: DropdownMenu_default.icon, "aria-hidden": "true", children: item.icon }),
1405
1445
  item.label
1406
1446
  ]
1407
1447
  }
@@ -1416,11 +1456,11 @@ function DropdownMenu({
1416
1456
  var import_react10 = require("react");
1417
1457
 
1418
1458
  // src/components/interaction/Popover/Popover.module.css
1419
- 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"};
1459
+ 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"};
1420
1460
 
1421
1461
  // src/components/interaction/Popover/Popover.tsx
1422
- var import_design_system_foundation26 = require("@boostdev/design-system-foundation");
1423
- var import_jsx_runtime27 = require("react/jsx-runtime");
1462
+ var import_design_system_foundation27 = require("@boostdev/design-system-foundation");
1463
+ var import_jsx_runtime28 = require("react/jsx-runtime");
1424
1464
  function Popover({
1425
1465
  children,
1426
1466
  content,
@@ -1456,15 +1496,15 @@ function Popover({
1456
1496
  if (typeof existingOnClick === "function") existingOnClick(e);
1457
1497
  }
1458
1498
  }) : children;
1459
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("span", { ref: containerRef, className: (0, import_design_system_foundation26.cn)(Popover_default.wrapper, className), children: [
1499
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("span", { ref: containerRef, className: (0, import_design_system_foundation27.cn)(Popover_default.wrapper, className), children: [
1460
1500
  trigger,
1461
- isOpen && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1501
+ isOpen && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1462
1502
  "div",
1463
1503
  {
1464
1504
  id: panelId,
1465
1505
  role: "dialog",
1466
1506
  "aria-modal": "false",
1467
- className: (0, import_design_system_foundation26.cn)(Popover_default.panel, Popover_default[`--placement_${placement}`]),
1507
+ className: (0, import_design_system_foundation27.cn)(Popover_default.panel, Popover_default[`--placement_${placement}`]),
1468
1508
  children: content
1469
1509
  }
1470
1510
  )
@@ -1472,26 +1512,26 @@ function Popover({
1472
1512
  }
1473
1513
 
1474
1514
  // src/components/interaction/Rating/Rating.module.css
1475
- var Rating_default = {"rating":"bds0113Rating-rating","star":"bds0113Rating-star","--filled":"bds0113Rating---filled"};
1515
+ var Rating_default = {"rating":"bds0115Rating-rating","star":"bds0115Rating-star","--filled":"bds0115Rating---filled"};
1476
1516
 
1477
1517
  // src/components/interaction/Rating/Rating.tsx
1478
- var import_design_system_foundation27 = require("@boostdev/design-system-foundation");
1479
- var import_jsx_runtime28 = require("react/jsx-runtime");
1518
+ var import_design_system_foundation28 = require("@boostdev/design-system-foundation");
1519
+ var import_jsx_runtime29 = require("react/jsx-runtime");
1480
1520
  function Rating({ value, max = 5, className }) {
1481
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1521
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1482
1522
  "div",
1483
1523
  {
1484
- className: (0, import_design_system_foundation27.cn)(Rating_default.rating, className),
1524
+ className: (0, import_design_system_foundation28.cn)(Rating_default.rating, className),
1485
1525
  role: "img",
1486
1526
  "aria-label": `${value} out of ${max} stars`,
1487
- children: Array.from({ length: max }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1527
+ children: Array.from({ length: max }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1488
1528
  "svg",
1489
1529
  {
1490
1530
  "aria-hidden": "true",
1491
- className: (0, import_design_system_foundation27.cn)(Rating_default.star, i < value && Rating_default["--filled"]),
1531
+ className: (0, import_design_system_foundation28.cn)(Rating_default.star, i < value && Rating_default["--filled"]),
1492
1532
  fill: "currentColor",
1493
1533
  viewBox: "0 0 24 24",
1494
- children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("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" })
1534
+ children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("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" })
1495
1535
  },
1496
1536
  i
1497
1537
  ))
@@ -1503,11 +1543,11 @@ function Rating({ value, max = 5, className }) {
1503
1543
  var import_react11 = require("react");
1504
1544
 
1505
1545
  // src/components/interaction/Toast/Toast.module.css
1506
- var Toast_default = {"toastContainer":"bds0113Toast-toastContainer","toast":"bds0113Toast-toast","message":"bds0113Toast-message","closeButton":"bds0113Toast-closeButton"};
1546
+ 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"};
1507
1547
 
1508
1548
  // src/components/interaction/Toast/Toast.tsx
1509
- var import_design_system_foundation28 = require("@boostdev/design-system-foundation");
1510
- var import_jsx_runtime29 = require("react/jsx-runtime");
1549
+ var import_design_system_foundation29 = require("@boostdev/design-system-foundation");
1550
+ var import_jsx_runtime30 = require("react/jsx-runtime");
1511
1551
  var ToastContext = (0, import_react11.createContext)(void 0);
1512
1552
  function ToastProvider({ children }) {
1513
1553
  const [toasts, setToasts] = (0, import_react11.useState)([]);
@@ -1519,9 +1559,9 @@ function ToastProvider({ children }) {
1519
1559
  setToasts((prev) => prev.filter((toast) => toast.id !== id));
1520
1560
  }, []);
1521
1561
  const value = (0, import_react11.useMemo)(() => ({ showToast }), [showToast]);
1522
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(ToastContext.Provider, { value, children: [
1562
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(ToastContext.Provider, { value, children: [
1523
1563
  children,
1524
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: Toast_default.toastContainer, children: toasts.map((toast) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1564
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: Toast_default.toastContainer, children: toasts.map((toast) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1525
1565
  ToastItem,
1526
1566
  {
1527
1567
  toast,
@@ -1536,9 +1576,9 @@ function ToastItem({ toast, onRemove }) {
1536
1576
  const timer = setTimeout(onRemove, 5e3);
1537
1577
  return () => clearTimeout(timer);
1538
1578
  }, [onRemove]);
1539
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: (0, import_design_system_foundation28.cn)(Toast_default.toast, Toast_default[`--variant_${toast.variant}`]), role: "status", children: [
1540
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: Toast_default.message, children: toast.message }),
1541
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("button", { type: "button", className: Toast_default.closeButton, onClick: onRemove, "aria-label": "Dismiss", children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) }) })
1579
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: (0, import_design_system_foundation29.cn)(Toast_default.toast, Toast_default[`--variant_${toast.variant}`]), role: "status", children: [
1580
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: Toast_default.message, children: toast.message }),
1581
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("button", { type: "button", className: Toast_default.closeButton, onClick: onRemove, "aria-label": "Dismiss", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6L6 18M6 6l12 12" }) }) })
1542
1582
  ] });
1543
1583
  }
1544
1584
  function useToast() {
@@ -1553,50 +1593,50 @@ function useToast() {
1553
1593
  var import_react12 = require("react");
1554
1594
 
1555
1595
  // src/components/interaction/form/Checkbox/Checkbox.module.css
1556
- var Checkbox_default = {"checkboxGroup":"bds0113Checkbox-checkboxGroup","inputWrapper":"bds0113Checkbox-inputWrapper","checkbox":"bds0113Checkbox-checkbox","checkboxError":"bds0113Checkbox-checkboxError"};
1596
+ var Checkbox_default = {"checkboxGroup":"bds0115Checkbox-checkboxGroup","inputWrapper":"bds0115Checkbox-inputWrapper","checkbox":"bds0115Checkbox-checkbox","checkboxError":"bds0115Checkbox-checkboxError"};
1557
1597
 
1558
1598
  // src/components/interaction/form/atoms/Message.module.css
1559
- var Message_default = {"error":"bds0113Message-error","hint":"bds0113Message-hint"};
1599
+ var Message_default = {"error":"bds0115Message-error","hint":"bds0115Message-hint"};
1560
1600
 
1561
1601
  // src/components/interaction/form/atoms/Message.tsx
1562
- var import_jsx_runtime30 = require("react/jsx-runtime");
1602
+ var import_jsx_runtime31 = require("react/jsx-runtime");
1563
1603
  var Message = ({ message, type, inputId }) => {
1564
1604
  if (!message) return null;
1565
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("p", { id: inputId + type, className: Message_default[type], children: message });
1605
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("p", { id: inputId + type, className: Message_default[type], children: message });
1566
1606
  };
1567
1607
 
1568
1608
  // src/components/interaction/form/atoms/Label.module.css
1569
- var Label_default = {"label":"bds0113Label-label"};
1609
+ var Label_default = {"label":"bds0115Label-label"};
1570
1610
 
1571
1611
  // src/components/interaction/form/atoms/Label.tsx
1572
- var import_jsx_runtime31 = require("react/jsx-runtime");
1612
+ var import_jsx_runtime32 = require("react/jsx-runtime");
1573
1613
  var Label = ({ label, id }) => {
1574
- return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("label", { htmlFor: id, className: Label_default.label, children: label });
1614
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("label", { htmlFor: id, className: Label_default.label, children: label });
1575
1615
  };
1576
1616
 
1577
1617
  // src/components/interaction/form/Checkbox/Checkbox.tsx
1578
- var import_design_system_foundation30 = require("@boostdev/design-system-foundation");
1618
+ var import_design_system_foundation31 = require("@boostdev/design-system-foundation");
1579
1619
 
1580
1620
  // src/components/interaction/form/atoms/InputContainer.module.css
1581
- var InputContainer_default = {"container":"bds0113InputContainer-container"};
1621
+ var InputContainer_default = {"container":"bds0115InputContainer-container"};
1582
1622
 
1583
1623
  // src/components/interaction/form/atoms/InputContainer.tsx
1584
- var import_design_system_foundation29 = require("@boostdev/design-system-foundation");
1585
- var import_jsx_runtime32 = require("react/jsx-runtime");
1624
+ var import_design_system_foundation30 = require("@boostdev/design-system-foundation");
1625
+ var import_jsx_runtime33 = require("react/jsx-runtime");
1586
1626
  var InputContainer = ({ children, className }) => {
1587
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: (0, import_design_system_foundation29.cn)(InputContainer_default.container, className), children });
1627
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: (0, import_design_system_foundation30.cn)(InputContainer_default.container, className), children });
1588
1628
  };
1589
1629
 
1590
1630
  // src/components/interaction/form/Checkbox/Checkbox.tsx
1591
- var import_jsx_runtime33 = require("react/jsx-runtime");
1631
+ var import_jsx_runtime34 = require("react/jsx-runtime");
1592
1632
  function Checkbox({ label, name, error, hint, className, ...props }) {
1593
1633
  const id = name + (0, import_react12.useId)();
1594
1634
  const hintId = id + "hint";
1595
1635
  const errorId = id + "error";
1596
1636
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
1597
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(InputContainer, { className: (0, import_design_system_foundation30.cn)(Checkbox_default.checkboxGroup, className), children: [
1598
- /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: Checkbox_default.inputWrapper, children: [
1599
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1637
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(InputContainer, { className: (0, import_design_system_foundation31.cn)(Checkbox_default.checkboxGroup, className), children: [
1638
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: Checkbox_default.inputWrapper, children: [
1639
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1600
1640
  "input",
1601
1641
  {
1602
1642
  "aria-describedby": describedBy,
@@ -1604,14 +1644,14 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
1604
1644
  type: "checkbox",
1605
1645
  id,
1606
1646
  name,
1607
- className: (0, import_design_system_foundation30.cn)(Checkbox_default.checkbox, error && Checkbox_default.checkboxError),
1647
+ className: (0, import_design_system_foundation31.cn)(Checkbox_default.checkbox, error && Checkbox_default.checkboxError),
1608
1648
  ...props
1609
1649
  }
1610
1650
  ),
1611
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Label, { id, label })
1651
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Label, { id, label })
1612
1652
  ] }),
1613
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Message, { inputId: id, type: "error", message: error }),
1614
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Message, { inputId: id, type: "hint", message: hint })
1653
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Message, { inputId: id, type: "error", message: error }),
1654
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Message, { inputId: id, type: "hint", message: hint })
1615
1655
  ] });
1616
1656
  }
1617
1657
 
@@ -1619,11 +1659,11 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
1619
1659
  var import_react13 = require("react");
1620
1660
 
1621
1661
  // src/components/interaction/form/Combobox/Combobox.module.css
1622
- 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"};
1662
+ 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"};
1623
1663
 
1624
1664
  // src/components/interaction/form/Combobox/Combobox.tsx
1625
- var import_design_system_foundation31 = require("@boostdev/design-system-foundation");
1626
- var import_jsx_runtime34 = require("react/jsx-runtime");
1665
+ var import_design_system_foundation32 = require("@boostdev/design-system-foundation");
1666
+ var import_jsx_runtime35 = require("react/jsx-runtime");
1627
1667
  function Combobox({
1628
1668
  label,
1629
1669
  name,
@@ -1701,10 +1741,10 @@ function Combobox({
1701
1741
  setIsOpen(false);
1702
1742
  }
1703
1743
  };
1704
- return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(InputContainer, { className: (0, import_design_system_foundation31.cn)(Combobox_default.formGroup, className), children: [
1705
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Label, { id, label }),
1706
- /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { ref: containerRef, className: Combobox_default.inputWrapper, children: [
1707
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1744
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(InputContainer, { className: (0, import_design_system_foundation32.cn)(Combobox_default.formGroup, className), children: [
1745
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Label, { id, label }),
1746
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { ref: containerRef, className: Combobox_default.inputWrapper, children: [
1747
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1708
1748
  "input",
1709
1749
  {
1710
1750
  ref: inputRef,
@@ -1723,28 +1763,28 @@ function Combobox({
1723
1763
  placeholder,
1724
1764
  value: inputValue,
1725
1765
  disabled,
1726
- className: (0, import_design_system_foundation31.cn)(Combobox_default.input, error ? Combobox_default.inputError : void 0),
1766
+ className: (0, import_design_system_foundation32.cn)(Combobox_default.input, error ? Combobox_default.inputError : void 0),
1727
1767
  onChange: handleInputChange,
1728
1768
  onKeyDown: handleKeyDown,
1729
1769
  onFocus: () => setIsOpen(true)
1730
1770
  }
1731
1771
  ),
1732
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: Combobox_default.chevron, "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" }) }) }),
1733
- isOpen && filtered.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1772
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("span", { className: Combobox_default.chevron, "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" }) }) }),
1773
+ isOpen && filtered.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1734
1774
  "ul",
1735
1775
  {
1736
1776
  id: listboxId,
1737
1777
  role: "listbox",
1738
1778
  "aria-label": String(label),
1739
1779
  className: Combobox_default.listbox,
1740
- children: filtered.map((option, index) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1780
+ children: filtered.map((option, index) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1741
1781
  "li",
1742
1782
  {
1743
1783
  id: getOptionId(index),
1744
1784
  role: "option",
1745
1785
  "aria-selected": option.value === value,
1746
1786
  "aria-disabled": option.disabled,
1747
- className: (0, import_design_system_foundation31.cn)(
1787
+ className: (0, import_design_system_foundation32.cn)(
1748
1788
  Combobox_default.option,
1749
1789
  index === highlightedIndex ? Combobox_default["--highlighted"] : void 0,
1750
1790
  option.value === value ? Combobox_default["--selected"] : void 0,
@@ -1761,8 +1801,8 @@ function Combobox({
1761
1801
  }
1762
1802
  )
1763
1803
  ] }),
1764
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Message, { inputId: id, type: "error", message: error }),
1765
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Message, { inputId: id, type: "hint", message: hint })
1804
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Message, { inputId: id, type: "error", message: error }),
1805
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Message, { inputId: id, type: "hint", message: hint })
1766
1806
  ] });
1767
1807
  }
1768
1808
 
@@ -1770,11 +1810,11 @@ function Combobox({
1770
1810
  var import_react14 = require("react");
1771
1811
 
1772
1812
  // src/components/interaction/form/FileInput/FileInput.module.css
1773
- 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"};
1813
+ 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"};
1774
1814
 
1775
1815
  // src/components/interaction/form/FileInput/FileInput.tsx
1776
- var import_design_system_foundation32 = require("@boostdev/design-system-foundation");
1777
- var import_jsx_runtime35 = require("react/jsx-runtime");
1816
+ var import_design_system_foundation33 = require("@boostdev/design-system-foundation");
1817
+ var import_jsx_runtime36 = require("react/jsx-runtime");
1778
1818
  function FileInput({
1779
1819
  label,
1780
1820
  name,
@@ -1822,24 +1862,24 @@ function FileInput({
1822
1862
  if (!disabled) setIsDragging(true);
1823
1863
  };
1824
1864
  const handleDragLeave = () => setIsDragging(false);
1825
- return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(InputContainer, { className: (0, import_design_system_foundation32.cn)(FileInput_default.formGroup, className), children: [
1826
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Label, { id: uid, label }),
1827
- /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
1865
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(InputContainer, { className: (0, import_design_system_foundation33.cn)(FileInput_default.formGroup, className), children: [
1866
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Label, { id: uid, label }),
1867
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
1828
1868
  "label",
1829
1869
  {
1830
1870
  htmlFor: uid,
1831
- className: (0, import_design_system_foundation32.cn)(FileInput_default.dropZone, isDragging && FileInput_default.isDragging, error && FileInput_default.hasError, disabled && FileInput_default.isDisabled),
1871
+ className: (0, import_design_system_foundation33.cn)(FileInput_default.dropZone, isDragging && FileInput_default.isDragging, error && FileInput_default.hasError, disabled && FileInput_default.isDisabled),
1832
1872
  onDrop: handleDrop,
1833
1873
  onDragOver: handleDragOver,
1834
1874
  onDragLeave: handleDragLeave,
1835
1875
  children: [
1836
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("svg", { "aria-hidden": "true", className: FileInput_default.icon, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("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" }) }),
1837
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("span", { className: FileInput_default.prompt, children: fileNames.length > 0 ? fileNames.join(", ") : /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(import_jsx_runtime35.Fragment, { children: [
1838
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("strong", { children: "Click to upload" }),
1876
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("svg", { "aria-hidden": "true", className: FileInput_default.icon, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("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" }) }),
1877
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: FileInput_default.prompt, children: fileNames.length > 0 ? fileNames.join(", ") : /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(import_jsx_runtime36.Fragment, { children: [
1878
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("strong", { children: "Click to upload" }),
1839
1879
  " or drag and drop"
1840
1880
  ] }) }),
1841
- accept && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("span", { className: FileInput_default.acceptHint, children: accept }),
1842
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1881
+ accept && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: FileInput_default.acceptHint, children: accept }),
1882
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1843
1883
  "input",
1844
1884
  {
1845
1885
  ref: inputRef,
@@ -1858,8 +1898,8 @@ function FileInput({
1858
1898
  ]
1859
1899
  }
1860
1900
  ),
1861
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Message, { inputId: uid, type: "error", message: error }),
1862
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Message, { inputId: uid, type: "hint", message: hint })
1901
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Message, { inputId: uid, type: "error", message: error }),
1902
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Message, { inputId: uid, type: "hint", message: hint })
1863
1903
  ] });
1864
1904
  }
1865
1905
 
@@ -1867,11 +1907,11 @@ function FileInput({
1867
1907
  var import_react15 = require("react");
1868
1908
 
1869
1909
  // src/components/interaction/form/FormInput/FormInput.module.css
1870
- var FormInput_default = {"formGroup":"bds0113FormInput-formGroup","input":"bds0113FormInput-input","inputError":"bds0113FormInput-inputError"};
1910
+ var FormInput_default = {"formGroup":"bds0115FormInput-formGroup","input":"bds0115FormInput-input","inputError":"bds0115FormInput-inputError"};
1871
1911
 
1872
1912
  // src/components/interaction/form/FormInput/FormInput.tsx
1873
- var import_design_system_foundation33 = require("@boostdev/design-system-foundation");
1874
- var import_jsx_runtime36 = require("react/jsx-runtime");
1913
+ var import_design_system_foundation34 = require("@boostdev/design-system-foundation");
1914
+ var import_jsx_runtime37 = require("react/jsx-runtime");
1875
1915
  function FormInput({
1876
1916
  label,
1877
1917
  name,
@@ -1885,9 +1925,9 @@ function FormInput({
1885
1925
  const hintId = id + "hint";
1886
1926
  const errorId = id + "error";
1887
1927
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
1888
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(InputContainer, { className: (0, import_design_system_foundation33.cn)(FormInput_default.formGroup, className), children: [
1889
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Label, { id, label }),
1890
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1928
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(InputContainer, { className: (0, import_design_system_foundation34.cn)(FormInput_default.formGroup, className), children: [
1929
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Label, { id, label }),
1930
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1891
1931
  "input",
1892
1932
  {
1893
1933
  "aria-invalid": !!error,
@@ -1895,12 +1935,12 @@ function FormInput({
1895
1935
  "aria-label": ariaLabel,
1896
1936
  id,
1897
1937
  name,
1898
- className: (0, import_design_system_foundation33.cn)(FormInput_default.input, error && FormInput_default.inputError),
1938
+ className: (0, import_design_system_foundation34.cn)(FormInput_default.input, error && FormInput_default.inputError),
1899
1939
  ...props
1900
1940
  }
1901
1941
  ),
1902
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Message, { inputId: id, type: "error", message: error }),
1903
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Message, { inputId: id, type: "hint", message: hint })
1942
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Message, { inputId: id, type: "error", message: error }),
1943
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Message, { inputId: id, type: "hint", message: hint })
1904
1944
  ] });
1905
1945
  }
1906
1946
 
@@ -1908,11 +1948,11 @@ function FormInput({
1908
1948
  var import_react16 = require("react");
1909
1949
 
1910
1950
  // src/components/interaction/form/NumberInput/NumberInput.module.css
1911
- var NumberInput_default = {"formGroup":"bds0113NumberInput-formGroup","inputRow":"bds0113NumberInput-inputRow","input":"bds0113NumberInput-input","inputError":"bds0113NumberInput-inputError","stepper":"bds0113NumberInput-stepper"};
1951
+ var NumberInput_default = {"formGroup":"bds0115NumberInput-formGroup","inputRow":"bds0115NumberInput-inputRow","input":"bds0115NumberInput-input","inputError":"bds0115NumberInput-inputError","stepper":"bds0115NumberInput-stepper"};
1912
1952
 
1913
1953
  // src/components/interaction/form/NumberInput/NumberInput.tsx
1914
- var import_design_system_foundation34 = require("@boostdev/design-system-foundation");
1915
- var import_jsx_runtime37 = require("react/jsx-runtime");
1954
+ var import_design_system_foundation35 = require("@boostdev/design-system-foundation");
1955
+ var import_jsx_runtime38 = require("react/jsx-runtime");
1916
1956
  function NumberInput({
1917
1957
  label,
1918
1958
  name,
@@ -1944,10 +1984,10 @@ function NumberInput({
1944
1984
  if (!isControlled) setInternalValue(next);
1945
1985
  onChange?.(next);
1946
1986
  };
1947
- return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(InputContainer, { className: (0, import_design_system_foundation34.cn)(NumberInput_default.formGroup, className), children: [
1948
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Label, { id: uid, label }),
1949
- /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: NumberInput_default.inputRow, children: [
1950
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1987
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(InputContainer, { className: (0, import_design_system_foundation35.cn)(NumberInput_default.formGroup, className), children: [
1988
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Label, { id: uid, label }),
1989
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: NumberInput_default.inputRow, children: [
1990
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1951
1991
  "button",
1952
1992
  {
1953
1993
  type: "button",
@@ -1956,10 +1996,10 @@ function NumberInput({
1956
1996
  disabled: disabled || min !== void 0 && currentValue <= min,
1957
1997
  onClick: () => adjust(-step),
1958
1998
  tabIndex: -1,
1959
- children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M5 12h14" }) })
1999
+ children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M5 12h14" }) })
1960
2000
  }
1961
2001
  ),
1962
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2002
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1963
2003
  "input",
1964
2004
  {
1965
2005
  ref: inputRef,
@@ -1973,7 +2013,7 @@ function NumberInput({
1973
2013
  disabled,
1974
2014
  "aria-invalid": !!error,
1975
2015
  "aria-describedby": describedBy,
1976
- className: (0, import_design_system_foundation34.cn)(NumberInput_default.input, error ? NumberInput_default.inputError : void 0),
2016
+ className: (0, import_design_system_foundation35.cn)(NumberInput_default.input, error ? NumberInput_default.inputError : void 0),
1977
2017
  onChange: (e) => {
1978
2018
  const v = parseFloat(e.target.value);
1979
2019
  if (!isControlled) setInternalValue(isNaN(v) ? 0 : v);
@@ -1981,7 +2021,7 @@ function NumberInput({
1981
2021
  }
1982
2022
  }
1983
2023
  ),
1984
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2024
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1985
2025
  "button",
1986
2026
  {
1987
2027
  type: "button",
@@ -1990,12 +2030,12 @@ function NumberInput({
1990
2030
  disabled: disabled || max !== void 0 && currentValue >= max,
1991
2031
  onClick: () => adjust(step),
1992
2032
  tabIndex: -1,
1993
- children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 5v14M5 12h14" }) })
2033
+ children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("svg", { "aria-hidden": "true", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 5v14M5 12h14" }) })
1994
2034
  }
1995
2035
  )
1996
2036
  ] }),
1997
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Message, { inputId: uid, type: "error", message: error }),
1998
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Message, { inputId: uid, type: "hint", message: hint })
2037
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Message, { inputId: uid, type: "error", message: error }),
2038
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Message, { inputId: uid, type: "hint", message: hint })
1999
2039
  ] });
2000
2040
  }
2001
2041
 
@@ -2003,19 +2043,19 @@ function NumberInput({
2003
2043
  var import_react17 = require("react");
2004
2044
 
2005
2045
  // src/components/interaction/form/Radio/Radio.module.css
2006
- var Radio_default = {"radioGroup":"bds0113Radio-radioGroup","inputWrapper":"bds0113Radio-inputWrapper","radio":"bds0113Radio-radio","radioError":"bds0113Radio-radioError"};
2046
+ var Radio_default = {"radioGroup":"bds0115Radio-radioGroup","inputWrapper":"bds0115Radio-inputWrapper","textWrapper":"bds0115Radio-textWrapper","description":"bds0115Radio-description","radio":"bds0115Radio-radio","radioError":"bds0115Radio-radioError"};
2007
2047
 
2008
2048
  // src/components/interaction/form/Radio/Radio.tsx
2009
- var import_design_system_foundation35 = require("@boostdev/design-system-foundation");
2010
- var import_jsx_runtime38 = require("react/jsx-runtime");
2011
- function Radio({ label, name, error, hint, className, ...props }) {
2049
+ var import_design_system_foundation36 = require("@boostdev/design-system-foundation");
2050
+ var import_jsx_runtime39 = require("react/jsx-runtime");
2051
+ function Radio({ label, name, description, error, hint, className, ...props }) {
2012
2052
  const id = name + (0, import_react17.useId)();
2013
2053
  const hintId = id + "hint";
2014
2054
  const errorId = id + "error";
2015
2055
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
2016
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(InputContainer, { className: (0, import_design_system_foundation35.cn)(Radio_default.radioGroup, className), children: [
2017
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: Radio_default.inputWrapper, children: [
2018
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2056
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(InputContainer, { className: (0, import_design_system_foundation36.cn)(Radio_default.radioGroup, className), children: [
2057
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: Radio_default.inputWrapper, children: [
2058
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2019
2059
  "input",
2020
2060
  {
2021
2061
  "aria-describedby": describedBy,
@@ -2023,14 +2063,17 @@ function Radio({ label, name, error, hint, className, ...props }) {
2023
2063
  type: "radio",
2024
2064
  id,
2025
2065
  name,
2026
- className: (0, import_design_system_foundation35.cn)(Radio_default.radio, error && Radio_default.radioError),
2066
+ className: (0, import_design_system_foundation36.cn)(Radio_default.radio, error && Radio_default.radioError),
2027
2067
  ...props
2028
2068
  }
2029
2069
  ),
2030
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Label, { id, label })
2070
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: Radio_default.textWrapper, children: [
2071
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(Label, { id, label }),
2072
+ description && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { className: Radio_default.description, children: description })
2073
+ ] })
2031
2074
  ] }),
2032
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Message, { inputId: id, type: "error", message: error }),
2033
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Message, { inputId: id, type: "hint", message: hint })
2075
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(Message, { inputId: id, type: "error", message: error }),
2076
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(Message, { inputId: id, type: "hint", message: hint })
2034
2077
  ] });
2035
2078
  }
2036
2079
 
@@ -2038,11 +2081,11 @@ function Radio({ label, name, error, hint, className, ...props }) {
2038
2081
  var import_react18 = require("react");
2039
2082
 
2040
2083
  // src/components/interaction/form/Select/Select.module.css
2041
- var Select_default = {"formGroup":"bds0113Select-formGroup","selectWrapper":"bds0113Select-selectWrapper","select":"bds0113Select-select","selectError":"bds0113Select-selectError","chevron":"bds0113Select-chevron"};
2084
+ var Select_default = {"formGroup":"bds0115Select-formGroup","selectWrapper":"bds0115Select-selectWrapper","select":"bds0115Select-select","selectError":"bds0115Select-selectError","chevron":"bds0115Select-chevron"};
2042
2085
 
2043
2086
  // src/components/interaction/form/Select/Select.tsx
2044
- var import_design_system_foundation36 = require("@boostdev/design-system-foundation");
2045
- var import_jsx_runtime39 = require("react/jsx-runtime");
2087
+ var import_design_system_foundation37 = require("@boostdev/design-system-foundation");
2088
+ var import_jsx_runtime40 = require("react/jsx-runtime");
2046
2089
  function Select({
2047
2090
  label,
2048
2091
  name,
@@ -2057,28 +2100,28 @@ function Select({
2057
2100
  const hintId = id + "hint";
2058
2101
  const errorId = id + "error";
2059
2102
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
2060
- return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(InputContainer, { className: (0, import_design_system_foundation36.cn)(Select_default.formGroup, className), children: [
2061
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(Label, { id, label }),
2062
- /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: Select_default.selectWrapper, children: [
2063
- /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
2103
+ return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(InputContainer, { className: (0, import_design_system_foundation37.cn)(Select_default.formGroup, className), children: [
2104
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Label, { id, label }),
2105
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: Select_default.selectWrapper, children: [
2106
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2064
2107
  "select",
2065
2108
  {
2066
2109
  id,
2067
2110
  name,
2068
2111
  "aria-invalid": !!error,
2069
2112
  "aria-describedby": describedBy,
2070
- className: (0, import_design_system_foundation36.cn)(Select_default.select, error ? Select_default.selectError : void 0),
2113
+ className: (0, import_design_system_foundation37.cn)(Select_default.select, error ? Select_default.selectError : void 0),
2071
2114
  ...props,
2072
2115
  children: [
2073
- placeholder && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("option", { value: "", disabled: true, hidden: true, children: placeholder }),
2074
- options.map(({ value, label: optLabel, disabled }) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("option", { value, disabled, children: optLabel }, value))
2116
+ placeholder && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("option", { value: "", disabled: true, hidden: true, children: placeholder }),
2117
+ options.map(({ value, label: optLabel, disabled }) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("option", { value, disabled, children: optLabel }, value))
2075
2118
  ]
2076
2119
  }
2077
2120
  ),
2078
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { className: Select_default.chevron, "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" }) }) })
2121
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: Select_default.chevron, "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 9l6 6 6-6" }) }) })
2079
2122
  ] }),
2080
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(Message, { inputId: id, type: "error", message: error }),
2081
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(Message, { inputId: id, type: "hint", message: hint })
2123
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Message, { inputId: id, type: "error", message: error }),
2124
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Message, { inputId: id, type: "hint", message: hint })
2082
2125
  ] });
2083
2126
  }
2084
2127
 
@@ -2086,11 +2129,11 @@ function Select({
2086
2129
  var import_react19 = require("react");
2087
2130
 
2088
2131
  // src/components/interaction/form/Slider/Slider.module.css
2089
- var Slider_default = {"formGroup":"bds0113Slider-formGroup","labelRow":"bds0113Slider-labelRow","value":"bds0113Slider-value","slider":"bds0113Slider-slider","sliderError":"bds0113Slider-sliderError"};
2132
+ var Slider_default = {"formGroup":"bds0115Slider-formGroup","labelRow":"bds0115Slider-labelRow","value":"bds0115Slider-value","slider":"bds0115Slider-slider","sliderError":"bds0115Slider-sliderError"};
2090
2133
 
2091
2134
  // src/components/interaction/form/Slider/Slider.tsx
2092
- var import_design_system_foundation37 = require("@boostdev/design-system-foundation");
2093
- var import_jsx_runtime40 = require("react/jsx-runtime");
2135
+ var import_design_system_foundation38 = require("@boostdev/design-system-foundation");
2136
+ var import_jsx_runtime41 = require("react/jsx-runtime");
2094
2137
  function Slider({
2095
2138
  label,
2096
2139
  name,
@@ -2115,12 +2158,12 @@ function Slider({
2115
2158
  if (!isControlled) setInternalValue(Number(e.target.value));
2116
2159
  onChange?.(e);
2117
2160
  };
2118
- return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(InputContainer, { className: (0, import_design_system_foundation37.cn)(Slider_default.formGroup, className), children: [
2119
- /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: Slider_default.labelRow, children: [
2120
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Label, { id, label }),
2121
- showValue && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: Slider_default.value, children: currentValue })
2161
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(InputContainer, { className: (0, import_design_system_foundation38.cn)(Slider_default.formGroup, className), children: [
2162
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: Slider_default.labelRow, children: [
2163
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(Label, { id, label }),
2164
+ showValue && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("span", { className: Slider_default.value, children: currentValue })
2122
2165
  ] }),
2123
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2166
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2124
2167
  "input",
2125
2168
  {
2126
2169
  type: "range",
@@ -2132,14 +2175,14 @@ function Slider({
2132
2175
  "aria-valuemin": min,
2133
2176
  "aria-valuemax": max,
2134
2177
  "aria-valuenow": currentValue,
2135
- className: (0, import_design_system_foundation37.cn)(Slider_default.slider, error ? Slider_default.sliderError : void 0),
2178
+ className: (0, import_design_system_foundation38.cn)(Slider_default.slider, error ? Slider_default.sliderError : void 0),
2136
2179
  style: { "--slider_fill": `${fillPct}%` },
2137
2180
  onChange: handleChange,
2138
2181
  ...props
2139
2182
  }
2140
2183
  ),
2141
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Message, { inputId: id, type: "error", message: error }),
2142
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Message, { inputId: id, type: "hint", message: hint })
2184
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(Message, { inputId: id, type: "error", message: error }),
2185
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(Message, { inputId: id, type: "hint", message: hint })
2143
2186
  ] });
2144
2187
  }
2145
2188
 
@@ -2147,11 +2190,11 @@ function Slider({
2147
2190
  var import_react20 = require("react");
2148
2191
 
2149
2192
  // src/components/interaction/form/Switch/Switch.module.css
2150
- 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"};
2193
+ 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"};
2151
2194
 
2152
2195
  // src/components/interaction/form/Switch/Switch.tsx
2153
- var import_design_system_foundation38 = require("@boostdev/design-system-foundation");
2154
- var import_jsx_runtime41 = require("react/jsx-runtime");
2196
+ var import_design_system_foundation39 = require("@boostdev/design-system-foundation");
2197
+ var import_jsx_runtime42 = require("react/jsx-runtime");
2155
2198
  function Switch({
2156
2199
  label,
2157
2200
  name,
@@ -2165,10 +2208,10 @@ function Switch({
2165
2208
  const hintId = id + "hint";
2166
2209
  const errorId = id + "error";
2167
2210
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
2168
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(InputContainer, { className: (0, import_design_system_foundation38.cn)(Switch_default.switchGroup, Switch_default[`--size_${size}`], className), children: [
2169
- /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: Switch_default.inputWrapper, children: [
2170
- /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: Switch_default.trackWrapper, children: [
2171
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2211
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(InputContainer, { className: (0, import_design_system_foundation39.cn)(Switch_default.switchGroup, Switch_default[`--size_${size}`], className), children: [
2212
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("div", { className: Switch_default.inputWrapper, children: [
2213
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("div", { className: Switch_default.trackWrapper, children: [
2214
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2172
2215
  "input",
2173
2216
  {
2174
2217
  type: "checkbox",
@@ -2176,16 +2219,16 @@ function Switch({
2176
2219
  id,
2177
2220
  name,
2178
2221
  "aria-describedby": describedBy,
2179
- className: (0, import_design_system_foundation38.cn)(Switch_default.switch, error ? Switch_default.switchError : void 0),
2222
+ className: (0, import_design_system_foundation39.cn)(Switch_default.switch, error ? Switch_default.switchError : void 0),
2180
2223
  ...props
2181
2224
  }
2182
2225
  ),
2183
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("span", { className: Switch_default.track, "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("span", { className: Switch_default.thumb }) })
2226
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { className: Switch_default.track, "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { className: Switch_default.thumb }) })
2184
2227
  ] }),
2185
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(Label, { id, label })
2228
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Label, { id, label })
2186
2229
  ] }),
2187
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(Message, { inputId: id, type: "error", message: error }),
2188
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(Message, { inputId: id, type: "hint", message: hint })
2230
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Message, { inputId: id, type: "error", message: error }),
2231
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Message, { inputId: id, type: "hint", message: hint })
2189
2232
  ] });
2190
2233
  }
2191
2234
 
@@ -2193,11 +2236,11 @@ function Switch({
2193
2236
  var import_react21 = require("react");
2194
2237
 
2195
2238
  // src/components/interaction/form/Textarea/Textarea.module.css
2196
- var Textarea_default = {"formGroup":"bds0113Textarea-formGroup","textarea":"bds0113Textarea-textarea","textareaError":"bds0113Textarea-textareaError"};
2239
+ var Textarea_default = {"formGroup":"bds0115Textarea-formGroup","textarea":"bds0115Textarea-textarea","textareaError":"bds0115Textarea-textareaError"};
2197
2240
 
2198
2241
  // src/components/interaction/form/Textarea/Textarea.tsx
2199
- var import_design_system_foundation39 = require("@boostdev/design-system-foundation");
2200
- var import_jsx_runtime42 = require("react/jsx-runtime");
2242
+ var import_design_system_foundation40 = require("@boostdev/design-system-foundation");
2243
+ var import_jsx_runtime43 = require("react/jsx-runtime");
2201
2244
  function Textarea({
2202
2245
  label,
2203
2246
  name,
@@ -2210,40 +2253,40 @@ function Textarea({
2210
2253
  const hintId = id + "hint";
2211
2254
  const errorId = id + "error";
2212
2255
  const describedBy = [error && errorId, hint && hintId].filter(Boolean).join(" ") || void 0;
2213
- return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(InputContainer, { className: (0, import_design_system_foundation39.cn)(Textarea_default.formGroup, className), children: [
2214
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Label, { id, label }),
2215
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2256
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(InputContainer, { className: (0, import_design_system_foundation40.cn)(Textarea_default.formGroup, className), children: [
2257
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Label, { id, label }),
2258
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
2216
2259
  "textarea",
2217
2260
  {
2218
2261
  id,
2219
2262
  name,
2220
2263
  "aria-invalid": !!error,
2221
2264
  "aria-describedby": describedBy,
2222
- className: (0, import_design_system_foundation39.cn)(Textarea_default.textarea, error ? Textarea_default.textareaError : void 0),
2265
+ className: (0, import_design_system_foundation40.cn)(Textarea_default.textarea, error ? Textarea_default.textareaError : void 0),
2223
2266
  ...props
2224
2267
  }
2225
2268
  ),
2226
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Message, { inputId: id, type: "error", message: error }),
2227
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Message, { inputId: id, type: "hint", message: hint })
2269
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Message, { inputId: id, type: "error", message: error }),
2270
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Message, { inputId: id, type: "hint", message: hint })
2228
2271
  ] });
2229
2272
  }
2230
2273
 
2231
2274
  // src/components/layout/ButtonGroup/ButtonGroup.module.css
2232
- 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"};
2275
+ 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"};
2233
2276
 
2234
2277
  // src/components/layout/ButtonGroup/ButtonGroup.tsx
2235
- var import_design_system_foundation40 = require("@boostdev/design-system-foundation");
2236
- var import_jsx_runtime43 = require("react/jsx-runtime");
2278
+ var import_design_system_foundation41 = require("@boostdev/design-system-foundation");
2279
+ var import_jsx_runtime44 = require("react/jsx-runtime");
2237
2280
  function ButtonGroup({ children, className, variant }) {
2238
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: (0, import_design_system_foundation40.cn)(ButtonGroup_default.buttonGroup, className, variant && ButtonGroup_default[`--variant_${variant}`]), children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: ButtonGroup_default.container, children }) });
2281
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("div", { className: (0, import_design_system_foundation41.cn)(ButtonGroup_default.buttonGroup, className, variant && ButtonGroup_default[`--variant_${variant}`]), children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("div", { className: ButtonGroup_default.container, children }) });
2239
2282
  }
2240
2283
 
2241
2284
  // src/components/layout/Card/Card.module.css
2242
- 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"};
2285
+ 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"};
2243
2286
 
2244
2287
  // src/components/layout/Card/Card.tsx
2245
- var import_design_system_foundation41 = require("@boostdev/design-system-foundation");
2246
- var import_jsx_runtime44 = require("react/jsx-runtime");
2288
+ var import_design_system_foundation42 = require("@boostdev/design-system-foundation");
2289
+ var import_jsx_runtime45 = require("react/jsx-runtime");
2247
2290
  function Card({
2248
2291
  children,
2249
2292
  className,
@@ -2254,7 +2297,7 @@ function Card({
2254
2297
  onClick,
2255
2298
  "aria-label": ariaLabel
2256
2299
  }) {
2257
- const classNames = (0, import_design_system_foundation41.cn)(
2300
+ const classNames = (0, import_design_system_foundation42.cn)(
2258
2301
  Card_default.card,
2259
2302
  Card_default[`--${variant}`],
2260
2303
  Card_default[`--padding-${padding}`],
@@ -2263,7 +2306,7 @@ function Card({
2263
2306
  className
2264
2307
  );
2265
2308
  const Component = onClick ? "button" : "div";
2266
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2309
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2267
2310
  Component,
2268
2311
  {
2269
2312
  className: classNames,
@@ -2277,11 +2320,11 @@ function Card({
2277
2320
  }
2278
2321
 
2279
2322
  // src/components/layout/SectionHeader/SectionHeader.module.css
2280
- 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"};
2323
+ 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"};
2281
2324
 
2282
2325
  // src/components/layout/SectionHeader/SectionHeader.tsx
2283
- var import_design_system_foundation42 = require("@boostdev/design-system-foundation");
2284
- var import_jsx_runtime45 = require("react/jsx-runtime");
2326
+ var import_design_system_foundation43 = require("@boostdev/design-system-foundation");
2327
+ var import_jsx_runtime46 = require("react/jsx-runtime");
2285
2328
  function SectionHeader({
2286
2329
  title,
2287
2330
  subtitle,
@@ -2291,24 +2334,24 @@ function SectionHeader({
2291
2334
  titleAs = "h2"
2292
2335
  }) {
2293
2336
  const Title = titleAs;
2294
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("header", { className: (0, import_design_system_foundation42.cn)(SectionHeader_default.sectionHeader, SectionHeader_default[`--${alignment}`], SectionHeader_default[`--${size}`], className), children: [
2295
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(Title, { className: SectionHeader_default.title, children: title }),
2296
- subtitle && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("p", { className: SectionHeader_default.subtitle, children: subtitle })
2337
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("header", { className: (0, import_design_system_foundation43.cn)(SectionHeader_default.sectionHeader, SectionHeader_default[`--${alignment}`], SectionHeader_default[`--${size}`], className), children: [
2338
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(Title, { className: SectionHeader_default.title, children: title }),
2339
+ subtitle && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("p", { className: SectionHeader_default.subtitle, children: subtitle })
2297
2340
  ] });
2298
2341
  }
2299
2342
 
2300
2343
  // src/components/layout/IconWrapper/IconWrapper.module.css
2301
- var IconWrapper_default = {"wrapper":"bds0113IconWrapper-wrapper"};
2344
+ var IconWrapper_default = {"wrapper":"bds0115IconWrapper-wrapper"};
2302
2345
 
2303
2346
  // src/components/layout/IconWrapper/IconWrapper.tsx
2304
- var import_design_system_foundation43 = require("@boostdev/design-system-foundation");
2305
- var import_jsx_runtime46 = require("react/jsx-runtime");
2347
+ var import_design_system_foundation44 = require("@boostdev/design-system-foundation");
2348
+ var import_jsx_runtime47 = require("react/jsx-runtime");
2306
2349
  function IconWrapper({ children, className }) {
2307
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: (0, import_design_system_foundation43.cn)(className, IconWrapper_default.wrapper), children });
2350
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: (0, import_design_system_foundation44.cn)(className, IconWrapper_default.wrapper), children });
2308
2351
  }
2309
2352
 
2310
2353
  // src/index.ts
2311
- var import_design_system_foundation44 = require("@boostdev/design-system-foundation");
2354
+ var import_design_system_foundation45 = require("@boostdev/design-system-foundation");
2312
2355
  // Annotate the CommonJS export names for ESM import in node:
2313
2356
  0 && (module.exports = {
2314
2357
  Accordion,
@@ -2322,6 +2365,7 @@ var import_design_system_foundation44 = require("@boostdev/design-system-foundat
2322
2365
  Card,
2323
2366
  Carousel,
2324
2367
  Checkbox,
2368
+ Collapsible,
2325
2369
  Combobox,
2326
2370
  Command,
2327
2371
  DescriptionList,