@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/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { useId, useState } from "react";
|
|
3
3
|
|
|
4
4
|
// src/components/ui/Accordion/Accordion.module.css
|
|
5
|
-
var Accordion_default = {"accordion":"
|
|
5
|
+
var Accordion_default = {"accordion":"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"};
|
|
6
6
|
|
|
7
7
|
// src/components/ui/Accordion/Accordion.tsx
|
|
8
8
|
import { cn } from "@boostdev/design-system-foundation";
|
|
@@ -71,7 +71,7 @@ function Accordion({
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
// src/components/ui/Alert/Alert.module.css
|
|
74
|
-
var Alert_default = {"alert":"
|
|
74
|
+
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"};
|
|
75
75
|
|
|
76
76
|
// src/components/ui/Alert/Alert.tsx
|
|
77
77
|
import { cn as cn2 } from "@boostdev/design-system-foundation";
|
|
@@ -116,7 +116,7 @@ function Alert({
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
// src/components/ui/Avatar/Avatar.module.css
|
|
119
|
-
var Avatar_default = {"avatar":"
|
|
119
|
+
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"};
|
|
120
120
|
|
|
121
121
|
// src/components/ui/Avatar/Avatar.tsx
|
|
122
122
|
import { cn as cn3 } from "@boostdev/design-system-foundation";
|
|
@@ -143,7 +143,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
// src/components/ui/Badge/Badge.module.css
|
|
146
|
-
var Badge_default = {"badge":"
|
|
146
|
+
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"};
|
|
147
147
|
|
|
148
148
|
// src/components/ui/Badge/Badge.tsx
|
|
149
149
|
import { cn as cn4 } from "@boostdev/design-system-foundation";
|
|
@@ -153,7 +153,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
156
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
156
|
+
var Breadcrumb_default = {"breadcrumb":"bds124Breadcrumb-breadcrumb","list":"bds124Breadcrumb-list","item":"bds124Breadcrumb-item","link":"bds124Breadcrumb-link","separator":"bds124Breadcrumb-separator","current":"bds124Breadcrumb-current"};
|
|
157
157
|
|
|
158
158
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
159
159
|
import { cn as cn5 } from "@boostdev/design-system-foundation";
|
|
@@ -169,7 +169,7 @@ function Breadcrumb({ items, className, ...rest }) {
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
// src/components/ui/Collapsible/Collapsible.module.css
|
|
172
|
-
var Collapsible_default = {"collapsible":"
|
|
172
|
+
var Collapsible_default = {"collapsible":"bds124Collapsible-collapsible","summary":"bds124Collapsible-summary","summaryContent":"bds124Collapsible-summaryContent","icon":"bds124Collapsible-icon","content":"bds124Collapsible-content"};
|
|
173
173
|
|
|
174
174
|
// src/components/ui/Collapsible/Collapsible.tsx
|
|
175
175
|
import { cn as cn6 } from "@boostdev/design-system-foundation";
|
|
@@ -210,7 +210,7 @@ function Collapsible({
|
|
|
210
210
|
import { useState as useState2, useId as useId2 } from "react";
|
|
211
211
|
|
|
212
212
|
// src/components/ui/Calendar/Calendar.module.css
|
|
213
|
-
var Calendar_default = {"calendar":"
|
|
213
|
+
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"};
|
|
214
214
|
|
|
215
215
|
// src/components/ui/Calendar/Calendar.tsx
|
|
216
216
|
import { cn as cn7 } from "@boostdev/design-system-foundation";
|
|
@@ -385,7 +385,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
|
|
|
385
385
|
import { useRef, useId as useId3 } from "react";
|
|
386
386
|
|
|
387
387
|
// src/components/ui/Carousel/Carousel.module.css
|
|
388
|
-
var Carousel_default = {"carousel":"
|
|
388
|
+
var Carousel_default = {"carousel":"bds124Carousel-carousel","track":"bds124Carousel-track","slide":"bds124Carousel-slide","navBtn":"bds124Carousel-navBtn"};
|
|
389
389
|
|
|
390
390
|
// src/components/ui/Carousel/Carousel.tsx
|
|
391
391
|
import { cn as cn8 } from "@boostdev/design-system-foundation";
|
|
@@ -438,7 +438,7 @@ function Carousel({ items, label, className, ...rest }) {
|
|
|
438
438
|
}
|
|
439
439
|
|
|
440
440
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
441
|
-
var DescriptionList_default = {"list":"
|
|
441
|
+
var DescriptionList_default = {"list":"bds124DescriptionList-list","group":"bds124DescriptionList-group","term":"bds124DescriptionList-term","details":"bds124DescriptionList-details","--layout_inline":"bds124DescriptionList---layout_inline"};
|
|
442
442
|
|
|
443
443
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
444
444
|
import { cn as cn9 } from "@boostdev/design-system-foundation";
|
|
@@ -451,7 +451,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
|
|
|
451
451
|
}
|
|
452
452
|
|
|
453
453
|
// src/components/ui/Link/Link.module.css
|
|
454
|
-
var Link_default = {"link":"
|
|
454
|
+
var Link_default = {"link":"bds124Link-link","--variant_default":"bds124Link---variant_default","--variant_subtle":"bds124Link---variant_subtle","--variant_standalone":"bds124Link---variant_standalone","externalLabel":"bds124Link-externalLabel"};
|
|
455
455
|
|
|
456
456
|
// src/components/ui/Link/Link.tsx
|
|
457
457
|
import { cn as cn10 } from "@boostdev/design-system-foundation";
|
|
@@ -482,7 +482,7 @@ function Link({
|
|
|
482
482
|
}
|
|
483
483
|
|
|
484
484
|
// src/components/ui/Loading/Loading.module.css
|
|
485
|
-
var Loading_default = {"loading":"
|
|
485
|
+
var Loading_default = {"loading":"bds124Loading-loading","spinner":"bds124Loading-spinner","--size_small":"bds124Loading---size_small","--size_large":"bds124Loading---size_large"};
|
|
486
486
|
|
|
487
487
|
// src/components/ui/Loading/Loading.tsx
|
|
488
488
|
import { cn as cn11 } from "@boostdev/design-system-foundation";
|
|
@@ -492,7 +492,7 @@ function Loading({ size = "medium", className, ...rest }) {
|
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
495
|
-
var NotificationBanner_default = {"banner":"
|
|
495
|
+
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"};
|
|
496
496
|
|
|
497
497
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
498
498
|
import { cn as cn12 } from "@boostdev/design-system-foundation";
|
|
@@ -533,7 +533,7 @@ function NotificationBanner({
|
|
|
533
533
|
}
|
|
534
534
|
|
|
535
535
|
// src/components/ui/Pagination/Pagination.module.css
|
|
536
|
-
var Pagination_default = {"pagination":"
|
|
536
|
+
var Pagination_default = {"pagination":"bds124Pagination-pagination","list":"bds124Pagination-list","button":"bds124Pagination-button","--active":"bds124Pagination---active","--nav":"bds124Pagination---nav","ellipsis":"bds124Pagination-ellipsis"};
|
|
537
537
|
|
|
538
538
|
// src/components/ui/Pagination/Pagination.tsx
|
|
539
539
|
import { cn as cn13 } from "@boostdev/design-system-foundation";
|
|
@@ -598,7 +598,7 @@ function Pagination({
|
|
|
598
598
|
}
|
|
599
599
|
|
|
600
600
|
// src/components/ui/Progress/Progress.module.css
|
|
601
|
-
var Progress_default = {"container":"
|
|
601
|
+
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"};
|
|
602
602
|
|
|
603
603
|
// src/components/ui/Progress/Progress.tsx
|
|
604
604
|
import { cn as cn14 } from "@boostdev/design-system-foundation";
|
|
@@ -637,7 +637,7 @@ function Progress({
|
|
|
637
637
|
}
|
|
638
638
|
|
|
639
639
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
640
|
-
var ProgressCircle_default = {"wrapper":"
|
|
640
|
+
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"};
|
|
641
641
|
|
|
642
642
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
643
643
|
import { cn as cn15 } from "@boostdev/design-system-foundation";
|
|
@@ -718,7 +718,7 @@ function ProgressCircle({
|
|
|
718
718
|
}
|
|
719
719
|
|
|
720
720
|
// src/components/ui/Separator/Separator.module.css
|
|
721
|
-
var Separator_default = {"separator":"
|
|
721
|
+
var Separator_default = {"separator":"bds124Separator-separator","--horizontal":"bds124Separator---horizontal","--vertical":"bds124Separator---vertical"};
|
|
722
722
|
|
|
723
723
|
// src/components/ui/Separator/Separator.tsx
|
|
724
724
|
import { cn as cn16 } from "@boostdev/design-system-foundation";
|
|
@@ -742,7 +742,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
|
|
|
742
742
|
import { cn as cn17 } from "@boostdev/design-system-foundation";
|
|
743
743
|
|
|
744
744
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
745
|
-
var Skeleton_default = {"skeleton":"
|
|
745
|
+
var Skeleton_default = {"skeleton":"bds124Skeleton-skeleton"};
|
|
746
746
|
|
|
747
747
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
748
748
|
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
@@ -751,7 +751,7 @@ function Skeleton({ className, ...rest }) {
|
|
|
751
751
|
}
|
|
752
752
|
|
|
753
753
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
754
|
-
var SkipLink_default = {"skipLink":"
|
|
754
|
+
var SkipLink_default = {"skipLink":"bds124SkipLink-skipLink"};
|
|
755
755
|
|
|
756
756
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
757
757
|
import { cn as cn18 } from "@boostdev/design-system-foundation";
|
|
@@ -761,7 +761,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
|
|
|
761
761
|
}
|
|
762
762
|
|
|
763
763
|
// src/components/ui/Table/Table.module.css
|
|
764
|
-
var Table_default = {"wrapper":"
|
|
764
|
+
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"};
|
|
765
765
|
|
|
766
766
|
// src/components/ui/Table/Table.tsx
|
|
767
767
|
import { cn as cn19 } from "@boostdev/design-system-foundation";
|
|
@@ -831,7 +831,7 @@ function Table({
|
|
|
831
831
|
import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
|
|
832
832
|
|
|
833
833
|
// src/components/ui/Tabs/Tabs.module.css
|
|
834
|
-
var Tabs_default = {"tabs":"
|
|
834
|
+
var Tabs_default = {"tabs":"bds124Tabs-tabs","tabList":"bds124Tabs-tabList","tab":"bds124Tabs-tab","--active":"bds124Tabs---active","panel":"bds124Tabs-panel"};
|
|
835
835
|
|
|
836
836
|
// src/components/ui/Tabs/Tabs.tsx
|
|
837
837
|
import { cn as cn20 } from "@boostdev/design-system-foundation";
|
|
@@ -911,7 +911,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
|
|
|
911
911
|
import { cloneElement, isValidElement, useId as useId5, useState as useState4 } from "react";
|
|
912
912
|
|
|
913
913
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
914
|
-
var Tooltip_default = {"wrapper":"
|
|
914
|
+
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"};
|
|
915
915
|
|
|
916
916
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
917
917
|
import { cn as cn21 } from "@boostdev/design-system-foundation";
|
|
@@ -955,7 +955,7 @@ function Tooltip({
|
|
|
955
955
|
}
|
|
956
956
|
|
|
957
957
|
// src/components/ui/Typography/Typography.module.css
|
|
958
|
-
var Typography_default = {"typography":"
|
|
958
|
+
var Typography_default = {"typography":"bds124Typography-typography","--h1":"bds124Typography---h1","--h2":"bds124Typography---h2","--h3":"bds124Typography---h3","--body":"bds124Typography---body","--body_s":"bds124Typography---body_s"};
|
|
959
959
|
|
|
960
960
|
// src/components/ui/Typography/Typography.tsx
|
|
961
961
|
import { cn as cn22 } from "@boostdev/design-system-foundation";
|
|
@@ -973,7 +973,7 @@ function Typography({ variant = "body", component, children, className, ...rest
|
|
|
973
973
|
}
|
|
974
974
|
|
|
975
975
|
// src/components/interaction/Button/Button.module.css
|
|
976
|
-
var Button_default = {"button":"
|
|
976
|
+
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"};
|
|
977
977
|
|
|
978
978
|
// src/components/interaction/Button/Button.tsx
|
|
979
979
|
import { cn as cn23 } from "@boostdev/design-system-foundation";
|
|
@@ -1088,7 +1088,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1088
1088
|
}
|
|
1089
1089
|
|
|
1090
1090
|
// src/components/interaction/Command/Command.module.css
|
|
1091
|
-
var Command_default = {"dialog":"
|
|
1091
|
+
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"};
|
|
1092
1092
|
|
|
1093
1093
|
// src/components/interaction/Command/Command.tsx
|
|
1094
1094
|
import { cn as cn24 } from "@boostdev/design-system-foundation";
|
|
@@ -1265,7 +1265,7 @@ function Command({
|
|
|
1265
1265
|
import { useEffect as useEffect2, useId as useId7, useRef as useRef4 } from "react";
|
|
1266
1266
|
|
|
1267
1267
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1268
|
-
var Dialog_default = {"dialog":"
|
|
1268
|
+
var Dialog_default = {"dialog":"bds124Dialog-dialog","dialogContent":"bds124Dialog-dialogContent","closeButton":"bds124Dialog-closeButton"};
|
|
1269
1269
|
|
|
1270
1270
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1271
1271
|
import { cn as cn25 } from "@boostdev/design-system-foundation";
|
|
@@ -1371,7 +1371,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1371
1371
|
import { useEffect as useEffect3, useId as useId8, useRef as useRef5 } from "react";
|
|
1372
1372
|
|
|
1373
1373
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1374
|
-
var Drawer_default = {"drawer":"
|
|
1374
|
+
var Drawer_default = {"drawer":"bds124Drawer-drawer","--side_left":"bds124Drawer---side_left","header":"bds124Drawer-header","closeButton":"bds124Drawer-closeButton","body":"bds124Drawer-body"};
|
|
1375
1375
|
|
|
1376
1376
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1377
1377
|
import { cn as cn26 } from "@boostdev/design-system-foundation";
|
|
@@ -1479,7 +1479,7 @@ import {
|
|
|
1479
1479
|
} from "react";
|
|
1480
1480
|
|
|
1481
1481
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1482
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1482
|
+
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"};
|
|
1483
1483
|
|
|
1484
1484
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1485
1485
|
import { cn as cn27 } from "@boostdev/design-system-foundation";
|
|
@@ -1600,7 +1600,7 @@ import {
|
|
|
1600
1600
|
} from "react";
|
|
1601
1601
|
|
|
1602
1602
|
// src/components/interaction/Popover/Popover.module.css
|
|
1603
|
-
var Popover_default = {"wrapper":"
|
|
1603
|
+
var Popover_default = {"wrapper":"bds124Popover-wrapper","panel":"bds124Popover-panel","g":"bds124Popover-g"};
|
|
1604
1604
|
|
|
1605
1605
|
// src/components/interaction/Popover/Popover.tsx
|
|
1606
1606
|
import { cn as cn28 } from "@boostdev/design-system-foundation";
|
|
@@ -1685,7 +1685,7 @@ function Popover({
|
|
|
1685
1685
|
}
|
|
1686
1686
|
|
|
1687
1687
|
// src/components/interaction/Rating/Rating.module.css
|
|
1688
|
-
var Rating_default = {"rating":"
|
|
1688
|
+
var Rating_default = {"rating":"bds124Rating-rating","star":"bds124Rating-star","--filled":"bds124Rating---filled"};
|
|
1689
1689
|
|
|
1690
1690
|
// src/components/interaction/Rating/Rating.tsx
|
|
1691
1691
|
import { cn as cn29 } from "@boostdev/design-system-foundation";
|
|
@@ -1717,7 +1717,7 @@ function Rating({ value, max = 5, className, ...rest }) {
|
|
|
1717
1717
|
import { useState as useState8, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2, useRef as useRef8 } from "react";
|
|
1718
1718
|
|
|
1719
1719
|
// src/components/interaction/Toast/Toast.module.css
|
|
1720
|
-
var Toast_default = {"toastContainer":"
|
|
1720
|
+
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"};
|
|
1721
1721
|
|
|
1722
1722
|
// src/components/interaction/Toast/Toast.tsx
|
|
1723
1723
|
import { cn as cn30 } from "@boostdev/design-system-foundation";
|
|
@@ -1790,10 +1790,10 @@ function useToast() {
|
|
|
1790
1790
|
import { useId as useId11 } from "react";
|
|
1791
1791
|
|
|
1792
1792
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1793
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1793
|
+
var Checkbox_default = {"checkboxGroup":"bds124Checkbox-checkboxGroup","inputWrapper":"bds124Checkbox-inputWrapper","checkbox":"bds124Checkbox-checkbox","checkboxError":"bds124Checkbox-checkboxError"};
|
|
1794
1794
|
|
|
1795
1795
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1796
|
-
var Message_default = {"error":"
|
|
1796
|
+
var Message_default = {"error":"bds124Message-error","hint":"bds124Message-hint"};
|
|
1797
1797
|
|
|
1798
1798
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1799
1799
|
import { cn as cn31 } from "@boostdev/design-system-foundation";
|
|
@@ -1804,7 +1804,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1804
1804
|
};
|
|
1805
1805
|
|
|
1806
1806
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1807
|
-
var Label_default = {"label":"
|
|
1807
|
+
var Label_default = {"label":"bds124Label-label"};
|
|
1808
1808
|
|
|
1809
1809
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1810
1810
|
import { cn as cn32 } from "@boostdev/design-system-foundation";
|
|
@@ -1817,7 +1817,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1817
1817
|
import { cn as cn34 } from "@boostdev/design-system-foundation";
|
|
1818
1818
|
|
|
1819
1819
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1820
|
-
var InputContainer_default = {"container":"
|
|
1820
|
+
var InputContainer_default = {"container":"bds124InputContainer-container"};
|
|
1821
1821
|
|
|
1822
1822
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1823
1823
|
import { cn as cn33 } from "@boostdev/design-system-foundation";
|
|
@@ -1858,7 +1858,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1858
1858
|
import { useId as useId12 } from "react";
|
|
1859
1859
|
|
|
1860
1860
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1861
|
-
var CheckboxGroup_default = {"group":"
|
|
1861
|
+
var CheckboxGroup_default = {"group":"bds124CheckboxGroup-group","legend":"bds124CheckboxGroup-legend","required":"bds124CheckboxGroup-required","items":"bds124CheckboxGroup-items"};
|
|
1862
1862
|
|
|
1863
1863
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1864
1864
|
import { cn as cn35 } from "@boostdev/design-system-foundation";
|
|
@@ -1906,7 +1906,7 @@ import {
|
|
|
1906
1906
|
} from "react";
|
|
1907
1907
|
|
|
1908
1908
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1909
|
-
var Combobox_default = {"formGroup":"
|
|
1909
|
+
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"};
|
|
1910
1910
|
|
|
1911
1911
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1912
1912
|
import { cn as cn36 } from "@boostdev/design-system-foundation";
|
|
@@ -2057,7 +2057,7 @@ function Combobox({
|
|
|
2057
2057
|
import { useId as useId14, useRef as useRef10, useState as useState10 } from "react";
|
|
2058
2058
|
|
|
2059
2059
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2060
|
-
var FileInput_default = {"formGroup":"
|
|
2060
|
+
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"};
|
|
2061
2061
|
|
|
2062
2062
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2063
2063
|
import { cn as cn37 } from "@boostdev/design-system-foundation";
|
|
@@ -2158,7 +2158,7 @@ function FileInput({
|
|
|
2158
2158
|
import { useId as useId15 } from "react";
|
|
2159
2159
|
|
|
2160
2160
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2161
|
-
var FormInput_default = {"formGroup":"
|
|
2161
|
+
var FormInput_default = {"formGroup":"bds124FormInput-formGroup","input":"bds124FormInput-input","inputError":"bds124FormInput-inputError"};
|
|
2162
2162
|
|
|
2163
2163
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2164
2164
|
import { cn as cn38 } from "@boostdev/design-system-foundation";
|
|
@@ -2202,7 +2202,7 @@ function FormInput({
|
|
|
2202
2202
|
import { useId as useId16, useRef as useRef11, useState as useState11 } from "react";
|
|
2203
2203
|
|
|
2204
2204
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2205
|
-
var NumberInput_default = {"formGroup":"
|
|
2205
|
+
var NumberInput_default = {"formGroup":"bds124NumberInput-formGroup","inputRow":"bds124NumberInput-inputRow","input":"bds124NumberInput-input","inputError":"bds124NumberInput-inputError","stepper":"bds124NumberInput-stepper"};
|
|
2206
2206
|
|
|
2207
2207
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2208
2208
|
import { cn as cn39 } from "@boostdev/design-system-foundation";
|
|
@@ -2307,7 +2307,7 @@ function NumberInput({
|
|
|
2307
2307
|
import { useId as useId17 } from "react";
|
|
2308
2308
|
|
|
2309
2309
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2310
|
-
var Radio_default = {"radioGroup":"
|
|
2310
|
+
var Radio_default = {"radioGroup":"bds124Radio-radioGroup","inputWrapper":"bds124Radio-inputWrapper","textWrapper":"bds124Radio-textWrapper","description":"bds124Radio-description","radio":"bds124Radio-radio","radioError":"bds124Radio-radioError"};
|
|
2311
2311
|
|
|
2312
2312
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2313
2313
|
import { cn as cn40 } from "@boostdev/design-system-foundation";
|
|
@@ -2345,7 +2345,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2345
2345
|
import { useId as useId18 } from "react";
|
|
2346
2346
|
|
|
2347
2347
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2348
|
-
var RadioGroup_default = {"group":"
|
|
2348
|
+
var RadioGroup_default = {"group":"bds124RadioGroup-group","legend":"bds124RadioGroup-legend","required":"bds124RadioGroup-required","items":"bds124RadioGroup-items"};
|
|
2349
2349
|
|
|
2350
2350
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2351
2351
|
import { cn as cn41 } from "@boostdev/design-system-foundation";
|
|
@@ -2387,7 +2387,7 @@ function RadioGroup({
|
|
|
2387
2387
|
import { Children, cloneElement as cloneElement4, isValidElement as isValidElement4 } from "react";
|
|
2388
2388
|
|
|
2389
2389
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2390
|
-
var SegmentedControl_default = {"control":"
|
|
2390
|
+
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"};
|
|
2391
2391
|
|
|
2392
2392
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2393
2393
|
import { cn as cn42 } from "@boostdev/design-system-foundation";
|
|
@@ -2443,7 +2443,7 @@ function SegmentedControl({
|
|
|
2443
2443
|
import { useId as useId19 } from "react";
|
|
2444
2444
|
|
|
2445
2445
|
// src/components/interaction/form/Select/Select.module.css
|
|
2446
|
-
var Select_default = {"formGroup":"
|
|
2446
|
+
var Select_default = {"formGroup":"bds124Select-formGroup","selectWrapper":"bds124Select-selectWrapper","select":"bds124Select-select","selectError":"bds124Select-selectError","chevron":"bds124Select-chevron"};
|
|
2447
2447
|
|
|
2448
2448
|
// src/components/interaction/form/Select/Select.tsx
|
|
2449
2449
|
import { cn as cn43 } from "@boostdev/design-system-foundation";
|
|
@@ -2494,7 +2494,7 @@ function Select({
|
|
|
2494
2494
|
import { useId as useId20, useState as useState12 } from "react";
|
|
2495
2495
|
|
|
2496
2496
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2497
|
-
var Slider_default = {"formGroup":"
|
|
2497
|
+
var Slider_default = {"formGroup":"bds124Slider-formGroup","labelRow":"bds124Slider-labelRow","value":"bds124Slider-value","slider":"bds124Slider-slider","sliderError":"bds124Slider-sliderError"};
|
|
2498
2498
|
|
|
2499
2499
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2500
2500
|
import { cn as cn44 } from "@boostdev/design-system-foundation";
|
|
@@ -2556,7 +2556,7 @@ function Slider({
|
|
|
2556
2556
|
import { useId as useId21 } from "react";
|
|
2557
2557
|
|
|
2558
2558
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2559
|
-
var Switch_default = {"switchGroup":"
|
|
2559
|
+
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"};
|
|
2560
2560
|
|
|
2561
2561
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2562
2562
|
import { cn as cn45 } from "@boostdev/design-system-foundation";
|
|
@@ -2604,7 +2604,7 @@ function Switch({
|
|
|
2604
2604
|
import { useId as useId22 } from "react";
|
|
2605
2605
|
|
|
2606
2606
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2607
|
-
var Textarea_default = {"formGroup":"
|
|
2607
|
+
var Textarea_default = {"formGroup":"bds124Textarea-formGroup","textarea":"bds124Textarea-textarea","textareaError":"bds124Textarea-textareaError"};
|
|
2608
2608
|
|
|
2609
2609
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2610
2610
|
import { cn as cn46 } from "@boostdev/design-system-foundation";
|
|
@@ -2643,7 +2643,7 @@ function Textarea({
|
|
|
2643
2643
|
}
|
|
2644
2644
|
|
|
2645
2645
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2646
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2646
|
+
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"};
|
|
2647
2647
|
|
|
2648
2648
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2649
2649
|
import { cn as cn47 } from "@boostdev/design-system-foundation";
|
|
@@ -2661,7 +2661,7 @@ function ButtonGroup({ children, className, variant, ...rest }) {
|
|
|
2661
2661
|
}
|
|
2662
2662
|
|
|
2663
2663
|
// src/components/layout/Card/Card.module.css
|
|
2664
|
-
var Card_default = {"card":"
|
|
2664
|
+
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"};
|
|
2665
2665
|
|
|
2666
2666
|
// src/components/layout/Card/Card.tsx
|
|
2667
2667
|
import { cn as cn48 } from "@boostdev/design-system-foundation";
|
|
@@ -2697,7 +2697,7 @@ function Card({
|
|
|
2697
2697
|
}
|
|
2698
2698
|
|
|
2699
2699
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2700
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2700
|
+
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"};
|
|
2701
2701
|
|
|
2702
2702
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2703
2703
|
import { cn as cn49 } from "@boostdev/design-system-foundation";
|
|
@@ -2719,7 +2719,7 @@ function SectionHeader({
|
|
|
2719
2719
|
}
|
|
2720
2720
|
|
|
2721
2721
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2722
|
-
var IconWrapper_default = {"wrapper":"
|
|
2722
|
+
var IconWrapper_default = {"wrapper":"bds124IconWrapper-wrapper"};
|
|
2723
2723
|
|
|
2724
2724
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2725
2725
|
import { cn as cn50 } from "@boostdev/design-system-foundation";
|