@boostdev/design-system-components 1.2.3 → 1.2.5
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 +19 -11
- package/README.md +36 -1
- package/dist/client.cjs +50 -50
- package/dist/client.css +470 -470
- package/dist/client.js +50 -50
- package/dist/index.cjs +50 -50
- package/dist/index.css +470 -470
- 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/dist/utils.cjs +30 -0
- package/dist/utils.d.cts +8 -0
- package/dist/utils.d.ts +8 -0
- package/dist/utils.js +5 -0
- package/package.json +10 -4
- package/src/client.ts +6 -0
- 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.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.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.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/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.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.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.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.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.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.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.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.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.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.native.stories.tsx +6 -8
- package/src/components/ui/Avatar/Avatar.native.tsx +2 -2
- 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.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.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.native.stories.tsx +6 -8
- 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.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.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.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/utils.ts +6 -0
- 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.cjs
CHANGED
|
@@ -86,7 +86,7 @@ module.exports = __toCommonJS(index_exports);
|
|
|
86
86
|
var import_react = require("react");
|
|
87
87
|
|
|
88
88
|
// src/components/ui/Accordion/Accordion.module.css
|
|
89
|
-
var Accordion_default = {"accordion":"
|
|
89
|
+
var Accordion_default = {"accordion":"bds125Accordion-accordion","item":"bds125Accordion-item","heading":"bds125Accordion-heading","trigger":"bds125Accordion-trigger","triggerLabel":"bds125Accordion-triggerLabel","chevron":"bds125Accordion-chevron","--open":"bds125Accordion---open","panel":"bds125Accordion-panel","panelContent":"bds125Accordion-panelContent"};
|
|
90
90
|
|
|
91
91
|
// src/components/ui/Accordion/Accordion.tsx
|
|
92
92
|
var import_design_system_foundation = require("@boostdev/design-system-foundation");
|
|
@@ -155,7 +155,7 @@ function Accordion({
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
// src/components/ui/Alert/Alert.module.css
|
|
158
|
-
var Alert_default = {"alert":"
|
|
158
|
+
var Alert_default = {"alert":"bds125Alert-alert","--variant_info":"bds125Alert---variant_info","--variant_success":"bds125Alert---variant_success","--variant_warning":"bds125Alert---variant_warning","--variant_error":"bds125Alert---variant_error","icon":"bds125Alert-icon","content":"bds125Alert-content","title":"bds125Alert-title","dismiss":"bds125Alert-dismiss"};
|
|
159
159
|
|
|
160
160
|
// src/components/ui/Alert/Alert.tsx
|
|
161
161
|
var import_design_system_foundation2 = require("@boostdev/design-system-foundation");
|
|
@@ -200,7 +200,7 @@ function Alert({
|
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
// src/components/ui/Avatar/Avatar.module.css
|
|
203
|
-
var Avatar_default = {"avatar":"
|
|
203
|
+
var Avatar_default = {"avatar":"bds125Avatar-avatar","--fallback":"bds125Avatar---fallback","--size_small":"bds125Avatar---size_small","--size_medium":"bds125Avatar---size_medium","--size_large":"bds125Avatar---size_large","image":"bds125Avatar-image","initials":"bds125Avatar-initials"};
|
|
204
204
|
|
|
205
205
|
// src/components/ui/Avatar/Avatar.tsx
|
|
206
206
|
var import_design_system_foundation3 = require("@boostdev/design-system-foundation");
|
|
@@ -227,7 +227,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
// src/components/ui/Badge/Badge.module.css
|
|
230
|
-
var Badge_default = {"badge":"
|
|
230
|
+
var Badge_default = {"badge":"bds125Badge-badge","--variant_primary":"bds125Badge---variant_primary","--variant_secondary":"bds125Badge---variant_secondary","--variant_success":"bds125Badge---variant_success","--variant_error":"bds125Badge---variant_error","--variant_warning":"bds125Badge---variant_warning"};
|
|
231
231
|
|
|
232
232
|
// src/components/ui/Badge/Badge.tsx
|
|
233
233
|
var import_design_system_foundation4 = require("@boostdev/design-system-foundation");
|
|
@@ -237,7 +237,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
|
|
|
237
237
|
}
|
|
238
238
|
|
|
239
239
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
240
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
240
|
+
var Breadcrumb_default = {"breadcrumb":"bds125Breadcrumb-breadcrumb","list":"bds125Breadcrumb-list","item":"bds125Breadcrumb-item","link":"bds125Breadcrumb-link","separator":"bds125Breadcrumb-separator","current":"bds125Breadcrumb-current"};
|
|
241
241
|
|
|
242
242
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
243
243
|
var import_design_system_foundation5 = require("@boostdev/design-system-foundation");
|
|
@@ -253,7 +253,7 @@ function Breadcrumb({ items, className, ...rest }) {
|
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
// src/components/ui/Collapsible/Collapsible.module.css
|
|
256
|
-
var Collapsible_default = {"collapsible":"
|
|
256
|
+
var Collapsible_default = {"collapsible":"bds125Collapsible-collapsible","summary":"bds125Collapsible-summary","summaryContent":"bds125Collapsible-summaryContent","icon":"bds125Collapsible-icon","content":"bds125Collapsible-content"};
|
|
257
257
|
|
|
258
258
|
// src/components/ui/Collapsible/Collapsible.tsx
|
|
259
259
|
var import_design_system_foundation6 = require("@boostdev/design-system-foundation");
|
|
@@ -294,7 +294,7 @@ function Collapsible({
|
|
|
294
294
|
var import_react2 = require("react");
|
|
295
295
|
|
|
296
296
|
// src/components/ui/Calendar/Calendar.module.css
|
|
297
|
-
var Calendar_default = {"calendar":"
|
|
297
|
+
var Calendar_default = {"calendar":"bds125Calendar-calendar","header":"bds125Calendar-header","monthYear":"bds125Calendar-monthYear","navBtn":"bds125Calendar-navBtn","grid":"bds125Calendar-grid","weekday":"bds125Calendar-weekday","empty":"bds125Calendar-empty","day":"bds125Calendar-day","disabled":"bds125Calendar-disabled","selected":"bds125Calendar-selected","today":"bds125Calendar-today"};
|
|
298
298
|
|
|
299
299
|
// src/components/ui/Calendar/Calendar.tsx
|
|
300
300
|
var import_design_system_foundation7 = require("@boostdev/design-system-foundation");
|
|
@@ -469,7 +469,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
|
|
|
469
469
|
var import_react3 = require("react");
|
|
470
470
|
|
|
471
471
|
// src/components/ui/Carousel/Carousel.module.css
|
|
472
|
-
var Carousel_default = {"carousel":"
|
|
472
|
+
var Carousel_default = {"carousel":"bds125Carousel-carousel","track":"bds125Carousel-track","slide":"bds125Carousel-slide","navBtn":"bds125Carousel-navBtn"};
|
|
473
473
|
|
|
474
474
|
// src/components/ui/Carousel/Carousel.tsx
|
|
475
475
|
var import_design_system_foundation8 = require("@boostdev/design-system-foundation");
|
|
@@ -522,7 +522,7 @@ function Carousel({ items, label, className, ...rest }) {
|
|
|
522
522
|
}
|
|
523
523
|
|
|
524
524
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
525
|
-
var DescriptionList_default = {"list":"
|
|
525
|
+
var DescriptionList_default = {"list":"bds125DescriptionList-list","group":"bds125DescriptionList-group","term":"bds125DescriptionList-term","details":"bds125DescriptionList-details","--layout_inline":"bds125DescriptionList---layout_inline"};
|
|
526
526
|
|
|
527
527
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
528
528
|
var import_design_system_foundation9 = require("@boostdev/design-system-foundation");
|
|
@@ -535,7 +535,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
|
|
|
535
535
|
}
|
|
536
536
|
|
|
537
537
|
// src/components/ui/Link/Link.module.css
|
|
538
|
-
var Link_default = {"link":"
|
|
538
|
+
var Link_default = {"link":"bds125Link-link","--variant_default":"bds125Link---variant_default","--variant_subtle":"bds125Link---variant_subtle","--variant_standalone":"bds125Link---variant_standalone","externalLabel":"bds125Link-externalLabel"};
|
|
539
539
|
|
|
540
540
|
// src/components/ui/Link/Link.tsx
|
|
541
541
|
var import_design_system_foundation10 = require("@boostdev/design-system-foundation");
|
|
@@ -566,7 +566,7 @@ function Link({
|
|
|
566
566
|
}
|
|
567
567
|
|
|
568
568
|
// src/components/ui/Loading/Loading.module.css
|
|
569
|
-
var Loading_default = {"loading":"
|
|
569
|
+
var Loading_default = {"loading":"bds125Loading-loading","spinner":"bds125Loading-spinner","--size_small":"bds125Loading---size_small","--size_large":"bds125Loading---size_large"};
|
|
570
570
|
|
|
571
571
|
// src/components/ui/Loading/Loading.tsx
|
|
572
572
|
var import_design_system_foundation11 = require("@boostdev/design-system-foundation");
|
|
@@ -576,7 +576,7 @@ function Loading({ size = "medium", className, ...rest }) {
|
|
|
576
576
|
}
|
|
577
577
|
|
|
578
578
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
579
|
-
var NotificationBanner_default = {"banner":"
|
|
579
|
+
var NotificationBanner_default = {"banner":"bds125NotificationBanner-banner","--variant_info":"bds125NotificationBanner---variant_info","--variant_success":"bds125NotificationBanner---variant_success","--variant_warning":"bds125NotificationBanner---variant_warning","--variant_error":"bds125NotificationBanner---variant_error","content":"bds125NotificationBanner-content","action":"bds125NotificationBanner-action","dismiss":"bds125NotificationBanner-dismiss"};
|
|
580
580
|
|
|
581
581
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
582
582
|
var import_design_system_foundation12 = require("@boostdev/design-system-foundation");
|
|
@@ -617,7 +617,7 @@ function NotificationBanner({
|
|
|
617
617
|
}
|
|
618
618
|
|
|
619
619
|
// src/components/ui/Pagination/Pagination.module.css
|
|
620
|
-
var Pagination_default = {"pagination":"
|
|
620
|
+
var Pagination_default = {"pagination":"bds125Pagination-pagination","list":"bds125Pagination-list","button":"bds125Pagination-button","--active":"bds125Pagination---active","--nav":"bds125Pagination---nav","ellipsis":"bds125Pagination-ellipsis"};
|
|
621
621
|
|
|
622
622
|
// src/components/ui/Pagination/Pagination.tsx
|
|
623
623
|
var import_design_system_foundation13 = require("@boostdev/design-system-foundation");
|
|
@@ -682,7 +682,7 @@ function Pagination({
|
|
|
682
682
|
}
|
|
683
683
|
|
|
684
684
|
// src/components/ui/Progress/Progress.module.css
|
|
685
|
-
var Progress_default = {"container":"
|
|
685
|
+
var Progress_default = {"container":"bds125Progress-container","labelRow":"bds125Progress-labelRow","value":"bds125Progress-value","track":"bds125Progress-track","--size_small":"bds125Progress---size_small","--size_medium":"bds125Progress---size_medium","--size_large":"bds125Progress---size_large","fill":"bds125Progress-fill"};
|
|
686
686
|
|
|
687
687
|
// src/components/ui/Progress/Progress.tsx
|
|
688
688
|
var import_design_system_foundation14 = require("@boostdev/design-system-foundation");
|
|
@@ -721,7 +721,7 @@ function Progress({
|
|
|
721
721
|
}
|
|
722
722
|
|
|
723
723
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
724
|
-
var ProgressCircle_default = {"wrapper":"
|
|
724
|
+
var ProgressCircle_default = {"wrapper":"bds125ProgressCircle-wrapper","svg":"bds125ProgressCircle-svg","track":"bds125ProgressCircle-track","fill":"bds125ProgressCircle-fill","value":"bds125ProgressCircle-value","--size_small":"bds125ProgressCircle---size_small","--size_medium":"bds125ProgressCircle---size_medium","--size_large":"bds125ProgressCircle---size_large"};
|
|
725
725
|
|
|
726
726
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
727
727
|
var import_design_system_foundation15 = require("@boostdev/design-system-foundation");
|
|
@@ -802,7 +802,7 @@ function ProgressCircle({
|
|
|
802
802
|
}
|
|
803
803
|
|
|
804
804
|
// src/components/ui/Separator/Separator.module.css
|
|
805
|
-
var Separator_default = {"separator":"
|
|
805
|
+
var Separator_default = {"separator":"bds125Separator-separator","--horizontal":"bds125Separator---horizontal","--vertical":"bds125Separator---vertical"};
|
|
806
806
|
|
|
807
807
|
// src/components/ui/Separator/Separator.tsx
|
|
808
808
|
var import_design_system_foundation16 = require("@boostdev/design-system-foundation");
|
|
@@ -826,7 +826,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
|
|
|
826
826
|
var import_design_system_foundation17 = require("@boostdev/design-system-foundation");
|
|
827
827
|
|
|
828
828
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
829
|
-
var Skeleton_default = {"skeleton":"
|
|
829
|
+
var Skeleton_default = {"skeleton":"bds125Skeleton-skeleton"};
|
|
830
830
|
|
|
831
831
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
832
832
|
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
@@ -835,7 +835,7 @@ function Skeleton({ className, ...rest }) {
|
|
|
835
835
|
}
|
|
836
836
|
|
|
837
837
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
838
|
-
var SkipLink_default = {"skipLink":"
|
|
838
|
+
var SkipLink_default = {"skipLink":"bds125SkipLink-skipLink"};
|
|
839
839
|
|
|
840
840
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
841
841
|
var import_design_system_foundation18 = require("@boostdev/design-system-foundation");
|
|
@@ -845,7 +845,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
|
|
|
845
845
|
}
|
|
846
846
|
|
|
847
847
|
// src/components/ui/Table/Table.module.css
|
|
848
|
-
var Table_default = {"wrapper":"
|
|
848
|
+
var Table_default = {"wrapper":"bds125Table-wrapper","table":"bds125Table-table","caption":"bds125Table-caption","thead":"bds125Table-thead","th":"bds125Table-th","--sortable":"bds125Table---sortable","sortButton":"bds125Table-sortButton","sortIcon":"bds125Table-sortIcon","--sort-active":"bds125Table---sort-active","--sort-desc":"bds125Table---sort-desc","tbody":"bds125Table-tbody","tr":"bds125Table-tr","td":"bds125Table-td"};
|
|
849
849
|
|
|
850
850
|
// src/components/ui/Table/Table.tsx
|
|
851
851
|
var import_design_system_foundation19 = require("@boostdev/design-system-foundation");
|
|
@@ -915,7 +915,7 @@ function Table({
|
|
|
915
915
|
var import_react4 = require("react");
|
|
916
916
|
|
|
917
917
|
// src/components/ui/Tabs/Tabs.module.css
|
|
918
|
-
var Tabs_default = {"tabs":"
|
|
918
|
+
var Tabs_default = {"tabs":"bds125Tabs-tabs","tabList":"bds125Tabs-tabList","tab":"bds125Tabs-tab","--active":"bds125Tabs---active","panel":"bds125Tabs-panel"};
|
|
919
919
|
|
|
920
920
|
// src/components/ui/Tabs/Tabs.tsx
|
|
921
921
|
var import_design_system_foundation20 = require("@boostdev/design-system-foundation");
|
|
@@ -995,7 +995,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
|
|
|
995
995
|
var import_react5 = require("react");
|
|
996
996
|
|
|
997
997
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
998
|
-
var Tooltip_default = {"wrapper":"
|
|
998
|
+
var Tooltip_default = {"wrapper":"bds125Tooltip-wrapper","tooltip":"bds125Tooltip-tooltip","--placement_top":"bds125Tooltip---placement_top","--placement_bottom":"bds125Tooltip---placement_bottom","--placement_left":"bds125Tooltip---placement_left","--placement_right":"bds125Tooltip---placement_right"};
|
|
999
999
|
|
|
1000
1000
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
1001
1001
|
var import_design_system_foundation21 = require("@boostdev/design-system-foundation");
|
|
@@ -1039,7 +1039,7 @@ function Tooltip({
|
|
|
1039
1039
|
}
|
|
1040
1040
|
|
|
1041
1041
|
// src/components/ui/Typography/Typography.module.css
|
|
1042
|
-
var Typography_default = {"typography":"
|
|
1042
|
+
var Typography_default = {"typography":"bds125Typography-typography","--h1":"bds125Typography---h1","--h2":"bds125Typography---h2","--h3":"bds125Typography---h3","--body":"bds125Typography---body","--body_s":"bds125Typography---body_s"};
|
|
1043
1043
|
|
|
1044
1044
|
// src/components/ui/Typography/Typography.tsx
|
|
1045
1045
|
var import_design_system_foundation22 = require("@boostdev/design-system-foundation");
|
|
@@ -1057,7 +1057,7 @@ function Typography({ variant = "body", component, children, className, ...rest
|
|
|
1057
1057
|
}
|
|
1058
1058
|
|
|
1059
1059
|
// src/components/interaction/Button/Button.module.css
|
|
1060
|
-
var Button_default = {"button":"
|
|
1060
|
+
var Button_default = {"button":"bds125Button-button","--default":"bds125Button---default","--outline":"bds125Button---outline","--ghost":"bds125Button---ghost","--size_small":"bds125Button---size_small","--size_medium":"bds125Button---size_medium","--size_large":"bds125Button---size_large","--hasPulse":"bds125Button---hasPulse","iconStart":"bds125Button-iconStart","iconEnd":"bds125Button-iconEnd"};
|
|
1061
1061
|
|
|
1062
1062
|
// src/components/interaction/Button/Button.tsx
|
|
1063
1063
|
var import_design_system_foundation23 = require("@boostdev/design-system-foundation");
|
|
@@ -1172,7 +1172,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1172
1172
|
}
|
|
1173
1173
|
|
|
1174
1174
|
// src/components/interaction/Command/Command.module.css
|
|
1175
|
-
var Command_default = {"dialog":"
|
|
1175
|
+
var Command_default = {"dialog":"bds125Command-dialog","palette":"bds125Command-palette","searchRow":"bds125Command-searchRow","searchIcon":"bds125Command-searchIcon","search":"bds125Command-search","escHint":"bds125Command-escHint","list":"bds125Command-list","groupList":"bds125Command-groupList","group":"bds125Command-group","item":"bds125Command-item","itemActive":"bds125Command-itemActive","itemLabel":"bds125Command-itemLabel","itemDesc":"bds125Command-itemDesc","shortcut":"bds125Command-shortcut","empty":"bds125Command-empty"};
|
|
1176
1176
|
|
|
1177
1177
|
// src/components/interaction/Command/Command.tsx
|
|
1178
1178
|
var import_design_system_foundation24 = require("@boostdev/design-system-foundation");
|
|
@@ -1349,7 +1349,7 @@ function Command({
|
|
|
1349
1349
|
var import_react7 = require("react");
|
|
1350
1350
|
|
|
1351
1351
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1352
|
-
var Dialog_default = {"dialog":"
|
|
1352
|
+
var Dialog_default = {"dialog":"bds125Dialog-dialog","dialogContent":"bds125Dialog-dialogContent","closeButton":"bds125Dialog-closeButton"};
|
|
1353
1353
|
|
|
1354
1354
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1355
1355
|
var import_design_system_foundation25 = require("@boostdev/design-system-foundation");
|
|
@@ -1455,7 +1455,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1455
1455
|
var import_react8 = require("react");
|
|
1456
1456
|
|
|
1457
1457
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1458
|
-
var Drawer_default = {"drawer":"
|
|
1458
|
+
var Drawer_default = {"drawer":"bds125Drawer-drawer","--side_left":"bds125Drawer---side_left","header":"bds125Drawer-header","closeButton":"bds125Drawer-closeButton","body":"bds125Drawer-body"};
|
|
1459
1459
|
|
|
1460
1460
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1461
1461
|
var import_design_system_foundation26 = require("@boostdev/design-system-foundation");
|
|
@@ -1556,7 +1556,7 @@ function Drawer({
|
|
|
1556
1556
|
var import_react9 = require("react");
|
|
1557
1557
|
|
|
1558
1558
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1559
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1559
|
+
var DropdownMenu_default = {"wrapper":"bds125DropdownMenu-wrapper","menu":"bds125DropdownMenu-menu","--placement_bottom-start":"bds125DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds125DropdownMenu---placement_bottom-end","separator":"bds125DropdownMenu-separator","item":"bds125DropdownMenu-item","icon":"bds125DropdownMenu-icon"};
|
|
1560
1560
|
|
|
1561
1561
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1562
1562
|
var import_design_system_foundation27 = require("@boostdev/design-system-foundation");
|
|
@@ -1670,7 +1670,7 @@ function DropdownMenu({
|
|
|
1670
1670
|
var import_react10 = require("react");
|
|
1671
1671
|
|
|
1672
1672
|
// src/components/interaction/Popover/Popover.module.css
|
|
1673
|
-
var Popover_default = {"wrapper":"
|
|
1673
|
+
var Popover_default = {"wrapper":"bds125Popover-wrapper","panel":"bds125Popover-panel","g":"bds125Popover-g"};
|
|
1674
1674
|
|
|
1675
1675
|
// src/components/interaction/Popover/Popover.tsx
|
|
1676
1676
|
var import_design_system_foundation28 = require("@boostdev/design-system-foundation");
|
|
@@ -1755,7 +1755,7 @@ function Popover({
|
|
|
1755
1755
|
}
|
|
1756
1756
|
|
|
1757
1757
|
// src/components/interaction/Rating/Rating.module.css
|
|
1758
|
-
var Rating_default = {"rating":"
|
|
1758
|
+
var Rating_default = {"rating":"bds125Rating-rating","star":"bds125Rating-star","--filled":"bds125Rating---filled"};
|
|
1759
1759
|
|
|
1760
1760
|
// src/components/interaction/Rating/Rating.tsx
|
|
1761
1761
|
var import_design_system_foundation29 = require("@boostdev/design-system-foundation");
|
|
@@ -1787,7 +1787,7 @@ function Rating({ value, max = 5, className, ...rest }) {
|
|
|
1787
1787
|
var import_react11 = require("react");
|
|
1788
1788
|
|
|
1789
1789
|
// src/components/interaction/Toast/Toast.module.css
|
|
1790
|
-
var Toast_default = {"toastContainer":"
|
|
1790
|
+
var Toast_default = {"toastContainer":"bds125Toast-toastContainer","toast":"bds125Toast-toast","--variant_success":"bds125Toast---variant_success","--variant_warning":"bds125Toast---variant_warning","--variant_info":"bds125Toast---variant_info","--variant_error":"bds125Toast---variant_error","message":"bds125Toast-message","closeButton":"bds125Toast-closeButton"};
|
|
1791
1791
|
|
|
1792
1792
|
// src/components/interaction/Toast/Toast.tsx
|
|
1793
1793
|
var import_design_system_foundation30 = require("@boostdev/design-system-foundation");
|
|
@@ -1860,10 +1860,10 @@ function useToast() {
|
|
|
1860
1860
|
var import_react12 = require("react");
|
|
1861
1861
|
|
|
1862
1862
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1863
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1863
|
+
var Checkbox_default = {"checkboxGroup":"bds125Checkbox-checkboxGroup","inputWrapper":"bds125Checkbox-inputWrapper","checkbox":"bds125Checkbox-checkbox","checkboxError":"bds125Checkbox-checkboxError"};
|
|
1864
1864
|
|
|
1865
1865
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1866
|
-
var Message_default = {"error":"
|
|
1866
|
+
var Message_default = {"error":"bds125Message-error","hint":"bds125Message-hint"};
|
|
1867
1867
|
|
|
1868
1868
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1869
1869
|
var import_design_system_foundation31 = require("@boostdev/design-system-foundation");
|
|
@@ -1874,7 +1874,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1874
1874
|
};
|
|
1875
1875
|
|
|
1876
1876
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1877
|
-
var Label_default = {"label":"
|
|
1877
|
+
var Label_default = {"label":"bds125Label-label"};
|
|
1878
1878
|
|
|
1879
1879
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1880
1880
|
var import_design_system_foundation32 = require("@boostdev/design-system-foundation");
|
|
@@ -1887,7 +1887,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1887
1887
|
var import_design_system_foundation34 = require("@boostdev/design-system-foundation");
|
|
1888
1888
|
|
|
1889
1889
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1890
|
-
var InputContainer_default = {"container":"
|
|
1890
|
+
var InputContainer_default = {"container":"bds125InputContainer-container"};
|
|
1891
1891
|
|
|
1892
1892
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1893
1893
|
var import_design_system_foundation33 = require("@boostdev/design-system-foundation");
|
|
@@ -1928,7 +1928,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1928
1928
|
var import_react13 = require("react");
|
|
1929
1929
|
|
|
1930
1930
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1931
|
-
var CheckboxGroup_default = {"group":"
|
|
1931
|
+
var CheckboxGroup_default = {"group":"bds125CheckboxGroup-group","legend":"bds125CheckboxGroup-legend","required":"bds125CheckboxGroup-required","items":"bds125CheckboxGroup-items"};
|
|
1932
1932
|
|
|
1933
1933
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1934
1934
|
var import_design_system_foundation35 = require("@boostdev/design-system-foundation");
|
|
@@ -1970,7 +1970,7 @@ function CheckboxGroup({
|
|
|
1970
1970
|
var import_react14 = require("react");
|
|
1971
1971
|
|
|
1972
1972
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1973
|
-
var Combobox_default = {"formGroup":"
|
|
1973
|
+
var Combobox_default = {"formGroup":"bds125Combobox-formGroup","inputWrapper":"bds125Combobox-inputWrapper","input":"bds125Combobox-input","inputError":"bds125Combobox-inputError","chevron":"bds125Combobox-chevron","listbox":"bds125Combobox-listbox","option":"bds125Combobox-option","--highlighted":"bds125Combobox---highlighted","--selected":"bds125Combobox---selected","--disabled":"bds125Combobox---disabled"};
|
|
1974
1974
|
|
|
1975
1975
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1976
1976
|
var import_design_system_foundation36 = require("@boostdev/design-system-foundation");
|
|
@@ -2121,7 +2121,7 @@ function Combobox({
|
|
|
2121
2121
|
var import_react15 = require("react");
|
|
2122
2122
|
|
|
2123
2123
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2124
|
-
var FileInput_default = {"formGroup":"
|
|
2124
|
+
var FileInput_default = {"formGroup":"bds125FileInput-formGroup","fieldLabel":"bds125FileInput-fieldLabel","dropZone":"bds125FileInput-dropZone","isDragging":"bds125FileInput-isDragging","hasError":"bds125FileInput-hasError","isDisabled":"bds125FileInput-isDisabled","icon":"bds125FileInput-icon","prompt":"bds125FileInput-prompt","acceptHint":"bds125FileInput-acceptHint","hiddenInput":"bds125FileInput-hiddenInput"};
|
|
2125
2125
|
|
|
2126
2126
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2127
2127
|
var import_design_system_foundation37 = require("@boostdev/design-system-foundation");
|
|
@@ -2222,7 +2222,7 @@ function FileInput({
|
|
|
2222
2222
|
var import_react16 = require("react");
|
|
2223
2223
|
|
|
2224
2224
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2225
|
-
var FormInput_default = {"formGroup":"
|
|
2225
|
+
var FormInput_default = {"formGroup":"bds125FormInput-formGroup","input":"bds125FormInput-input","inputError":"bds125FormInput-inputError"};
|
|
2226
2226
|
|
|
2227
2227
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2228
2228
|
var import_design_system_foundation38 = require("@boostdev/design-system-foundation");
|
|
@@ -2266,7 +2266,7 @@ function FormInput({
|
|
|
2266
2266
|
var import_react17 = require("react");
|
|
2267
2267
|
|
|
2268
2268
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2269
|
-
var NumberInput_default = {"formGroup":"
|
|
2269
|
+
var NumberInput_default = {"formGroup":"bds125NumberInput-formGroup","inputRow":"bds125NumberInput-inputRow","input":"bds125NumberInput-input","inputError":"bds125NumberInput-inputError","stepper":"bds125NumberInput-stepper"};
|
|
2270
2270
|
|
|
2271
2271
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2272
2272
|
var import_design_system_foundation39 = require("@boostdev/design-system-foundation");
|
|
@@ -2371,7 +2371,7 @@ function NumberInput({
|
|
|
2371
2371
|
var import_react18 = require("react");
|
|
2372
2372
|
|
|
2373
2373
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2374
|
-
var Radio_default = {"radioGroup":"
|
|
2374
|
+
var Radio_default = {"radioGroup":"bds125Radio-radioGroup","inputWrapper":"bds125Radio-inputWrapper","textWrapper":"bds125Radio-textWrapper","description":"bds125Radio-description","radio":"bds125Radio-radio","radioError":"bds125Radio-radioError"};
|
|
2375
2375
|
|
|
2376
2376
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2377
2377
|
var import_design_system_foundation40 = require("@boostdev/design-system-foundation");
|
|
@@ -2409,7 +2409,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2409
2409
|
var import_react19 = require("react");
|
|
2410
2410
|
|
|
2411
2411
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2412
|
-
var RadioGroup_default = {"group":"
|
|
2412
|
+
var RadioGroup_default = {"group":"bds125RadioGroup-group","legend":"bds125RadioGroup-legend","required":"bds125RadioGroup-required","items":"bds125RadioGroup-items"};
|
|
2413
2413
|
|
|
2414
2414
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2415
2415
|
var import_design_system_foundation41 = require("@boostdev/design-system-foundation");
|
|
@@ -2451,7 +2451,7 @@ function RadioGroup({
|
|
|
2451
2451
|
var import_react20 = require("react");
|
|
2452
2452
|
|
|
2453
2453
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2454
|
-
var SegmentedControl_default = {"control":"
|
|
2454
|
+
var SegmentedControl_default = {"control":"bds125SegmentedControl-control","thumb":"bds125SegmentedControl-thumb","indicator":"bds125SegmentedControl-indicator","item":"bds125SegmentedControl-item","--active":"bds125SegmentedControl---active","--disabled":"bds125SegmentedControl---disabled","--size_small":"bds125SegmentedControl---size_small","--size_large":"bds125SegmentedControl---size_large","--variant_outline":"bds125SegmentedControl---variant_outline"};
|
|
2455
2455
|
|
|
2456
2456
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2457
2457
|
var import_design_system_foundation42 = require("@boostdev/design-system-foundation");
|
|
@@ -2507,7 +2507,7 @@ function SegmentedControl({
|
|
|
2507
2507
|
var import_react21 = require("react");
|
|
2508
2508
|
|
|
2509
2509
|
// src/components/interaction/form/Select/Select.module.css
|
|
2510
|
-
var Select_default = {"formGroup":"
|
|
2510
|
+
var Select_default = {"formGroup":"bds125Select-formGroup","selectWrapper":"bds125Select-selectWrapper","select":"bds125Select-select","selectError":"bds125Select-selectError","chevron":"bds125Select-chevron"};
|
|
2511
2511
|
|
|
2512
2512
|
// src/components/interaction/form/Select/Select.tsx
|
|
2513
2513
|
var import_design_system_foundation43 = require("@boostdev/design-system-foundation");
|
|
@@ -2558,7 +2558,7 @@ function Select({
|
|
|
2558
2558
|
var import_react22 = require("react");
|
|
2559
2559
|
|
|
2560
2560
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2561
|
-
var Slider_default = {"formGroup":"
|
|
2561
|
+
var Slider_default = {"formGroup":"bds125Slider-formGroup","labelRow":"bds125Slider-labelRow","value":"bds125Slider-value","slider":"bds125Slider-slider","sliderError":"bds125Slider-sliderError"};
|
|
2562
2562
|
|
|
2563
2563
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2564
2564
|
var import_design_system_foundation44 = require("@boostdev/design-system-foundation");
|
|
@@ -2620,7 +2620,7 @@ function Slider({
|
|
|
2620
2620
|
var import_react23 = require("react");
|
|
2621
2621
|
|
|
2622
2622
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2623
|
-
var Switch_default = {"switchGroup":"
|
|
2623
|
+
var Switch_default = {"switchGroup":"bds125Switch-switchGroup","--size_small":"bds125Switch---size_small","--size_medium":"bds125Switch---size_medium","--size_large":"bds125Switch---size_large","inputWrapper":"bds125Switch-inputWrapper","trackWrapper":"bds125Switch-trackWrapper","switch":"bds125Switch-switch","track":"bds125Switch-track","thumb":"bds125Switch-thumb","switchError":"bds125Switch-switchError"};
|
|
2624
2624
|
|
|
2625
2625
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2626
2626
|
var import_design_system_foundation45 = require("@boostdev/design-system-foundation");
|
|
@@ -2668,7 +2668,7 @@ function Switch({
|
|
|
2668
2668
|
var import_react24 = require("react");
|
|
2669
2669
|
|
|
2670
2670
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2671
|
-
var Textarea_default = {"formGroup":"
|
|
2671
|
+
var Textarea_default = {"formGroup":"bds125Textarea-formGroup","textarea":"bds125Textarea-textarea","textareaError":"bds125Textarea-textareaError"};
|
|
2672
2672
|
|
|
2673
2673
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2674
2674
|
var import_design_system_foundation46 = require("@boostdev/design-system-foundation");
|
|
@@ -2707,7 +2707,7 @@ function Textarea({
|
|
|
2707
2707
|
}
|
|
2708
2708
|
|
|
2709
2709
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2710
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2710
|
+
var ButtonGroup_default = {"buttonGroup":"bds125ButtonGroup-buttonGroup","container":"bds125ButtonGroup-container","--variant_card":"bds125ButtonGroup---variant_card","--variant_flow":"bds125ButtonGroup---variant_flow","--variant_modal":"bds125ButtonGroup---variant_modal","--variant_content":"bds125ButtonGroup---variant_content","--variant_grid":"bds125ButtonGroup---variant_grid"};
|
|
2711
2711
|
|
|
2712
2712
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2713
2713
|
var import_design_system_foundation47 = require("@boostdev/design-system-foundation");
|
|
@@ -2725,7 +2725,7 @@ function ButtonGroup({ children, className, variant, ...rest }) {
|
|
|
2725
2725
|
}
|
|
2726
2726
|
|
|
2727
2727
|
// src/components/layout/Card/Card.module.css
|
|
2728
|
-
var Card_default = {"card":"
|
|
2728
|
+
var Card_default = {"card":"bds125Card-card","--default":"bds125Card---default","--elevated":"bds125Card---elevated","--outlined":"bds125Card---outlined","--clickable":"bds125Card---clickable","--padding-none":"bds125Card---padding-none","--padding-small":"bds125Card---padding-small","--padding-medium":"bds125Card---padding-medium","--padding-large":"bds125Card---padding-large","--text-start":"bds125Card---text-start","--text-center":"bds125Card---text-center","--text-end":"bds125Card---text-end"};
|
|
2729
2729
|
|
|
2730
2730
|
// src/components/layout/Card/Card.tsx
|
|
2731
2731
|
var import_design_system_foundation48 = require("@boostdev/design-system-foundation");
|
|
@@ -2761,7 +2761,7 @@ function Card({
|
|
|
2761
2761
|
}
|
|
2762
2762
|
|
|
2763
2763
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2764
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2764
|
+
var SectionHeader_default = {"sectionHeader":"bds125SectionHeader-sectionHeader","title":"bds125SectionHeader-title","subtitle":"bds125SectionHeader-subtitle","--start":"bds125SectionHeader---start","--center":"bds125SectionHeader---center","--end":"bds125SectionHeader---end","--small":"bds125SectionHeader---small","--medium":"bds125SectionHeader---medium","--large":"bds125SectionHeader---large"};
|
|
2765
2765
|
|
|
2766
2766
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2767
2767
|
var import_design_system_foundation49 = require("@boostdev/design-system-foundation");
|
|
@@ -2783,7 +2783,7 @@ function SectionHeader({
|
|
|
2783
2783
|
}
|
|
2784
2784
|
|
|
2785
2785
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2786
|
-
var IconWrapper_default = {"wrapper":"
|
|
2786
|
+
var IconWrapper_default = {"wrapper":"bds125IconWrapper-wrapper"};
|
|
2787
2787
|
|
|
2788
2788
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2789
2789
|
var import_design_system_foundation50 = require("@boostdev/design-system-foundation");
|