@boostdev/design-system-components 1.2.0 → 1.2.1
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 +25 -4
- package/dist/client.cjs +58 -54
- package/dist/client.css +503 -525
- package/dist/client.js +58 -54
- package/dist/index.cjs +58 -54
- package/dist/index.css +503 -525
- package/dist/index.js +58 -54
- package/dist/web-components/{chunk-6MH5UWUD.js → chunk-2FGATTGT.js} +5 -0
- package/dist/web-components/{chunk-5IPHEONG.js → chunk-6I2DBFQ7.js} +1 -0
- package/dist/web-components/{chunk-DI46Q2EA.js → chunk-OCODKRVZ.js} +57 -82
- package/dist/web-components/index.d.ts +571 -1
- package/dist/web-components/index.js +1501 -4
- package/dist/web-components/interaction/bds-collapsible.js +1 -1
- package/dist/web-components/interaction/bds-drawer.js +1 -1
- package/dist/web-components/interaction/form/bds-segmented-control.js +1 -1
- package/package.json +1 -1
- package/src/components/interaction/Drawer/Drawer.module.css +37 -62
- package/src/components/interaction/Drawer/Drawer.tsx +21 -17
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.mdx +8 -4
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.module.css +13 -6
- package/src/stories/Introduction.mdx +2 -1
- package/src/web-components/index.ts +12 -0
- package/src/web-components/interaction/BdsAccordion.mdx +80 -28
- package/src/web-components/interaction/BdsAccordion.stories.tsx +67 -58
- package/src/web-components/interaction/BdsCollapsible.mdx +93 -23
- package/src/web-components/interaction/BdsCollapsible.stories.tsx +29 -48
- package/src/web-components/interaction/BdsDialog.mdx +88 -27
- package/src/web-components/interaction/BdsDialog.stories.tsx +129 -47
- package/src/web-components/interaction/BdsDrawer.mdx +85 -27
- package/src/web-components/interaction/BdsDrawer.stories.tsx +161 -31
- package/src/web-components/interaction/BdsDropdownMenu.mdx +108 -0
- package/src/web-components/interaction/BdsDropdownMenu.stories.tsx +91 -0
- package/src/web-components/interaction/BdsSkipLink.mdx +72 -16
- package/src/web-components/interaction/BdsSkipLink.stories.tsx +47 -34
- package/src/web-components/interaction/BdsTabs.mdx +97 -27
- package/src/web-components/interaction/BdsTabs.stories.tsx +69 -55
- package/src/web-components/interaction/BdsTooltip.mdx +84 -18
- package/src/web-components/interaction/BdsTooltip.stories.tsx +49 -30
- package/src/web-components/interaction/bds-collapsible.ts +1 -0
- package/src/web-components/interaction/bds-drawer.ts +59 -82
- package/src/web-components/interaction/bds-dropdown-menu-item.ts +124 -0
- package/src/web-components/interaction/bds-dropdown-menu.spec.ts +102 -0
- package/src/web-components/interaction/bds-dropdown-menu.ts +200 -0
- package/src/web-components/interaction/form/BdsCheckbox.mdx +57 -20
- package/src/web-components/interaction/form/BdsCheckbox.stories.tsx +35 -36
- package/src/web-components/interaction/form/BdsCheckboxGroup.mdx +70 -0
- package/src/web-components/interaction/form/BdsCheckboxGroup.stories.tsx +81 -0
- package/src/web-components/interaction/form/BdsCombobox.mdx +52 -33
- package/src/web-components/interaction/form/BdsCombobox.stories.tsx +55 -53
- package/src/web-components/interaction/form/BdsFileInput.mdx +59 -24
- package/src/web-components/interaction/form/BdsFileInput.stories.tsx +38 -53
- package/src/web-components/interaction/form/BdsFormInput.mdx +98 -0
- package/src/web-components/interaction/form/BdsFormInput.stories.tsx +139 -0
- package/src/web-components/interaction/form/BdsNumberInput.mdx +51 -22
- package/src/web-components/interaction/form/BdsNumberInput.stories.tsx +24 -46
- package/src/web-components/interaction/form/BdsRadio.mdx +53 -22
- package/src/web-components/interaction/form/BdsRadio.stories.tsx +19 -51
- package/src/web-components/interaction/form/BdsRadioGroup.mdx +73 -0
- package/src/web-components/interaction/form/BdsRadioGroup.stories.tsx +88 -0
- package/src/web-components/interaction/form/BdsSegmentedControl.mdx +76 -23
- package/src/web-components/interaction/form/BdsSegmentedControl.stories.tsx +64 -54
- package/src/web-components/interaction/form/BdsSelect.mdx +59 -21
- package/src/web-components/interaction/form/BdsSelect.stories.tsx +47 -56
- package/src/web-components/interaction/form/BdsSlider.mdx +55 -27
- package/src/web-components/interaction/form/BdsSlider.stories.tsx +23 -44
- package/src/web-components/interaction/form/BdsSwitch.mdx +53 -20
- package/src/web-components/interaction/form/BdsSwitch.stories.tsx +22 -37
- package/src/web-components/interaction/form/BdsTextarea.mdx +54 -22
- package/src/web-components/interaction/form/BdsTextarea.stories.tsx +35 -44
- package/src/web-components/interaction/form/bds-checkbox-group.spec.ts +55 -0
- package/src/web-components/interaction/form/bds-checkbox-group.ts +117 -0
- package/src/web-components/interaction/form/bds-form-input.spec.ts +83 -0
- package/src/web-components/interaction/form/bds-form-input.ts +268 -0
- package/src/web-components/interaction/form/bds-radio-group.spec.ts +62 -0
- package/src/web-components/interaction/form/bds-radio-group.ts +142 -0
- package/src/web-components/interaction/form/bds-segmented-control.ts +5 -0
- package/src/web-components/ui/BdsAvatar.mdx +29 -20
- package/src/web-components/ui/BdsAvatar.stories.tsx +14 -28
- package/src/web-components/ui/BdsBreadcrumb.mdx +22 -19
- package/src/web-components/ui/BdsBreadcrumb.stories.tsx +11 -21
- package/src/web-components/ui/BdsButtonGroup.mdx +69 -0
- package/src/web-components/ui/BdsButtonGroup.stories.tsx +66 -0
- package/src/web-components/ui/BdsCalendar.mdx +93 -0
- package/src/web-components/ui/BdsCalendar.stories.tsx +63 -0
- package/src/web-components/ui/BdsCard.mdx +30 -25
- package/src/web-components/ui/BdsCard.stories.tsx +19 -42
- package/src/web-components/ui/BdsCarousel.mdx +83 -0
- package/src/web-components/ui/BdsCarousel.stories.tsx +96 -0
- package/src/web-components/ui/BdsDescriptionList.mdx +13 -16
- package/src/web-components/ui/BdsDescriptionList.stories.tsx +34 -49
- package/src/web-components/ui/BdsIconWrapper.mdx +20 -20
- package/src/web-components/ui/BdsIconWrapper.stories.tsx +46 -41
- package/src/web-components/ui/BdsLink.mdx +21 -17
- package/src/web-components/ui/BdsLink.stories.tsx +19 -20
- package/src/web-components/ui/BdsLoading.mdx +9 -13
- package/src/web-components/ui/BdsLoading.stories.tsx +8 -10
- package/src/web-components/ui/BdsNotificationBanner.mdx +32 -37
- package/src/web-components/ui/BdsNotificationBanner.stories.tsx +38 -47
- package/src/web-components/ui/BdsPagination.mdx +74 -0
- package/src/web-components/ui/BdsPagination.stories.tsx +36 -0
- package/src/web-components/ui/BdsProgress.mdx +24 -17
- package/src/web-components/ui/BdsProgress.stories.tsx +55 -29
- package/src/web-components/ui/BdsProgressCircle.mdx +24 -18
- package/src/web-components/ui/BdsProgressCircle.stories.tsx +17 -29
- package/src/web-components/ui/BdsRating.mdx +22 -22
- package/src/web-components/ui/BdsRating.stories.tsx +19 -13
- package/src/web-components/ui/BdsSectionHeader.mdx +31 -28
- package/src/web-components/ui/BdsSectionHeader.stories.tsx +21 -23
- package/src/web-components/ui/BdsSeparator.mdx +22 -8
- package/src/web-components/ui/BdsSeparator.stories.tsx +27 -19
- package/src/web-components/ui/BdsSkeleton.mdx +20 -26
- package/src/web-components/ui/BdsSkeleton.stories.tsx +23 -23
- package/src/web-components/ui/BdsTable.mdx +81 -0
- package/src/web-components/ui/BdsTable.stories.tsx +83 -0
- package/src/web-components/ui/BdsTypography.mdx +20 -29
- package/src/web-components/ui/BdsTypography.stories.tsx +19 -18
- package/src/web-components/ui/bds-button-group.spec.ts +40 -0
- package/src/web-components/ui/bds-button-group.ts +78 -0
- package/src/web-components/ui/bds-calendar.spec.ts +91 -0
- package/src/web-components/ui/bds-calendar.ts +427 -0
- package/src/web-components/ui/bds-carousel.spec.ts +64 -0
- package/src/web-components/ui/bds-carousel.ts +296 -0
- package/src/web-components/ui/bds-pagination.spec.ts +67 -0
- package/src/web-components/ui/bds-pagination.ts +197 -0
- package/src/web-components/ui/bds-table.spec.ts +45 -0
- package/src/web-components/ui/bds-table.ts +96 -0
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":"bds121Accordion-accordion","item":"bds121Accordion-item","heading":"bds121Accordion-heading","trigger":"bds121Accordion-trigger","triggerLabel":"bds121Accordion-triggerLabel","chevron":"bds121Accordion-chevron","--open":"bds121Accordion---open","panel":"bds121Accordion-panel","panelContent":"bds121Accordion-panelContent"};
|
|
90
90
|
|
|
91
91
|
// src/components/ui/Accordion/Accordion.tsx
|
|
92
92
|
var import_design_system_foundation = require("@boostdev/design-system-foundation");
|
|
@@ -154,7 +154,7 @@ function Accordion({
|
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
// src/components/ui/Alert/Alert.module.css
|
|
157
|
-
var Alert_default = {"alert":"
|
|
157
|
+
var Alert_default = {"alert":"bds121Alert-alert","--variant_info":"bds121Alert---variant_info","--variant_success":"bds121Alert---variant_success","--variant_warning":"bds121Alert---variant_warning","--variant_error":"bds121Alert---variant_error","icon":"bds121Alert-icon","content":"bds121Alert-content","title":"bds121Alert-title","dismiss":"bds121Alert-dismiss"};
|
|
158
158
|
|
|
159
159
|
// src/components/ui/Alert/Alert.tsx
|
|
160
160
|
var import_design_system_foundation2 = require("@boostdev/design-system-foundation");
|
|
@@ -197,7 +197,7 @@ function Alert({
|
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
// src/components/ui/Avatar/Avatar.module.css
|
|
200
|
-
var Avatar_default = {"avatar":"
|
|
200
|
+
var Avatar_default = {"avatar":"bds121Avatar-avatar","--fallback":"bds121Avatar---fallback","--size_small":"bds121Avatar---size_small","--size_medium":"bds121Avatar---size_medium","--size_large":"bds121Avatar---size_large","image":"bds121Avatar-image","initials":"bds121Avatar-initials"};
|
|
201
201
|
|
|
202
202
|
// src/components/ui/Avatar/Avatar.tsx
|
|
203
203
|
var import_design_system_foundation3 = require("@boostdev/design-system-foundation");
|
|
@@ -223,7 +223,7 @@ function Avatar({ src, alt, name, size = "medium", className }) {
|
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
// src/components/ui/Badge/Badge.module.css
|
|
226
|
-
var Badge_default = {"badge":"
|
|
226
|
+
var Badge_default = {"badge":"bds121Badge-badge","--variant_primary":"bds121Badge---variant_primary","--variant_secondary":"bds121Badge---variant_secondary","--variant_success":"bds121Badge---variant_success","--variant_error":"bds121Badge---variant_error","--variant_warning":"bds121Badge---variant_warning"};
|
|
227
227
|
|
|
228
228
|
// src/components/ui/Badge/Badge.tsx
|
|
229
229
|
var import_design_system_foundation4 = require("@boostdev/design-system-foundation");
|
|
@@ -233,7 +233,7 @@ function Badge({ children, variant = "primary", className }) {
|
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
236
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
236
|
+
var Breadcrumb_default = {"breadcrumb":"bds121Breadcrumb-breadcrumb","list":"bds121Breadcrumb-list","item":"bds121Breadcrumb-item","link":"bds121Breadcrumb-link","separator":"bds121Breadcrumb-separator","current":"bds121Breadcrumb-current"};
|
|
237
237
|
|
|
238
238
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
239
239
|
var import_design_system_foundation5 = require("@boostdev/design-system-foundation");
|
|
@@ -249,7 +249,7 @@ function Breadcrumb({ items, className }) {
|
|
|
249
249
|
}
|
|
250
250
|
|
|
251
251
|
// src/components/ui/Collapsible/Collapsible.module.css
|
|
252
|
-
var Collapsible_default = {"collapsible":"
|
|
252
|
+
var Collapsible_default = {"collapsible":"bds121Collapsible-collapsible","summary":"bds121Collapsible-summary","summaryContent":"bds121Collapsible-summaryContent","icon":"bds121Collapsible-icon","content":"bds121Collapsible-content"};
|
|
253
253
|
|
|
254
254
|
// src/components/ui/Collapsible/Collapsible.tsx
|
|
255
255
|
var import_design_system_foundation6 = require("@boostdev/design-system-foundation");
|
|
@@ -290,7 +290,7 @@ function Collapsible({
|
|
|
290
290
|
var import_react2 = require("react");
|
|
291
291
|
|
|
292
292
|
// src/components/ui/Calendar/Calendar.module.css
|
|
293
|
-
var Calendar_default = {"calendar":"
|
|
293
|
+
var Calendar_default = {"calendar":"bds121Calendar-calendar","header":"bds121Calendar-header","monthYear":"bds121Calendar-monthYear","navBtn":"bds121Calendar-navBtn","grid":"bds121Calendar-grid","weekday":"bds121Calendar-weekday","empty":"bds121Calendar-empty","day":"bds121Calendar-day","disabled":"bds121Calendar-disabled","selected":"bds121Calendar-selected","today":"bds121Calendar-today"};
|
|
294
294
|
|
|
295
295
|
// src/components/ui/Calendar/Calendar.tsx
|
|
296
296
|
var import_design_system_foundation7 = require("@boostdev/design-system-foundation");
|
|
@@ -465,7 +465,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
|
|
|
465
465
|
var import_react3 = require("react");
|
|
466
466
|
|
|
467
467
|
// src/components/ui/Carousel/Carousel.module.css
|
|
468
|
-
var Carousel_default = {"carousel":"
|
|
468
|
+
var Carousel_default = {"carousel":"bds121Carousel-carousel","track":"bds121Carousel-track","slide":"bds121Carousel-slide","navBtn":"bds121Carousel-navBtn"};
|
|
469
469
|
|
|
470
470
|
// src/components/ui/Carousel/Carousel.tsx
|
|
471
471
|
var import_design_system_foundation8 = require("@boostdev/design-system-foundation");
|
|
@@ -518,7 +518,7 @@ function Carousel({ items, label, className }) {
|
|
|
518
518
|
}
|
|
519
519
|
|
|
520
520
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
521
|
-
var DescriptionList_default = {"list":"
|
|
521
|
+
var DescriptionList_default = {"list":"bds121DescriptionList-list","group":"bds121DescriptionList-group","term":"bds121DescriptionList-term","details":"bds121DescriptionList-details","--layout_inline":"bds121DescriptionList---layout_inline"};
|
|
522
522
|
|
|
523
523
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
524
524
|
var import_design_system_foundation9 = require("@boostdev/design-system-foundation");
|
|
@@ -531,7 +531,7 @@ function DescriptionList({ items, layout = "stacked", className }) {
|
|
|
531
531
|
}
|
|
532
532
|
|
|
533
533
|
// src/components/ui/Link/Link.module.css
|
|
534
|
-
var Link_default = {"link":"
|
|
534
|
+
var Link_default = {"link":"bds121Link-link","--variant_default":"bds121Link---variant_default","--variant_subtle":"bds121Link---variant_subtle","--variant_standalone":"bds121Link---variant_standalone","externalLabel":"bds121Link-externalLabel"};
|
|
535
535
|
|
|
536
536
|
// src/components/ui/Link/Link.tsx
|
|
537
537
|
var import_design_system_foundation10 = require("@boostdev/design-system-foundation");
|
|
@@ -562,7 +562,7 @@ function Link({
|
|
|
562
562
|
}
|
|
563
563
|
|
|
564
564
|
// src/components/ui/Loading/Loading.module.css
|
|
565
|
-
var Loading_default = {"loading":"
|
|
565
|
+
var Loading_default = {"loading":"bds121Loading-loading","spinner":"bds121Loading-spinner","--size_small":"bds121Loading---size_small","--size_large":"bds121Loading---size_large"};
|
|
566
566
|
|
|
567
567
|
// src/components/ui/Loading/Loading.tsx
|
|
568
568
|
var import_design_system_foundation11 = require("@boostdev/design-system-foundation");
|
|
@@ -572,7 +572,7 @@ function Loading({ size = "medium", className }) {
|
|
|
572
572
|
}
|
|
573
573
|
|
|
574
574
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
575
|
-
var NotificationBanner_default = {"banner":"
|
|
575
|
+
var NotificationBanner_default = {"banner":"bds121NotificationBanner-banner","--variant_info":"bds121NotificationBanner---variant_info","--variant_success":"bds121NotificationBanner---variant_success","--variant_warning":"bds121NotificationBanner---variant_warning","--variant_error":"bds121NotificationBanner---variant_error","content":"bds121NotificationBanner-content","action":"bds121NotificationBanner-action","dismiss":"bds121NotificationBanner-dismiss"};
|
|
576
576
|
|
|
577
577
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
578
578
|
var import_design_system_foundation12 = require("@boostdev/design-system-foundation");
|
|
@@ -611,7 +611,7 @@ function NotificationBanner({
|
|
|
611
611
|
}
|
|
612
612
|
|
|
613
613
|
// src/components/ui/Pagination/Pagination.module.css
|
|
614
|
-
var Pagination_default = {"pagination":"
|
|
614
|
+
var Pagination_default = {"pagination":"bds121Pagination-pagination","list":"bds121Pagination-list","button":"bds121Pagination-button","--active":"bds121Pagination---active","--nav":"bds121Pagination---nav","ellipsis":"bds121Pagination-ellipsis"};
|
|
615
615
|
|
|
616
616
|
// src/components/ui/Pagination/Pagination.tsx
|
|
617
617
|
var import_design_system_foundation13 = require("@boostdev/design-system-foundation");
|
|
@@ -675,7 +675,7 @@ function Pagination({
|
|
|
675
675
|
}
|
|
676
676
|
|
|
677
677
|
// src/components/ui/Progress/Progress.module.css
|
|
678
|
-
var Progress_default = {"container":"
|
|
678
|
+
var Progress_default = {"container":"bds121Progress-container","labelRow":"bds121Progress-labelRow","value":"bds121Progress-value","track":"bds121Progress-track","--size_small":"bds121Progress---size_small","--size_medium":"bds121Progress---size_medium","--size_large":"bds121Progress---size_large","fill":"bds121Progress-fill"};
|
|
679
679
|
|
|
680
680
|
// src/components/ui/Progress/Progress.tsx
|
|
681
681
|
var import_design_system_foundation14 = require("@boostdev/design-system-foundation");
|
|
@@ -713,7 +713,7 @@ function Progress({
|
|
|
713
713
|
}
|
|
714
714
|
|
|
715
715
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
716
|
-
var ProgressCircle_default = {"wrapper":"
|
|
716
|
+
var ProgressCircle_default = {"wrapper":"bds121ProgressCircle-wrapper","svg":"bds121ProgressCircle-svg","track":"bds121ProgressCircle-track","fill":"bds121ProgressCircle-fill","value":"bds121ProgressCircle-value","--size_small":"bds121ProgressCircle---size_small","--size_medium":"bds121ProgressCircle---size_medium","--size_large":"bds121ProgressCircle---size_large"};
|
|
717
717
|
|
|
718
718
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
719
719
|
var import_design_system_foundation15 = require("@boostdev/design-system-foundation");
|
|
@@ -792,7 +792,7 @@ function ProgressCircle({
|
|
|
792
792
|
}
|
|
793
793
|
|
|
794
794
|
// src/components/ui/Separator/Separator.module.css
|
|
795
|
-
var Separator_default = {"separator":"
|
|
795
|
+
var Separator_default = {"separator":"bds121Separator-separator","--horizontal":"bds121Separator---horizontal","--vertical":"bds121Separator---vertical"};
|
|
796
796
|
|
|
797
797
|
// src/components/ui/Separator/Separator.tsx
|
|
798
798
|
var import_design_system_foundation16 = require("@boostdev/design-system-foundation");
|
|
@@ -815,7 +815,7 @@ function Separator({ orientation = "horizontal", className }) {
|
|
|
815
815
|
var import_design_system_foundation17 = require("@boostdev/design-system-foundation");
|
|
816
816
|
|
|
817
817
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
818
|
-
var Skeleton_default = {"skeleton":"
|
|
818
|
+
var Skeleton_default = {"skeleton":"bds121Skeleton-skeleton"};
|
|
819
819
|
|
|
820
820
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
821
821
|
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
@@ -824,7 +824,7 @@ function Skeleton({ className }) {
|
|
|
824
824
|
}
|
|
825
825
|
|
|
826
826
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
827
|
-
var SkipLink_default = {"skipLink":"
|
|
827
|
+
var SkipLink_default = {"skipLink":"bds121SkipLink-skipLink"};
|
|
828
828
|
|
|
829
829
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
830
830
|
var import_design_system_foundation18 = require("@boostdev/design-system-foundation");
|
|
@@ -834,7 +834,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
|
|
|
834
834
|
}
|
|
835
835
|
|
|
836
836
|
// src/components/ui/Table/Table.module.css
|
|
837
|
-
var Table_default = {"wrapper":"
|
|
837
|
+
var Table_default = {"wrapper":"bds121Table-wrapper","table":"bds121Table-table","caption":"bds121Table-caption","thead":"bds121Table-thead","th":"bds121Table-th","--sortable":"bds121Table---sortable","sortButton":"bds121Table-sortButton","sortIcon":"bds121Table-sortIcon","--sort-active":"bds121Table---sort-active","--sort-desc":"bds121Table---sort-desc","tbody":"bds121Table-tbody","tr":"bds121Table-tr","td":"bds121Table-td"};
|
|
838
838
|
|
|
839
839
|
// src/components/ui/Table/Table.tsx
|
|
840
840
|
var import_design_system_foundation19 = require("@boostdev/design-system-foundation");
|
|
@@ -904,7 +904,7 @@ function Table({
|
|
|
904
904
|
var import_react4 = require("react");
|
|
905
905
|
|
|
906
906
|
// src/components/ui/Tabs/Tabs.module.css
|
|
907
|
-
var Tabs_default = {"tabs":"
|
|
907
|
+
var Tabs_default = {"tabs":"bds121Tabs-tabs","tabList":"bds121Tabs-tabList","tab":"bds121Tabs-tab","--active":"bds121Tabs---active","panel":"bds121Tabs-panel"};
|
|
908
908
|
|
|
909
909
|
// src/components/ui/Tabs/Tabs.tsx
|
|
910
910
|
var import_design_system_foundation20 = require("@boostdev/design-system-foundation");
|
|
@@ -984,7 +984,7 @@ function Tabs({ tabs, defaultTab, className }) {
|
|
|
984
984
|
var import_react5 = require("react");
|
|
985
985
|
|
|
986
986
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
987
|
-
var Tooltip_default = {"wrapper":"
|
|
987
|
+
var Tooltip_default = {"wrapper":"bds121Tooltip-wrapper","tooltip":"bds121Tooltip-tooltip","--placement_top":"bds121Tooltip---placement_top","--placement_bottom":"bds121Tooltip---placement_bottom","--placement_left":"bds121Tooltip---placement_left","--placement_right":"bds121Tooltip---placement_right"};
|
|
988
988
|
|
|
989
989
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
990
990
|
var import_design_system_foundation21 = require("@boostdev/design-system-foundation");
|
|
@@ -1026,7 +1026,7 @@ function Tooltip({
|
|
|
1026
1026
|
}
|
|
1027
1027
|
|
|
1028
1028
|
// src/components/ui/Typography/Typography.module.css
|
|
1029
|
-
var Typography_default = {"typography":"
|
|
1029
|
+
var Typography_default = {"typography":"bds121Typography-typography","--h1":"bds121Typography---h1","--h2":"bds121Typography---h2","--h3":"bds121Typography---h3","--body":"bds121Typography---body","--body_s":"bds121Typography---body_s"};
|
|
1030
1030
|
|
|
1031
1031
|
// src/components/ui/Typography/Typography.tsx
|
|
1032
1032
|
var import_design_system_foundation22 = require("@boostdev/design-system-foundation");
|
|
@@ -1044,7 +1044,7 @@ function Typography({ variant = "body", component, children, className }) {
|
|
|
1044
1044
|
}
|
|
1045
1045
|
|
|
1046
1046
|
// src/components/interaction/Button/Button.module.css
|
|
1047
|
-
var Button_default = {"button":"
|
|
1047
|
+
var Button_default = {"button":"bds121Button-button","--default":"bds121Button---default","--outline":"bds121Button---outline","--ghost":"bds121Button---ghost","--size_small":"bds121Button---size_small","--size_medium":"bds121Button---size_medium","--size_large":"bds121Button---size_large","--hasPulse":"bds121Button---hasPulse","iconStart":"bds121Button-iconStart","iconEnd":"bds121Button-iconEnd"};
|
|
1048
1048
|
|
|
1049
1049
|
// src/components/interaction/Button/Button.tsx
|
|
1050
1050
|
var import_design_system_foundation23 = require("@boostdev/design-system-foundation");
|
|
@@ -1159,7 +1159,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1159
1159
|
}
|
|
1160
1160
|
|
|
1161
1161
|
// src/components/interaction/Command/Command.module.css
|
|
1162
|
-
var Command_default = {"dialog":"
|
|
1162
|
+
var Command_default = {"dialog":"bds121Command-dialog","palette":"bds121Command-palette","searchRow":"bds121Command-searchRow","searchIcon":"bds121Command-searchIcon","search":"bds121Command-search","escHint":"bds121Command-escHint","list":"bds121Command-list","groupList":"bds121Command-groupList","group":"bds121Command-group","item":"bds121Command-item","itemActive":"bds121Command-itemActive","itemLabel":"bds121Command-itemLabel","itemDesc":"bds121Command-itemDesc","shortcut":"bds121Command-shortcut","empty":"bds121Command-empty"};
|
|
1163
1163
|
|
|
1164
1164
|
// src/components/interaction/Command/Command.tsx
|
|
1165
1165
|
var import_design_system_foundation24 = require("@boostdev/design-system-foundation");
|
|
@@ -1334,7 +1334,7 @@ function Command({
|
|
|
1334
1334
|
var import_react7 = require("react");
|
|
1335
1335
|
|
|
1336
1336
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1337
|
-
var Dialog_default = {"dialog":"
|
|
1337
|
+
var Dialog_default = {"dialog":"bds121Dialog-dialog","dialogContent":"bds121Dialog-dialogContent","closeButton":"bds121Dialog-closeButton"};
|
|
1338
1338
|
|
|
1339
1339
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1340
1340
|
var import_design_system_foundation25 = require("@boostdev/design-system-foundation");
|
|
@@ -1439,7 +1439,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1439
1439
|
var import_react8 = require("react");
|
|
1440
1440
|
|
|
1441
1441
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1442
|
-
var Drawer_default = {"drawer":"
|
|
1442
|
+
var Drawer_default = {"drawer":"bds121Drawer-drawer","--side_left":"bds121Drawer---side_left","header":"bds121Drawer-header","closeButton":"bds121Drawer-closeButton","body":"bds121Drawer-body"};
|
|
1443
1443
|
|
|
1444
1444
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1445
1445
|
var import_design_system_foundation26 = require("@boostdev/design-system-foundation");
|
|
@@ -1495,13 +1495,17 @@ function Drawer({
|
|
|
1495
1495
|
return () => dialog.removeEventListener("command", handleCommand);
|
|
1496
1496
|
}, [onOpen, onClose]);
|
|
1497
1497
|
const handleClick = (e) => {
|
|
1498
|
-
|
|
1498
|
+
const dialog = dialogRef.current;
|
|
1499
|
+
if (!dialog) return;
|
|
1500
|
+
const rect = dialog.getBoundingClientRect();
|
|
1501
|
+
const outside = e.clientX < rect.left || e.clientX > rect.right || e.clientY < rect.top || e.clientY > rect.bottom;
|
|
1502
|
+
if (outside) onClose();
|
|
1499
1503
|
};
|
|
1500
1504
|
const handleCancel = (e) => {
|
|
1501
1505
|
e.preventDefault();
|
|
1502
1506
|
onClose();
|
|
1503
1507
|
};
|
|
1504
|
-
return /* @__PURE__ */ (0, import_jsx_runtime26.
|
|
1508
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
1505
1509
|
"dialog",
|
|
1506
1510
|
{
|
|
1507
1511
|
ref: dialogRef,
|
|
@@ -1511,7 +1515,7 @@ function Drawer({
|
|
|
1511
1515
|
"aria-modal": "true",
|
|
1512
1516
|
onClick: handleClick,
|
|
1513
1517
|
onCancel: handleCancel,
|
|
1514
|
-
children:
|
|
1518
|
+
children: [
|
|
1515
1519
|
/* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { className: Drawer_default.header, children: [
|
|
1516
1520
|
!!title && title,
|
|
1517
1521
|
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
@@ -1527,7 +1531,7 @@ function Drawer({
|
|
|
1527
1531
|
)
|
|
1528
1532
|
] }),
|
|
1529
1533
|
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: Drawer_default.body, children })
|
|
1530
|
-
]
|
|
1534
|
+
]
|
|
1531
1535
|
}
|
|
1532
1536
|
);
|
|
1533
1537
|
}
|
|
@@ -1536,7 +1540,7 @@ function Drawer({
|
|
|
1536
1540
|
var import_react9 = require("react");
|
|
1537
1541
|
|
|
1538
1542
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1539
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1543
|
+
var DropdownMenu_default = {"wrapper":"bds121DropdownMenu-wrapper","menu":"bds121DropdownMenu-menu","--placement_bottom-start":"bds121DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds121DropdownMenu---placement_bottom-end","separator":"bds121DropdownMenu-separator","item":"bds121DropdownMenu-item","icon":"bds121DropdownMenu-icon"};
|
|
1540
1544
|
|
|
1541
1545
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1542
1546
|
var import_design_system_foundation27 = require("@boostdev/design-system-foundation");
|
|
@@ -1649,7 +1653,7 @@ function DropdownMenu({
|
|
|
1649
1653
|
var import_react10 = require("react");
|
|
1650
1654
|
|
|
1651
1655
|
// src/components/interaction/Popover/Popover.module.css
|
|
1652
|
-
var Popover_default = {"wrapper":"
|
|
1656
|
+
var Popover_default = {"wrapper":"bds121Popover-wrapper","panel":"bds121Popover-panel","g":"bds121Popover-g"};
|
|
1653
1657
|
|
|
1654
1658
|
// src/components/interaction/Popover/Popover.tsx
|
|
1655
1659
|
var import_design_system_foundation28 = require("@boostdev/design-system-foundation");
|
|
@@ -1733,7 +1737,7 @@ function Popover({
|
|
|
1733
1737
|
}
|
|
1734
1738
|
|
|
1735
1739
|
// src/components/interaction/Rating/Rating.module.css
|
|
1736
|
-
var Rating_default = {"rating":"
|
|
1740
|
+
var Rating_default = {"rating":"bds121Rating-rating","star":"bds121Rating-star","--filled":"bds121Rating---filled"};
|
|
1737
1741
|
|
|
1738
1742
|
// src/components/interaction/Rating/Rating.tsx
|
|
1739
1743
|
var import_design_system_foundation29 = require("@boostdev/design-system-foundation");
|
|
@@ -1764,7 +1768,7 @@ function Rating({ value, max = 5, className }) {
|
|
|
1764
1768
|
var import_react11 = require("react");
|
|
1765
1769
|
|
|
1766
1770
|
// src/components/interaction/Toast/Toast.module.css
|
|
1767
|
-
var Toast_default = {"toastContainer":"
|
|
1771
|
+
var Toast_default = {"toastContainer":"bds121Toast-toastContainer","toast":"bds121Toast-toast","--variant_success":"bds121Toast---variant_success","--variant_warning":"bds121Toast---variant_warning","--variant_info":"bds121Toast---variant_info","--variant_error":"bds121Toast---variant_error","message":"bds121Toast-message","closeButton":"bds121Toast-closeButton"};
|
|
1768
1772
|
|
|
1769
1773
|
// src/components/interaction/Toast/Toast.tsx
|
|
1770
1774
|
var import_design_system_foundation30 = require("@boostdev/design-system-foundation");
|
|
@@ -1837,10 +1841,10 @@ function useToast() {
|
|
|
1837
1841
|
var import_react12 = require("react");
|
|
1838
1842
|
|
|
1839
1843
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1840
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1844
|
+
var Checkbox_default = {"checkboxGroup":"bds121Checkbox-checkboxGroup","inputWrapper":"bds121Checkbox-inputWrapper","checkbox":"bds121Checkbox-checkbox","checkboxError":"bds121Checkbox-checkboxError"};
|
|
1841
1845
|
|
|
1842
1846
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1843
|
-
var Message_default = {"error":"
|
|
1847
|
+
var Message_default = {"error":"bds121Message-error","hint":"bds121Message-hint"};
|
|
1844
1848
|
|
|
1845
1849
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1846
1850
|
var import_design_system_foundation31 = require("@boostdev/design-system-foundation");
|
|
@@ -1851,7 +1855,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1851
1855
|
};
|
|
1852
1856
|
|
|
1853
1857
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1854
|
-
var Label_default = {"label":"
|
|
1858
|
+
var Label_default = {"label":"bds121Label-label"};
|
|
1855
1859
|
|
|
1856
1860
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1857
1861
|
var import_design_system_foundation32 = require("@boostdev/design-system-foundation");
|
|
@@ -1864,7 +1868,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1864
1868
|
var import_design_system_foundation34 = require("@boostdev/design-system-foundation");
|
|
1865
1869
|
|
|
1866
1870
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1867
|
-
var InputContainer_default = {"container":"
|
|
1871
|
+
var InputContainer_default = {"container":"bds121InputContainer-container"};
|
|
1868
1872
|
|
|
1869
1873
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1870
1874
|
var import_design_system_foundation33 = require("@boostdev/design-system-foundation");
|
|
@@ -1905,7 +1909,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1905
1909
|
var import_react13 = require("react");
|
|
1906
1910
|
|
|
1907
1911
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1908
|
-
var CheckboxGroup_default = {"group":"
|
|
1912
|
+
var CheckboxGroup_default = {"group":"bds121CheckboxGroup-group","legend":"bds121CheckboxGroup-legend","required":"bds121CheckboxGroup-required","items":"bds121CheckboxGroup-items"};
|
|
1909
1913
|
|
|
1910
1914
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1911
1915
|
var import_design_system_foundation35 = require("@boostdev/design-system-foundation");
|
|
@@ -1947,7 +1951,7 @@ function CheckboxGroup({
|
|
|
1947
1951
|
var import_react14 = require("react");
|
|
1948
1952
|
|
|
1949
1953
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1950
|
-
var Combobox_default = {"formGroup":"
|
|
1954
|
+
var Combobox_default = {"formGroup":"bds121Combobox-formGroup","inputWrapper":"bds121Combobox-inputWrapper","input":"bds121Combobox-input","inputError":"bds121Combobox-inputError","chevron":"bds121Combobox-chevron","listbox":"bds121Combobox-listbox","option":"bds121Combobox-option","--highlighted":"bds121Combobox---highlighted","--selected":"bds121Combobox---selected","--disabled":"bds121Combobox---disabled"};
|
|
1951
1955
|
|
|
1952
1956
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1953
1957
|
var import_design_system_foundation36 = require("@boostdev/design-system-foundation");
|
|
@@ -2097,7 +2101,7 @@ function Combobox({
|
|
|
2097
2101
|
var import_react15 = require("react");
|
|
2098
2102
|
|
|
2099
2103
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2100
|
-
var FileInput_default = {"formGroup":"
|
|
2104
|
+
var FileInput_default = {"formGroup":"bds121FileInput-formGroup","fieldLabel":"bds121FileInput-fieldLabel","dropZone":"bds121FileInput-dropZone","isDragging":"bds121FileInput-isDragging","hasError":"bds121FileInput-hasError","isDisabled":"bds121FileInput-isDisabled","icon":"bds121FileInput-icon","prompt":"bds121FileInput-prompt","acceptHint":"bds121FileInput-acceptHint","hiddenInput":"bds121FileInput-hiddenInput"};
|
|
2101
2105
|
|
|
2102
2106
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2103
2107
|
var import_design_system_foundation37 = require("@boostdev/design-system-foundation");
|
|
@@ -2197,7 +2201,7 @@ function FileInput({
|
|
|
2197
2201
|
var import_react16 = require("react");
|
|
2198
2202
|
|
|
2199
2203
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2200
|
-
var FormInput_default = {"formGroup":"
|
|
2204
|
+
var FormInput_default = {"formGroup":"bds121FormInput-formGroup","input":"bds121FormInput-input","inputError":"bds121FormInput-inputError"};
|
|
2201
2205
|
|
|
2202
2206
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2203
2207
|
var import_design_system_foundation38 = require("@boostdev/design-system-foundation");
|
|
@@ -2241,7 +2245,7 @@ function FormInput({
|
|
|
2241
2245
|
var import_react17 = require("react");
|
|
2242
2246
|
|
|
2243
2247
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2244
|
-
var NumberInput_default = {"formGroup":"
|
|
2248
|
+
var NumberInput_default = {"formGroup":"bds121NumberInput-formGroup","inputRow":"bds121NumberInput-inputRow","input":"bds121NumberInput-input","inputError":"bds121NumberInput-inputError","stepper":"bds121NumberInput-stepper"};
|
|
2245
2249
|
|
|
2246
2250
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2247
2251
|
var import_design_system_foundation39 = require("@boostdev/design-system-foundation");
|
|
@@ -2345,7 +2349,7 @@ function NumberInput({
|
|
|
2345
2349
|
var import_react18 = require("react");
|
|
2346
2350
|
|
|
2347
2351
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2348
|
-
var Radio_default = {"radioGroup":"
|
|
2352
|
+
var Radio_default = {"radioGroup":"bds121Radio-radioGroup","inputWrapper":"bds121Radio-inputWrapper","textWrapper":"bds121Radio-textWrapper","description":"bds121Radio-description","radio":"bds121Radio-radio","radioError":"bds121Radio-radioError"};
|
|
2349
2353
|
|
|
2350
2354
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2351
2355
|
var import_design_system_foundation40 = require("@boostdev/design-system-foundation");
|
|
@@ -2383,7 +2387,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2383
2387
|
var import_react19 = require("react");
|
|
2384
2388
|
|
|
2385
2389
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2386
|
-
var RadioGroup_default = {"group":"
|
|
2390
|
+
var RadioGroup_default = {"group":"bds121RadioGroup-group","legend":"bds121RadioGroup-legend","required":"bds121RadioGroup-required","items":"bds121RadioGroup-items"};
|
|
2387
2391
|
|
|
2388
2392
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2389
2393
|
var import_design_system_foundation41 = require("@boostdev/design-system-foundation");
|
|
@@ -2425,7 +2429,7 @@ function RadioGroup({
|
|
|
2425
2429
|
var import_react20 = require("react");
|
|
2426
2430
|
|
|
2427
2431
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2428
|
-
var SegmentedControl_default = {"control":"
|
|
2432
|
+
var SegmentedControl_default = {"control":"bds121SegmentedControl-control","thumb":"bds121SegmentedControl-thumb","indicator":"bds121SegmentedControl-indicator","item":"bds121SegmentedControl-item","--active":"bds121SegmentedControl---active","--disabled":"bds121SegmentedControl---disabled","--size_small":"bds121SegmentedControl---size_small","--size_large":"bds121SegmentedControl---size_large","--variant_outline":"bds121SegmentedControl---variant_outline"};
|
|
2429
2433
|
|
|
2430
2434
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2431
2435
|
var import_design_system_foundation42 = require("@boostdev/design-system-foundation");
|
|
@@ -2481,7 +2485,7 @@ function SegmentedControl({
|
|
|
2481
2485
|
var import_react21 = require("react");
|
|
2482
2486
|
|
|
2483
2487
|
// src/components/interaction/form/Select/Select.module.css
|
|
2484
|
-
var Select_default = {"formGroup":"
|
|
2488
|
+
var Select_default = {"formGroup":"bds121Select-formGroup","selectWrapper":"bds121Select-selectWrapper","select":"bds121Select-select","selectError":"bds121Select-selectError","chevron":"bds121Select-chevron"};
|
|
2485
2489
|
|
|
2486
2490
|
// src/components/interaction/form/Select/Select.tsx
|
|
2487
2491
|
var import_design_system_foundation43 = require("@boostdev/design-system-foundation");
|
|
@@ -2532,7 +2536,7 @@ function Select({
|
|
|
2532
2536
|
var import_react22 = require("react");
|
|
2533
2537
|
|
|
2534
2538
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2535
|
-
var Slider_default = {"formGroup":"
|
|
2539
|
+
var Slider_default = {"formGroup":"bds121Slider-formGroup","labelRow":"bds121Slider-labelRow","value":"bds121Slider-value","slider":"bds121Slider-slider","sliderError":"bds121Slider-sliderError"};
|
|
2536
2540
|
|
|
2537
2541
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2538
2542
|
var import_design_system_foundation44 = require("@boostdev/design-system-foundation");
|
|
@@ -2594,7 +2598,7 @@ function Slider({
|
|
|
2594
2598
|
var import_react23 = require("react");
|
|
2595
2599
|
|
|
2596
2600
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2597
|
-
var Switch_default = {"switchGroup":"
|
|
2601
|
+
var Switch_default = {"switchGroup":"bds121Switch-switchGroup","--size_small":"bds121Switch---size_small","--size_medium":"bds121Switch---size_medium","--size_large":"bds121Switch---size_large","inputWrapper":"bds121Switch-inputWrapper","trackWrapper":"bds121Switch-trackWrapper","switch":"bds121Switch-switch","track":"bds121Switch-track","thumb":"bds121Switch-thumb","switchError":"bds121Switch-switchError"};
|
|
2598
2602
|
|
|
2599
2603
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2600
2604
|
var import_design_system_foundation45 = require("@boostdev/design-system-foundation");
|
|
@@ -2642,7 +2646,7 @@ function Switch({
|
|
|
2642
2646
|
var import_react24 = require("react");
|
|
2643
2647
|
|
|
2644
2648
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2645
|
-
var Textarea_default = {"formGroup":"
|
|
2649
|
+
var Textarea_default = {"formGroup":"bds121Textarea-formGroup","textarea":"bds121Textarea-textarea","textareaError":"bds121Textarea-textareaError"};
|
|
2646
2650
|
|
|
2647
2651
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2648
2652
|
var import_design_system_foundation46 = require("@boostdev/design-system-foundation");
|
|
@@ -2681,7 +2685,7 @@ function Textarea({
|
|
|
2681
2685
|
}
|
|
2682
2686
|
|
|
2683
2687
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2684
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2688
|
+
var ButtonGroup_default = {"buttonGroup":"bds121ButtonGroup-buttonGroup","container":"bds121ButtonGroup-container","--variant_card":"bds121ButtonGroup---variant_card","--variant_flow":"bds121ButtonGroup---variant_flow","--variant_modal":"bds121ButtonGroup---variant_modal","--variant_content":"bds121ButtonGroup---variant_content","--variant_grid":"bds121ButtonGroup---variant_grid"};
|
|
2685
2689
|
|
|
2686
2690
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2687
2691
|
var import_design_system_foundation47 = require("@boostdev/design-system-foundation");
|
|
@@ -2699,7 +2703,7 @@ function ButtonGroup({ children, className, variant, "aria-label": ariaLabel })
|
|
|
2699
2703
|
}
|
|
2700
2704
|
|
|
2701
2705
|
// src/components/layout/Card/Card.module.css
|
|
2702
|
-
var Card_default = {"card":"
|
|
2706
|
+
var Card_default = {"card":"bds121Card-card","--default":"bds121Card---default","--elevated":"bds121Card---elevated","--outlined":"bds121Card---outlined","--clickable":"bds121Card---clickable","--padding-none":"bds121Card---padding-none","--padding-small":"bds121Card---padding-small","--padding-medium":"bds121Card---padding-medium","--padding-large":"bds121Card---padding-large","--text-start":"bds121Card---text-start","--text-center":"bds121Card---text-center","--text-end":"bds121Card---text-end"};
|
|
2703
2707
|
|
|
2704
2708
|
// src/components/layout/Card/Card.tsx
|
|
2705
2709
|
var import_design_system_foundation48 = require("@boostdev/design-system-foundation");
|
|
@@ -2737,7 +2741,7 @@ function Card({
|
|
|
2737
2741
|
}
|
|
2738
2742
|
|
|
2739
2743
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2740
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2744
|
+
var SectionHeader_default = {"sectionHeader":"bds121SectionHeader-sectionHeader","title":"bds121SectionHeader-title","subtitle":"bds121SectionHeader-subtitle","--start":"bds121SectionHeader---start","--center":"bds121SectionHeader---center","--end":"bds121SectionHeader---end","--small":"bds121SectionHeader---small","--medium":"bds121SectionHeader---medium","--large":"bds121SectionHeader---large"};
|
|
2741
2745
|
|
|
2742
2746
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2743
2747
|
var import_design_system_foundation49 = require("@boostdev/design-system-foundation");
|
|
@@ -2758,7 +2762,7 @@ function SectionHeader({
|
|
|
2758
2762
|
}
|
|
2759
2763
|
|
|
2760
2764
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2761
|
-
var IconWrapper_default = {"wrapper":"
|
|
2765
|
+
var IconWrapper_default = {"wrapper":"bds121IconWrapper-wrapper"};
|
|
2762
2766
|
|
|
2763
2767
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2764
2768
|
var import_design_system_foundation50 = require("@boostdev/design-system-foundation");
|