@boostdev/design-system-components 0.1.12 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +14 -2
- package/README.md +35 -5
- package/dist/client.cjs +54 -50
- package/dist/client.css +498 -509
- package/dist/client.d.cts +5 -3
- package/dist/client.d.ts +5 -3
- package/dist/client.js +54 -50
- package/dist/index.cjs +54 -50
- package/dist/index.css +498 -509
- package/dist/index.d.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +54 -50
- package/package.json +6 -2
- package/src/components/interaction/Button/Button.mdx +73 -0
- package/src/components/interaction/Button/Button.module.css +12 -20
- package/src/components/interaction/Button/Button.stories.tsx +0 -1
- package/src/components/interaction/Command/Command.mdx +28 -0
- package/src/components/interaction/Command/Command.module.css +2 -1
- package/src/components/interaction/Command/Command.stories.tsx +3 -3
- package/src/components/interaction/Dialog/Dialog.mdx +57 -0
- package/src/components/interaction/Dialog/Dialog.module.css +6 -0
- package/src/components/interaction/Dialog/Dialog.stories.tsx +0 -1
- package/src/components/interaction/Drawer/Drawer.mdx +35 -0
- package/src/components/interaction/Drawer/Drawer.module.css +3 -9
- package/src/components/interaction/Drawer/Drawer.stories.tsx +3 -3
- package/src/components/interaction/Drawer/Drawer.tsx +5 -3
- package/src/components/interaction/DropdownMenu/DropdownMenu.mdx +40 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.stories.tsx +5 -5
- package/src/components/interaction/Popover/Popover.mdx +34 -0
- package/src/components/interaction/Popover/Popover.stories.tsx +3 -3
- package/src/components/interaction/Rating/Rating.mdx +38 -0
- package/src/components/interaction/Rating/Rating.stories.tsx +0 -1
- package/src/components/interaction/Toast/Toast.mdx +78 -0
- package/src/components/interaction/Toast/Toast.module.css +21 -7
- package/src/components/interaction/Toast/Toast.stories.tsx +0 -1
- package/src/components/interaction/form/Checkbox/Checkbox.mdx +57 -0
- package/src/components/interaction/form/Checkbox/Checkbox.stories.tsx +0 -1
- package/src/components/interaction/form/Combobox/Combobox.mdx +37 -0
- package/src/components/interaction/form/Combobox/Combobox.stories.tsx +0 -1
- package/src/components/interaction/form/FileInput/FileInput.mdx +38 -0
- package/src/components/interaction/form/FileInput/FileInput.stories.tsx +0 -1
- package/src/components/interaction/form/FormInput/FormInput.mdx +54 -0
- package/src/components/interaction/form/FormInput/FormInput.stories.tsx +0 -1
- package/src/components/interaction/form/NumberInput/NumberInput.mdx +38 -0
- package/src/components/interaction/form/NumberInput/NumberInput.stories.tsx +0 -1
- package/src/components/interaction/form/Radio/Radio.mdx +60 -0
- package/src/components/interaction/form/Radio/Radio.module.css +24 -11
- package/src/components/interaction/form/Radio/Radio.stories.tsx +5 -5
- package/src/components/interaction/form/Radio/Radio.tsx +6 -2
- package/src/components/interaction/form/Select/Select.mdx +58 -0
- package/src/components/interaction/form/Select/Select.stories.tsx +0 -1
- package/src/components/interaction/form/Slider/Slider.mdx +58 -0
- package/src/components/interaction/form/Slider/Slider.stories.tsx +0 -1
- package/src/components/interaction/form/Switch/Switch.mdx +61 -0
- package/src/components/interaction/form/Switch/Switch.module.css +6 -10
- package/src/components/interaction/form/Switch/Switch.stories.tsx +0 -1
- package/src/components/interaction/form/Textarea/Textarea.mdx +41 -0
- package/src/components/interaction/form/Textarea/Textarea.stories.tsx +0 -1
- package/src/components/layout/ButtonGroup/ButtonGroup.mdx +47 -0
- package/src/components/layout/ButtonGroup/ButtonGroup.module.css +10 -10
- package/src/components/layout/ButtonGroup/ButtonGroup.stories.tsx +1 -2
- package/src/components/layout/Card/Card.mdx +58 -0
- package/src/components/layout/Card/Card.stories.tsx +0 -1
- package/src/components/layout/IconWrapper/IconWrapper.mdx +39 -0
- package/src/components/layout/IconWrapper/IconWrapper.stories.tsx +0 -1
- package/src/components/layout/SectionHeader/SectionHeader.mdx +38 -0
- package/src/components/layout/SectionHeader/SectionHeader.stories.tsx +0 -1
- package/src/components/ui/Accordion/Accordion.mdx +40 -0
- package/src/components/ui/Accordion/Accordion.stories.tsx +0 -1
- package/src/components/ui/Alert/Alert.mdx +63 -0
- package/src/components/ui/Alert/Alert.module.css +3 -7
- package/src/components/ui/Alert/Alert.stories.tsx +0 -1
- package/src/components/ui/Avatar/Avatar.mdx +53 -0
- package/src/components/ui/Avatar/Avatar.module.css +4 -8
- package/src/components/ui/Avatar/Avatar.stories.tsx +0 -1
- package/src/components/ui/Badge/Badge.mdx +62 -0
- package/src/components/ui/Badge/Badge.module.css +4 -10
- package/src/components/ui/Badge/Badge.stories.tsx +0 -1
- package/src/components/ui/Breadcrumb/Breadcrumb.mdx +36 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.stories.tsx +0 -1
- package/src/components/ui/Calendar/Calendar.mdx +34 -0
- package/src/components/ui/Calendar/Calendar.stories.tsx +0 -1
- package/src/components/ui/Carousel/Carousel.mdx +31 -0
- package/src/components/ui/Carousel/Carousel.stories.tsx +0 -1
- package/src/components/ui/DescriptionList/DescriptionList.mdx +28 -0
- package/src/components/ui/DescriptionList/DescriptionList.stories.tsx +0 -1
- package/src/components/ui/Link/Link.mdx +44 -0
- package/src/components/ui/Link/Link.module.css +2 -5
- package/src/components/ui/Link/Link.stories.tsx +0 -1
- package/src/components/ui/Loading/Loading.mdx +52 -0
- package/src/components/ui/Loading/Loading.stories.tsx +0 -1
- package/src/components/ui/NotificationBanner/NotificationBanner.mdx +45 -0
- package/src/components/ui/NotificationBanner/NotificationBanner.module.css +3 -7
- package/src/components/ui/NotificationBanner/NotificationBanner.stories.tsx +2 -2
- package/src/components/ui/Pagination/Pagination.mdx +39 -0
- package/src/components/ui/Pagination/Pagination.module.css +3 -7
- package/src/components/ui/Pagination/Pagination.stories.tsx +0 -1
- package/src/components/ui/Progress/Progress.mdx +52 -0
- package/src/components/ui/Progress/Progress.module.css +1 -3
- package/src/components/ui/Progress/Progress.stories.tsx +0 -1
- package/src/components/ui/ProgressCircle/ProgressCircle.mdx +46 -0
- package/src/components/ui/ProgressCircle/ProgressCircle.stories.tsx +0 -1
- package/src/components/ui/Separator/Separator.mdx +29 -0
- package/src/components/ui/Separator/Separator.stories.tsx +0 -1
- package/src/components/ui/Skeleton/Skeleton.mdx +36 -0
- package/src/components/ui/Skeleton/Skeleton.stories.tsx +0 -1
- package/src/components/ui/SkipLink/SkipLink.mdx +34 -0
- package/src/components/ui/SkipLink/SkipLink.stories.tsx +0 -1
- package/src/components/ui/Table/Table.mdx +38 -0
- package/src/components/ui/Table/Table.stories.tsx +0 -1
- package/src/components/ui/Tabs/Tabs.mdx +40 -0
- package/src/components/ui/Tabs/Tabs.module.css +2 -5
- package/src/components/ui/Tabs/Tabs.stories.tsx +0 -1
- package/src/components/ui/Tooltip/Tooltip.mdx +43 -0
- package/src/components/ui/Tooltip/Tooltip.module.css +2 -5
- package/src/components/ui/Tooltip/Tooltip.stories.tsx +6 -6
- package/src/components/ui/Typography/Typography.mdx +41 -0
- package/src/components/ui/Typography/Typography.stories.tsx +0 -1
- package/src/static/logo.svg +8 -0
- package/src/stories/Introduction.css +17 -0
- package/src/stories/Introduction.mdx +129 -0
package/dist/index.d.cts
CHANGED
|
@@ -245,12 +245,13 @@ declare function Dialog({ children, isOpen, className, onClose }: DialogProps):
|
|
|
245
245
|
interface DrawerProps {
|
|
246
246
|
isOpen: boolean;
|
|
247
247
|
onClose: () => void;
|
|
248
|
-
title:
|
|
248
|
+
title: ReactNode;
|
|
249
249
|
children: ReactNode;
|
|
250
250
|
side?: 'left' | 'right';
|
|
251
251
|
className?: string;
|
|
252
|
+
arialLabel?: string;
|
|
252
253
|
}
|
|
253
|
-
declare function Drawer({ isOpen, onClose, title, children, side, className, }: Readonly<DrawerProps>): react_jsx_runtime.JSX.Element;
|
|
254
|
+
declare function Drawer({ isOpen, onClose, title, children, side, arialLabel, className, }: Readonly<DrawerProps>): react_jsx_runtime.JSX.Element;
|
|
254
255
|
|
|
255
256
|
interface DropdownMenuItem {
|
|
256
257
|
id: string;
|
|
@@ -363,11 +364,12 @@ declare function NumberInput({ label, name, value, defaultValue, min, max, step,
|
|
|
363
364
|
interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type'> {
|
|
364
365
|
label: string;
|
|
365
366
|
name: string;
|
|
367
|
+
description?: string;
|
|
366
368
|
error?: string;
|
|
367
369
|
hint?: string;
|
|
368
370
|
className?: string;
|
|
369
371
|
}
|
|
370
|
-
declare function Radio({ label, name, error, hint, className, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
|
|
372
|
+
declare function Radio({ label, name, description, error, hint, className, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
|
|
371
373
|
|
|
372
374
|
interface SelectOption {
|
|
373
375
|
value: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -245,12 +245,13 @@ declare function Dialog({ children, isOpen, className, onClose }: DialogProps):
|
|
|
245
245
|
interface DrawerProps {
|
|
246
246
|
isOpen: boolean;
|
|
247
247
|
onClose: () => void;
|
|
248
|
-
title:
|
|
248
|
+
title: ReactNode;
|
|
249
249
|
children: ReactNode;
|
|
250
250
|
side?: 'left' | 'right';
|
|
251
251
|
className?: string;
|
|
252
|
+
arialLabel?: string;
|
|
252
253
|
}
|
|
253
|
-
declare function Drawer({ isOpen, onClose, title, children, side, className, }: Readonly<DrawerProps>): react_jsx_runtime.JSX.Element;
|
|
254
|
+
declare function Drawer({ isOpen, onClose, title, children, side, arialLabel, className, }: Readonly<DrawerProps>): react_jsx_runtime.JSX.Element;
|
|
254
255
|
|
|
255
256
|
interface DropdownMenuItem {
|
|
256
257
|
id: string;
|
|
@@ -363,11 +364,12 @@ declare function NumberInput({ label, name, value, defaultValue, min, max, step,
|
|
|
363
364
|
interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type'> {
|
|
364
365
|
label: string;
|
|
365
366
|
name: string;
|
|
367
|
+
description?: string;
|
|
366
368
|
error?: string;
|
|
367
369
|
hint?: string;
|
|
368
370
|
className?: string;
|
|
369
371
|
}
|
|
370
|
-
declare function Radio({ label, name, error, hint, className, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
|
|
372
|
+
declare function Radio({ label, name, description, error, hint, className, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
|
|
371
373
|
|
|
372
374
|
interface SelectOption {
|
|
373
375
|
value: string;
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { useId, useState } from "react";
|
|
3
3
|
|
|
4
4
|
// src/components/ui/Accordion/Accordion.module.css
|
|
5
|
-
var Accordion_default = {"accordion":"
|
|
5
|
+
var Accordion_default = {"accordion":"bds0114Accordion-accordion","item":"bds0114Accordion-item","heading":"bds0114Accordion-heading","trigger":"bds0114Accordion-trigger","triggerLabel":"bds0114Accordion-triggerLabel","chevron":"bds0114Accordion-chevron","--open":"bds0114Accordion---open","panel":"bds0114Accordion-panel","panelContent":"bds0114Accordion-panelContent"};
|
|
6
6
|
|
|
7
7
|
// src/components/ui/Accordion/Accordion.tsx
|
|
8
8
|
import { cn } from "@boostdev/design-system-foundation";
|
|
@@ -70,7 +70,7 @@ function Accordion({
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
// src/components/ui/Alert/Alert.module.css
|
|
73
|
-
var Alert_default = {"alert":"
|
|
73
|
+
var Alert_default = {"alert":"bds0114Alert-alert","--variant_info":"bds0114Alert---variant_info","--variant_success":"bds0114Alert---variant_success","--variant_warning":"bds0114Alert---variant_warning","--variant_error":"bds0114Alert---variant_error","icon":"bds0114Alert-icon","content":"bds0114Alert-content","title":"bds0114Alert-title","dismiss":"bds0114Alert-dismiss"};
|
|
74
74
|
|
|
75
75
|
// src/components/ui/Alert/Alert.tsx
|
|
76
76
|
import { cn as cn2 } from "@boostdev/design-system-foundation";
|
|
@@ -113,7 +113,7 @@ function Alert({
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
// src/components/ui/Avatar/Avatar.module.css
|
|
116
|
-
var Avatar_default = {"avatar":"
|
|
116
|
+
var Avatar_default = {"avatar":"bds0114Avatar-avatar","--fallback":"bds0114Avatar---fallback","--size_small":"bds0114Avatar---size_small","--size_medium":"bds0114Avatar---size_medium","--size_large":"bds0114Avatar---size_large","image":"bds0114Avatar-image","initials":"bds0114Avatar-initials"};
|
|
117
117
|
|
|
118
118
|
// src/components/ui/Avatar/Avatar.tsx
|
|
119
119
|
import { cn as cn3 } from "@boostdev/design-system-foundation";
|
|
@@ -139,7 +139,7 @@ function Avatar({ src, alt, name, size = "medium", className }) {
|
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
// src/components/ui/Badge/Badge.module.css
|
|
142
|
-
var Badge_default = {"badge":"
|
|
142
|
+
var Badge_default = {"badge":"bds0114Badge-badge","--variant_primary":"bds0114Badge---variant_primary","--variant_secondary":"bds0114Badge---variant_secondary","--variant_success":"bds0114Badge---variant_success","--variant_error":"bds0114Badge---variant_error","--variant_warning":"bds0114Badge---variant_warning"};
|
|
143
143
|
|
|
144
144
|
// src/components/ui/Badge/Badge.tsx
|
|
145
145
|
import { cn as cn4 } from "@boostdev/design-system-foundation";
|
|
@@ -149,7 +149,7 @@ function Badge({ children, variant = "primary", className }) {
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
152
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
152
|
+
var Breadcrumb_default = {"breadcrumb":"bds0114Breadcrumb-breadcrumb","list":"bds0114Breadcrumb-list","item":"bds0114Breadcrumb-item","link":"bds0114Breadcrumb-link","separator":"bds0114Breadcrumb-separator","current":"bds0114Breadcrumb-current"};
|
|
153
153
|
|
|
154
154
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
155
155
|
import { cn as cn5 } from "@boostdev/design-system-foundation";
|
|
@@ -168,7 +168,7 @@ function Breadcrumb({ items, className }) {
|
|
|
168
168
|
import { useState as useState2, useId as useId2 } from "react";
|
|
169
169
|
|
|
170
170
|
// src/components/ui/Calendar/Calendar.module.css
|
|
171
|
-
var Calendar_default = {"calendar":"
|
|
171
|
+
var Calendar_default = {"calendar":"bds0114Calendar-calendar","header":"bds0114Calendar-header","monthYear":"bds0114Calendar-monthYear","navBtn":"bds0114Calendar-navBtn","grid":"bds0114Calendar-grid","weekday":"bds0114Calendar-weekday","empty":"bds0114Calendar-empty","day":"bds0114Calendar-day","disabled":"bds0114Calendar-disabled","selected":"bds0114Calendar-selected","today":"bds0114Calendar-today"};
|
|
172
172
|
|
|
173
173
|
// src/components/ui/Calendar/Calendar.tsx
|
|
174
174
|
import { cn as cn6 } from "@boostdev/design-system-foundation";
|
|
@@ -334,7 +334,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
|
|
|
334
334
|
import { useRef, useId as useId3 } from "react";
|
|
335
335
|
|
|
336
336
|
// src/components/ui/Carousel/Carousel.module.css
|
|
337
|
-
var Carousel_default = {"carousel":"
|
|
337
|
+
var Carousel_default = {"carousel":"bds0114Carousel-carousel","track":"bds0114Carousel-track","slide":"bds0114Carousel-slide","navBtn":"bds0114Carousel-navBtn"};
|
|
338
338
|
|
|
339
339
|
// src/components/ui/Carousel/Carousel.tsx
|
|
340
340
|
import { cn as cn7 } from "@boostdev/design-system-foundation";
|
|
@@ -387,7 +387,7 @@ function Carousel({ items, label, className }) {
|
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
390
|
-
var DescriptionList_default = {"list":"
|
|
390
|
+
var DescriptionList_default = {"list":"bds0114DescriptionList-list","group":"bds0114DescriptionList-group","term":"bds0114DescriptionList-term","details":"bds0114DescriptionList-details","--layout_inline":"bds0114DescriptionList---layout_inline"};
|
|
391
391
|
|
|
392
392
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
393
393
|
import { cn as cn8 } from "@boostdev/design-system-foundation";
|
|
@@ -400,7 +400,7 @@ function DescriptionList({ items, layout = "stacked", className }) {
|
|
|
400
400
|
}
|
|
401
401
|
|
|
402
402
|
// src/components/ui/Link/Link.module.css
|
|
403
|
-
var Link_default = {"link":"
|
|
403
|
+
var Link_default = {"link":"bds0114Link-link","--variant_default":"bds0114Link---variant_default","--variant_subtle":"bds0114Link---variant_subtle","--variant_standalone":"bds0114Link---variant_standalone","externalLabel":"bds0114Link-externalLabel"};
|
|
404
404
|
|
|
405
405
|
// src/components/ui/Link/Link.tsx
|
|
406
406
|
import { cn as cn9 } from "@boostdev/design-system-foundation";
|
|
@@ -431,7 +431,7 @@ function Link({
|
|
|
431
431
|
}
|
|
432
432
|
|
|
433
433
|
// src/components/ui/Loading/Loading.module.css
|
|
434
|
-
var Loading_default = {"loading":"
|
|
434
|
+
var Loading_default = {"loading":"bds0114Loading-loading","spinner":"bds0114Loading-spinner","--size_small":"bds0114Loading---size_small","--size_large":"bds0114Loading---size_large"};
|
|
435
435
|
|
|
436
436
|
// src/components/ui/Loading/Loading.tsx
|
|
437
437
|
import { cn as cn10 } from "@boostdev/design-system-foundation";
|
|
@@ -441,7 +441,7 @@ function Loading({ size = "medium", className }) {
|
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
444
|
-
var NotificationBanner_default = {"banner":"
|
|
444
|
+
var NotificationBanner_default = {"banner":"bds0114NotificationBanner-banner","--variant_info":"bds0114NotificationBanner---variant_info","--variant_success":"bds0114NotificationBanner---variant_success","--variant_warning":"bds0114NotificationBanner---variant_warning","--variant_error":"bds0114NotificationBanner---variant_error","content":"bds0114NotificationBanner-content","action":"bds0114NotificationBanner-action","dismiss":"bds0114NotificationBanner-dismiss"};
|
|
445
445
|
|
|
446
446
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
447
447
|
import { cn as cn11 } from "@boostdev/design-system-foundation";
|
|
@@ -480,7 +480,7 @@ function NotificationBanner({
|
|
|
480
480
|
}
|
|
481
481
|
|
|
482
482
|
// src/components/ui/Pagination/Pagination.module.css
|
|
483
|
-
var Pagination_default = {"pagination":"
|
|
483
|
+
var Pagination_default = {"pagination":"bds0114Pagination-pagination","list":"bds0114Pagination-list","button":"bds0114Pagination-button","--active":"bds0114Pagination---active","--nav":"bds0114Pagination---nav","ellipsis":"bds0114Pagination-ellipsis"};
|
|
484
484
|
|
|
485
485
|
// src/components/ui/Pagination/Pagination.tsx
|
|
486
486
|
import { cn as cn12 } from "@boostdev/design-system-foundation";
|
|
@@ -544,7 +544,7 @@ function Pagination({
|
|
|
544
544
|
}
|
|
545
545
|
|
|
546
546
|
// src/components/ui/Progress/Progress.module.css
|
|
547
|
-
var Progress_default = {"container":"
|
|
547
|
+
var Progress_default = {"container":"bds0114Progress-container","labelRow":"bds0114Progress-labelRow","label":"bds0114Progress-label","value":"bds0114Progress-value","track":"bds0114Progress-track","--size_small":"bds0114Progress---size_small","--size_medium":"bds0114Progress---size_medium","--size_large":"bds0114Progress---size_large","fill":"bds0114Progress-fill"};
|
|
548
548
|
|
|
549
549
|
// src/components/ui/Progress/Progress.tsx
|
|
550
550
|
import { cn as cn13 } from "@boostdev/design-system-foundation";
|
|
@@ -582,7 +582,7 @@ function Progress({
|
|
|
582
582
|
}
|
|
583
583
|
|
|
584
584
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
585
|
-
var ProgressCircle_default = {"wrapper":"
|
|
585
|
+
var ProgressCircle_default = {"wrapper":"bds0114ProgressCircle-wrapper","svg":"bds0114ProgressCircle-svg","track":"bds0114ProgressCircle-track","fill":"bds0114ProgressCircle-fill","value":"bds0114ProgressCircle-value","--size_small":"bds0114ProgressCircle---size_small","--size_medium":"bds0114ProgressCircle---size_medium","--size_large":"bds0114ProgressCircle---size_large"};
|
|
586
586
|
|
|
587
587
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
588
588
|
import { cn as cn14 } from "@boostdev/design-system-foundation";
|
|
@@ -661,7 +661,7 @@ function ProgressCircle({
|
|
|
661
661
|
}
|
|
662
662
|
|
|
663
663
|
// src/components/ui/Separator/Separator.module.css
|
|
664
|
-
var Separator_default = {"separator":"
|
|
664
|
+
var Separator_default = {"separator":"bds0114Separator-separator","--horizontal":"bds0114Separator---horizontal","--vertical":"bds0114Separator---vertical"};
|
|
665
665
|
|
|
666
666
|
// src/components/ui/Separator/Separator.tsx
|
|
667
667
|
import { cn as cn15 } from "@boostdev/design-system-foundation";
|
|
@@ -684,7 +684,7 @@ function Separator({ orientation = "horizontal", className }) {
|
|
|
684
684
|
import { cn as cn16 } from "@boostdev/design-system-foundation";
|
|
685
685
|
|
|
686
686
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
687
|
-
var Skeleton_default = {"skeleton":"
|
|
687
|
+
var Skeleton_default = {"skeleton":"bds0114Skeleton-skeleton"};
|
|
688
688
|
|
|
689
689
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
690
690
|
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
@@ -693,7 +693,7 @@ function Skeleton({ className }) {
|
|
|
693
693
|
}
|
|
694
694
|
|
|
695
695
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
696
|
-
var SkipLink_default = {"skipLink":"
|
|
696
|
+
var SkipLink_default = {"skipLink":"bds0114SkipLink-skipLink"};
|
|
697
697
|
|
|
698
698
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
699
699
|
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
@@ -702,7 +702,7 @@ function SkipLink({ href = "#main", children = "Skip to main content" }) {
|
|
|
702
702
|
}
|
|
703
703
|
|
|
704
704
|
// src/components/ui/Table/Table.module.css
|
|
705
|
-
var Table_default = {"wrapper":"
|
|
705
|
+
var Table_default = {"wrapper":"bds0114Table-wrapper","table":"bds0114Table-table","caption":"bds0114Table-caption","thead":"bds0114Table-thead","th":"bds0114Table-th","--sortable":"bds0114Table---sortable","sortButton":"bds0114Table-sortButton","sortIcon":"bds0114Table-sortIcon","--sort-active":"bds0114Table---sort-active","--sort-desc":"bds0114Table---sort-desc","tbody":"bds0114Table-tbody","tr":"bds0114Table-tr","td":"bds0114Table-td"};
|
|
706
706
|
|
|
707
707
|
// src/components/ui/Table/Table.tsx
|
|
708
708
|
import { cn as cn17 } from "@boostdev/design-system-foundation";
|
|
@@ -771,7 +771,7 @@ function Table({
|
|
|
771
771
|
import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
|
|
772
772
|
|
|
773
773
|
// src/components/ui/Tabs/Tabs.module.css
|
|
774
|
-
var Tabs_default = {"tabs":"
|
|
774
|
+
var Tabs_default = {"tabs":"bds0114Tabs-tabs","tabList":"bds0114Tabs-tabList","tab":"bds0114Tabs-tab","--active":"bds0114Tabs---active","panel":"bds0114Tabs-panel"};
|
|
775
775
|
|
|
776
776
|
// src/components/ui/Tabs/Tabs.tsx
|
|
777
777
|
import { cn as cn18 } from "@boostdev/design-system-foundation";
|
|
@@ -852,7 +852,7 @@ function Tabs({ tabs, defaultTab, className }) {
|
|
|
852
852
|
import { cloneElement, isValidElement, useId as useId5 } from "react";
|
|
853
853
|
|
|
854
854
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
855
|
-
var Tooltip_default = {"wrapper":"
|
|
855
|
+
var Tooltip_default = {"wrapper":"bds0114Tooltip-wrapper","tooltip":"bds0114Tooltip-tooltip","--placement_top":"bds0114Tooltip---placement_top","--placement_bottom":"bds0114Tooltip---placement_bottom","--placement_left":"bds0114Tooltip---placement_left","--placement_right":"bds0114Tooltip---placement_right"};
|
|
856
856
|
|
|
857
857
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
858
858
|
import { cn as cn19 } from "@boostdev/design-system-foundation";
|
|
@@ -882,7 +882,7 @@ function Tooltip({
|
|
|
882
882
|
}
|
|
883
883
|
|
|
884
884
|
// src/components/ui/Typography/Typography.module.css
|
|
885
|
-
var Typography_default = {"typography":"
|
|
885
|
+
var Typography_default = {"typography":"bds0114Typography-typography","--h1":"bds0114Typography---h1","--h2":"bds0114Typography---h2","--h3":"bds0114Typography---h3","--body":"bds0114Typography---body","--body_s":"bds0114Typography---body_s"};
|
|
886
886
|
|
|
887
887
|
// src/components/ui/Typography/Typography.tsx
|
|
888
888
|
import { cn as cn20 } from "@boostdev/design-system-foundation";
|
|
@@ -900,7 +900,7 @@ function Typography({ variant = "body", component, children, className }) {
|
|
|
900
900
|
}
|
|
901
901
|
|
|
902
902
|
// src/components/interaction/Button/Button.module.css
|
|
903
|
-
var Button_default = {"button":"
|
|
903
|
+
var Button_default = {"button":"bds0114Button-button","--primary":"bds0114Button---primary","--secondary":"bds0114Button---secondary","--size_small":"bds0114Button---size_small","--size_medium":"bds0114Button---size_medium","--size_large":"bds0114Button---size_large","--hasPulse":"bds0114Button---hasPulse","prefix":"bds0114Button-prefix","suffix":"bds0114Button-suffix"};
|
|
904
904
|
|
|
905
905
|
// src/components/interaction/Button/Button.tsx
|
|
906
906
|
import { cn as cn21 } from "@boostdev/design-system-foundation";
|
|
@@ -976,7 +976,7 @@ function Button({
|
|
|
976
976
|
import { useState as useState4, useEffect, useRef as useRef3, useId as useId6, useMemo } from "react";
|
|
977
977
|
|
|
978
978
|
// src/components/interaction/Command/Command.module.css
|
|
979
|
-
var Command_default = {"dialog":"
|
|
979
|
+
var Command_default = {"dialog":"bds0114Command-dialog","palette":"bds0114Command-palette","searchRow":"bds0114Command-searchRow","searchIcon":"bds0114Command-searchIcon","search":"bds0114Command-search","escHint":"bds0114Command-escHint","list":"bds0114Command-list","groupList":"bds0114Command-groupList","group":"bds0114Command-group","item":"bds0114Command-item","itemActive":"bds0114Command-itemActive","itemLabel":"bds0114Command-itemLabel","itemDesc":"bds0114Command-itemDesc","shortcut":"bds0114Command-shortcut","empty":"bds0114Command-empty"};
|
|
980
980
|
|
|
981
981
|
// src/components/interaction/Command/Command.tsx
|
|
982
982
|
import { cn as cn22 } from "@boostdev/design-system-foundation";
|
|
@@ -1115,7 +1115,7 @@ function Command({
|
|
|
1115
1115
|
import { useEffect as useEffect2, useRef as useRef4 } from "react";
|
|
1116
1116
|
|
|
1117
1117
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1118
|
-
var Dialog_default = {"dialog":"
|
|
1118
|
+
var Dialog_default = {"dialog":"bds0114Dialog-dialog","dialogContent":"bds0114Dialog-dialogContent","closeForm":"bds0114Dialog-closeForm","closeButton":"bds0114Dialog-closeButton"};
|
|
1119
1119
|
|
|
1120
1120
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1121
1121
|
import { cn as cn23 } from "@boostdev/design-system-foundation";
|
|
@@ -1171,7 +1171,7 @@ function Dialog({ children, isOpen = false, className, onClose }) {
|
|
|
1171
1171
|
import { useEffect as useEffect3, useRef as useRef5 } from "react";
|
|
1172
1172
|
|
|
1173
1173
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1174
|
-
var Drawer_default = {"drawer":"
|
|
1174
|
+
var Drawer_default = {"drawer":"bds0114Drawer-drawer","panel":"bds0114Drawer-panel","--side_right":"bds0114Drawer---side_right","--side_left":"bds0114Drawer---side_left","header":"bds0114Drawer-header","closeButton":"bds0114Drawer-closeButton","body":"bds0114Drawer-body"};
|
|
1175
1175
|
|
|
1176
1176
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1177
1177
|
import { cn as cn24 } from "@boostdev/design-system-foundation";
|
|
@@ -1182,6 +1182,7 @@ function Drawer({
|
|
|
1182
1182
|
title,
|
|
1183
1183
|
children,
|
|
1184
1184
|
side = "right",
|
|
1185
|
+
arialLabel = "",
|
|
1185
1186
|
className
|
|
1186
1187
|
}) {
|
|
1187
1188
|
const dialogRef = useRef5(null);
|
|
@@ -1206,12 +1207,12 @@ function Drawer({
|
|
|
1206
1207
|
{
|
|
1207
1208
|
ref: dialogRef,
|
|
1208
1209
|
className: cn24(Drawer_default.drawer, Drawer_default[`--side_${side}`], className),
|
|
1209
|
-
"aria-label":
|
|
1210
|
+
"aria-label": arialLabel,
|
|
1210
1211
|
onClick: handleClick,
|
|
1211
1212
|
onCancel: handleCancel,
|
|
1212
1213
|
children: /* @__PURE__ */ jsxs18("div", { className: Drawer_default.panel, children: [
|
|
1213
1214
|
/* @__PURE__ */ jsxs18("div", { className: Drawer_default.header, children: [
|
|
1214
|
-
|
|
1215
|
+
!!title && title,
|
|
1215
1216
|
/* @__PURE__ */ jsx25(
|
|
1216
1217
|
"button",
|
|
1217
1218
|
{
|
|
@@ -1240,7 +1241,7 @@ import {
|
|
|
1240
1241
|
} from "react";
|
|
1241
1242
|
|
|
1242
1243
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1243
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1244
|
+
var DropdownMenu_default = {"wrapper":"bds0114DropdownMenu-wrapper","menu":"bds0114DropdownMenu-menu","--placement_bottom-start":"bds0114DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds0114DropdownMenu---placement_bottom-end","separator":"bds0114DropdownMenu-separator","item":"bds0114DropdownMenu-item","icon":"bds0114DropdownMenu-icon"};
|
|
1244
1245
|
|
|
1245
1246
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1246
1247
|
import { cn as cn25 } from "@boostdev/design-system-foundation";
|
|
@@ -1360,7 +1361,7 @@ import {
|
|
|
1360
1361
|
} from "react";
|
|
1361
1362
|
|
|
1362
1363
|
// src/components/interaction/Popover/Popover.module.css
|
|
1363
|
-
var Popover_default = {"wrapper":"
|
|
1364
|
+
var Popover_default = {"wrapper":"bds0114Popover-wrapper","panel":"bds0114Popover-panel","--placement_bottom":"bds0114Popover---placement_bottom","--placement_top":"bds0114Popover---placement_top","--placement_right":"bds0114Popover---placement_right","--placement_left":"bds0114Popover---placement_left"};
|
|
1364
1365
|
|
|
1365
1366
|
// src/components/interaction/Popover/Popover.tsx
|
|
1366
1367
|
import { cn as cn26 } from "@boostdev/design-system-foundation";
|
|
@@ -1416,7 +1417,7 @@ function Popover({
|
|
|
1416
1417
|
}
|
|
1417
1418
|
|
|
1418
1419
|
// src/components/interaction/Rating/Rating.module.css
|
|
1419
|
-
var Rating_default = {"rating":"
|
|
1420
|
+
var Rating_default = {"rating":"bds0114Rating-rating","star":"bds0114Rating-star","--filled":"bds0114Rating---filled"};
|
|
1420
1421
|
|
|
1421
1422
|
// src/components/interaction/Rating/Rating.tsx
|
|
1422
1423
|
import { cn as cn27 } from "@boostdev/design-system-foundation";
|
|
@@ -1447,7 +1448,7 @@ function Rating({ value, max = 5, className }) {
|
|
|
1447
1448
|
import { useState as useState7, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2 } from "react";
|
|
1448
1449
|
|
|
1449
1450
|
// src/components/interaction/Toast/Toast.module.css
|
|
1450
|
-
var Toast_default = {"toastContainer":"
|
|
1451
|
+
var Toast_default = {"toastContainer":"bds0114Toast-toastContainer","toast":"bds0114Toast-toast","--variant_success":"bds0114Toast---variant_success","--variant_warning":"bds0114Toast---variant_warning","--variant_info":"bds0114Toast---variant_info","--variant_error":"bds0114Toast---variant_error","message":"bds0114Toast-message","closeButton":"bds0114Toast-closeButton"};
|
|
1451
1452
|
|
|
1452
1453
|
// src/components/interaction/Toast/Toast.tsx
|
|
1453
1454
|
import { cn as cn28 } from "@boostdev/design-system-foundation";
|
|
@@ -1497,10 +1498,10 @@ function useToast() {
|
|
|
1497
1498
|
import { useId as useId9 } from "react";
|
|
1498
1499
|
|
|
1499
1500
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1500
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1501
|
+
var Checkbox_default = {"checkboxGroup":"bds0114Checkbox-checkboxGroup","inputWrapper":"bds0114Checkbox-inputWrapper","checkbox":"bds0114Checkbox-checkbox","checkboxError":"bds0114Checkbox-checkboxError"};
|
|
1501
1502
|
|
|
1502
1503
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1503
|
-
var Message_default = {"error":"
|
|
1504
|
+
var Message_default = {"error":"bds0114Message-error","hint":"bds0114Message-hint"};
|
|
1504
1505
|
|
|
1505
1506
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1506
1507
|
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
@@ -1510,7 +1511,7 @@ var Message = ({ message, type, inputId }) => {
|
|
|
1510
1511
|
};
|
|
1511
1512
|
|
|
1512
1513
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1513
|
-
var Label_default = {"label":"
|
|
1514
|
+
var Label_default = {"label":"bds0114Label-label"};
|
|
1514
1515
|
|
|
1515
1516
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1516
1517
|
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
@@ -1522,7 +1523,7 @@ var Label = ({ label, id }) => {
|
|
|
1522
1523
|
import { cn as cn30 } from "@boostdev/design-system-foundation";
|
|
1523
1524
|
|
|
1524
1525
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1525
|
-
var InputContainer_default = {"container":"
|
|
1526
|
+
var InputContainer_default = {"container":"bds0114InputContainer-container"};
|
|
1526
1527
|
|
|
1527
1528
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1528
1529
|
import { cn as cn29 } from "@boostdev/design-system-foundation";
|
|
@@ -1569,7 +1570,7 @@ import {
|
|
|
1569
1570
|
} from "react";
|
|
1570
1571
|
|
|
1571
1572
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1572
|
-
var Combobox_default = {"formGroup":"
|
|
1573
|
+
var Combobox_default = {"formGroup":"bds0114Combobox-formGroup","inputWrapper":"bds0114Combobox-inputWrapper","input":"bds0114Combobox-input","inputError":"bds0114Combobox-inputError","chevron":"bds0114Combobox-chevron","listbox":"bds0114Combobox-listbox","option":"bds0114Combobox-option","--highlighted":"bds0114Combobox---highlighted","--selected":"bds0114Combobox---selected","--disabled":"bds0114Combobox---disabled"};
|
|
1573
1574
|
|
|
1574
1575
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1575
1576
|
import { cn as cn31 } from "@boostdev/design-system-foundation";
|
|
@@ -1720,7 +1721,7 @@ function Combobox({
|
|
|
1720
1721
|
import { useId as useId11, useRef as useRef9, useState as useState9 } from "react";
|
|
1721
1722
|
|
|
1722
1723
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
1723
|
-
var FileInput_default = {"formGroup":"
|
|
1724
|
+
var FileInput_default = {"formGroup":"bds0114FileInput-formGroup","dropZone":"bds0114FileInput-dropZone","isDragging":"bds0114FileInput-isDragging","hasError":"bds0114FileInput-hasError","isDisabled":"bds0114FileInput-isDisabled","icon":"bds0114FileInput-icon","prompt":"bds0114FileInput-prompt","acceptHint":"bds0114FileInput-acceptHint","hiddenInput":"bds0114FileInput-hiddenInput"};
|
|
1724
1725
|
|
|
1725
1726
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
1726
1727
|
import { cn as cn32 } from "@boostdev/design-system-foundation";
|
|
@@ -1817,7 +1818,7 @@ function FileInput({
|
|
|
1817
1818
|
import { useId as useId12 } from "react";
|
|
1818
1819
|
|
|
1819
1820
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
1820
|
-
var FormInput_default = {"formGroup":"
|
|
1821
|
+
var FormInput_default = {"formGroup":"bds0114FormInput-formGroup","input":"bds0114FormInput-input","inputError":"bds0114FormInput-inputError"};
|
|
1821
1822
|
|
|
1822
1823
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
1823
1824
|
import { cn as cn33 } from "@boostdev/design-system-foundation";
|
|
@@ -1858,7 +1859,7 @@ function FormInput({
|
|
|
1858
1859
|
import { useId as useId13, useRef as useRef10, useState as useState10 } from "react";
|
|
1859
1860
|
|
|
1860
1861
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
1861
|
-
var NumberInput_default = {"formGroup":"
|
|
1862
|
+
var NumberInput_default = {"formGroup":"bds0114NumberInput-formGroup","inputRow":"bds0114NumberInput-inputRow","input":"bds0114NumberInput-input","inputError":"bds0114NumberInput-inputError","stepper":"bds0114NumberInput-stepper"};
|
|
1862
1863
|
|
|
1863
1864
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
1864
1865
|
import { cn as cn34 } from "@boostdev/design-system-foundation";
|
|
@@ -1953,12 +1954,12 @@ function NumberInput({
|
|
|
1953
1954
|
import { useId as useId14 } from "react";
|
|
1954
1955
|
|
|
1955
1956
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
1956
|
-
var Radio_default = {"radioGroup":"
|
|
1957
|
+
var Radio_default = {"radioGroup":"bds0114Radio-radioGroup","inputWrapper":"bds0114Radio-inputWrapper","textWrapper":"bds0114Radio-textWrapper","description":"bds0114Radio-description","radio":"bds0114Radio-radio","radioError":"bds0114Radio-radioError"};
|
|
1957
1958
|
|
|
1958
1959
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
1959
1960
|
import { cn as cn35 } from "@boostdev/design-system-foundation";
|
|
1960
1961
|
import { jsx as jsx38, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1961
|
-
function Radio({ label, name, error, hint, className, ...props }) {
|
|
1962
|
+
function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
1962
1963
|
const id = name + useId14();
|
|
1963
1964
|
const hintId = id + "hint";
|
|
1964
1965
|
const errorId = id + "error";
|
|
@@ -1977,7 +1978,10 @@ function Radio({ label, name, error, hint, className, ...props }) {
|
|
|
1977
1978
|
...props
|
|
1978
1979
|
}
|
|
1979
1980
|
),
|
|
1980
|
-
/* @__PURE__ */
|
|
1981
|
+
/* @__PURE__ */ jsxs27("div", { className: Radio_default.textWrapper, children: [
|
|
1982
|
+
/* @__PURE__ */ jsx38(Label, { id, label }),
|
|
1983
|
+
description && /* @__PURE__ */ jsx38("span", { className: Radio_default.description, children: description })
|
|
1984
|
+
] })
|
|
1981
1985
|
] }),
|
|
1982
1986
|
/* @__PURE__ */ jsx38(Message, { inputId: id, type: "error", message: error }),
|
|
1983
1987
|
/* @__PURE__ */ jsx38(Message, { inputId: id, type: "hint", message: hint })
|
|
@@ -1988,7 +1992,7 @@ function Radio({ label, name, error, hint, className, ...props }) {
|
|
|
1988
1992
|
import { useId as useId15 } from "react";
|
|
1989
1993
|
|
|
1990
1994
|
// src/components/interaction/form/Select/Select.module.css
|
|
1991
|
-
var Select_default = {"formGroup":"
|
|
1995
|
+
var Select_default = {"formGroup":"bds0114Select-formGroup","selectWrapper":"bds0114Select-selectWrapper","select":"bds0114Select-select","selectError":"bds0114Select-selectError","chevron":"bds0114Select-chevron"};
|
|
1992
1996
|
|
|
1993
1997
|
// src/components/interaction/form/Select/Select.tsx
|
|
1994
1998
|
import { cn as cn36 } from "@boostdev/design-system-foundation";
|
|
@@ -2036,7 +2040,7 @@ function Select({
|
|
|
2036
2040
|
import { useId as useId16, useState as useState11 } from "react";
|
|
2037
2041
|
|
|
2038
2042
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2039
|
-
var Slider_default = {"formGroup":"
|
|
2043
|
+
var Slider_default = {"formGroup":"bds0114Slider-formGroup","labelRow":"bds0114Slider-labelRow","value":"bds0114Slider-value","slider":"bds0114Slider-slider","sliderError":"bds0114Slider-sliderError"};
|
|
2040
2044
|
|
|
2041
2045
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2042
2046
|
import { cn as cn37 } from "@boostdev/design-system-foundation";
|
|
@@ -2097,7 +2101,7 @@ function Slider({
|
|
|
2097
2101
|
import { useId as useId17 } from "react";
|
|
2098
2102
|
|
|
2099
2103
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2100
|
-
var Switch_default = {"switchGroup":"
|
|
2104
|
+
var Switch_default = {"switchGroup":"bds0114Switch-switchGroup","--size_small":"bds0114Switch---size_small","--size_medium":"bds0114Switch---size_medium","--size_large":"bds0114Switch---size_large","inputWrapper":"bds0114Switch-inputWrapper","trackWrapper":"bds0114Switch-trackWrapper","switch":"bds0114Switch-switch","track":"bds0114Switch-track","thumb":"bds0114Switch-thumb","switchError":"bds0114Switch-switchError"};
|
|
2101
2105
|
|
|
2102
2106
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2103
2107
|
import { cn as cn38 } from "@boostdev/design-system-foundation";
|
|
@@ -2143,7 +2147,7 @@ function Switch({
|
|
|
2143
2147
|
import { useId as useId18 } from "react";
|
|
2144
2148
|
|
|
2145
2149
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2146
|
-
var Textarea_default = {"formGroup":"
|
|
2150
|
+
var Textarea_default = {"formGroup":"bds0114Textarea-formGroup","textarea":"bds0114Textarea-textarea","textareaError":"bds0114Textarea-textareaError"};
|
|
2147
2151
|
|
|
2148
2152
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2149
2153
|
import { cn as cn39 } from "@boostdev/design-system-foundation";
|
|
@@ -2179,7 +2183,7 @@ function Textarea({
|
|
|
2179
2183
|
}
|
|
2180
2184
|
|
|
2181
2185
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2182
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2186
|
+
var ButtonGroup_default = {"buttonGroup":"bds0114ButtonGroup-buttonGroup","container":"bds0114ButtonGroup-container","--variant_card":"bds0114ButtonGroup---variant_card","--variant_flow":"bds0114ButtonGroup---variant_flow","--variant_modal":"bds0114ButtonGroup---variant_modal","--variant_content":"bds0114ButtonGroup---variant_content","--variant_grid":"bds0114ButtonGroup---variant_grid"};
|
|
2183
2187
|
|
|
2184
2188
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2185
2189
|
import { cn as cn40 } from "@boostdev/design-system-foundation";
|
|
@@ -2189,7 +2193,7 @@ function ButtonGroup({ children, className, variant }) {
|
|
|
2189
2193
|
}
|
|
2190
2194
|
|
|
2191
2195
|
// src/components/layout/Card/Card.module.css
|
|
2192
|
-
var Card_default = {"card":"
|
|
2196
|
+
var Card_default = {"card":"bds0114Card-card","--default":"bds0114Card---default","--elevated":"bds0114Card---elevated","--outlined":"bds0114Card---outlined","--clickable":"bds0114Card---clickable","--padding-none":"bds0114Card---padding-none","--padding-small":"bds0114Card---padding-small","--padding-medium":"bds0114Card---padding-medium","--padding-large":"bds0114Card---padding-large","--text-start":"bds0114Card---text-start","--text-center":"bds0114Card---text-center","--text-end":"bds0114Card---text-end"};
|
|
2193
2197
|
|
|
2194
2198
|
// src/components/layout/Card/Card.tsx
|
|
2195
2199
|
import { cn as cn41 } from "@boostdev/design-system-foundation";
|
|
@@ -2227,7 +2231,7 @@ function Card({
|
|
|
2227
2231
|
}
|
|
2228
2232
|
|
|
2229
2233
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2230
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2234
|
+
var SectionHeader_default = {"sectionHeader":"bds0114SectionHeader-sectionHeader","title":"bds0114SectionHeader-title","subtitle":"bds0114SectionHeader-subtitle","--start":"bds0114SectionHeader---start","--center":"bds0114SectionHeader---center","--end":"bds0114SectionHeader---end","--small":"bds0114SectionHeader---small","--medium":"bds0114SectionHeader---medium","--large":"bds0114SectionHeader---large"};
|
|
2231
2235
|
|
|
2232
2236
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2233
2237
|
import { cn as cn42 } from "@boostdev/design-system-foundation";
|
|
@@ -2248,7 +2252,7 @@ function SectionHeader({
|
|
|
2248
2252
|
}
|
|
2249
2253
|
|
|
2250
2254
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2251
|
-
var IconWrapper_default = {"wrapper":"
|
|
2255
|
+
var IconWrapper_default = {"wrapper":"bds0114IconWrapper-wrapper"};
|
|
2252
2256
|
|
|
2253
2257
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2254
2258
|
import { cn as cn43 } from "@boostdev/design-system-foundation";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boostdev/design-system-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "BoostDev React component library: accessible, token-driven components built on @boostdev/design-system-foundation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"React",
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
"scripts": {
|
|
94
94
|
"build": "tsup && node scripts/patch-css-modules.mjs",
|
|
95
95
|
"dev": "tsup --watch",
|
|
96
|
+
"mcp:start": "tsx mcp/server.ts",
|
|
96
97
|
"typecheck": "tsc --noEmit",
|
|
97
98
|
"lint": "eslint src",
|
|
98
99
|
"lint:css": "stylelint \"src/**/*.css\"",
|
|
@@ -104,7 +105,9 @@
|
|
|
104
105
|
"changelog:unreleased": "pnpm exec git-cliff --unreleased"
|
|
105
106
|
},
|
|
106
107
|
"devDependencies": {
|
|
107
|
-
"@boostdev/design-system-foundation": "^0.1.
|
|
108
|
+
"@boostdev/design-system-foundation": "^0.1.13",
|
|
109
|
+
"@modelcontextprotocol/sdk": "^1.27.0",
|
|
110
|
+
"@storybook/addon-docs": "8.6.14",
|
|
108
111
|
"@storybook/addon-essentials": "^8.6.14",
|
|
109
112
|
"@storybook/blocks": "^8.6.14",
|
|
110
113
|
"@storybook/react": "8",
|
|
@@ -120,6 +123,7 @@
|
|
|
120
123
|
"git-cliff": "^2.12.0",
|
|
121
124
|
"identity-obj-proxy": "^3.0.0",
|
|
122
125
|
"jsdom": "^28.1.0",
|
|
126
|
+
"remark-gfm": "^4.0.1",
|
|
123
127
|
"storybook": "^8.6.18",
|
|
124
128
|
"stylelint": "^16",
|
|
125
129
|
"stylelint-config-standard": "^37",
|