@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.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { useId, useState } from "react";
|
|
3
3
|
|
|
4
4
|
// src/components/ui/Accordion/Accordion.module.css
|
|
5
|
-
var Accordion_default = {"accordion":"
|
|
5
|
+
var Accordion_default = {"accordion":"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"};
|
|
6
6
|
|
|
7
7
|
// src/components/ui/Accordion/Accordion.tsx
|
|
8
8
|
import { cn } from "@boostdev/design-system-foundation";
|
|
@@ -70,7 +70,7 @@ function Accordion({
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
// src/components/ui/Alert/Alert.module.css
|
|
73
|
-
var Alert_default = {"alert":"
|
|
73
|
+
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"};
|
|
74
74
|
|
|
75
75
|
// src/components/ui/Alert/Alert.tsx
|
|
76
76
|
import { cn as cn2 } from "@boostdev/design-system-foundation";
|
|
@@ -113,7 +113,7 @@ function Alert({
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
// src/components/ui/Avatar/Avatar.module.css
|
|
116
|
-
var Avatar_default = {"avatar":"
|
|
116
|
+
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"};
|
|
117
117
|
|
|
118
118
|
// src/components/ui/Avatar/Avatar.tsx
|
|
119
119
|
import { cn as cn3 } from "@boostdev/design-system-foundation";
|
|
@@ -139,7 +139,7 @@ function Avatar({ src, alt, name, size = "medium", className }) {
|
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
// src/components/ui/Badge/Badge.module.css
|
|
142
|
-
var Badge_default = {"badge":"
|
|
142
|
+
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"};
|
|
143
143
|
|
|
144
144
|
// src/components/ui/Badge/Badge.tsx
|
|
145
145
|
import { cn as cn4 } from "@boostdev/design-system-foundation";
|
|
@@ -149,7 +149,7 @@ function Badge({ children, variant = "primary", className }) {
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
152
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
152
|
+
var Breadcrumb_default = {"breadcrumb":"bds121Breadcrumb-breadcrumb","list":"bds121Breadcrumb-list","item":"bds121Breadcrumb-item","link":"bds121Breadcrumb-link","separator":"bds121Breadcrumb-separator","current":"bds121Breadcrumb-current"};
|
|
153
153
|
|
|
154
154
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
155
155
|
import { cn as cn5 } from "@boostdev/design-system-foundation";
|
|
@@ -165,7 +165,7 @@ function Breadcrumb({ items, className }) {
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
// src/components/ui/Collapsible/Collapsible.module.css
|
|
168
|
-
var Collapsible_default = {"collapsible":"
|
|
168
|
+
var Collapsible_default = {"collapsible":"bds121Collapsible-collapsible","summary":"bds121Collapsible-summary","summaryContent":"bds121Collapsible-summaryContent","icon":"bds121Collapsible-icon","content":"bds121Collapsible-content"};
|
|
169
169
|
|
|
170
170
|
// src/components/ui/Collapsible/Collapsible.tsx
|
|
171
171
|
import { cn as cn6 } from "@boostdev/design-system-foundation";
|
|
@@ -206,7 +206,7 @@ function Collapsible({
|
|
|
206
206
|
import { useState as useState2, useId as useId2 } from "react";
|
|
207
207
|
|
|
208
208
|
// src/components/ui/Calendar/Calendar.module.css
|
|
209
|
-
var Calendar_default = {"calendar":"
|
|
209
|
+
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"};
|
|
210
210
|
|
|
211
211
|
// src/components/ui/Calendar/Calendar.tsx
|
|
212
212
|
import { cn as cn7 } from "@boostdev/design-system-foundation";
|
|
@@ -381,7 +381,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className }) {
|
|
|
381
381
|
import { useRef, useId as useId3 } from "react";
|
|
382
382
|
|
|
383
383
|
// src/components/ui/Carousel/Carousel.module.css
|
|
384
|
-
var Carousel_default = {"carousel":"
|
|
384
|
+
var Carousel_default = {"carousel":"bds121Carousel-carousel","track":"bds121Carousel-track","slide":"bds121Carousel-slide","navBtn":"bds121Carousel-navBtn"};
|
|
385
385
|
|
|
386
386
|
// src/components/ui/Carousel/Carousel.tsx
|
|
387
387
|
import { cn as cn8 } from "@boostdev/design-system-foundation";
|
|
@@ -434,7 +434,7 @@ function Carousel({ items, label, className }) {
|
|
|
434
434
|
}
|
|
435
435
|
|
|
436
436
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
437
|
-
var DescriptionList_default = {"list":"
|
|
437
|
+
var DescriptionList_default = {"list":"bds121DescriptionList-list","group":"bds121DescriptionList-group","term":"bds121DescriptionList-term","details":"bds121DescriptionList-details","--layout_inline":"bds121DescriptionList---layout_inline"};
|
|
438
438
|
|
|
439
439
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
440
440
|
import { cn as cn9 } from "@boostdev/design-system-foundation";
|
|
@@ -447,7 +447,7 @@ function DescriptionList({ items, layout = "stacked", className }) {
|
|
|
447
447
|
}
|
|
448
448
|
|
|
449
449
|
// src/components/ui/Link/Link.module.css
|
|
450
|
-
var Link_default = {"link":"
|
|
450
|
+
var Link_default = {"link":"bds121Link-link","--variant_default":"bds121Link---variant_default","--variant_subtle":"bds121Link---variant_subtle","--variant_standalone":"bds121Link---variant_standalone","externalLabel":"bds121Link-externalLabel"};
|
|
451
451
|
|
|
452
452
|
// src/components/ui/Link/Link.tsx
|
|
453
453
|
import { cn as cn10 } from "@boostdev/design-system-foundation";
|
|
@@ -478,7 +478,7 @@ function Link({
|
|
|
478
478
|
}
|
|
479
479
|
|
|
480
480
|
// src/components/ui/Loading/Loading.module.css
|
|
481
|
-
var Loading_default = {"loading":"
|
|
481
|
+
var Loading_default = {"loading":"bds121Loading-loading","spinner":"bds121Loading-spinner","--size_small":"bds121Loading---size_small","--size_large":"bds121Loading---size_large"};
|
|
482
482
|
|
|
483
483
|
// src/components/ui/Loading/Loading.tsx
|
|
484
484
|
import { cn as cn11 } from "@boostdev/design-system-foundation";
|
|
@@ -488,7 +488,7 @@ function Loading({ size = "medium", className }) {
|
|
|
488
488
|
}
|
|
489
489
|
|
|
490
490
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
491
|
-
var NotificationBanner_default = {"banner":"
|
|
491
|
+
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"};
|
|
492
492
|
|
|
493
493
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
494
494
|
import { cn as cn12 } from "@boostdev/design-system-foundation";
|
|
@@ -527,7 +527,7 @@ function NotificationBanner({
|
|
|
527
527
|
}
|
|
528
528
|
|
|
529
529
|
// src/components/ui/Pagination/Pagination.module.css
|
|
530
|
-
var Pagination_default = {"pagination":"
|
|
530
|
+
var Pagination_default = {"pagination":"bds121Pagination-pagination","list":"bds121Pagination-list","button":"bds121Pagination-button","--active":"bds121Pagination---active","--nav":"bds121Pagination---nav","ellipsis":"bds121Pagination-ellipsis"};
|
|
531
531
|
|
|
532
532
|
// src/components/ui/Pagination/Pagination.tsx
|
|
533
533
|
import { cn as cn13 } from "@boostdev/design-system-foundation";
|
|
@@ -591,7 +591,7 @@ function Pagination({
|
|
|
591
591
|
}
|
|
592
592
|
|
|
593
593
|
// src/components/ui/Progress/Progress.module.css
|
|
594
|
-
var Progress_default = {"container":"
|
|
594
|
+
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"};
|
|
595
595
|
|
|
596
596
|
// src/components/ui/Progress/Progress.tsx
|
|
597
597
|
import { cn as cn14 } from "@boostdev/design-system-foundation";
|
|
@@ -629,7 +629,7 @@ function Progress({
|
|
|
629
629
|
}
|
|
630
630
|
|
|
631
631
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
632
|
-
var ProgressCircle_default = {"wrapper":"
|
|
632
|
+
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"};
|
|
633
633
|
|
|
634
634
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
635
635
|
import { cn as cn15 } from "@boostdev/design-system-foundation";
|
|
@@ -708,7 +708,7 @@ function ProgressCircle({
|
|
|
708
708
|
}
|
|
709
709
|
|
|
710
710
|
// src/components/ui/Separator/Separator.module.css
|
|
711
|
-
var Separator_default = {"separator":"
|
|
711
|
+
var Separator_default = {"separator":"bds121Separator-separator","--horizontal":"bds121Separator---horizontal","--vertical":"bds121Separator---vertical"};
|
|
712
712
|
|
|
713
713
|
// src/components/ui/Separator/Separator.tsx
|
|
714
714
|
import { cn as cn16 } from "@boostdev/design-system-foundation";
|
|
@@ -731,7 +731,7 @@ function Separator({ orientation = "horizontal", className }) {
|
|
|
731
731
|
import { cn as cn17 } from "@boostdev/design-system-foundation";
|
|
732
732
|
|
|
733
733
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
734
|
-
var Skeleton_default = {"skeleton":"
|
|
734
|
+
var Skeleton_default = {"skeleton":"bds121Skeleton-skeleton"};
|
|
735
735
|
|
|
736
736
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
737
737
|
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
@@ -740,7 +740,7 @@ function Skeleton({ className }) {
|
|
|
740
740
|
}
|
|
741
741
|
|
|
742
742
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
743
|
-
var SkipLink_default = {"skipLink":"
|
|
743
|
+
var SkipLink_default = {"skipLink":"bds121SkipLink-skipLink"};
|
|
744
744
|
|
|
745
745
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
746
746
|
import { cn as cn18 } from "@boostdev/design-system-foundation";
|
|
@@ -750,7 +750,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
|
|
|
750
750
|
}
|
|
751
751
|
|
|
752
752
|
// src/components/ui/Table/Table.module.css
|
|
753
|
-
var Table_default = {"wrapper":"
|
|
753
|
+
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"};
|
|
754
754
|
|
|
755
755
|
// src/components/ui/Table/Table.tsx
|
|
756
756
|
import { cn as cn19 } from "@boostdev/design-system-foundation";
|
|
@@ -820,7 +820,7 @@ function Table({
|
|
|
820
820
|
import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
|
|
821
821
|
|
|
822
822
|
// src/components/ui/Tabs/Tabs.module.css
|
|
823
|
-
var Tabs_default = {"tabs":"
|
|
823
|
+
var Tabs_default = {"tabs":"bds121Tabs-tabs","tabList":"bds121Tabs-tabList","tab":"bds121Tabs-tab","--active":"bds121Tabs---active","panel":"bds121Tabs-panel"};
|
|
824
824
|
|
|
825
825
|
// src/components/ui/Tabs/Tabs.tsx
|
|
826
826
|
import { cn as cn20 } from "@boostdev/design-system-foundation";
|
|
@@ -900,7 +900,7 @@ function Tabs({ tabs, defaultTab, className }) {
|
|
|
900
900
|
import { cloneElement, isValidElement, useId as useId5, useState as useState4 } from "react";
|
|
901
901
|
|
|
902
902
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
903
|
-
var Tooltip_default = {"wrapper":"
|
|
903
|
+
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"};
|
|
904
904
|
|
|
905
905
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
906
906
|
import { cn as cn21 } from "@boostdev/design-system-foundation";
|
|
@@ -942,7 +942,7 @@ function Tooltip({
|
|
|
942
942
|
}
|
|
943
943
|
|
|
944
944
|
// src/components/ui/Typography/Typography.module.css
|
|
945
|
-
var Typography_default = {"typography":"
|
|
945
|
+
var Typography_default = {"typography":"bds121Typography-typography","--h1":"bds121Typography---h1","--h2":"bds121Typography---h2","--h3":"bds121Typography---h3","--body":"bds121Typography---body","--body_s":"bds121Typography---body_s"};
|
|
946
946
|
|
|
947
947
|
// src/components/ui/Typography/Typography.tsx
|
|
948
948
|
import { cn as cn22 } from "@boostdev/design-system-foundation";
|
|
@@ -960,7 +960,7 @@ function Typography({ variant = "body", component, children, className }) {
|
|
|
960
960
|
}
|
|
961
961
|
|
|
962
962
|
// src/components/interaction/Button/Button.module.css
|
|
963
|
-
var Button_default = {"button":"
|
|
963
|
+
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"};
|
|
964
964
|
|
|
965
965
|
// src/components/interaction/Button/Button.tsx
|
|
966
966
|
import { cn as cn23 } from "@boostdev/design-system-foundation";
|
|
@@ -1075,7 +1075,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1075
1075
|
}
|
|
1076
1076
|
|
|
1077
1077
|
// src/components/interaction/Command/Command.module.css
|
|
1078
|
-
var Command_default = {"dialog":"
|
|
1078
|
+
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"};
|
|
1079
1079
|
|
|
1080
1080
|
// src/components/interaction/Command/Command.tsx
|
|
1081
1081
|
import { cn as cn24 } from "@boostdev/design-system-foundation";
|
|
@@ -1250,7 +1250,7 @@ function Command({
|
|
|
1250
1250
|
import { useEffect as useEffect2, useId as useId7, useRef as useRef4 } from "react";
|
|
1251
1251
|
|
|
1252
1252
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1253
|
-
var Dialog_default = {"dialog":"
|
|
1253
|
+
var Dialog_default = {"dialog":"bds121Dialog-dialog","dialogContent":"bds121Dialog-dialogContent","closeButton":"bds121Dialog-closeButton"};
|
|
1254
1254
|
|
|
1255
1255
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1256
1256
|
import { cn as cn25 } from "@boostdev/design-system-foundation";
|
|
@@ -1355,7 +1355,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1355
1355
|
import { useEffect as useEffect3, useId as useId8, useRef as useRef5 } from "react";
|
|
1356
1356
|
|
|
1357
1357
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1358
|
-
var Drawer_default = {"drawer":"
|
|
1358
|
+
var Drawer_default = {"drawer":"bds121Drawer-drawer","--side_left":"bds121Drawer---side_left","header":"bds121Drawer-header","closeButton":"bds121Drawer-closeButton","body":"bds121Drawer-body"};
|
|
1359
1359
|
|
|
1360
1360
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1361
1361
|
import { cn as cn26 } from "@boostdev/design-system-foundation";
|
|
@@ -1411,13 +1411,17 @@ function Drawer({
|
|
|
1411
1411
|
return () => dialog.removeEventListener("command", handleCommand);
|
|
1412
1412
|
}, [onOpen, onClose]);
|
|
1413
1413
|
const handleClick = (e) => {
|
|
1414
|
-
|
|
1414
|
+
const dialog = dialogRef.current;
|
|
1415
|
+
if (!dialog) return;
|
|
1416
|
+
const rect = dialog.getBoundingClientRect();
|
|
1417
|
+
const outside = e.clientX < rect.left || e.clientX > rect.right || e.clientY < rect.top || e.clientY > rect.bottom;
|
|
1418
|
+
if (outside) onClose();
|
|
1415
1419
|
};
|
|
1416
1420
|
const handleCancel = (e) => {
|
|
1417
1421
|
e.preventDefault();
|
|
1418
1422
|
onClose();
|
|
1419
1423
|
};
|
|
1420
|
-
return /* @__PURE__ */
|
|
1424
|
+
return /* @__PURE__ */ jsxs19(
|
|
1421
1425
|
"dialog",
|
|
1422
1426
|
{
|
|
1423
1427
|
ref: dialogRef,
|
|
@@ -1427,7 +1431,7 @@ function Drawer({
|
|
|
1427
1431
|
"aria-modal": "true",
|
|
1428
1432
|
onClick: handleClick,
|
|
1429
1433
|
onCancel: handleCancel,
|
|
1430
|
-
children:
|
|
1434
|
+
children: [
|
|
1431
1435
|
/* @__PURE__ */ jsxs19("div", { className: Drawer_default.header, children: [
|
|
1432
1436
|
!!title && title,
|
|
1433
1437
|
/* @__PURE__ */ jsx26(
|
|
@@ -1443,7 +1447,7 @@ function Drawer({
|
|
|
1443
1447
|
)
|
|
1444
1448
|
] }),
|
|
1445
1449
|
/* @__PURE__ */ jsx26("div", { className: Drawer_default.body, children })
|
|
1446
|
-
]
|
|
1450
|
+
]
|
|
1447
1451
|
}
|
|
1448
1452
|
);
|
|
1449
1453
|
}
|
|
@@ -1459,7 +1463,7 @@ import {
|
|
|
1459
1463
|
} from "react";
|
|
1460
1464
|
|
|
1461
1465
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1462
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1466
|
+
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"};
|
|
1463
1467
|
|
|
1464
1468
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1465
1469
|
import { cn as cn27 } from "@boostdev/design-system-foundation";
|
|
@@ -1579,7 +1583,7 @@ import {
|
|
|
1579
1583
|
} from "react";
|
|
1580
1584
|
|
|
1581
1585
|
// src/components/interaction/Popover/Popover.module.css
|
|
1582
|
-
var Popover_default = {"wrapper":"
|
|
1586
|
+
var Popover_default = {"wrapper":"bds121Popover-wrapper","panel":"bds121Popover-panel","g":"bds121Popover-g"};
|
|
1583
1587
|
|
|
1584
1588
|
// src/components/interaction/Popover/Popover.tsx
|
|
1585
1589
|
import { cn as cn28 } from "@boostdev/design-system-foundation";
|
|
@@ -1663,7 +1667,7 @@ function Popover({
|
|
|
1663
1667
|
}
|
|
1664
1668
|
|
|
1665
1669
|
// src/components/interaction/Rating/Rating.module.css
|
|
1666
|
-
var Rating_default = {"rating":"
|
|
1670
|
+
var Rating_default = {"rating":"bds121Rating-rating","star":"bds121Rating-star","--filled":"bds121Rating---filled"};
|
|
1667
1671
|
|
|
1668
1672
|
// src/components/interaction/Rating/Rating.tsx
|
|
1669
1673
|
import { cn as cn29 } from "@boostdev/design-system-foundation";
|
|
@@ -1694,7 +1698,7 @@ function Rating({ value, max = 5, className }) {
|
|
|
1694
1698
|
import { useState as useState8, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2, useRef as useRef8 } from "react";
|
|
1695
1699
|
|
|
1696
1700
|
// src/components/interaction/Toast/Toast.module.css
|
|
1697
|
-
var Toast_default = {"toastContainer":"
|
|
1701
|
+
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"};
|
|
1698
1702
|
|
|
1699
1703
|
// src/components/interaction/Toast/Toast.tsx
|
|
1700
1704
|
import { cn as cn30 } from "@boostdev/design-system-foundation";
|
|
@@ -1767,10 +1771,10 @@ function useToast() {
|
|
|
1767
1771
|
import { useId as useId11 } from "react";
|
|
1768
1772
|
|
|
1769
1773
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1770
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1774
|
+
var Checkbox_default = {"checkboxGroup":"bds121Checkbox-checkboxGroup","inputWrapper":"bds121Checkbox-inputWrapper","checkbox":"bds121Checkbox-checkbox","checkboxError":"bds121Checkbox-checkboxError"};
|
|
1771
1775
|
|
|
1772
1776
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1773
|
-
var Message_default = {"error":"
|
|
1777
|
+
var Message_default = {"error":"bds121Message-error","hint":"bds121Message-hint"};
|
|
1774
1778
|
|
|
1775
1779
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1776
1780
|
import { cn as cn31 } from "@boostdev/design-system-foundation";
|
|
@@ -1781,7 +1785,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1781
1785
|
};
|
|
1782
1786
|
|
|
1783
1787
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1784
|
-
var Label_default = {"label":"
|
|
1788
|
+
var Label_default = {"label":"bds121Label-label"};
|
|
1785
1789
|
|
|
1786
1790
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1787
1791
|
import { cn as cn32 } from "@boostdev/design-system-foundation";
|
|
@@ -1794,7 +1798,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1794
1798
|
import { cn as cn34 } from "@boostdev/design-system-foundation";
|
|
1795
1799
|
|
|
1796
1800
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1797
|
-
var InputContainer_default = {"container":"
|
|
1801
|
+
var InputContainer_default = {"container":"bds121InputContainer-container"};
|
|
1798
1802
|
|
|
1799
1803
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1800
1804
|
import { cn as cn33 } from "@boostdev/design-system-foundation";
|
|
@@ -1835,7 +1839,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1835
1839
|
import { useId as useId12 } from "react";
|
|
1836
1840
|
|
|
1837
1841
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1838
|
-
var CheckboxGroup_default = {"group":"
|
|
1842
|
+
var CheckboxGroup_default = {"group":"bds121CheckboxGroup-group","legend":"bds121CheckboxGroup-legend","required":"bds121CheckboxGroup-required","items":"bds121CheckboxGroup-items"};
|
|
1839
1843
|
|
|
1840
1844
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1841
1845
|
import { cn as cn35 } from "@boostdev/design-system-foundation";
|
|
@@ -1883,7 +1887,7 @@ import {
|
|
|
1883
1887
|
} from "react";
|
|
1884
1888
|
|
|
1885
1889
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1886
|
-
var Combobox_default = {"formGroup":"
|
|
1890
|
+
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"};
|
|
1887
1891
|
|
|
1888
1892
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1889
1893
|
import { cn as cn36 } from "@boostdev/design-system-foundation";
|
|
@@ -2033,7 +2037,7 @@ function Combobox({
|
|
|
2033
2037
|
import { useId as useId14, useRef as useRef10, useState as useState10 } from "react";
|
|
2034
2038
|
|
|
2035
2039
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2036
|
-
var FileInput_default = {"formGroup":"
|
|
2040
|
+
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"};
|
|
2037
2041
|
|
|
2038
2042
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2039
2043
|
import { cn as cn37 } from "@boostdev/design-system-foundation";
|
|
@@ -2133,7 +2137,7 @@ function FileInput({
|
|
|
2133
2137
|
import { useId as useId15 } from "react";
|
|
2134
2138
|
|
|
2135
2139
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2136
|
-
var FormInput_default = {"formGroup":"
|
|
2140
|
+
var FormInput_default = {"formGroup":"bds121FormInput-formGroup","input":"bds121FormInput-input","inputError":"bds121FormInput-inputError"};
|
|
2137
2141
|
|
|
2138
2142
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2139
2143
|
import { cn as cn38 } from "@boostdev/design-system-foundation";
|
|
@@ -2177,7 +2181,7 @@ function FormInput({
|
|
|
2177
2181
|
import { useId as useId16, useRef as useRef11, useState as useState11 } from "react";
|
|
2178
2182
|
|
|
2179
2183
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2180
|
-
var NumberInput_default = {"formGroup":"
|
|
2184
|
+
var NumberInput_default = {"formGroup":"bds121NumberInput-formGroup","inputRow":"bds121NumberInput-inputRow","input":"bds121NumberInput-input","inputError":"bds121NumberInput-inputError","stepper":"bds121NumberInput-stepper"};
|
|
2181
2185
|
|
|
2182
2186
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2183
2187
|
import { cn as cn39 } from "@boostdev/design-system-foundation";
|
|
@@ -2281,7 +2285,7 @@ function NumberInput({
|
|
|
2281
2285
|
import { useId as useId17 } from "react";
|
|
2282
2286
|
|
|
2283
2287
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2284
|
-
var Radio_default = {"radioGroup":"
|
|
2288
|
+
var Radio_default = {"radioGroup":"bds121Radio-radioGroup","inputWrapper":"bds121Radio-inputWrapper","textWrapper":"bds121Radio-textWrapper","description":"bds121Radio-description","radio":"bds121Radio-radio","radioError":"bds121Radio-radioError"};
|
|
2285
2289
|
|
|
2286
2290
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2287
2291
|
import { cn as cn40 } from "@boostdev/design-system-foundation";
|
|
@@ -2319,7 +2323,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2319
2323
|
import { useId as useId18 } from "react";
|
|
2320
2324
|
|
|
2321
2325
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2322
|
-
var RadioGroup_default = {"group":"
|
|
2326
|
+
var RadioGroup_default = {"group":"bds121RadioGroup-group","legend":"bds121RadioGroup-legend","required":"bds121RadioGroup-required","items":"bds121RadioGroup-items"};
|
|
2323
2327
|
|
|
2324
2328
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2325
2329
|
import { cn as cn41 } from "@boostdev/design-system-foundation";
|
|
@@ -2361,7 +2365,7 @@ function RadioGroup({
|
|
|
2361
2365
|
import { Children, cloneElement as cloneElement4, isValidElement as isValidElement4 } from "react";
|
|
2362
2366
|
|
|
2363
2367
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2364
|
-
var SegmentedControl_default = {"control":"
|
|
2368
|
+
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"};
|
|
2365
2369
|
|
|
2366
2370
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2367
2371
|
import { cn as cn42 } from "@boostdev/design-system-foundation";
|
|
@@ -2417,7 +2421,7 @@ function SegmentedControl({
|
|
|
2417
2421
|
import { useId as useId19 } from "react";
|
|
2418
2422
|
|
|
2419
2423
|
// src/components/interaction/form/Select/Select.module.css
|
|
2420
|
-
var Select_default = {"formGroup":"
|
|
2424
|
+
var Select_default = {"formGroup":"bds121Select-formGroup","selectWrapper":"bds121Select-selectWrapper","select":"bds121Select-select","selectError":"bds121Select-selectError","chevron":"bds121Select-chevron"};
|
|
2421
2425
|
|
|
2422
2426
|
// src/components/interaction/form/Select/Select.tsx
|
|
2423
2427
|
import { cn as cn43 } from "@boostdev/design-system-foundation";
|
|
@@ -2468,7 +2472,7 @@ function Select({
|
|
|
2468
2472
|
import { useId as useId20, useState as useState12 } from "react";
|
|
2469
2473
|
|
|
2470
2474
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2471
|
-
var Slider_default = {"formGroup":"
|
|
2475
|
+
var Slider_default = {"formGroup":"bds121Slider-formGroup","labelRow":"bds121Slider-labelRow","value":"bds121Slider-value","slider":"bds121Slider-slider","sliderError":"bds121Slider-sliderError"};
|
|
2472
2476
|
|
|
2473
2477
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2474
2478
|
import { cn as cn44 } from "@boostdev/design-system-foundation";
|
|
@@ -2530,7 +2534,7 @@ function Slider({
|
|
|
2530
2534
|
import { useId as useId21 } from "react";
|
|
2531
2535
|
|
|
2532
2536
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2533
|
-
var Switch_default = {"switchGroup":"
|
|
2537
|
+
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"};
|
|
2534
2538
|
|
|
2535
2539
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2536
2540
|
import { cn as cn45 } from "@boostdev/design-system-foundation";
|
|
@@ -2578,7 +2582,7 @@ function Switch({
|
|
|
2578
2582
|
import { useId as useId22 } from "react";
|
|
2579
2583
|
|
|
2580
2584
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2581
|
-
var Textarea_default = {"formGroup":"
|
|
2585
|
+
var Textarea_default = {"formGroup":"bds121Textarea-formGroup","textarea":"bds121Textarea-textarea","textareaError":"bds121Textarea-textareaError"};
|
|
2582
2586
|
|
|
2583
2587
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2584
2588
|
import { cn as cn46 } from "@boostdev/design-system-foundation";
|
|
@@ -2617,7 +2621,7 @@ function Textarea({
|
|
|
2617
2621
|
}
|
|
2618
2622
|
|
|
2619
2623
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2620
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2624
|
+
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"};
|
|
2621
2625
|
|
|
2622
2626
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2623
2627
|
import { cn as cn47 } from "@boostdev/design-system-foundation";
|
|
@@ -2635,7 +2639,7 @@ function ButtonGroup({ children, className, variant, "aria-label": ariaLabel })
|
|
|
2635
2639
|
}
|
|
2636
2640
|
|
|
2637
2641
|
// src/components/layout/Card/Card.module.css
|
|
2638
|
-
var Card_default = {"card":"
|
|
2642
|
+
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"};
|
|
2639
2643
|
|
|
2640
2644
|
// src/components/layout/Card/Card.tsx
|
|
2641
2645
|
import { cn as cn48 } from "@boostdev/design-system-foundation";
|
|
@@ -2673,7 +2677,7 @@ function Card({
|
|
|
2673
2677
|
}
|
|
2674
2678
|
|
|
2675
2679
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2676
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2680
|
+
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"};
|
|
2677
2681
|
|
|
2678
2682
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2679
2683
|
import { cn as cn49 } from "@boostdev/design-system-foundation";
|
|
@@ -2694,7 +2698,7 @@ function SectionHeader({
|
|
|
2694
2698
|
}
|
|
2695
2699
|
|
|
2696
2700
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2697
|
-
var IconWrapper_default = {"wrapper":"
|
|
2701
|
+
var IconWrapper_default = {"wrapper":"bds121IconWrapper-wrapper"};
|
|
2698
2702
|
|
|
2699
2703
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2700
2704
|
import { cn as cn50 } from "@boostdev/design-system-foundation";
|
|
@@ -97,8 +97,13 @@ var BdsSegmentedControl = class extends i2 {
|
|
|
97
97
|
display: none;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
+
:host([variant='outline']) .item {
|
|
101
|
+
background-color: var(--segmented_item-bg, transparent);
|
|
102
|
+
}
|
|
103
|
+
|
|
100
104
|
:host([variant='outline']) .item.--active {
|
|
101
105
|
color: var(--segmented_color--active, var(--bds-color_interactive));
|
|
106
|
+
background-color: var(--segmented_item-bg--active, var(--bds-color_bg));
|
|
102
107
|
}
|
|
103
108
|
|
|
104
109
|
:host([variant='outline']) .indicator {
|
|
@@ -72,6 +72,7 @@ var BdsCollapsible = class extends i2 {
|
|
|
72
72
|
|
|
73
73
|
.content {
|
|
74
74
|
padding: var(--bds-space_m);
|
|
75
|
+
background-color: var(--collapsible_content-bg, var(--bds-color_bg));
|
|
75
76
|
color: var(--collapsible_on-color, var(--bds-color_on-bg));
|
|
76
77
|
font-size: var(--bds-font_size--body);
|
|
77
78
|
line-height: var(--bds-font_line-height--body);
|