@boostdev/design-system-components 1.2.2 → 1.2.4
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 -0
- package/README.md +50 -5
- package/dist/client.cjs +50 -50
- package/dist/client.css +506 -503
- package/dist/client.js +50 -50
- package/dist/index.cjs +50 -50
- package/dist/index.css +506 -503
- package/dist/index.js +50 -50
- package/dist/native/index.cjs +3692 -352
- package/dist/native/index.d.cts +359 -3
- package/dist/native/index.d.ts +359 -3
- package/dist/native/index.js +3811 -364
- package/package.json +3 -3
- package/src/components/interaction/Button/Button.module.css +1 -4
- package/src/components/interaction/Button/Button.native.stories.tsx +10 -12
- package/src/components/interaction/Button/Button.native.tsx +3 -3
- package/src/components/interaction/Dialog/Dialog.module.css +1 -1
- package/src/components/interaction/Dialog/Dialog.native.mdx +61 -0
- package/src/components/interaction/Dialog/Dialog.native.spec.tsx +73 -0
- package/src/components/interaction/Dialog/Dialog.native.stories.tsx +53 -0
- package/src/components/interaction/Dialog/Dialog.native.tsx +128 -0
- package/src/components/interaction/Drawer/Drawer.module.css +1 -1
- package/src/components/interaction/Drawer/Drawer.native.mdx +58 -0
- package/src/components/interaction/Drawer/Drawer.native.spec.tsx +81 -0
- package/src/components/interaction/Drawer/Drawer.native.stories.tsx +33 -0
- package/src/components/interaction/Drawer/Drawer.native.tsx +175 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.module.css +4 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.mdx +74 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.spec.tsx +78 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.stories.tsx +51 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.tsx +254 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.stories.tsx +4 -4
- package/src/components/interaction/Popover/Popover.native.mdx +61 -0
- package/src/components/interaction/Popover/Popover.native.spec.tsx +73 -0
- package/src/components/interaction/Popover/Popover.native.stories.tsx +44 -0
- package/src/components/interaction/Popover/Popover.native.tsx +87 -0
- package/src/components/interaction/Rating/Rating.native.mdx +55 -0
- package/src/components/interaction/Rating/Rating.native.spec.tsx +38 -0
- package/src/components/interaction/Rating/Rating.native.stories.tsx +37 -0
- package/src/components/interaction/Rating/Rating.native.tsx +50 -0
- package/src/components/interaction/Toast/Toast.native.mdx +81 -0
- package/src/components/interaction/Toast/Toast.native.spec.tsx +80 -0
- package/src/components/interaction/Toast/Toast.native.stories.tsx +47 -0
- package/src/components/interaction/Toast/Toast.native.tsx +202 -0
- package/src/components/interaction/form/Checkbox/Checkbox.native.stories.tsx +2 -4
- package/src/components/interaction/form/Checkbox/Checkbox.native.tsx +1 -1
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.mdx +78 -0
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.spec.tsx +57 -0
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.stories.tsx +96 -0
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.tsx +61 -0
- package/src/components/interaction/form/Combobox/Combobox.module.css +1 -1
- package/src/components/interaction/form/Combobox/Combobox.native.mdx +86 -0
- package/src/components/interaction/form/Combobox/Combobox.native.spec.tsx +60 -0
- package/src/components/interaction/form/Combobox/Combobox.native.stories.tsx +99 -0
- package/src/components/interaction/form/Combobox/Combobox.native.tsx +211 -0
- package/src/components/interaction/form/FileInput/FileInput.native.mdx +86 -0
- package/src/components/interaction/form/FileInput/FileInput.native.spec.tsx +73 -0
- package/src/components/interaction/form/FileInput/FileInput.native.stories.tsx +69 -0
- package/src/components/interaction/form/FileInput/FileInput.native.tsx +129 -0
- package/src/components/interaction/form/FormInput/FormInput.module.css +1 -1
- package/src/components/interaction/form/FormInput/FormInput.native.mdx +81 -0
- package/src/components/interaction/form/FormInput/FormInput.native.spec.tsx +51 -0
- package/src/components/interaction/form/FormInput/FormInput.native.stories.tsx +54 -0
- package/src/components/interaction/form/FormInput/FormInput.native.tsx +122 -0
- package/src/components/interaction/form/NumberInput/NumberInput.module.css +1 -1
- package/src/components/interaction/form/NumberInput/NumberInput.native.mdx +87 -0
- package/src/components/interaction/form/NumberInput/NumberInput.native.spec.tsx +63 -0
- package/src/components/interaction/form/NumberInput/NumberInput.native.stories.tsx +63 -0
- package/src/components/interaction/form/NumberInput/NumberInput.native.tsx +198 -0
- package/src/components/interaction/form/Radio/Radio.native.spec.tsx +79 -0
- package/src/components/interaction/form/Radio/Radio.native.stories.tsx +12 -14
- package/src/components/interaction/form/Radio/Radio.native.tsx +1 -1
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.mdx +79 -0
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.spec.tsx +66 -0
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.stories.tsx +96 -0
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.tsx +61 -0
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.module.css +5 -5
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.mdx +78 -0
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.spec.tsx +82 -0
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.stories.tsx +99 -0
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.tsx +121 -0
- package/src/components/interaction/form/Select/Select.module.css +1 -1
- package/src/components/interaction/form/Select/Select.native.mdx +85 -0
- package/src/components/interaction/form/Select/Select.native.spec.tsx +64 -0
- package/src/components/interaction/form/Select/Select.native.stories.tsx +75 -0
- package/src/components/interaction/form/Select/Select.native.tsx +252 -0
- package/src/components/interaction/form/Slider/Slider.module.css +4 -4
- package/src/components/interaction/form/Slider/Slider.native.mdx +83 -0
- package/src/components/interaction/form/Slider/Slider.native.spec.tsx +51 -0
- package/src/components/interaction/form/Slider/Slider.native.stories.tsx +58 -0
- package/src/components/interaction/form/Slider/Slider.native.tsx +188 -0
- package/src/components/interaction/form/Switch/Switch.module.css +3 -3
- package/src/components/interaction/form/Switch/Switch.native.stories.tsx +2 -4
- package/src/components/interaction/form/Textarea/Textarea.native.mdx +76 -0
- package/src/components/interaction/form/Textarea/Textarea.native.spec.tsx +50 -0
- package/src/components/interaction/form/Textarea/Textarea.native.stories.tsx +50 -0
- package/src/components/interaction/form/Textarea/Textarea.native.tsx +108 -0
- package/src/components/interaction/form/atoms/Label.native.spec.tsx +39 -0
- package/src/components/interaction/form/atoms/Label.native.stories.tsx +1 -1
- package/src/components/interaction/form/atoms/Message.native.stories.tsx +1 -1
- package/src/components/layout/ButtonGroup/ButtonGroup.native.spec.tsx +83 -0
- package/src/components/layout/ButtonGroup/ButtonGroup.native.stories.tsx +13 -19
- package/src/components/layout/Card/Card.native.spec.tsx +102 -0
- package/src/components/layout/Card/Card.native.stories.tsx +9 -11
- package/src/components/layout/Card/Card.native.tsx +1 -1
- package/src/components/layout/IconWrapper/IconWrapper.module.css +1 -1
- package/src/components/layout/IconWrapper/IconWrapper.native.stories.tsx +7 -11
- package/src/components/layout/SectionHeader/SectionHeader.native.spec.tsx +51 -0
- package/src/components/layout/SectionHeader/SectionHeader.native.stories.tsx +6 -8
- package/src/components/ui/Accordion/Accordion.native.mdx +65 -0
- package/src/components/ui/Accordion/Accordion.native.spec.tsx +69 -0
- package/src/components/ui/Accordion/Accordion.native.stories.tsx +52 -0
- package/src/components/ui/Accordion/Accordion.native.tsx +141 -0
- package/src/components/ui/Alert/Alert.module.css +1 -1
- package/src/components/ui/Alert/Alert.native.spec.tsx +76 -0
- package/src/components/ui/Alert/Alert.native.stories.tsx +8 -10
- package/src/components/ui/Alert/Alert.native.tsx +7 -7
- package/src/components/ui/Avatar/Avatar.module.css +1 -1
- package/src/components/ui/Avatar/Avatar.native.stories.tsx +6 -8
- package/src/components/ui/Avatar/Avatar.native.tsx +2 -2
- package/src/components/ui/Badge/Badge.module.css +1 -1
- package/src/components/ui/Badge/Badge.native.spec.tsx +45 -0
- package/src/components/ui/Badge/Badge.native.stories.tsx +6 -8
- package/src/components/ui/Badge/Badge.native.tsx +2 -2
- package/src/components/ui/Breadcrumb/Breadcrumb.native.mdx +52 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.native.spec.tsx +49 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.native.stories.tsx +46 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.native.tsx +83 -0
- package/src/components/ui/Calendar/Calendar.module.css +2 -2
- package/src/components/ui/Calendar/Calendar.native.mdx +58 -0
- package/src/components/ui/Calendar/Calendar.native.spec.tsx +92 -0
- package/src/components/ui/Calendar/Calendar.native.stories.tsx +45 -0
- package/src/components/ui/Calendar/Calendar.native.tsx +294 -0
- package/src/components/ui/Carousel/Carousel.module.css +1 -1
- package/src/components/ui/Carousel/Carousel.native.mdx +55 -0
- package/src/components/ui/Carousel/Carousel.native.spec.tsx +55 -0
- package/src/components/ui/Carousel/Carousel.native.stories.tsx +59 -0
- package/src/components/ui/Carousel/Carousel.native.tsx +184 -0
- package/src/components/ui/Collapsible/Collapsible.native.mdx +53 -0
- package/src/components/ui/Collapsible/Collapsible.native.spec.tsx +68 -0
- package/src/components/ui/Collapsible/Collapsible.native.stories.tsx +48 -0
- package/src/components/ui/Collapsible/Collapsible.native.tsx +139 -0
- package/src/components/ui/DescriptionList/DescriptionList.native.mdx +50 -0
- package/src/components/ui/DescriptionList/DescriptionList.native.spec.tsx +37 -0
- package/src/components/ui/DescriptionList/DescriptionList.native.stories.tsx +48 -0
- package/src/components/ui/DescriptionList/DescriptionList.native.tsx +54 -0
- package/src/components/ui/Link/Link.native.mdx +53 -0
- package/src/components/ui/Link/Link.native.spec.tsx +35 -0
- package/src/components/ui/Link/Link.native.stories.tsx +46 -0
- package/src/components/ui/Link/Link.native.tsx +48 -0
- package/src/components/ui/Loading/Loading.module.css +1 -1
- package/src/components/ui/Loading/Loading.native.stories.tsx +6 -8
- package/src/components/ui/NotificationBanner/NotificationBanner.module.css +1 -1
- package/src/components/ui/NotificationBanner/NotificationBanner.native.spec.tsx +85 -0
- package/src/components/ui/NotificationBanner/NotificationBanner.native.stories.tsx +8 -10
- package/src/components/ui/NotificationBanner/NotificationBanner.native.tsx +7 -7
- package/src/components/ui/Pagination/Pagination.module.css +5 -1
- package/src/components/ui/Pagination/Pagination.native.mdx +62 -0
- package/src/components/ui/Pagination/Pagination.native.spec.tsx +86 -0
- package/src/components/ui/Pagination/Pagination.native.stories.tsx +47 -0
- package/src/components/ui/Pagination/Pagination.native.tsx +157 -0
- package/src/components/ui/Progress/Progress.module.css +2 -2
- package/src/components/ui/Progress/Progress.native.spec.tsx +56 -0
- package/src/components/ui/Progress/Progress.native.stories.tsx +1 -1
- package/src/components/ui/Progress/Progress.native.tsx +2 -2
- package/src/components/ui/ProgressCircle/ProgressCircle.native.mdx +63 -0
- package/src/components/ui/ProgressCircle/ProgressCircle.native.spec.tsx +39 -0
- package/src/components/ui/ProgressCircle/ProgressCircle.native.stories.tsx +36 -0
- package/src/components/ui/ProgressCircle/ProgressCircle.native.tsx +176 -0
- package/src/components/ui/Separator/Separator.native.spec.tsx +39 -0
- package/src/components/ui/Separator/Separator.native.stories.tsx +10 -14
- package/src/components/ui/Skeleton/Skeleton.native.spec.tsx +39 -0
- package/src/components/ui/Skeleton/Skeleton.native.stories.tsx +6 -8
- package/src/components/ui/Skeleton/Skeleton.native.tsx +2 -1
- package/src/components/ui/Table/Table.native.mdx +72 -0
- package/src/components/ui/Table/Table.native.spec.tsx +83 -0
- package/src/components/ui/Table/Table.native.stories.tsx +55 -0
- package/src/components/ui/Table/Table.native.tsx +196 -0
- package/src/components/ui/Tabs/Tabs.native.mdx +65 -0
- package/src/components/ui/Tabs/Tabs.native.spec.tsx +65 -0
- package/src/components/ui/Tabs/Tabs.native.stories.tsx +57 -0
- package/src/components/ui/Tabs/Tabs.native.tsx +133 -0
- package/src/components/ui/Tooltip/Tooltip.module.css +1 -1
- package/src/components/ui/Tooltip/Tooltip.native.mdx +47 -0
- package/src/components/ui/Tooltip/Tooltip.native.spec.tsx +37 -0
- package/src/components/ui/Tooltip/Tooltip.native.stories.tsx +38 -0
- package/src/components/ui/Tooltip/Tooltip.native.tsx +57 -0
- package/src/components/ui/Typography/Typography.native.spec.tsx +49 -0
- package/src/components/ui/Typography/Typography.native.stories.tsx +8 -10
- package/src/native/ThemeContext.tsx +3 -3
- package/src/native.ts +37 -0
- package/src/stories/ReactNative.mdx +48 -13
- package/src/web-components/interaction/BdsAccordion.stories.tsx +1 -1
- package/src/web-components/interaction/BdsCollapsible.stories.tsx +1 -1
- package/src/web-components/interaction/BdsSkipLink.stories.tsx +1 -1
- package/src/web-components/interaction/BdsTabs.stories.tsx +1 -1
- package/src/web-components/interaction/BdsTooltip.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsCheckbox.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsCheckboxGroup.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsCombobox.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsFileInput.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsFormInput.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsNumberInput.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsRadio.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsRadioGroup.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsSegmentedControl.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsSelect.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsSlider.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsSwitch.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsTextarea.stories.tsx +1 -1
- package/src/web-components/ui/BdsButtonGroup.stories.tsx +1 -1
- package/src/web-components/ui/BdsCard.stories.tsx +1 -1
- package/src/web-components/ui/BdsIconWrapper.stories.tsx +1 -1
- package/src/web-components/ui/BdsRating.stories.tsx +1 -1
- package/src/web-components/ui/BdsSectionHeader.stories.tsx +1 -1
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 = {"accordion":"bds124Accordion-accordion","item":"bds124Accordion-item","heading":"bds124Accordion-heading","trigger":"bds124Accordion-trigger","triggerLabel":"bds124Accordion-triggerLabel","chevron":"bds124Accordion-chevron","--open":"bds124Accordion---open","panel":"bds124Accordion-panel","panelContent":"bds124Accordion-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 = {"alert":"bds124Alert-alert","--variant_info":"bds124Alert---variant_info","--variant_success":"bds124Alert---variant_success","--variant_warning":"bds124Alert---variant_warning","--variant_error":"bds124Alert---variant_error","icon":"bds124Alert-icon","content":"bds124Alert-content","title":"bds124Alert-title","dismiss":"bds124Alert-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 = {"avatar":"bds124Avatar-avatar","--fallback":"bds124Avatar---fallback","--size_small":"bds124Avatar---size_small","--size_medium":"bds124Avatar---size_medium","--size_large":"bds124Avatar---size_large","image":"bds124Avatar-image","initials":"bds124Avatar-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 = {"badge":"bds124Badge-badge","--variant_primary":"bds124Badge---variant_primary","--variant_secondary":"bds124Badge---variant_secondary","--variant_success":"bds124Badge---variant_success","--variant_error":"bds124Badge---variant_error","--variant_warning":"bds124Badge---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 = {"breadcrumb":"bds124Breadcrumb-breadcrumb","list":"bds124Breadcrumb-list","item":"bds124Breadcrumb-item","link":"bds124Breadcrumb-link","separator":"bds124Breadcrumb-separator","current":"bds124Breadcrumb-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 = {"collapsible":"bds124Collapsible-collapsible","summary":"bds124Collapsible-summary","summaryContent":"bds124Collapsible-summaryContent","icon":"bds124Collapsible-icon","content":"bds124Collapsible-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 = {"calendar":"bds124Calendar-calendar","header":"bds124Calendar-header","monthYear":"bds124Calendar-monthYear","navBtn":"bds124Calendar-navBtn","grid":"bds124Calendar-grid","weekday":"bds124Calendar-weekday","empty":"bds124Calendar-empty","day":"bds124Calendar-day","disabled":"bds124Calendar-disabled","selected":"bds124Calendar-selected","today":"bds124Calendar-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 = {"carousel":"bds124Carousel-carousel","track":"bds124Carousel-track","slide":"bds124Carousel-slide","navBtn":"bds124Carousel-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 = {"list":"bds124DescriptionList-list","group":"bds124DescriptionList-group","term":"bds124DescriptionList-term","details":"bds124DescriptionList-details","--layout_inline":"bds124DescriptionList---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 = {"link":"bds124Link-link","--variant_default":"bds124Link---variant_default","--variant_subtle":"bds124Link---variant_subtle","--variant_standalone":"bds124Link---variant_standalone","externalLabel":"bds124Link-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 = {"loading":"bds124Loading-loading","spinner":"bds124Loading-spinner","--size_small":"bds124Loading---size_small","--size_large":"bds124Loading---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 = {"banner":"bds124NotificationBanner-banner","--variant_info":"bds124NotificationBanner---variant_info","--variant_success":"bds124NotificationBanner---variant_success","--variant_warning":"bds124NotificationBanner---variant_warning","--variant_error":"bds124NotificationBanner---variant_error","content":"bds124NotificationBanner-content","action":"bds124NotificationBanner-action","dismiss":"bds124NotificationBanner-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 = {"pagination":"bds124Pagination-pagination","list":"bds124Pagination-list","button":"bds124Pagination-button","--active":"bds124Pagination---active","--nav":"bds124Pagination---nav","ellipsis":"bds124Pagination-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 = {"container":"bds124Progress-container","labelRow":"bds124Progress-labelRow","value":"bds124Progress-value","track":"bds124Progress-track","--size_small":"bds124Progress---size_small","--size_medium":"bds124Progress---size_medium","--size_large":"bds124Progress---size_large","fill":"bds124Progress-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 = {"wrapper":"bds124ProgressCircle-wrapper","svg":"bds124ProgressCircle-svg","track":"bds124ProgressCircle-track","fill":"bds124ProgressCircle-fill","value":"bds124ProgressCircle-value","--size_small":"bds124ProgressCircle---size_small","--size_medium":"bds124ProgressCircle---size_medium","--size_large":"bds124ProgressCircle---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 = {"separator":"bds124Separator-separator","--horizontal":"bds124Separator---horizontal","--vertical":"bds124Separator---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 = {"skeleton":"bds124Skeleton-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 = {"skipLink":"bds124SkipLink-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 = {"wrapper":"bds124Table-wrapper","table":"bds124Table-table","caption":"bds124Table-caption","thead":"bds124Table-thead","th":"bds124Table-th","--sortable":"bds124Table---sortable","sortButton":"bds124Table-sortButton","sortIcon":"bds124Table-sortIcon","--sort-active":"bds124Table---sort-active","--sort-desc":"bds124Table---sort-desc","tbody":"bds124Table-tbody","tr":"bds124Table-tr","td":"bds124Table-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 = {"tabs":"bds124Tabs-tabs","tabList":"bds124Tabs-tabList","tab":"bds124Tabs-tab","--active":"bds124Tabs---active","panel":"bds124Tabs-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 = {"wrapper":"bds124Tooltip-wrapper","tooltip":"bds124Tooltip-tooltip","--placement_top":"bds124Tooltip---placement_top","--placement_bottom":"bds124Tooltip---placement_bottom","--placement_left":"bds124Tooltip---placement_left","--placement_right":"bds124Tooltip---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 = {"typography":"bds124Typography-typography","--h1":"bds124Typography---h1","--h2":"bds124Typography---h2","--h3":"bds124Typography---h3","--body":"bds124Typography---body","--body_s":"bds124Typography---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 = {"button":"bds124Button-button","--default":"bds124Button---default","--outline":"bds124Button---outline","--ghost":"bds124Button---ghost","--size_small":"bds124Button---size_small","--size_medium":"bds124Button---size_medium","--size_large":"bds124Button---size_large","--hasPulse":"bds124Button---hasPulse","iconStart":"bds124Button-iconStart","iconEnd":"bds124Button-iconEnd"};
|
|
979
979
|
|
|
980
980
|
// src/components/interaction/Button/Button.tsx
|
|
981
981
|
import { cn as cn23 } from "@boostdev/design-system-foundation";
|
|
@@ -1090,7 +1090,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1090
1090
|
}
|
|
1091
1091
|
|
|
1092
1092
|
// src/components/interaction/Command/Command.module.css
|
|
1093
|
-
var Command_default = {"dialog":"
|
|
1093
|
+
var Command_default = {"dialog":"bds124Command-dialog","palette":"bds124Command-palette","searchRow":"bds124Command-searchRow","searchIcon":"bds124Command-searchIcon","search":"bds124Command-search","escHint":"bds124Command-escHint","list":"bds124Command-list","groupList":"bds124Command-groupList","group":"bds124Command-group","item":"bds124Command-item","itemActive":"bds124Command-itemActive","itemLabel":"bds124Command-itemLabel","itemDesc":"bds124Command-itemDesc","shortcut":"bds124Command-shortcut","empty":"bds124Command-empty"};
|
|
1094
1094
|
|
|
1095
1095
|
// src/components/interaction/Command/Command.tsx
|
|
1096
1096
|
import { cn as cn24 } from "@boostdev/design-system-foundation";
|
|
@@ -1267,7 +1267,7 @@ function Command({
|
|
|
1267
1267
|
import { useEffect as useEffect2, useId as useId7, useRef as useRef4 } from "react";
|
|
1268
1268
|
|
|
1269
1269
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1270
|
-
var Dialog_default = {"dialog":"
|
|
1270
|
+
var Dialog_default = {"dialog":"bds124Dialog-dialog","dialogContent":"bds124Dialog-dialogContent","closeButton":"bds124Dialog-closeButton"};
|
|
1271
1271
|
|
|
1272
1272
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1273
1273
|
import { cn as cn25 } from "@boostdev/design-system-foundation";
|
|
@@ -1373,7 +1373,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1373
1373
|
import { useEffect as useEffect3, useId as useId8, useRef as useRef5 } from "react";
|
|
1374
1374
|
|
|
1375
1375
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1376
|
-
var Drawer_default = {"drawer":"
|
|
1376
|
+
var Drawer_default = {"drawer":"bds124Drawer-drawer","--side_left":"bds124Drawer---side_left","header":"bds124Drawer-header","closeButton":"bds124Drawer-closeButton","body":"bds124Drawer-body"};
|
|
1377
1377
|
|
|
1378
1378
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1379
1379
|
import { cn as cn26 } from "@boostdev/design-system-foundation";
|
|
@@ -1481,7 +1481,7 @@ import {
|
|
|
1481
1481
|
} from "react";
|
|
1482
1482
|
|
|
1483
1483
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1484
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1484
|
+
var DropdownMenu_default = {"wrapper":"bds124DropdownMenu-wrapper","menu":"bds124DropdownMenu-menu","--placement_bottom-start":"bds124DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds124DropdownMenu---placement_bottom-end","separator":"bds124DropdownMenu-separator","item":"bds124DropdownMenu-item","icon":"bds124DropdownMenu-icon"};
|
|
1485
1485
|
|
|
1486
1486
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1487
1487
|
import { cn as cn27 } from "@boostdev/design-system-foundation";
|
|
@@ -1602,7 +1602,7 @@ import {
|
|
|
1602
1602
|
} from "react";
|
|
1603
1603
|
|
|
1604
1604
|
// src/components/interaction/Popover/Popover.module.css
|
|
1605
|
-
var Popover_default = {"wrapper":"
|
|
1605
|
+
var Popover_default = {"wrapper":"bds124Popover-wrapper","panel":"bds124Popover-panel","g":"bds124Popover-g"};
|
|
1606
1606
|
|
|
1607
1607
|
// src/components/interaction/Popover/Popover.tsx
|
|
1608
1608
|
import { cn as cn28 } from "@boostdev/design-system-foundation";
|
|
@@ -1687,7 +1687,7 @@ function Popover({
|
|
|
1687
1687
|
}
|
|
1688
1688
|
|
|
1689
1689
|
// src/components/interaction/Rating/Rating.module.css
|
|
1690
|
-
var Rating_default = {"rating":"
|
|
1690
|
+
var Rating_default = {"rating":"bds124Rating-rating","star":"bds124Rating-star","--filled":"bds124Rating---filled"};
|
|
1691
1691
|
|
|
1692
1692
|
// src/components/interaction/Rating/Rating.tsx
|
|
1693
1693
|
import { cn as cn29 } from "@boostdev/design-system-foundation";
|
|
@@ -1719,7 +1719,7 @@ function Rating({ value, max = 5, className, ...rest }) {
|
|
|
1719
1719
|
import { useState as useState8, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2, useRef as useRef8 } from "react";
|
|
1720
1720
|
|
|
1721
1721
|
// src/components/interaction/Toast/Toast.module.css
|
|
1722
|
-
var Toast_default = {"toastContainer":"
|
|
1722
|
+
var Toast_default = {"toastContainer":"bds124Toast-toastContainer","toast":"bds124Toast-toast","--variant_success":"bds124Toast---variant_success","--variant_warning":"bds124Toast---variant_warning","--variant_info":"bds124Toast---variant_info","--variant_error":"bds124Toast---variant_error","message":"bds124Toast-message","closeButton":"bds124Toast-closeButton"};
|
|
1723
1723
|
|
|
1724
1724
|
// src/components/interaction/Toast/Toast.tsx
|
|
1725
1725
|
import { cn as cn30 } from "@boostdev/design-system-foundation";
|
|
@@ -1792,10 +1792,10 @@ function useToast() {
|
|
|
1792
1792
|
import { useId as useId11 } from "react";
|
|
1793
1793
|
|
|
1794
1794
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1795
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1795
|
+
var Checkbox_default = {"checkboxGroup":"bds124Checkbox-checkboxGroup","inputWrapper":"bds124Checkbox-inputWrapper","checkbox":"bds124Checkbox-checkbox","checkboxError":"bds124Checkbox-checkboxError"};
|
|
1796
1796
|
|
|
1797
1797
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1798
|
-
var Message_default = {"error":"
|
|
1798
|
+
var Message_default = {"error":"bds124Message-error","hint":"bds124Message-hint"};
|
|
1799
1799
|
|
|
1800
1800
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1801
1801
|
import { cn as cn31 } from "@boostdev/design-system-foundation";
|
|
@@ -1806,7 +1806,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1806
1806
|
};
|
|
1807
1807
|
|
|
1808
1808
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1809
|
-
var Label_default = {"label":"
|
|
1809
|
+
var Label_default = {"label":"bds124Label-label"};
|
|
1810
1810
|
|
|
1811
1811
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1812
1812
|
import { cn as cn32 } from "@boostdev/design-system-foundation";
|
|
@@ -1819,7 +1819,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1819
1819
|
import { cn as cn34 } from "@boostdev/design-system-foundation";
|
|
1820
1820
|
|
|
1821
1821
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1822
|
-
var InputContainer_default = {"container":"
|
|
1822
|
+
var InputContainer_default = {"container":"bds124InputContainer-container"};
|
|
1823
1823
|
|
|
1824
1824
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1825
1825
|
import { cn as cn33 } from "@boostdev/design-system-foundation";
|
|
@@ -1860,7 +1860,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1860
1860
|
import { useId as useId12 } from "react";
|
|
1861
1861
|
|
|
1862
1862
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1863
|
-
var CheckboxGroup_default = {"group":"
|
|
1863
|
+
var CheckboxGroup_default = {"group":"bds124CheckboxGroup-group","legend":"bds124CheckboxGroup-legend","required":"bds124CheckboxGroup-required","items":"bds124CheckboxGroup-items"};
|
|
1864
1864
|
|
|
1865
1865
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1866
1866
|
import { cn as cn35 } from "@boostdev/design-system-foundation";
|
|
@@ -1908,7 +1908,7 @@ import {
|
|
|
1908
1908
|
} from "react";
|
|
1909
1909
|
|
|
1910
1910
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1911
|
-
var Combobox_default = {"formGroup":"
|
|
1911
|
+
var Combobox_default = {"formGroup":"bds124Combobox-formGroup","inputWrapper":"bds124Combobox-inputWrapper","input":"bds124Combobox-input","inputError":"bds124Combobox-inputError","chevron":"bds124Combobox-chevron","listbox":"bds124Combobox-listbox","option":"bds124Combobox-option","--highlighted":"bds124Combobox---highlighted","--selected":"bds124Combobox---selected","--disabled":"bds124Combobox---disabled"};
|
|
1912
1912
|
|
|
1913
1913
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1914
1914
|
import { cn as cn36 } from "@boostdev/design-system-foundation";
|
|
@@ -2059,7 +2059,7 @@ function Combobox({
|
|
|
2059
2059
|
import { useId as useId14, useRef as useRef10, useState as useState10 } from "react";
|
|
2060
2060
|
|
|
2061
2061
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2062
|
-
var FileInput_default = {"formGroup":"
|
|
2062
|
+
var FileInput_default = {"formGroup":"bds124FileInput-formGroup","fieldLabel":"bds124FileInput-fieldLabel","dropZone":"bds124FileInput-dropZone","isDragging":"bds124FileInput-isDragging","hasError":"bds124FileInput-hasError","isDisabled":"bds124FileInput-isDisabled","icon":"bds124FileInput-icon","prompt":"bds124FileInput-prompt","acceptHint":"bds124FileInput-acceptHint","hiddenInput":"bds124FileInput-hiddenInput"};
|
|
2063
2063
|
|
|
2064
2064
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2065
2065
|
import { cn as cn37 } from "@boostdev/design-system-foundation";
|
|
@@ -2160,7 +2160,7 @@ function FileInput({
|
|
|
2160
2160
|
import { useId as useId15 } from "react";
|
|
2161
2161
|
|
|
2162
2162
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2163
|
-
var FormInput_default = {"formGroup":"
|
|
2163
|
+
var FormInput_default = {"formGroup":"bds124FormInput-formGroup","input":"bds124FormInput-input","inputError":"bds124FormInput-inputError"};
|
|
2164
2164
|
|
|
2165
2165
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2166
2166
|
import { cn as cn38 } from "@boostdev/design-system-foundation";
|
|
@@ -2204,7 +2204,7 @@ function FormInput({
|
|
|
2204
2204
|
import { useId as useId16, useRef as useRef11, useState as useState11 } from "react";
|
|
2205
2205
|
|
|
2206
2206
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2207
|
-
var NumberInput_default = {"formGroup":"
|
|
2207
|
+
var NumberInput_default = {"formGroup":"bds124NumberInput-formGroup","inputRow":"bds124NumberInput-inputRow","input":"bds124NumberInput-input","inputError":"bds124NumberInput-inputError","stepper":"bds124NumberInput-stepper"};
|
|
2208
2208
|
|
|
2209
2209
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2210
2210
|
import { cn as cn39 } from "@boostdev/design-system-foundation";
|
|
@@ -2309,7 +2309,7 @@ function NumberInput({
|
|
|
2309
2309
|
import { useId as useId17 } from "react";
|
|
2310
2310
|
|
|
2311
2311
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2312
|
-
var Radio_default = {"radioGroup":"
|
|
2312
|
+
var Radio_default = {"radioGroup":"bds124Radio-radioGroup","inputWrapper":"bds124Radio-inputWrapper","textWrapper":"bds124Radio-textWrapper","description":"bds124Radio-description","radio":"bds124Radio-radio","radioError":"bds124Radio-radioError"};
|
|
2313
2313
|
|
|
2314
2314
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2315
2315
|
import { cn as cn40 } from "@boostdev/design-system-foundation";
|
|
@@ -2347,7 +2347,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2347
2347
|
import { useId as useId18 } from "react";
|
|
2348
2348
|
|
|
2349
2349
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2350
|
-
var RadioGroup_default = {"group":"
|
|
2350
|
+
var RadioGroup_default = {"group":"bds124RadioGroup-group","legend":"bds124RadioGroup-legend","required":"bds124RadioGroup-required","items":"bds124RadioGroup-items"};
|
|
2351
2351
|
|
|
2352
2352
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2353
2353
|
import { cn as cn41 } from "@boostdev/design-system-foundation";
|
|
@@ -2389,7 +2389,7 @@ function RadioGroup({
|
|
|
2389
2389
|
import { Children, cloneElement as cloneElement4, isValidElement as isValidElement4 } from "react";
|
|
2390
2390
|
|
|
2391
2391
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2392
|
-
var SegmentedControl_default = {"control":"
|
|
2392
|
+
var SegmentedControl_default = {"control":"bds124SegmentedControl-control","thumb":"bds124SegmentedControl-thumb","indicator":"bds124SegmentedControl-indicator","item":"bds124SegmentedControl-item","--active":"bds124SegmentedControl---active","--disabled":"bds124SegmentedControl---disabled","--size_small":"bds124SegmentedControl---size_small","--size_large":"bds124SegmentedControl---size_large","--variant_outline":"bds124SegmentedControl---variant_outline"};
|
|
2393
2393
|
|
|
2394
2394
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2395
2395
|
import { cn as cn42 } from "@boostdev/design-system-foundation";
|
|
@@ -2445,7 +2445,7 @@ function SegmentedControl({
|
|
|
2445
2445
|
import { useId as useId19 } from "react";
|
|
2446
2446
|
|
|
2447
2447
|
// src/components/interaction/form/Select/Select.module.css
|
|
2448
|
-
var Select_default = {"formGroup":"
|
|
2448
|
+
var Select_default = {"formGroup":"bds124Select-formGroup","selectWrapper":"bds124Select-selectWrapper","select":"bds124Select-select","selectError":"bds124Select-selectError","chevron":"bds124Select-chevron"};
|
|
2449
2449
|
|
|
2450
2450
|
// src/components/interaction/form/Select/Select.tsx
|
|
2451
2451
|
import { cn as cn43 } from "@boostdev/design-system-foundation";
|
|
@@ -2496,7 +2496,7 @@ function Select({
|
|
|
2496
2496
|
import { useId as useId20, useState as useState12 } from "react";
|
|
2497
2497
|
|
|
2498
2498
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2499
|
-
var Slider_default = {"formGroup":"
|
|
2499
|
+
var Slider_default = {"formGroup":"bds124Slider-formGroup","labelRow":"bds124Slider-labelRow","value":"bds124Slider-value","slider":"bds124Slider-slider","sliderError":"bds124Slider-sliderError"};
|
|
2500
2500
|
|
|
2501
2501
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2502
2502
|
import { cn as cn44 } from "@boostdev/design-system-foundation";
|
|
@@ -2558,7 +2558,7 @@ function Slider({
|
|
|
2558
2558
|
import { useId as useId21 } from "react";
|
|
2559
2559
|
|
|
2560
2560
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2561
|
-
var Switch_default = {"switchGroup":"
|
|
2561
|
+
var Switch_default = {"switchGroup":"bds124Switch-switchGroup","--size_small":"bds124Switch---size_small","--size_medium":"bds124Switch---size_medium","--size_large":"bds124Switch---size_large","inputWrapper":"bds124Switch-inputWrapper","trackWrapper":"bds124Switch-trackWrapper","switch":"bds124Switch-switch","track":"bds124Switch-track","thumb":"bds124Switch-thumb","switchError":"bds124Switch-switchError"};
|
|
2562
2562
|
|
|
2563
2563
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2564
2564
|
import { cn as cn45 } from "@boostdev/design-system-foundation";
|
|
@@ -2606,7 +2606,7 @@ function Switch({
|
|
|
2606
2606
|
import { useId as useId22 } from "react";
|
|
2607
2607
|
|
|
2608
2608
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2609
|
-
var Textarea_default = {"formGroup":"
|
|
2609
|
+
var Textarea_default = {"formGroup":"bds124Textarea-formGroup","textarea":"bds124Textarea-textarea","textareaError":"bds124Textarea-textareaError"};
|
|
2610
2610
|
|
|
2611
2611
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2612
2612
|
import { cn as cn46 } from "@boostdev/design-system-foundation";
|
|
@@ -2645,7 +2645,7 @@ function Textarea({
|
|
|
2645
2645
|
}
|
|
2646
2646
|
|
|
2647
2647
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2648
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2648
|
+
var ButtonGroup_default = {"buttonGroup":"bds124ButtonGroup-buttonGroup","container":"bds124ButtonGroup-container","--variant_card":"bds124ButtonGroup---variant_card","--variant_flow":"bds124ButtonGroup---variant_flow","--variant_modal":"bds124ButtonGroup---variant_modal","--variant_content":"bds124ButtonGroup---variant_content","--variant_grid":"bds124ButtonGroup---variant_grid"};
|
|
2649
2649
|
|
|
2650
2650
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2651
2651
|
import { cn as cn47 } from "@boostdev/design-system-foundation";
|
|
@@ -2663,7 +2663,7 @@ function ButtonGroup({ children, className, variant, ...rest }) {
|
|
|
2663
2663
|
}
|
|
2664
2664
|
|
|
2665
2665
|
// src/components/layout/Card/Card.module.css
|
|
2666
|
-
var Card_default = {"card":"
|
|
2666
|
+
var Card_default = {"card":"bds124Card-card","--default":"bds124Card---default","--elevated":"bds124Card---elevated","--outlined":"bds124Card---outlined","--clickable":"bds124Card---clickable","--padding-none":"bds124Card---padding-none","--padding-small":"bds124Card---padding-small","--padding-medium":"bds124Card---padding-medium","--padding-large":"bds124Card---padding-large","--text-start":"bds124Card---text-start","--text-center":"bds124Card---text-center","--text-end":"bds124Card---text-end"};
|
|
2667
2667
|
|
|
2668
2668
|
// src/components/layout/Card/Card.tsx
|
|
2669
2669
|
import { cn as cn48 } from "@boostdev/design-system-foundation";
|
|
@@ -2699,7 +2699,7 @@ function Card({
|
|
|
2699
2699
|
}
|
|
2700
2700
|
|
|
2701
2701
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2702
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2702
|
+
var SectionHeader_default = {"sectionHeader":"bds124SectionHeader-sectionHeader","title":"bds124SectionHeader-title","subtitle":"bds124SectionHeader-subtitle","--start":"bds124SectionHeader---start","--center":"bds124SectionHeader---center","--end":"bds124SectionHeader---end","--small":"bds124SectionHeader---small","--medium":"bds124SectionHeader---medium","--large":"bds124SectionHeader---large"};
|
|
2703
2703
|
|
|
2704
2704
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2705
2705
|
import { cn as cn49 } from "@boostdev/design-system-foundation";
|
|
@@ -2721,7 +2721,7 @@ function SectionHeader({
|
|
|
2721
2721
|
}
|
|
2722
2722
|
|
|
2723
2723
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2724
|
-
var IconWrapper_default = {"wrapper":"
|
|
2724
|
+
var IconWrapper_default = {"wrapper":"bds124IconWrapper-wrapper"};
|
|
2725
2725
|
|
|
2726
2726
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2727
2727
|
import { cn as cn50 } from "@boostdev/design-system-foundation";
|