@boostdev/design-system-components 1.2.8 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +5 -3
- package/README.md +57 -38
- package/dist/client.cjs +52 -50
- package/dist/client.css +537 -524
- package/dist/client.d.cts +31 -1
- package/dist/client.d.ts +31 -1
- package/dist/client.js +52 -50
- package/dist/index.cjs +52 -50
- package/dist/index.css +537 -524
- package/dist/index.d.cts +31 -1
- package/dist/index.d.ts +31 -1
- package/dist/index.js +52 -50
- package/dist/native/index.cjs +5 -2
- package/dist/native/index.d.cts +3 -1
- package/dist/native/index.d.ts +3 -1
- package/dist/native/index.js +5 -2
- package/dist/web-components/{chunk-DZRSJGPB.js → chunk-3S42DZ7W.js} +1 -1
- package/dist/web-components/{chunk-3REOIRDW.js → chunk-N3TN6WCH.js} +26 -1
- package/dist/web-components/globals.js +1 -1
- package/dist/web-components/index.js +2 -2
- package/dist/web-components/interaction/bds-button.d.ts +7 -0
- package/dist/web-components/interaction/bds-button.js +1 -1
- package/package.json +3 -3
- package/src/components/interaction/Button/Button.mdx +84 -29
- package/src/components/interaction/Button/Button.module.css +25 -1
- package/src/components/interaction/Button/Button.native.mdx +33 -14
- package/src/components/interaction/Button/Button.native.spec.tsx +20 -0
- package/src/components/interaction/Button/Button.native.stories.tsx +110 -9
- package/src/components/interaction/Button/Button.native.tsx +13 -4
- package/src/components/interaction/Button/Button.spec.tsx +16 -0
- package/src/components/interaction/Button/Button.stories.tsx +134 -16
- package/src/components/interaction/Button/Button.tsx +32 -0
- package/src/components/interaction/Command/Command.module.css +1 -1
- package/src/components/interaction/Dialog/Dialog.module.css +1 -1
- package/src/components/interaction/Dialog/Dialog.native.mdx +2 -2
- package/src/components/interaction/Drawer/Drawer.module.css +1 -1
- package/src/components/interaction/Drawer/Drawer.native.mdx +2 -2
- package/src/components/interaction/DropdownMenu/DropdownMenu.module.css +1 -1
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.mdx +2 -2
- package/src/components/interaction/Popover/Popover.module.css +1 -1
- package/src/components/interaction/Popover/Popover.native.mdx +2 -2
- package/src/components/interaction/Rating/Rating.module.css +1 -1
- package/src/components/interaction/Rating/Rating.native.mdx +1 -1
- package/src/components/interaction/Toast/Toast.module.css +1 -1
- package/src/components/interaction/Toast/Toast.native.mdx +3 -3
- package/src/components/interaction/form/Checkbox/Checkbox.module.css +1 -1
- package/src/components/interaction/form/Checkbox/Checkbox.native.mdx +1 -1
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css +1 -1
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.mdx +1 -1
- package/src/components/interaction/form/Combobox/Combobox.module.css +1 -1
- package/src/components/interaction/form/Combobox/Combobox.native.mdx +1 -1
- package/src/components/interaction/form/FileInput/FileInput.module.css +1 -1
- package/src/components/interaction/form/FileInput/FileInput.native.mdx +1 -1
- package/src/components/interaction/form/FormInput/FormInput.module.css +1 -1
- package/src/components/interaction/form/FormInput/FormInput.native.mdx +1 -1
- package/src/components/interaction/form/NumberInput/NumberInput.module.css +1 -1
- package/src/components/interaction/form/NumberInput/NumberInput.native.mdx +1 -1
- package/src/components/interaction/form/Radio/Radio.module.css +1 -1
- package/src/components/interaction/form/RadioGroup/RadioGroup.module.css +1 -1
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.mdx +1 -1
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.module.css +1 -1
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.mdx +1 -1
- package/src/components/interaction/form/Select/Select.module.css +1 -1
- package/src/components/interaction/form/Select/Select.native.mdx +1 -1
- package/src/components/interaction/form/Slider/Slider.module.css +1 -1
- package/src/components/interaction/form/Slider/Slider.native.mdx +1 -1
- package/src/components/interaction/form/Switch/Switch.module.css +1 -1
- package/src/components/interaction/form/Textarea/Textarea.module.css +1 -1
- package/src/components/interaction/form/Textarea/Textarea.native.mdx +1 -1
- package/src/components/interaction/form/atoms/InputContainer.module.css +1 -1
- package/src/components/interaction/form/atoms/Label.module.css +1 -1
- package/src/components/interaction/form/atoms/Message.module.css +1 -1
- package/src/components/layout/ButtonGroup/ButtonGroup.module.css +1 -1
- package/src/components/layout/Card/Card.module.css +1 -1
- package/src/components/layout/IconWrapper/IconWrapper.module.css +1 -1
- package/src/components/layout/IconWrapper/IconWrapper.stories.tsx +46 -14
- package/src/components/layout/SectionHeader/SectionHeader.module.css +1 -1
- package/src/components/ui/Accordion/Accordion.module.css +1 -1
- package/src/components/ui/Accordion/Accordion.native.mdx +1 -1
- package/src/components/ui/Accordion/Accordion.native.stories.tsx +1 -1
- package/src/components/ui/Alert/Alert.module.css +1 -1
- package/src/components/ui/Alert/Alert.native.mdx +1 -1
- package/src/components/ui/Avatar/Avatar.module.css +1 -1
- package/src/components/ui/Avatar/Avatar.native.mdx +1 -1
- package/src/components/ui/Badge/Badge.module.css +1 -1
- package/src/components/ui/Badge/Badge.native.mdx +1 -1
- package/src/components/ui/Breadcrumb/Breadcrumb.module.css +1 -1
- package/src/components/ui/Breadcrumb/Breadcrumb.native.mdx +1 -1
- package/src/components/ui/Calendar/Calendar.module.css +1 -1
- package/src/components/ui/Calendar/Calendar.native.mdx +1 -1
- package/src/components/ui/Carousel/Carousel.module.css +1 -1
- package/src/components/ui/Carousel/Carousel.native.mdx +1 -1
- package/src/components/ui/Collapsible/Collapsible.module.css +1 -1
- package/src/components/ui/Collapsible/Collapsible.native.mdx +1 -1
- package/src/components/ui/DescriptionList/DescriptionList.module.css +1 -1
- package/src/components/ui/DescriptionList/DescriptionList.native.mdx +1 -1
- package/src/components/ui/Link/Link.module.css +1 -1
- package/src/components/ui/Link/Link.native.mdx +1 -1
- package/src/components/ui/Loading/Loading.module.css +1 -1
- package/src/components/ui/NotificationBanner/NotificationBanner.module.css +1 -1
- package/src/components/ui/Pagination/Pagination.module.css +1 -1
- package/src/components/ui/Pagination/Pagination.native.mdx +1 -1
- package/src/components/ui/Progress/Progress.module.css +1 -1
- package/src/components/ui/ProgressCircle/ProgressCircle.module.css +1 -1
- package/src/components/ui/ProgressCircle/ProgressCircle.native.mdx +1 -1
- package/src/components/ui/Separator/Separator.module.css +1 -1
- package/src/components/ui/Skeleton/Skeleton.module.css +1 -1
- package/src/components/ui/SkipLink/SkipLink.module.css +1 -1
- package/src/components/ui/Table/Table.module.css +1 -1
- package/src/components/ui/Table/Table.native.mdx +1 -1
- package/src/components/ui/Tabs/Tabs.module.css +1 -1
- package/src/components/ui/Tabs/Tabs.native.mdx +1 -1
- package/src/components/ui/Tooltip/Tooltip.module.css +1 -1
- package/src/components/ui/Tooltip/Tooltip.native.mdx +1 -1
- package/src/components/ui/Typography/Typography.module.css +1 -1
- package/src/components/ui/Typography/Typography.native.mdx +1 -1
- package/src/css/bdc.css +1 -1
- package/src/css/index.css +1 -1
- package/src/stories/DesignSystem/Borders.mdx +3 -3
- package/src/stories/DesignSystem/Colors.mdx +1 -1
- package/src/stories/DesignSystem/DarkMode.mdx +3 -3
- package/src/stories/DesignSystem/Overview.mdx +16 -5
- package/src/stories/DesignSystem/Typography.mdx +1 -1
- package/src/stories/Introduction.mdx +4 -4
- package/src/stories/ReactNative.mdx +6 -6
- package/src/web-components/globals.ts +1 -1
- package/src/web-components/interaction/BdsAccordion.mdx +3 -3
- package/src/web-components/interaction/BdsAccordion.stories.tsx +1 -1
- package/src/web-components/interaction/BdsButton.mdx +48 -16
- package/src/web-components/interaction/BdsButton.stories.tsx +171 -19
- package/src/web-components/interaction/BdsCollapsible.mdx +2 -2
- package/src/web-components/interaction/BdsDialog.mdx +2 -2
- package/src/web-components/interaction/BdsDrawer.mdx +2 -2
- package/src/web-components/interaction/BdsDropdownMenu.mdx +2 -2
- package/src/web-components/interaction/BdsPopover.mdx +1 -1
- package/src/web-components/interaction/BdsSkipLink.mdx +2 -2
- package/src/web-components/interaction/BdsTabs.mdx +2 -2
- package/src/web-components/interaction/BdsToastProvider.mdx +3 -3
- package/src/web-components/interaction/BdsTooltip.mdx +2 -2
- package/src/web-components/interaction/bds-button.spec.ts +35 -0
- package/src/web-components/interaction/bds-button.ts +28 -1
- package/src/web-components/interaction/form/BdsCheckbox.mdx +1 -1
- package/src/web-components/interaction/form/BdsCheckboxGroup.mdx +1 -1
- package/src/web-components/interaction/form/BdsCombobox.mdx +1 -1
- package/src/web-components/interaction/form/BdsFileInput.mdx +1 -1
- package/src/web-components/interaction/form/BdsFormInput.mdx +1 -1
- package/src/web-components/interaction/form/BdsNumberInput.mdx +1 -1
- package/src/web-components/interaction/form/BdsRadio.mdx +1 -1
- package/src/web-components/interaction/form/BdsRadioGroup.mdx +1 -1
- package/src/web-components/interaction/form/BdsSegmentedControl.mdx +1 -1
- package/src/web-components/interaction/form/BdsSelect.mdx +1 -1
- package/src/web-components/interaction/form/BdsSlider.mdx +1 -1
- package/src/web-components/interaction/form/BdsSwitch.mdx +1 -1
- package/src/web-components/interaction/form/BdsTextarea.mdx +1 -1
- package/src/web-components/ui/BdsAlert.mdx +1 -1
- package/src/web-components/ui/BdsAvatar.mdx +1 -1
- package/src/web-components/ui/BdsBadge.mdx +1 -1
- package/src/web-components/ui/BdsBreadcrumb.mdx +1 -1
- package/src/web-components/ui/BdsButtonGroup.mdx +1 -1
- package/src/web-components/ui/BdsCalendar.mdx +1 -1
- package/src/web-components/ui/BdsCard.mdx +1 -1
- package/src/web-components/ui/BdsCarousel.mdx +1 -1
- package/src/web-components/ui/BdsDescriptionList.mdx +1 -1
- package/src/web-components/ui/BdsIconWrapper.mdx +1 -1
- package/src/web-components/ui/BdsLink.mdx +1 -1
- package/src/web-components/ui/BdsLoading.mdx +1 -1
- package/src/web-components/ui/BdsNotificationBanner.mdx +1 -1
- package/src/web-components/ui/BdsPagination.mdx +1 -1
- package/src/web-components/ui/BdsProgress.mdx +1 -1
- package/src/web-components/ui/BdsProgressCircle.mdx +1 -1
- package/src/web-components/ui/BdsRating.mdx +1 -1
- package/src/web-components/ui/BdsSectionHeader.mdx +1 -1
- package/src/web-components/ui/BdsSeparator.mdx +2 -2
- package/src/web-components/ui/BdsSkeleton.mdx +1 -1
- package/src/web-components/ui/BdsTable.mdx +1 -1
- package/src/web-components/ui/BdsTypography.mdx +1 -1
package/dist/client.d.cts
CHANGED
|
@@ -196,23 +196,53 @@ interface TypographyProps extends WithClassName, HTMLAttributes<HTMLElement> {
|
|
|
196
196
|
}
|
|
197
197
|
declare function Typography({ variant, component, children, className, ...rest }: TypographyProps): react_jsx_runtime.JSX.Element;
|
|
198
198
|
|
|
199
|
+
/**
|
|
200
|
+
* Props for the Button component.
|
|
201
|
+
*
|
|
202
|
+
* Button spreads all unrecognised props onto the underlying element —
|
|
203
|
+
* `<button>` when `href` is absent, `<a>` when `href` is provided —
|
|
204
|
+
* so every standard HTML attribute for that element is accepted.
|
|
205
|
+
*
|
|
206
|
+
* Notably, this means `type`, `form`, `name`, `value`, `autoFocus`, all
|
|
207
|
+
* `aria-*`, all `data-*`, and every DOM event handler are valid props.
|
|
208
|
+
*/
|
|
199
209
|
interface ButtonProps extends WithClassName, ButtonHTMLAttributes<HTMLButtonElement | HTMLAnchorElement> {
|
|
210
|
+
/** When provided, the button renders as an `<a>` element pointing to this URL. */
|
|
200
211
|
href?: string;
|
|
212
|
+
/** Visual style. `'default'` is filled; `'outline'` is transparent with a border. `'ghost'` is a deprecated alias for `'outline'`. */
|
|
201
213
|
variant?: 'default' | 'outline' | /** @deprecated Use "outline" instead */ 'ghost';
|
|
214
|
+
/**
|
|
215
|
+
* Button behaviour within a form. Defaults to `'button'` (no form submission).
|
|
216
|
+
* Set to `'submit'` to trigger the parent `<form>`'s submit handler on click or Enter;
|
|
217
|
+
* `'reset'` to reset the form. Ignored when rendering as `<a>` (i.e. when `href` is set).
|
|
218
|
+
*/
|
|
202
219
|
type?: 'button' | 'submit' | 'reset';
|
|
220
|
+
/** Control height and padding. Defaults to `'medium'`. */
|
|
203
221
|
size?: 'small' | 'medium' | 'large';
|
|
222
|
+
/** Icon rendered before the label. */
|
|
204
223
|
iconStart?: ReactNode;
|
|
224
|
+
/** Icon rendered after the label. */
|
|
205
225
|
iconEnd?: ReactNode;
|
|
226
|
+
/** Label content. Required unless `aria-label` is set (icon-only button). */
|
|
206
227
|
children?: ReactNode;
|
|
228
|
+
/** When true, blocks interaction, sets `aria-disabled`, and removes the element from the tab order. */
|
|
207
229
|
disabled?: boolean;
|
|
230
|
+
/** Adds a pulsing animation for call-to-action emphasis. Respects `prefers-reduced-motion`. */
|
|
208
231
|
hasPulse?: boolean;
|
|
232
|
+
/** When true, forces a 1:1 aspect ratio with equal `xs` padding on both axes. Pass the icon as `children`; composable with any `variant`. Requires `aria-label`. */
|
|
233
|
+
isIconOnly?: boolean;
|
|
234
|
+
/** Click handler. Typed as `HTMLElement` because the root may be `<button>` or `<a>`. */
|
|
209
235
|
onClick?: MouseEventHandler<HTMLElement>;
|
|
236
|
+
/** Anchor target (only applied when rendered as `<a>`). */
|
|
210
237
|
target?: string;
|
|
238
|
+
/** Anchor rel (only applied when rendered as `<a>`). */
|
|
211
239
|
rel?: string;
|
|
240
|
+
/** Accessible label. Required for icon-only buttons (no text children). */
|
|
212
241
|
'aria-label'?: string;
|
|
242
|
+
/** ID(s) of element(s) that describe the button (e.g. a tooltip or helper text). */
|
|
213
243
|
'aria-describedby'?: string;
|
|
214
244
|
}
|
|
215
|
-
declare function Button({ children, className, variant, type, iconStart, iconEnd, size, hasPulse, href, target, rel, disabled, onClick, ...rest }: Readonly<ButtonProps>): react_jsx_runtime.JSX.Element;
|
|
245
|
+
declare function Button({ children, className, variant, type, iconStart, iconEnd, size, hasPulse, isIconOnly, href, target, rel, disabled, onClick, ...rest }: Readonly<ButtonProps>): react_jsx_runtime.JSX.Element;
|
|
216
246
|
|
|
217
247
|
interface CommandItem {
|
|
218
248
|
id: string;
|
package/dist/client.d.ts
CHANGED
|
@@ -196,23 +196,53 @@ interface TypographyProps extends WithClassName, HTMLAttributes<HTMLElement> {
|
|
|
196
196
|
}
|
|
197
197
|
declare function Typography({ variant, component, children, className, ...rest }: TypographyProps): react_jsx_runtime.JSX.Element;
|
|
198
198
|
|
|
199
|
+
/**
|
|
200
|
+
* Props for the Button component.
|
|
201
|
+
*
|
|
202
|
+
* Button spreads all unrecognised props onto the underlying element —
|
|
203
|
+
* `<button>` when `href` is absent, `<a>` when `href` is provided —
|
|
204
|
+
* so every standard HTML attribute for that element is accepted.
|
|
205
|
+
*
|
|
206
|
+
* Notably, this means `type`, `form`, `name`, `value`, `autoFocus`, all
|
|
207
|
+
* `aria-*`, all `data-*`, and every DOM event handler are valid props.
|
|
208
|
+
*/
|
|
199
209
|
interface ButtonProps extends WithClassName, ButtonHTMLAttributes<HTMLButtonElement | HTMLAnchorElement> {
|
|
210
|
+
/** When provided, the button renders as an `<a>` element pointing to this URL. */
|
|
200
211
|
href?: string;
|
|
212
|
+
/** Visual style. `'default'` is filled; `'outline'` is transparent with a border. `'ghost'` is a deprecated alias for `'outline'`. */
|
|
201
213
|
variant?: 'default' | 'outline' | /** @deprecated Use "outline" instead */ 'ghost';
|
|
214
|
+
/**
|
|
215
|
+
* Button behaviour within a form. Defaults to `'button'` (no form submission).
|
|
216
|
+
* Set to `'submit'` to trigger the parent `<form>`'s submit handler on click or Enter;
|
|
217
|
+
* `'reset'` to reset the form. Ignored when rendering as `<a>` (i.e. when `href` is set).
|
|
218
|
+
*/
|
|
202
219
|
type?: 'button' | 'submit' | 'reset';
|
|
220
|
+
/** Control height and padding. Defaults to `'medium'`. */
|
|
203
221
|
size?: 'small' | 'medium' | 'large';
|
|
222
|
+
/** Icon rendered before the label. */
|
|
204
223
|
iconStart?: ReactNode;
|
|
224
|
+
/** Icon rendered after the label. */
|
|
205
225
|
iconEnd?: ReactNode;
|
|
226
|
+
/** Label content. Required unless `aria-label` is set (icon-only button). */
|
|
206
227
|
children?: ReactNode;
|
|
228
|
+
/** When true, blocks interaction, sets `aria-disabled`, and removes the element from the tab order. */
|
|
207
229
|
disabled?: boolean;
|
|
230
|
+
/** Adds a pulsing animation for call-to-action emphasis. Respects `prefers-reduced-motion`. */
|
|
208
231
|
hasPulse?: boolean;
|
|
232
|
+
/** When true, forces a 1:1 aspect ratio with equal `xs` padding on both axes. Pass the icon as `children`; composable with any `variant`. Requires `aria-label`. */
|
|
233
|
+
isIconOnly?: boolean;
|
|
234
|
+
/** Click handler. Typed as `HTMLElement` because the root may be `<button>` or `<a>`. */
|
|
209
235
|
onClick?: MouseEventHandler<HTMLElement>;
|
|
236
|
+
/** Anchor target (only applied when rendered as `<a>`). */
|
|
210
237
|
target?: string;
|
|
238
|
+
/** Anchor rel (only applied when rendered as `<a>`). */
|
|
211
239
|
rel?: string;
|
|
240
|
+
/** Accessible label. Required for icon-only buttons (no text children). */
|
|
212
241
|
'aria-label'?: string;
|
|
242
|
+
/** ID(s) of element(s) that describe the button (e.g. a tooltip or helper text). */
|
|
213
243
|
'aria-describedby'?: string;
|
|
214
244
|
}
|
|
215
|
-
declare function Button({ children, className, variant, type, iconStart, iconEnd, size, hasPulse, href, target, rel, disabled, onClick, ...rest }: Readonly<ButtonProps>): react_jsx_runtime.JSX.Element;
|
|
245
|
+
declare function Button({ children, className, variant, type, iconStart, iconEnd, size, hasPulse, isIconOnly, href, target, rel, disabled, onClick, ...rest }: Readonly<ButtonProps>): react_jsx_runtime.JSX.Element;
|
|
216
246
|
|
|
217
247
|
interface CommandItem {
|
|
218
248
|
id: string;
|
package/dist/client.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { useId, useState } from "react";
|
|
5
5
|
|
|
6
6
|
// src/components/ui/Accordion/Accordion.module.css
|
|
7
|
-
var Accordion_default = {"accordion":"
|
|
7
|
+
var Accordion_default = {"component":"bds210Accordion-component","accordion":"bds210Accordion-accordion","item":"bds210Accordion-item","heading":"bds210Accordion-heading","trigger":"bds210Accordion-trigger","triggerLabel":"bds210Accordion-triggerLabel","chevron":"bds210Accordion-chevron","--open":"bds210Accordion---open","panel":"bds210Accordion-panel","panelContent":"bds210Accordion-panelContent"};
|
|
8
8
|
|
|
9
9
|
// src/components/ui/Accordion/Accordion.tsx
|
|
10
10
|
import { cn } from "@boostdev/design-system-foundation";
|
|
@@ -73,7 +73,7 @@ function Accordion({
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
// src/components/ui/Alert/Alert.module.css
|
|
76
|
-
var Alert_default = {"alert":"
|
|
76
|
+
var Alert_default = {"component":"bds210Alert-component","alert":"bds210Alert-alert","--variant_info":"bds210Alert---variant_info","--variant_success":"bds210Alert---variant_success","--variant_warning":"bds210Alert---variant_warning","--variant_error":"bds210Alert---variant_error","icon":"bds210Alert-icon","content":"bds210Alert-content","title":"bds210Alert-title","dismiss":"bds210Alert-dismiss"};
|
|
77
77
|
|
|
78
78
|
// src/components/ui/Alert/Alert.tsx
|
|
79
79
|
import { cn as cn2 } from "@boostdev/design-system-foundation";
|
|
@@ -118,7 +118,7 @@ function Alert({
|
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
// src/components/ui/Avatar/Avatar.module.css
|
|
121
|
-
var Avatar_default = {"avatar":"
|
|
121
|
+
var Avatar_default = {"component":"bds210Avatar-component","avatar":"bds210Avatar-avatar","--fallback":"bds210Avatar---fallback","--size_small":"bds210Avatar---size_small","--size_medium":"bds210Avatar---size_medium","--size_large":"bds210Avatar---size_large","image":"bds210Avatar-image","initials":"bds210Avatar-initials"};
|
|
122
122
|
|
|
123
123
|
// src/components/ui/Avatar/Avatar.tsx
|
|
124
124
|
import { cn as cn3 } from "@boostdev/design-system-foundation";
|
|
@@ -145,7 +145,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
|
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
// src/components/ui/Badge/Badge.module.css
|
|
148
|
-
var Badge_default = {"badge":"
|
|
148
|
+
var Badge_default = {"component":"bds210Badge-component","badge":"bds210Badge-badge","--variant_primary":"bds210Badge---variant_primary","--variant_secondary":"bds210Badge---variant_secondary","--variant_success":"bds210Badge---variant_success","--variant_error":"bds210Badge---variant_error","--variant_warning":"bds210Badge---variant_warning"};
|
|
149
149
|
|
|
150
150
|
// src/components/ui/Badge/Badge.tsx
|
|
151
151
|
import { cn as cn4 } from "@boostdev/design-system-foundation";
|
|
@@ -155,7 +155,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
158
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
158
|
+
var Breadcrumb_default = {"component":"bds210Breadcrumb-component","breadcrumb":"bds210Breadcrumb-breadcrumb","list":"bds210Breadcrumb-list","item":"bds210Breadcrumb-item","link":"bds210Breadcrumb-link","separator":"bds210Breadcrumb-separator","current":"bds210Breadcrumb-current"};
|
|
159
159
|
|
|
160
160
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
161
161
|
import { cn as cn5 } from "@boostdev/design-system-foundation";
|
|
@@ -171,7 +171,7 @@ function Breadcrumb({ items, className, ...rest }) {
|
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
// src/components/ui/Collapsible/Collapsible.module.css
|
|
174
|
-
var Collapsible_default = {"collapsible":"
|
|
174
|
+
var Collapsible_default = {"component":"bds210Collapsible-component","collapsible":"bds210Collapsible-collapsible","summary":"bds210Collapsible-summary","summaryContent":"bds210Collapsible-summaryContent","icon":"bds210Collapsible-icon","content":"bds210Collapsible-content"};
|
|
175
175
|
|
|
176
176
|
// src/components/ui/Collapsible/Collapsible.tsx
|
|
177
177
|
import { cn as cn6 } from "@boostdev/design-system-foundation";
|
|
@@ -212,7 +212,7 @@ function Collapsible({
|
|
|
212
212
|
import { useState as useState2, useId as useId2 } from "react";
|
|
213
213
|
|
|
214
214
|
// src/components/ui/Calendar/Calendar.module.css
|
|
215
|
-
var Calendar_default = {"calendar":"
|
|
215
|
+
var Calendar_default = {"component":"bds210Calendar-component","calendar":"bds210Calendar-calendar","header":"bds210Calendar-header","monthYear":"bds210Calendar-monthYear","navBtn":"bds210Calendar-navBtn","grid":"bds210Calendar-grid","weekday":"bds210Calendar-weekday","empty":"bds210Calendar-empty","day":"bds210Calendar-day","disabled":"bds210Calendar-disabled","selected":"bds210Calendar-selected","today":"bds210Calendar-today"};
|
|
216
216
|
|
|
217
217
|
// src/components/ui/Calendar/Calendar.tsx
|
|
218
218
|
import { cn as cn7 } from "@boostdev/design-system-foundation";
|
|
@@ -387,7 +387,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
|
|
|
387
387
|
import { useRef, useId as useId3 } from "react";
|
|
388
388
|
|
|
389
389
|
// src/components/ui/Carousel/Carousel.module.css
|
|
390
|
-
var Carousel_default = {"carousel":"
|
|
390
|
+
var Carousel_default = {"component":"bds210Carousel-component","carousel":"bds210Carousel-carousel","track":"bds210Carousel-track","slide":"bds210Carousel-slide","navBtn":"bds210Carousel-navBtn"};
|
|
391
391
|
|
|
392
392
|
// src/components/ui/Carousel/Carousel.tsx
|
|
393
393
|
import { cn as cn8 } from "@boostdev/design-system-foundation";
|
|
@@ -440,7 +440,7 @@ function Carousel({ items, label, className, ...rest }) {
|
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
443
|
-
var DescriptionList_default = {"list":"
|
|
443
|
+
var DescriptionList_default = {"component":"bds210DescriptionList-component","list":"bds210DescriptionList-list","group":"bds210DescriptionList-group","term":"bds210DescriptionList-term","details":"bds210DescriptionList-details","--layout_inline":"bds210DescriptionList---layout_inline"};
|
|
444
444
|
|
|
445
445
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
446
446
|
import { cn as cn9 } from "@boostdev/design-system-foundation";
|
|
@@ -453,7 +453,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
|
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
// src/components/ui/Link/Link.module.css
|
|
456
|
-
var Link_default = {"link":"
|
|
456
|
+
var Link_default = {"component":"bds210Link-component","link":"bds210Link-link","--variant_default":"bds210Link---variant_default","--variant_subtle":"bds210Link---variant_subtle","--variant_standalone":"bds210Link---variant_standalone","externalLabel":"bds210Link-externalLabel"};
|
|
457
457
|
|
|
458
458
|
// src/components/ui/Link/Link.tsx
|
|
459
459
|
import { cn as cn10 } from "@boostdev/design-system-foundation";
|
|
@@ -484,7 +484,7 @@ function Link({
|
|
|
484
484
|
}
|
|
485
485
|
|
|
486
486
|
// src/components/ui/Loading/Loading.module.css
|
|
487
|
-
var Loading_default = {"loading":"
|
|
487
|
+
var Loading_default = {"component":"bds210Loading-component","loading":"bds210Loading-loading","spinner":"bds210Loading-spinner","--size_small":"bds210Loading---size_small","--size_large":"bds210Loading---size_large"};
|
|
488
488
|
|
|
489
489
|
// src/components/ui/Loading/Loading.tsx
|
|
490
490
|
import { cn as cn11 } from "@boostdev/design-system-foundation";
|
|
@@ -494,7 +494,7 @@ function Loading({ size = "medium", className, ...rest }) {
|
|
|
494
494
|
}
|
|
495
495
|
|
|
496
496
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
497
|
-
var NotificationBanner_default = {"banner":"
|
|
497
|
+
var NotificationBanner_default = {"component":"bds210NotificationBanner-component","banner":"bds210NotificationBanner-banner","--variant_info":"bds210NotificationBanner---variant_info","--variant_success":"bds210NotificationBanner---variant_success","--variant_warning":"bds210NotificationBanner---variant_warning","--variant_error":"bds210NotificationBanner---variant_error","content":"bds210NotificationBanner-content","action":"bds210NotificationBanner-action","dismiss":"bds210NotificationBanner-dismiss"};
|
|
498
498
|
|
|
499
499
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
500
500
|
import { cn as cn12 } from "@boostdev/design-system-foundation";
|
|
@@ -535,7 +535,7 @@ function NotificationBanner({
|
|
|
535
535
|
}
|
|
536
536
|
|
|
537
537
|
// src/components/ui/Pagination/Pagination.module.css
|
|
538
|
-
var Pagination_default = {"pagination":"
|
|
538
|
+
var Pagination_default = {"component":"bds210Pagination-component","pagination":"bds210Pagination-pagination","list":"bds210Pagination-list","button":"bds210Pagination-button","--active":"bds210Pagination---active","--nav":"bds210Pagination---nav","ellipsis":"bds210Pagination-ellipsis"};
|
|
539
539
|
|
|
540
540
|
// src/components/ui/Pagination/Pagination.tsx
|
|
541
541
|
import { cn as cn13 } from "@boostdev/design-system-foundation";
|
|
@@ -600,7 +600,7 @@ function Pagination({
|
|
|
600
600
|
}
|
|
601
601
|
|
|
602
602
|
// src/components/ui/Progress/Progress.module.css
|
|
603
|
-
var Progress_default = {"container":"
|
|
603
|
+
var Progress_default = {"component":"bds210Progress-component","container":"bds210Progress-container","labelRow":"bds210Progress-labelRow","value":"bds210Progress-value","track":"bds210Progress-track","--size_small":"bds210Progress---size_small","--size_medium":"bds210Progress---size_medium","--size_large":"bds210Progress---size_large","fill":"bds210Progress-fill"};
|
|
604
604
|
|
|
605
605
|
// src/components/ui/Progress/Progress.tsx
|
|
606
606
|
import { cn as cn14 } from "@boostdev/design-system-foundation";
|
|
@@ -639,7 +639,7 @@ function Progress({
|
|
|
639
639
|
}
|
|
640
640
|
|
|
641
641
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
642
|
-
var ProgressCircle_default = {"wrapper":"
|
|
642
|
+
var ProgressCircle_default = {"component":"bds210ProgressCircle-component","wrapper":"bds210ProgressCircle-wrapper","svg":"bds210ProgressCircle-svg","track":"bds210ProgressCircle-track","fill":"bds210ProgressCircle-fill","value":"bds210ProgressCircle-value","--size_small":"bds210ProgressCircle---size_small","--size_medium":"bds210ProgressCircle---size_medium","--size_large":"bds210ProgressCircle---size_large"};
|
|
643
643
|
|
|
644
644
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
645
645
|
import { cn as cn15 } from "@boostdev/design-system-foundation";
|
|
@@ -720,7 +720,7 @@ function ProgressCircle({
|
|
|
720
720
|
}
|
|
721
721
|
|
|
722
722
|
// src/components/ui/Separator/Separator.module.css
|
|
723
|
-
var Separator_default = {"separator":"
|
|
723
|
+
var Separator_default = {"component":"bds210Separator-component","separator":"bds210Separator-separator","--horizontal":"bds210Separator---horizontal","--vertical":"bds210Separator---vertical"};
|
|
724
724
|
|
|
725
725
|
// src/components/ui/Separator/Separator.tsx
|
|
726
726
|
import { cn as cn16 } from "@boostdev/design-system-foundation";
|
|
@@ -744,7 +744,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
|
|
|
744
744
|
import { cn as cn17 } from "@boostdev/design-system-foundation";
|
|
745
745
|
|
|
746
746
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
747
|
-
var Skeleton_default = {"skeleton":"
|
|
747
|
+
var Skeleton_default = {"component":"bds210Skeleton-component","skeleton":"bds210Skeleton-skeleton"};
|
|
748
748
|
|
|
749
749
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
750
750
|
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
@@ -753,7 +753,7 @@ function Skeleton({ className, ...rest }) {
|
|
|
753
753
|
}
|
|
754
754
|
|
|
755
755
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
756
|
-
var SkipLink_default = {"skipLink":"
|
|
756
|
+
var SkipLink_default = {"component":"bds210SkipLink-component","skipLink":"bds210SkipLink-skipLink"};
|
|
757
757
|
|
|
758
758
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
759
759
|
import { cn as cn18 } from "@boostdev/design-system-foundation";
|
|
@@ -763,7 +763,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
|
|
|
763
763
|
}
|
|
764
764
|
|
|
765
765
|
// src/components/ui/Table/Table.module.css
|
|
766
|
-
var Table_default = {"wrapper":"
|
|
766
|
+
var Table_default = {"component":"bds210Table-component","wrapper":"bds210Table-wrapper","table":"bds210Table-table","caption":"bds210Table-caption","thead":"bds210Table-thead","th":"bds210Table-th","--sortable":"bds210Table---sortable","sortButton":"bds210Table-sortButton","sortIcon":"bds210Table-sortIcon","--sort-active":"bds210Table---sort-active","--sort-desc":"bds210Table---sort-desc","tbody":"bds210Table-tbody","tr":"bds210Table-tr","td":"bds210Table-td"};
|
|
767
767
|
|
|
768
768
|
// src/components/ui/Table/Table.tsx
|
|
769
769
|
import { cn as cn19 } from "@boostdev/design-system-foundation";
|
|
@@ -833,7 +833,7 @@ function Table({
|
|
|
833
833
|
import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
|
|
834
834
|
|
|
835
835
|
// src/components/ui/Tabs/Tabs.module.css
|
|
836
|
-
var Tabs_default = {"tabs":"
|
|
836
|
+
var Tabs_default = {"component":"bds210Tabs-component","tabs":"bds210Tabs-tabs","tabList":"bds210Tabs-tabList","tab":"bds210Tabs-tab","--active":"bds210Tabs---active","panel":"bds210Tabs-panel"};
|
|
837
837
|
|
|
838
838
|
// src/components/ui/Tabs/Tabs.tsx
|
|
839
839
|
import { cn as cn20 } from "@boostdev/design-system-foundation";
|
|
@@ -913,7 +913,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
|
|
|
913
913
|
import { cloneElement, isValidElement, useId as useId5, useState as useState4 } from "react";
|
|
914
914
|
|
|
915
915
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
916
|
-
var Tooltip_default = {"wrapper":"
|
|
916
|
+
var Tooltip_default = {"component":"bds210Tooltip-component","wrapper":"bds210Tooltip-wrapper","tooltip":"bds210Tooltip-tooltip","--placement_top":"bds210Tooltip---placement_top","--placement_bottom":"bds210Tooltip---placement_bottom","--placement_left":"bds210Tooltip---placement_left","--placement_right":"bds210Tooltip---placement_right"};
|
|
917
917
|
|
|
918
918
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
919
919
|
import { cn as cn21 } from "@boostdev/design-system-foundation";
|
|
@@ -957,7 +957,7 @@ function Tooltip({
|
|
|
957
957
|
}
|
|
958
958
|
|
|
959
959
|
// src/components/ui/Typography/Typography.module.css
|
|
960
|
-
var Typography_default = {"typography":"
|
|
960
|
+
var Typography_default = {"component":"bds210Typography-component","typography":"bds210Typography-typography","--h1":"bds210Typography---h1","--h2":"bds210Typography---h2","--h3":"bds210Typography---h3","--body":"bds210Typography---body","--body_s":"bds210Typography---body_s"};
|
|
961
961
|
|
|
962
962
|
// src/components/ui/Typography/Typography.tsx
|
|
963
963
|
import { cn as cn22 } from "@boostdev/design-system-foundation";
|
|
@@ -975,7 +975,7 @@ function Typography({ variant = "body", component, children, className, ...rest
|
|
|
975
975
|
}
|
|
976
976
|
|
|
977
977
|
// src/components/interaction/Button/Button.module.css
|
|
978
|
-
var Button_default = {"button":"
|
|
978
|
+
var Button_default = {"component":"bds210Button-component","button":"bds210Button-button","--default":"bds210Button---default","--outline":"bds210Button---outline","--ghost":"bds210Button---ghost","--size_small":"bds210Button---size_small","--size_medium":"bds210Button---size_medium","--size_large":"bds210Button---size_large","--hasPulse":"bds210Button---hasPulse","iconStart":"bds210Button-iconStart","iconEnd":"bds210Button-iconEnd","--iconOnly":"bds210Button---iconOnly"};
|
|
979
979
|
|
|
980
980
|
// src/components/interaction/Button/Button.tsx
|
|
981
981
|
import { cn as cn23 } from "@boostdev/design-system-foundation";
|
|
@@ -989,6 +989,7 @@ function Button({
|
|
|
989
989
|
iconEnd,
|
|
990
990
|
size = "medium",
|
|
991
991
|
hasPulse = false,
|
|
992
|
+
isIconOnly = false,
|
|
992
993
|
href,
|
|
993
994
|
target,
|
|
994
995
|
rel,
|
|
@@ -1001,6 +1002,7 @@ function Button({
|
|
|
1001
1002
|
Button_default[`--${variant}`],
|
|
1002
1003
|
Button_default[`--size_${size}`],
|
|
1003
1004
|
hasPulse && Button_default["--hasPulse"],
|
|
1005
|
+
isIconOnly && Button_default["--iconOnly"],
|
|
1004
1006
|
className
|
|
1005
1007
|
);
|
|
1006
1008
|
const handleAnchorClick = (e) => {
|
|
@@ -1090,7 +1092,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1090
1092
|
}
|
|
1091
1093
|
|
|
1092
1094
|
// src/components/interaction/Command/Command.module.css
|
|
1093
|
-
var Command_default = {"dialog":"
|
|
1095
|
+
var Command_default = {"component":"bds210Command-component","dialog":"bds210Command-dialog","palette":"bds210Command-palette","searchRow":"bds210Command-searchRow","searchIcon":"bds210Command-searchIcon","search":"bds210Command-search","escHint":"bds210Command-escHint","list":"bds210Command-list","groupList":"bds210Command-groupList","group":"bds210Command-group","item":"bds210Command-item","itemActive":"bds210Command-itemActive","itemLabel":"bds210Command-itemLabel","itemDesc":"bds210Command-itemDesc","shortcut":"bds210Command-shortcut","empty":"bds210Command-empty"};
|
|
1094
1096
|
|
|
1095
1097
|
// src/components/interaction/Command/Command.tsx
|
|
1096
1098
|
import { cn as cn24 } from "@boostdev/design-system-foundation";
|
|
@@ -1267,7 +1269,7 @@ function Command({
|
|
|
1267
1269
|
import { useEffect as useEffect2, useId as useId7, useRef as useRef4 } from "react";
|
|
1268
1270
|
|
|
1269
1271
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1270
|
-
var Dialog_default = {"dialog":"
|
|
1272
|
+
var Dialog_default = {"component":"bds210Dialog-component","dialog":"bds210Dialog-dialog","dialogContent":"bds210Dialog-dialogContent","closeButton":"bds210Dialog-closeButton"};
|
|
1271
1273
|
|
|
1272
1274
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1273
1275
|
import { cn as cn25 } from "@boostdev/design-system-foundation";
|
|
@@ -1373,7 +1375,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1373
1375
|
import { useEffect as useEffect3, useId as useId8, useRef as useRef5 } from "react";
|
|
1374
1376
|
|
|
1375
1377
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1376
|
-
var Drawer_default = {"drawer":"
|
|
1378
|
+
var Drawer_default = {"component":"bds210Drawer-component","drawer":"bds210Drawer-drawer","--side_left":"bds210Drawer---side_left","header":"bds210Drawer-header","closeButton":"bds210Drawer-closeButton","body":"bds210Drawer-body"};
|
|
1377
1379
|
|
|
1378
1380
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1379
1381
|
import { cn as cn26 } from "@boostdev/design-system-foundation";
|
|
@@ -1481,7 +1483,7 @@ import {
|
|
|
1481
1483
|
} from "react";
|
|
1482
1484
|
|
|
1483
1485
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1484
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1486
|
+
var DropdownMenu_default = {"component":"bds210DropdownMenu-component","wrapper":"bds210DropdownMenu-wrapper","menu":"bds210DropdownMenu-menu","--placement_bottom-start":"bds210DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds210DropdownMenu---placement_bottom-end","separator":"bds210DropdownMenu-separator","item":"bds210DropdownMenu-item","icon":"bds210DropdownMenu-icon"};
|
|
1485
1487
|
|
|
1486
1488
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1487
1489
|
import { cn as cn27 } from "@boostdev/design-system-foundation";
|
|
@@ -1602,7 +1604,7 @@ import {
|
|
|
1602
1604
|
} from "react";
|
|
1603
1605
|
|
|
1604
1606
|
// src/components/interaction/Popover/Popover.module.css
|
|
1605
|
-
var Popover_default = {"wrapper":"
|
|
1607
|
+
var Popover_default = {"component":"bds210Popover-component","wrapper":"bds210Popover-wrapper","panel":"bds210Popover-panel","g":"bds210Popover-g"};
|
|
1606
1608
|
|
|
1607
1609
|
// src/components/interaction/Popover/Popover.tsx
|
|
1608
1610
|
import { cn as cn28 } from "@boostdev/design-system-foundation";
|
|
@@ -1687,7 +1689,7 @@ function Popover({
|
|
|
1687
1689
|
}
|
|
1688
1690
|
|
|
1689
1691
|
// src/components/interaction/Rating/Rating.module.css
|
|
1690
|
-
var Rating_default = {"rating":"
|
|
1692
|
+
var Rating_default = {"component":"bds210Rating-component","rating":"bds210Rating-rating","star":"bds210Rating-star","--filled":"bds210Rating---filled"};
|
|
1691
1693
|
|
|
1692
1694
|
// src/components/interaction/Rating/Rating.tsx
|
|
1693
1695
|
import { cn as cn29 } from "@boostdev/design-system-foundation";
|
|
@@ -1719,7 +1721,7 @@ function Rating({ value, max = 5, className, ...rest }) {
|
|
|
1719
1721
|
import { useState as useState8, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2, useRef as useRef8 } from "react";
|
|
1720
1722
|
|
|
1721
1723
|
// src/components/interaction/Toast/Toast.module.css
|
|
1722
|
-
var Toast_default = {"toastContainer":"
|
|
1724
|
+
var Toast_default = {"component":"bds210Toast-component","toastContainer":"bds210Toast-toastContainer","toast":"bds210Toast-toast","--variant_success":"bds210Toast---variant_success","--variant_warning":"bds210Toast---variant_warning","--variant_info":"bds210Toast---variant_info","--variant_error":"bds210Toast---variant_error","message":"bds210Toast-message","closeButton":"bds210Toast-closeButton"};
|
|
1723
1725
|
|
|
1724
1726
|
// src/components/interaction/Toast/Toast.tsx
|
|
1725
1727
|
import { cn as cn30 } from "@boostdev/design-system-foundation";
|
|
@@ -1797,10 +1799,10 @@ function useToast() {
|
|
|
1797
1799
|
import { useId as useId11 } from "react";
|
|
1798
1800
|
|
|
1799
1801
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1800
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1802
|
+
var Checkbox_default = {"component":"bds210Checkbox-component","checkboxGroup":"bds210Checkbox-checkboxGroup","inputWrapper":"bds210Checkbox-inputWrapper","checkbox":"bds210Checkbox-checkbox","checkboxError":"bds210Checkbox-checkboxError"};
|
|
1801
1803
|
|
|
1802
1804
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1803
|
-
var Message_default = {"error":"
|
|
1805
|
+
var Message_default = {"component":"bds210Message-component","error":"bds210Message-error","hint":"bds210Message-hint"};
|
|
1804
1806
|
|
|
1805
1807
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1806
1808
|
import { cn as cn31 } from "@boostdev/design-system-foundation";
|
|
@@ -1811,7 +1813,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1811
1813
|
};
|
|
1812
1814
|
|
|
1813
1815
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1814
|
-
var Label_default = {"label":"
|
|
1816
|
+
var Label_default = {"component":"bds210Label-component","label":"bds210Label-label"};
|
|
1815
1817
|
|
|
1816
1818
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1817
1819
|
import { cn as cn32 } from "@boostdev/design-system-foundation";
|
|
@@ -1824,7 +1826,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1824
1826
|
import { cn as cn34 } from "@boostdev/design-system-foundation";
|
|
1825
1827
|
|
|
1826
1828
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1827
|
-
var InputContainer_default = {"container":"
|
|
1829
|
+
var InputContainer_default = {"component":"bds210InputContainer-component","container":"bds210InputContainer-container"};
|
|
1828
1830
|
|
|
1829
1831
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1830
1832
|
import { cn as cn33 } from "@boostdev/design-system-foundation";
|
|
@@ -1865,7 +1867,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1865
1867
|
import { useId as useId12 } from "react";
|
|
1866
1868
|
|
|
1867
1869
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1868
|
-
var CheckboxGroup_default = {"group":"
|
|
1870
|
+
var CheckboxGroup_default = {"component":"bds210CheckboxGroup-component","group":"bds210CheckboxGroup-group","legend":"bds210CheckboxGroup-legend","required":"bds210CheckboxGroup-required","items":"bds210CheckboxGroup-items"};
|
|
1869
1871
|
|
|
1870
1872
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1871
1873
|
import { cn as cn35 } from "@boostdev/design-system-foundation";
|
|
@@ -1913,7 +1915,7 @@ import {
|
|
|
1913
1915
|
} from "react";
|
|
1914
1916
|
|
|
1915
1917
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1916
|
-
var Combobox_default = {"formGroup":"
|
|
1918
|
+
var Combobox_default = {"component":"bds210Combobox-component","formGroup":"bds210Combobox-formGroup","inputWrapper":"bds210Combobox-inputWrapper","input":"bds210Combobox-input","inputError":"bds210Combobox-inputError","chevron":"bds210Combobox-chevron","listbox":"bds210Combobox-listbox","option":"bds210Combobox-option","--highlighted":"bds210Combobox---highlighted","--selected":"bds210Combobox---selected","--disabled":"bds210Combobox---disabled"};
|
|
1917
1919
|
|
|
1918
1920
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1919
1921
|
import { cn as cn36 } from "@boostdev/design-system-foundation";
|
|
@@ -2064,7 +2066,7 @@ function Combobox({
|
|
|
2064
2066
|
import { useId as useId14, useRef as useRef10, useState as useState10 } from "react";
|
|
2065
2067
|
|
|
2066
2068
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2067
|
-
var FileInput_default = {"formGroup":"
|
|
2069
|
+
var FileInput_default = {"component":"bds210FileInput-component","formGroup":"bds210FileInput-formGroup","fieldLabel":"bds210FileInput-fieldLabel","dropZone":"bds210FileInput-dropZone","isDragging":"bds210FileInput-isDragging","hasError":"bds210FileInput-hasError","isDisabled":"bds210FileInput-isDisabled","icon":"bds210FileInput-icon","prompt":"bds210FileInput-prompt","acceptHint":"bds210FileInput-acceptHint","hiddenInput":"bds210FileInput-hiddenInput"};
|
|
2068
2070
|
|
|
2069
2071
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2070
2072
|
import { cn as cn37 } from "@boostdev/design-system-foundation";
|
|
@@ -2165,7 +2167,7 @@ function FileInput({
|
|
|
2165
2167
|
import { useId as useId15 } from "react";
|
|
2166
2168
|
|
|
2167
2169
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2168
|
-
var FormInput_default = {"formGroup":"
|
|
2170
|
+
var FormInput_default = {"component":"bds210FormInput-component","formGroup":"bds210FormInput-formGroup","input":"bds210FormInput-input","inputError":"bds210FormInput-inputError"};
|
|
2169
2171
|
|
|
2170
2172
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2171
2173
|
import { cn as cn38 } from "@boostdev/design-system-foundation";
|
|
@@ -2209,7 +2211,7 @@ function FormInput({
|
|
|
2209
2211
|
import { useId as useId16, useRef as useRef11, useState as useState11 } from "react";
|
|
2210
2212
|
|
|
2211
2213
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2212
|
-
var NumberInput_default = {"formGroup":"
|
|
2214
|
+
var NumberInput_default = {"component":"bds210NumberInput-component","formGroup":"bds210NumberInput-formGroup","inputRow":"bds210NumberInput-inputRow","input":"bds210NumberInput-input","inputError":"bds210NumberInput-inputError","stepper":"bds210NumberInput-stepper"};
|
|
2213
2215
|
|
|
2214
2216
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2215
2217
|
import { cn as cn39 } from "@boostdev/design-system-foundation";
|
|
@@ -2314,7 +2316,7 @@ function NumberInput({
|
|
|
2314
2316
|
import { useId as useId17 } from "react";
|
|
2315
2317
|
|
|
2316
2318
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2317
|
-
var Radio_default = {"radioGroup":"
|
|
2319
|
+
var Radio_default = {"component":"bds210Radio-component","radioGroup":"bds210Radio-radioGroup","inputWrapper":"bds210Radio-inputWrapper","textWrapper":"bds210Radio-textWrapper","description":"bds210Radio-description","radio":"bds210Radio-radio","radioError":"bds210Radio-radioError"};
|
|
2318
2320
|
|
|
2319
2321
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2320
2322
|
import { cn as cn40 } from "@boostdev/design-system-foundation";
|
|
@@ -2352,7 +2354,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2352
2354
|
import { useId as useId18 } from "react";
|
|
2353
2355
|
|
|
2354
2356
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2355
|
-
var RadioGroup_default = {"group":"
|
|
2357
|
+
var RadioGroup_default = {"component":"bds210RadioGroup-component","group":"bds210RadioGroup-group","legend":"bds210RadioGroup-legend","required":"bds210RadioGroup-required","items":"bds210RadioGroup-items"};
|
|
2356
2358
|
|
|
2357
2359
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2358
2360
|
import { cn as cn41 } from "@boostdev/design-system-foundation";
|
|
@@ -2394,7 +2396,7 @@ function RadioGroup({
|
|
|
2394
2396
|
import { Children, cloneElement as cloneElement4, isValidElement as isValidElement4 } from "react";
|
|
2395
2397
|
|
|
2396
2398
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2397
|
-
var SegmentedControl_default = {"control":"
|
|
2399
|
+
var SegmentedControl_default = {"component":"bds210SegmentedControl-component","control":"bds210SegmentedControl-control","thumb":"bds210SegmentedControl-thumb","indicator":"bds210SegmentedControl-indicator","item":"bds210SegmentedControl-item","--active":"bds210SegmentedControl---active","--disabled":"bds210SegmentedControl---disabled","--size_small":"bds210SegmentedControl---size_small","--size_large":"bds210SegmentedControl---size_large","--variant_outline":"bds210SegmentedControl---variant_outline"};
|
|
2398
2400
|
|
|
2399
2401
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2400
2402
|
import { cn as cn42 } from "@boostdev/design-system-foundation";
|
|
@@ -2450,7 +2452,7 @@ function SegmentedControl({
|
|
|
2450
2452
|
import { useId as useId19 } from "react";
|
|
2451
2453
|
|
|
2452
2454
|
// src/components/interaction/form/Select/Select.module.css
|
|
2453
|
-
var Select_default = {"formGroup":"
|
|
2455
|
+
var Select_default = {"component":"bds210Select-component","formGroup":"bds210Select-formGroup","selectWrapper":"bds210Select-selectWrapper","select":"bds210Select-select","selectError":"bds210Select-selectError","chevron":"bds210Select-chevron"};
|
|
2454
2456
|
|
|
2455
2457
|
// src/components/interaction/form/Select/Select.tsx
|
|
2456
2458
|
import { cn as cn43 } from "@boostdev/design-system-foundation";
|
|
@@ -2501,7 +2503,7 @@ function Select({
|
|
|
2501
2503
|
import { useId as useId20, useState as useState12 } from "react";
|
|
2502
2504
|
|
|
2503
2505
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2504
|
-
var Slider_default = {"formGroup":"
|
|
2506
|
+
var Slider_default = {"component":"bds210Slider-component","formGroup":"bds210Slider-formGroup","labelRow":"bds210Slider-labelRow","value":"bds210Slider-value","slider":"bds210Slider-slider","sliderError":"bds210Slider-sliderError"};
|
|
2505
2507
|
|
|
2506
2508
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2507
2509
|
import { cn as cn44 } from "@boostdev/design-system-foundation";
|
|
@@ -2563,7 +2565,7 @@ function Slider({
|
|
|
2563
2565
|
import { useId as useId21 } from "react";
|
|
2564
2566
|
|
|
2565
2567
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2566
|
-
var Switch_default = {"switchGroup":"
|
|
2568
|
+
var Switch_default = {"component":"bds210Switch-component","switchGroup":"bds210Switch-switchGroup","--size_small":"bds210Switch---size_small","--size_medium":"bds210Switch---size_medium","--size_large":"bds210Switch---size_large","inputWrapper":"bds210Switch-inputWrapper","trackWrapper":"bds210Switch-trackWrapper","switch":"bds210Switch-switch","track":"bds210Switch-track","thumb":"bds210Switch-thumb","switchError":"bds210Switch-switchError"};
|
|
2567
2569
|
|
|
2568
2570
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2569
2571
|
import { cn as cn45 } from "@boostdev/design-system-foundation";
|
|
@@ -2611,7 +2613,7 @@ function Switch({
|
|
|
2611
2613
|
import { useId as useId22 } from "react";
|
|
2612
2614
|
|
|
2613
2615
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2614
|
-
var Textarea_default = {"formGroup":"
|
|
2616
|
+
var Textarea_default = {"component":"bds210Textarea-component","formGroup":"bds210Textarea-formGroup","textarea":"bds210Textarea-textarea","textareaError":"bds210Textarea-textareaError"};
|
|
2615
2617
|
|
|
2616
2618
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2617
2619
|
import { cn as cn46 } from "@boostdev/design-system-foundation";
|
|
@@ -2650,7 +2652,7 @@ function Textarea({
|
|
|
2650
2652
|
}
|
|
2651
2653
|
|
|
2652
2654
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2653
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2655
|
+
var ButtonGroup_default = {"component":"bds210ButtonGroup-component","buttonGroup":"bds210ButtonGroup-buttonGroup","container":"bds210ButtonGroup-container","--variant_card":"bds210ButtonGroup---variant_card","--variant_flow":"bds210ButtonGroup---variant_flow","--variant_modal":"bds210ButtonGroup---variant_modal","--variant_content":"bds210ButtonGroup---variant_content","--variant_grid":"bds210ButtonGroup---variant_grid"};
|
|
2654
2656
|
|
|
2655
2657
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2656
2658
|
import { cn as cn47 } from "@boostdev/design-system-foundation";
|
|
@@ -2669,7 +2671,7 @@ function ButtonContainer({ children, className, variant, ...rest }) {
|
|
|
2669
2671
|
var ButtonGroup = ButtonContainer;
|
|
2670
2672
|
|
|
2671
2673
|
// src/components/layout/Card/Card.module.css
|
|
2672
|
-
var Card_default = {"card":"
|
|
2674
|
+
var Card_default = {"component":"bds210Card-component","card":"bds210Card-card","--default":"bds210Card---default","--elevated":"bds210Card---elevated","--outlined":"bds210Card---outlined","--clickable":"bds210Card---clickable","--padding-none":"bds210Card---padding-none","--padding-small":"bds210Card---padding-small","--padding-medium":"bds210Card---padding-medium","--padding-large":"bds210Card---padding-large","--padding-extra-large":"bds210Card---padding-extra-large","--text-start":"bds210Card---text-start","--text-center":"bds210Card---text-center","--text-end":"bds210Card---text-end"};
|
|
2673
2675
|
|
|
2674
2676
|
// src/components/layout/Card/Card.tsx
|
|
2675
2677
|
import { cn as cn48 } from "@boostdev/design-system-foundation";
|
|
@@ -2706,7 +2708,7 @@ function Card({
|
|
|
2706
2708
|
}
|
|
2707
2709
|
|
|
2708
2710
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2709
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2711
|
+
var SectionHeader_default = {"component":"bds210SectionHeader-component","sectionHeader":"bds210SectionHeader-sectionHeader","title":"bds210SectionHeader-title","subtitle":"bds210SectionHeader-subtitle","--start":"bds210SectionHeader---start","--center":"bds210SectionHeader---center","--end":"bds210SectionHeader---end","--medium":"bds210SectionHeader---medium","--xs":"bds210SectionHeader---xs","--small":"bds210SectionHeader---small","--large":"bds210SectionHeader---large"};
|
|
2710
2712
|
|
|
2711
2713
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2712
2714
|
import { cn as cn49 } from "@boostdev/design-system-foundation";
|
|
@@ -2728,7 +2730,7 @@ function SectionHeader({
|
|
|
2728
2730
|
}
|
|
2729
2731
|
|
|
2730
2732
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2731
|
-
var IconWrapper_default = {"wrapper":"
|
|
2733
|
+
var IconWrapper_default = {"component":"bds210IconWrapper-component","wrapper":"bds210IconWrapper-wrapper"};
|
|
2732
2734
|
|
|
2733
2735
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2734
2736
|
import { cn as cn50 } from "@boostdev/design-system-foundation";
|