@boostdev/design-system-components 1.2.6 → 1.2.8
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 +2 -2
- package/dist/client.cjs +57 -53
- package/dist/client.css +480 -476
- package/dist/client.d.cts +18 -8
- package/dist/client.d.ts +18 -8
- package/dist/client.js +56 -53
- package/dist/index.cjs +57 -53
- package/dist/index.css +480 -476
- package/dist/index.d.cts +18 -8
- package/dist/index.d.ts +18 -8
- package/dist/index.js +56 -53
- package/dist/native/index.cjs +3 -1
- package/dist/native/index.d.cts +11 -3
- package/dist/native/index.d.ts +11 -3
- package/dist/native/index.js +3 -1
- package/package.json +1 -1
- package/src/components/interaction/Button/Button.mdx +1 -1
- package/src/components/layout/ButtonGroup/ButtonGroup.mdx +5 -3
- package/src/components/layout/ButtonGroup/ButtonGroup.module.css +1 -0
- package/src/components/layout/ButtonGroup/ButtonGroup.native.tsx +12 -2
- package/src/components/layout/ButtonGroup/ButtonGroup.spec.tsx +14 -5
- package/src/components/layout/ButtonGroup/ButtonGroup.stories.tsx +10 -10
- package/src/components/layout/ButtonGroup/ButtonGroup.tsx +12 -2
- package/src/components/layout/ButtonGroup/index.ts +2 -2
- package/src/components/layout/Card/Card.mdx +9 -1
- package/src/components/layout/Card/Card.module.css +8 -4
- package/src/components/layout/Card/Card.spec.tsx +30 -0
- package/src/components/layout/Card/Card.stories.tsx +3 -1
- package/src/components/layout/Card/Card.tsx +12 -8
- package/src/index.ts +2 -2
- package/src/native.ts +2 -2
package/dist/client.d.cts
CHANGED
|
@@ -431,17 +431,27 @@ interface TextareaProps extends WithClassName, TextareaHTMLAttributes<HTMLTextAr
|
|
|
431
431
|
}
|
|
432
432
|
declare function Textarea({ label, name, error, hint, className, required, ...props }: Readonly<TextareaProps>): react_jsx_runtime.JSX.Element;
|
|
433
433
|
|
|
434
|
-
interface
|
|
434
|
+
interface ButtonContainerProps extends WithClassName, HTMLAttributes<HTMLDivElement> {
|
|
435
435
|
variant?: 'flow' | 'card' | 'modal' | 'content';
|
|
436
436
|
}
|
|
437
|
-
declare function
|
|
438
|
-
|
|
439
|
-
|
|
437
|
+
declare function ButtonContainer({ children, className, variant, ...rest }: ButtonContainerProps): react_jsx_runtime.JSX.Element;
|
|
438
|
+
/**
|
|
439
|
+
* @deprecated Use `ButtonContainer` instead. `ButtonGroup` will be removed in the next major version.
|
|
440
|
+
*/
|
|
441
|
+
declare const ButtonGroup: typeof ButtonContainer;
|
|
442
|
+
/**
|
|
443
|
+
* @deprecated Use `ButtonContainerProps` instead. `ButtonGroupProps` will be removed in the next major version.
|
|
444
|
+
*/
|
|
445
|
+
type ButtonGroupProps = ButtonContainerProps;
|
|
446
|
+
|
|
447
|
+
type CardOwnProps = WithClassName & {
|
|
440
448
|
variant?: 'default' | 'elevated' | 'outlined';
|
|
441
|
-
padding?: 'none' | 'small' | 'medium' | 'large';
|
|
449
|
+
padding?: 'none' | 'small' | 'medium' | 'large' | 'extra-large';
|
|
442
450
|
textAlign?: 'start' | 'center' | 'end';
|
|
443
|
-
|
|
444
|
-
|
|
451
|
+
as?: ElementType;
|
|
452
|
+
};
|
|
453
|
+
type CardProps<C extends ElementType = 'div'> = CardOwnProps & Omit<ComponentPropsWithoutRef<C>, keyof CardOwnProps>;
|
|
454
|
+
declare function Card<C extends ElementType = 'div'>({ children, className, variant, padding, textAlign, as, onClick, ...rest }: CardProps<C>): react_jsx_runtime.JSX.Element;
|
|
445
455
|
|
|
446
456
|
type IntrinsicElement = keyof JSX.IntrinsicElements;
|
|
447
457
|
type SectionHeaderProps = WithClassName & Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
|
|
@@ -458,4 +468,4 @@ interface IconWrapperProps extends WithClassName, HTMLAttributes<HTMLDivElement>
|
|
|
458
468
|
}
|
|
459
469
|
declare function IconWrapper({ children, className, ...rest }: IconWrapperProps): react_jsx_runtime.JSX.Element;
|
|
460
470
|
|
|
461
|
-
export { Accordion, type AccordionItem, Alert, Avatar, Badge, Breadcrumb, type BreadcrumbItem, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, Card, Carousel, Checkbox, CheckboxGroup, type CheckboxGroupProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, Command, type CommandItem, type DescriptionItem, DescriptionList, Dialog, Drawer, DropdownMenu, type DropdownMenuItem, FileInput, FormInput, IconWrapper, type IconWrapperProps, Link, Loading, NotificationBanner, NumberInput, Pagination, Popover, Progress, ProgressCircle, Radio, RadioGroup, type RadioGroupProps, Rating, SectionHeader, SegmentedControl, type SegmentedControlProps, Select, type SelectOption, Separator, Skeleton, SkipLink, Slider, Switch, type TabItem, Table, type TableColumn, Tabs, Textarea, ToastProvider, Tooltip, Typography, type WithClassName, useToast };
|
|
471
|
+
export { Accordion, type AccordionItem, Alert, Avatar, Badge, Breadcrumb, type BreadcrumbItem, Button, ButtonContainer, type ButtonContainerProps, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, Card, Carousel, Checkbox, CheckboxGroup, type CheckboxGroupProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, Command, type CommandItem, type DescriptionItem, DescriptionList, Dialog, Drawer, DropdownMenu, type DropdownMenuItem, FileInput, FormInput, IconWrapper, type IconWrapperProps, Link, Loading, NotificationBanner, NumberInput, Pagination, Popover, Progress, ProgressCircle, Radio, RadioGroup, type RadioGroupProps, Rating, SectionHeader, SegmentedControl, type SegmentedControlProps, Select, type SelectOption, Separator, Skeleton, SkipLink, Slider, Switch, type TabItem, Table, type TableColumn, Tabs, Textarea, ToastProvider, Tooltip, Typography, type WithClassName, useToast };
|
package/dist/client.d.ts
CHANGED
|
@@ -431,17 +431,27 @@ interface TextareaProps extends WithClassName, TextareaHTMLAttributes<HTMLTextAr
|
|
|
431
431
|
}
|
|
432
432
|
declare function Textarea({ label, name, error, hint, className, required, ...props }: Readonly<TextareaProps>): react_jsx_runtime.JSX.Element;
|
|
433
433
|
|
|
434
|
-
interface
|
|
434
|
+
interface ButtonContainerProps extends WithClassName, HTMLAttributes<HTMLDivElement> {
|
|
435
435
|
variant?: 'flow' | 'card' | 'modal' | 'content';
|
|
436
436
|
}
|
|
437
|
-
declare function
|
|
438
|
-
|
|
439
|
-
|
|
437
|
+
declare function ButtonContainer({ children, className, variant, ...rest }: ButtonContainerProps): react_jsx_runtime.JSX.Element;
|
|
438
|
+
/**
|
|
439
|
+
* @deprecated Use `ButtonContainer` instead. `ButtonGroup` will be removed in the next major version.
|
|
440
|
+
*/
|
|
441
|
+
declare const ButtonGroup: typeof ButtonContainer;
|
|
442
|
+
/**
|
|
443
|
+
* @deprecated Use `ButtonContainerProps` instead. `ButtonGroupProps` will be removed in the next major version.
|
|
444
|
+
*/
|
|
445
|
+
type ButtonGroupProps = ButtonContainerProps;
|
|
446
|
+
|
|
447
|
+
type CardOwnProps = WithClassName & {
|
|
440
448
|
variant?: 'default' | 'elevated' | 'outlined';
|
|
441
|
-
padding?: 'none' | 'small' | 'medium' | 'large';
|
|
449
|
+
padding?: 'none' | 'small' | 'medium' | 'large' | 'extra-large';
|
|
442
450
|
textAlign?: 'start' | 'center' | 'end';
|
|
443
|
-
|
|
444
|
-
|
|
451
|
+
as?: ElementType;
|
|
452
|
+
};
|
|
453
|
+
type CardProps<C extends ElementType = 'div'> = CardOwnProps & Omit<ComponentPropsWithoutRef<C>, keyof CardOwnProps>;
|
|
454
|
+
declare function Card<C extends ElementType = 'div'>({ children, className, variant, padding, textAlign, as, onClick, ...rest }: CardProps<C>): react_jsx_runtime.JSX.Element;
|
|
445
455
|
|
|
446
456
|
type IntrinsicElement = keyof JSX.IntrinsicElements;
|
|
447
457
|
type SectionHeaderProps = WithClassName & Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
|
|
@@ -458,4 +468,4 @@ interface IconWrapperProps extends WithClassName, HTMLAttributes<HTMLDivElement>
|
|
|
458
468
|
}
|
|
459
469
|
declare function IconWrapper({ children, className, ...rest }: IconWrapperProps): react_jsx_runtime.JSX.Element;
|
|
460
470
|
|
|
461
|
-
export { Accordion, type AccordionItem, Alert, Avatar, Badge, Breadcrumb, type BreadcrumbItem, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, Card, Carousel, Checkbox, CheckboxGroup, type CheckboxGroupProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, Command, type CommandItem, type DescriptionItem, DescriptionList, Dialog, Drawer, DropdownMenu, type DropdownMenuItem, FileInput, FormInput, IconWrapper, type IconWrapperProps, Link, Loading, NotificationBanner, NumberInput, Pagination, Popover, Progress, ProgressCircle, Radio, RadioGroup, type RadioGroupProps, Rating, SectionHeader, SegmentedControl, type SegmentedControlProps, Select, type SelectOption, Separator, Skeleton, SkipLink, Slider, Switch, type TabItem, Table, type TableColumn, Tabs, Textarea, ToastProvider, Tooltip, Typography, type WithClassName, useToast };
|
|
471
|
+
export { Accordion, type AccordionItem, Alert, Avatar, Badge, Breadcrumb, type BreadcrumbItem, Button, ButtonContainer, type ButtonContainerProps, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, Card, Carousel, Checkbox, CheckboxGroup, type CheckboxGroupProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, Command, type CommandItem, type DescriptionItem, DescriptionList, Dialog, Drawer, DropdownMenu, type DropdownMenuItem, FileInput, FormInput, IconWrapper, type IconWrapperProps, Link, Loading, NotificationBanner, NumberInput, Pagination, Popover, Progress, ProgressCircle, Radio, RadioGroup, type RadioGroupProps, Rating, SectionHeader, SegmentedControl, type SegmentedControlProps, Select, type SelectOption, Separator, Skeleton, SkipLink, Slider, Switch, type TabItem, Table, type TableColumn, Tabs, Textarea, ToastProvider, Tooltip, Typography, type WithClassName, useToast };
|
package/dist/client.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { useId, useState } from "react";
|
|
5
5
|
|
|
6
6
|
// src/components/ui/Accordion/Accordion.module.css
|
|
7
|
-
var Accordion_default = {"accordion":"
|
|
7
|
+
var Accordion_default = {"accordion":"bds128Accordion-accordion","item":"bds128Accordion-item","heading":"bds128Accordion-heading","trigger":"bds128Accordion-trigger","triggerLabel":"bds128Accordion-triggerLabel","chevron":"bds128Accordion-chevron","--open":"bds128Accordion---open","panel":"bds128Accordion-panel","panelContent":"bds128Accordion-panelContent"};
|
|
8
8
|
|
|
9
9
|
// src/components/ui/Accordion/Accordion.tsx
|
|
10
10
|
import { cn } from "@boostdev/design-system-foundation";
|
|
@@ -73,7 +73,7 @@ function Accordion({
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
// src/components/ui/Alert/Alert.module.css
|
|
76
|
-
var Alert_default = {"alert":"
|
|
76
|
+
var Alert_default = {"alert":"bds128Alert-alert","--variant_info":"bds128Alert---variant_info","--variant_success":"bds128Alert---variant_success","--variant_warning":"bds128Alert---variant_warning","--variant_error":"bds128Alert---variant_error","icon":"bds128Alert-icon","content":"bds128Alert-content","title":"bds128Alert-title","dismiss":"bds128Alert-dismiss"};
|
|
77
77
|
|
|
78
78
|
// src/components/ui/Alert/Alert.tsx
|
|
79
79
|
import { cn as cn2 } from "@boostdev/design-system-foundation";
|
|
@@ -118,7 +118,7 @@ function Alert({
|
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
// src/components/ui/Avatar/Avatar.module.css
|
|
121
|
-
var Avatar_default = {"avatar":"
|
|
121
|
+
var Avatar_default = {"avatar":"bds128Avatar-avatar","--fallback":"bds128Avatar---fallback","--size_small":"bds128Avatar---size_small","--size_medium":"bds128Avatar---size_medium","--size_large":"bds128Avatar---size_large","image":"bds128Avatar-image","initials":"bds128Avatar-initials"};
|
|
122
122
|
|
|
123
123
|
// src/components/ui/Avatar/Avatar.tsx
|
|
124
124
|
import { cn as cn3 } from "@boostdev/design-system-foundation";
|
|
@@ -145,7 +145,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
|
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
// src/components/ui/Badge/Badge.module.css
|
|
148
|
-
var Badge_default = {"badge":"
|
|
148
|
+
var Badge_default = {"badge":"bds128Badge-badge","--variant_primary":"bds128Badge---variant_primary","--variant_secondary":"bds128Badge---variant_secondary","--variant_success":"bds128Badge---variant_success","--variant_error":"bds128Badge---variant_error","--variant_warning":"bds128Badge---variant_warning"};
|
|
149
149
|
|
|
150
150
|
// src/components/ui/Badge/Badge.tsx
|
|
151
151
|
import { cn as cn4 } from "@boostdev/design-system-foundation";
|
|
@@ -155,7 +155,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
158
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
158
|
+
var Breadcrumb_default = {"breadcrumb":"bds128Breadcrumb-breadcrumb","list":"bds128Breadcrumb-list","item":"bds128Breadcrumb-item","link":"bds128Breadcrumb-link","separator":"bds128Breadcrumb-separator","current":"bds128Breadcrumb-current"};
|
|
159
159
|
|
|
160
160
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
161
161
|
import { cn as cn5 } from "@boostdev/design-system-foundation";
|
|
@@ -171,7 +171,7 @@ function Breadcrumb({ items, className, ...rest }) {
|
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
// src/components/ui/Collapsible/Collapsible.module.css
|
|
174
|
-
var Collapsible_default = {"collapsible":"
|
|
174
|
+
var Collapsible_default = {"collapsible":"bds128Collapsible-collapsible","summary":"bds128Collapsible-summary","summaryContent":"bds128Collapsible-summaryContent","icon":"bds128Collapsible-icon","content":"bds128Collapsible-content"};
|
|
175
175
|
|
|
176
176
|
// src/components/ui/Collapsible/Collapsible.tsx
|
|
177
177
|
import { cn as cn6 } from "@boostdev/design-system-foundation";
|
|
@@ -212,7 +212,7 @@ function Collapsible({
|
|
|
212
212
|
import { useState as useState2, useId as useId2 } from "react";
|
|
213
213
|
|
|
214
214
|
// src/components/ui/Calendar/Calendar.module.css
|
|
215
|
-
var Calendar_default = {"calendar":"
|
|
215
|
+
var Calendar_default = {"calendar":"bds128Calendar-calendar","header":"bds128Calendar-header","monthYear":"bds128Calendar-monthYear","navBtn":"bds128Calendar-navBtn","grid":"bds128Calendar-grid","weekday":"bds128Calendar-weekday","empty":"bds128Calendar-empty","day":"bds128Calendar-day","disabled":"bds128Calendar-disabled","selected":"bds128Calendar-selected","today":"bds128Calendar-today"};
|
|
216
216
|
|
|
217
217
|
// src/components/ui/Calendar/Calendar.tsx
|
|
218
218
|
import { cn as cn7 } from "@boostdev/design-system-foundation";
|
|
@@ -387,7 +387,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
|
|
|
387
387
|
import { useRef, useId as useId3 } from "react";
|
|
388
388
|
|
|
389
389
|
// src/components/ui/Carousel/Carousel.module.css
|
|
390
|
-
var Carousel_default = {"carousel":"
|
|
390
|
+
var Carousel_default = {"carousel":"bds128Carousel-carousel","track":"bds128Carousel-track","slide":"bds128Carousel-slide","navBtn":"bds128Carousel-navBtn"};
|
|
391
391
|
|
|
392
392
|
// src/components/ui/Carousel/Carousel.tsx
|
|
393
393
|
import { cn as cn8 } from "@boostdev/design-system-foundation";
|
|
@@ -440,7 +440,7 @@ function Carousel({ items, label, className, ...rest }) {
|
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
443
|
-
var DescriptionList_default = {"list":"
|
|
443
|
+
var DescriptionList_default = {"list":"bds128DescriptionList-list","group":"bds128DescriptionList-group","term":"bds128DescriptionList-term","details":"bds128DescriptionList-details","--layout_inline":"bds128DescriptionList---layout_inline"};
|
|
444
444
|
|
|
445
445
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
446
446
|
import { cn as cn9 } from "@boostdev/design-system-foundation";
|
|
@@ -453,7 +453,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
|
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
// src/components/ui/Link/Link.module.css
|
|
456
|
-
var Link_default = {"link":"
|
|
456
|
+
var Link_default = {"link":"bds128Link-link","--variant_default":"bds128Link---variant_default","--variant_subtle":"bds128Link---variant_subtle","--variant_standalone":"bds128Link---variant_standalone","externalLabel":"bds128Link-externalLabel"};
|
|
457
457
|
|
|
458
458
|
// src/components/ui/Link/Link.tsx
|
|
459
459
|
import { cn as cn10 } from "@boostdev/design-system-foundation";
|
|
@@ -484,7 +484,7 @@ function Link({
|
|
|
484
484
|
}
|
|
485
485
|
|
|
486
486
|
// src/components/ui/Loading/Loading.module.css
|
|
487
|
-
var Loading_default = {"loading":"
|
|
487
|
+
var Loading_default = {"loading":"bds128Loading-loading","spinner":"bds128Loading-spinner","--size_small":"bds128Loading---size_small","--size_large":"bds128Loading---size_large"};
|
|
488
488
|
|
|
489
489
|
// src/components/ui/Loading/Loading.tsx
|
|
490
490
|
import { cn as cn11 } from "@boostdev/design-system-foundation";
|
|
@@ -494,7 +494,7 @@ function Loading({ size = "medium", className, ...rest }) {
|
|
|
494
494
|
}
|
|
495
495
|
|
|
496
496
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
497
|
-
var NotificationBanner_default = {"banner":"
|
|
497
|
+
var NotificationBanner_default = {"banner":"bds128NotificationBanner-banner","--variant_info":"bds128NotificationBanner---variant_info","--variant_success":"bds128NotificationBanner---variant_success","--variant_warning":"bds128NotificationBanner---variant_warning","--variant_error":"bds128NotificationBanner---variant_error","content":"bds128NotificationBanner-content","action":"bds128NotificationBanner-action","dismiss":"bds128NotificationBanner-dismiss"};
|
|
498
498
|
|
|
499
499
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
500
500
|
import { cn as cn12 } from "@boostdev/design-system-foundation";
|
|
@@ -535,7 +535,7 @@ function NotificationBanner({
|
|
|
535
535
|
}
|
|
536
536
|
|
|
537
537
|
// src/components/ui/Pagination/Pagination.module.css
|
|
538
|
-
var Pagination_default = {"pagination":"
|
|
538
|
+
var Pagination_default = {"pagination":"bds128Pagination-pagination","list":"bds128Pagination-list","button":"bds128Pagination-button","--active":"bds128Pagination---active","--nav":"bds128Pagination---nav","ellipsis":"bds128Pagination-ellipsis"};
|
|
539
539
|
|
|
540
540
|
// src/components/ui/Pagination/Pagination.tsx
|
|
541
541
|
import { cn as cn13 } from "@boostdev/design-system-foundation";
|
|
@@ -600,7 +600,7 @@ function Pagination({
|
|
|
600
600
|
}
|
|
601
601
|
|
|
602
602
|
// src/components/ui/Progress/Progress.module.css
|
|
603
|
-
var Progress_default = {"container":"
|
|
603
|
+
var Progress_default = {"container":"bds128Progress-container","labelRow":"bds128Progress-labelRow","value":"bds128Progress-value","track":"bds128Progress-track","--size_small":"bds128Progress---size_small","--size_medium":"bds128Progress---size_medium","--size_large":"bds128Progress---size_large","fill":"bds128Progress-fill"};
|
|
604
604
|
|
|
605
605
|
// src/components/ui/Progress/Progress.tsx
|
|
606
606
|
import { cn as cn14 } from "@boostdev/design-system-foundation";
|
|
@@ -639,7 +639,7 @@ function Progress({
|
|
|
639
639
|
}
|
|
640
640
|
|
|
641
641
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
642
|
-
var ProgressCircle_default = {"wrapper":"
|
|
642
|
+
var ProgressCircle_default = {"wrapper":"bds128ProgressCircle-wrapper","svg":"bds128ProgressCircle-svg","track":"bds128ProgressCircle-track","fill":"bds128ProgressCircle-fill","value":"bds128ProgressCircle-value","--size_small":"bds128ProgressCircle---size_small","--size_medium":"bds128ProgressCircle---size_medium","--size_large":"bds128ProgressCircle---size_large"};
|
|
643
643
|
|
|
644
644
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
645
645
|
import { cn as cn15 } from "@boostdev/design-system-foundation";
|
|
@@ -720,7 +720,7 @@ function ProgressCircle({
|
|
|
720
720
|
}
|
|
721
721
|
|
|
722
722
|
// src/components/ui/Separator/Separator.module.css
|
|
723
|
-
var Separator_default = {"separator":"
|
|
723
|
+
var Separator_default = {"separator":"bds128Separator-separator","--horizontal":"bds128Separator---horizontal","--vertical":"bds128Separator---vertical"};
|
|
724
724
|
|
|
725
725
|
// src/components/ui/Separator/Separator.tsx
|
|
726
726
|
import { cn as cn16 } from "@boostdev/design-system-foundation";
|
|
@@ -744,7 +744,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
|
|
|
744
744
|
import { cn as cn17 } from "@boostdev/design-system-foundation";
|
|
745
745
|
|
|
746
746
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
747
|
-
var Skeleton_default = {"skeleton":"
|
|
747
|
+
var Skeleton_default = {"skeleton":"bds128Skeleton-skeleton"};
|
|
748
748
|
|
|
749
749
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
750
750
|
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
@@ -753,7 +753,7 @@ function Skeleton({ className, ...rest }) {
|
|
|
753
753
|
}
|
|
754
754
|
|
|
755
755
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
756
|
-
var SkipLink_default = {"skipLink":"
|
|
756
|
+
var SkipLink_default = {"skipLink":"bds128SkipLink-skipLink"};
|
|
757
757
|
|
|
758
758
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
759
759
|
import { cn as cn18 } from "@boostdev/design-system-foundation";
|
|
@@ -763,7 +763,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
|
|
|
763
763
|
}
|
|
764
764
|
|
|
765
765
|
// src/components/ui/Table/Table.module.css
|
|
766
|
-
var Table_default = {"wrapper":"
|
|
766
|
+
var Table_default = {"wrapper":"bds128Table-wrapper","table":"bds128Table-table","caption":"bds128Table-caption","thead":"bds128Table-thead","th":"bds128Table-th","--sortable":"bds128Table---sortable","sortButton":"bds128Table-sortButton","sortIcon":"bds128Table-sortIcon","--sort-active":"bds128Table---sort-active","--sort-desc":"bds128Table---sort-desc","tbody":"bds128Table-tbody","tr":"bds128Table-tr","td":"bds128Table-td"};
|
|
767
767
|
|
|
768
768
|
// src/components/ui/Table/Table.tsx
|
|
769
769
|
import { cn as cn19 } from "@boostdev/design-system-foundation";
|
|
@@ -833,7 +833,7 @@ function Table({
|
|
|
833
833
|
import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
|
|
834
834
|
|
|
835
835
|
// src/components/ui/Tabs/Tabs.module.css
|
|
836
|
-
var Tabs_default = {"tabs":"
|
|
836
|
+
var Tabs_default = {"tabs":"bds128Tabs-tabs","tabList":"bds128Tabs-tabList","tab":"bds128Tabs-tab","--active":"bds128Tabs---active","panel":"bds128Tabs-panel"};
|
|
837
837
|
|
|
838
838
|
// src/components/ui/Tabs/Tabs.tsx
|
|
839
839
|
import { cn as cn20 } from "@boostdev/design-system-foundation";
|
|
@@ -913,7 +913,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
|
|
|
913
913
|
import { cloneElement, isValidElement, useId as useId5, useState as useState4 } from "react";
|
|
914
914
|
|
|
915
915
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
916
|
-
var Tooltip_default = {"wrapper":"
|
|
916
|
+
var Tooltip_default = {"wrapper":"bds128Tooltip-wrapper","tooltip":"bds128Tooltip-tooltip","--placement_top":"bds128Tooltip---placement_top","--placement_bottom":"bds128Tooltip---placement_bottom","--placement_left":"bds128Tooltip---placement_left","--placement_right":"bds128Tooltip---placement_right"};
|
|
917
917
|
|
|
918
918
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
919
919
|
import { cn as cn21 } from "@boostdev/design-system-foundation";
|
|
@@ -957,7 +957,7 @@ function Tooltip({
|
|
|
957
957
|
}
|
|
958
958
|
|
|
959
959
|
// src/components/ui/Typography/Typography.module.css
|
|
960
|
-
var Typography_default = {"typography":"
|
|
960
|
+
var Typography_default = {"typography":"bds128Typography-typography","--h1":"bds128Typography---h1","--h2":"bds128Typography---h2","--h3":"bds128Typography---h3","--body":"bds128Typography---body","--body_s":"bds128Typography---body_s"};
|
|
961
961
|
|
|
962
962
|
// src/components/ui/Typography/Typography.tsx
|
|
963
963
|
import { cn as cn22 } from "@boostdev/design-system-foundation";
|
|
@@ -975,7 +975,7 @@ function Typography({ variant = "body", component, children, className, ...rest
|
|
|
975
975
|
}
|
|
976
976
|
|
|
977
977
|
// src/components/interaction/Button/Button.module.css
|
|
978
|
-
var Button_default = {"button":"
|
|
978
|
+
var Button_default = {"button":"bds128Button-button","--default":"bds128Button---default","--outline":"bds128Button---outline","--ghost":"bds128Button---ghost","--size_small":"bds128Button---size_small","--size_medium":"bds128Button---size_medium","--size_large":"bds128Button---size_large","--hasPulse":"bds128Button---hasPulse","iconStart":"bds128Button-iconStart","iconEnd":"bds128Button-iconEnd"};
|
|
979
979
|
|
|
980
980
|
// src/components/interaction/Button/Button.tsx
|
|
981
981
|
import { cn as cn23 } from "@boostdev/design-system-foundation";
|
|
@@ -1090,7 +1090,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1090
1090
|
}
|
|
1091
1091
|
|
|
1092
1092
|
// src/components/interaction/Command/Command.module.css
|
|
1093
|
-
var Command_default = {"dialog":"
|
|
1093
|
+
var Command_default = {"dialog":"bds128Command-dialog","palette":"bds128Command-palette","searchRow":"bds128Command-searchRow","searchIcon":"bds128Command-searchIcon","search":"bds128Command-search","escHint":"bds128Command-escHint","list":"bds128Command-list","groupList":"bds128Command-groupList","group":"bds128Command-group","item":"bds128Command-item","itemActive":"bds128Command-itemActive","itemLabel":"bds128Command-itemLabel","itemDesc":"bds128Command-itemDesc","shortcut":"bds128Command-shortcut","empty":"bds128Command-empty"};
|
|
1094
1094
|
|
|
1095
1095
|
// src/components/interaction/Command/Command.tsx
|
|
1096
1096
|
import { cn as cn24 } from "@boostdev/design-system-foundation";
|
|
@@ -1267,7 +1267,7 @@ function Command({
|
|
|
1267
1267
|
import { useEffect as useEffect2, useId as useId7, useRef as useRef4 } from "react";
|
|
1268
1268
|
|
|
1269
1269
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1270
|
-
var Dialog_default = {"dialog":"
|
|
1270
|
+
var Dialog_default = {"dialog":"bds128Dialog-dialog","dialogContent":"bds128Dialog-dialogContent","closeButton":"bds128Dialog-closeButton"};
|
|
1271
1271
|
|
|
1272
1272
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1273
1273
|
import { cn as cn25 } from "@boostdev/design-system-foundation";
|
|
@@ -1373,7 +1373,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1373
1373
|
import { useEffect as useEffect3, useId as useId8, useRef as useRef5 } from "react";
|
|
1374
1374
|
|
|
1375
1375
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1376
|
-
var Drawer_default = {"drawer":"
|
|
1376
|
+
var Drawer_default = {"drawer":"bds128Drawer-drawer","--side_left":"bds128Drawer---side_left","header":"bds128Drawer-header","closeButton":"bds128Drawer-closeButton","body":"bds128Drawer-body"};
|
|
1377
1377
|
|
|
1378
1378
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1379
1379
|
import { cn as cn26 } from "@boostdev/design-system-foundation";
|
|
@@ -1481,7 +1481,7 @@ import {
|
|
|
1481
1481
|
} from "react";
|
|
1482
1482
|
|
|
1483
1483
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1484
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1484
|
+
var DropdownMenu_default = {"wrapper":"bds128DropdownMenu-wrapper","menu":"bds128DropdownMenu-menu","--placement_bottom-start":"bds128DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds128DropdownMenu---placement_bottom-end","separator":"bds128DropdownMenu-separator","item":"bds128DropdownMenu-item","icon":"bds128DropdownMenu-icon"};
|
|
1485
1485
|
|
|
1486
1486
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1487
1487
|
import { cn as cn27 } from "@boostdev/design-system-foundation";
|
|
@@ -1602,7 +1602,7 @@ import {
|
|
|
1602
1602
|
} from "react";
|
|
1603
1603
|
|
|
1604
1604
|
// src/components/interaction/Popover/Popover.module.css
|
|
1605
|
-
var Popover_default = {"wrapper":"
|
|
1605
|
+
var Popover_default = {"wrapper":"bds128Popover-wrapper","panel":"bds128Popover-panel","g":"bds128Popover-g"};
|
|
1606
1606
|
|
|
1607
1607
|
// src/components/interaction/Popover/Popover.tsx
|
|
1608
1608
|
import { cn as cn28 } from "@boostdev/design-system-foundation";
|
|
@@ -1687,7 +1687,7 @@ function Popover({
|
|
|
1687
1687
|
}
|
|
1688
1688
|
|
|
1689
1689
|
// src/components/interaction/Rating/Rating.module.css
|
|
1690
|
-
var Rating_default = {"rating":"
|
|
1690
|
+
var Rating_default = {"rating":"bds128Rating-rating","star":"bds128Rating-star","--filled":"bds128Rating---filled"};
|
|
1691
1691
|
|
|
1692
1692
|
// src/components/interaction/Rating/Rating.tsx
|
|
1693
1693
|
import { cn as cn29 } from "@boostdev/design-system-foundation";
|
|
@@ -1719,7 +1719,7 @@ function Rating({ value, max = 5, className, ...rest }) {
|
|
|
1719
1719
|
import { useState as useState8, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2, useRef as useRef8 } from "react";
|
|
1720
1720
|
|
|
1721
1721
|
// src/components/interaction/Toast/Toast.module.css
|
|
1722
|
-
var Toast_default = {"toastContainer":"
|
|
1722
|
+
var Toast_default = {"toastContainer":"bds128Toast-toastContainer","toast":"bds128Toast-toast","--variant_success":"bds128Toast---variant_success","--variant_warning":"bds128Toast---variant_warning","--variant_info":"bds128Toast---variant_info","--variant_error":"bds128Toast---variant_error","message":"bds128Toast-message","closeButton":"bds128Toast-closeButton"};
|
|
1723
1723
|
|
|
1724
1724
|
// src/components/interaction/Toast/Toast.tsx
|
|
1725
1725
|
import { cn as cn30 } from "@boostdev/design-system-foundation";
|
|
@@ -1797,10 +1797,10 @@ function useToast() {
|
|
|
1797
1797
|
import { useId as useId11 } from "react";
|
|
1798
1798
|
|
|
1799
1799
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1800
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1800
|
+
var Checkbox_default = {"checkboxGroup":"bds128Checkbox-checkboxGroup","inputWrapper":"bds128Checkbox-inputWrapper","checkbox":"bds128Checkbox-checkbox","checkboxError":"bds128Checkbox-checkboxError"};
|
|
1801
1801
|
|
|
1802
1802
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1803
|
-
var Message_default = {"error":"
|
|
1803
|
+
var Message_default = {"error":"bds128Message-error","hint":"bds128Message-hint"};
|
|
1804
1804
|
|
|
1805
1805
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1806
1806
|
import { cn as cn31 } from "@boostdev/design-system-foundation";
|
|
@@ -1811,7 +1811,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1811
1811
|
};
|
|
1812
1812
|
|
|
1813
1813
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1814
|
-
var Label_default = {"label":"
|
|
1814
|
+
var Label_default = {"label":"bds128Label-label"};
|
|
1815
1815
|
|
|
1816
1816
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1817
1817
|
import { cn as cn32 } from "@boostdev/design-system-foundation";
|
|
@@ -1824,7 +1824,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1824
1824
|
import { cn as cn34 } from "@boostdev/design-system-foundation";
|
|
1825
1825
|
|
|
1826
1826
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1827
|
-
var InputContainer_default = {"container":"
|
|
1827
|
+
var InputContainer_default = {"container":"bds128InputContainer-container"};
|
|
1828
1828
|
|
|
1829
1829
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1830
1830
|
import { cn as cn33 } from "@boostdev/design-system-foundation";
|
|
@@ -1865,7 +1865,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1865
1865
|
import { useId as useId12 } from "react";
|
|
1866
1866
|
|
|
1867
1867
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1868
|
-
var CheckboxGroup_default = {"group":"
|
|
1868
|
+
var CheckboxGroup_default = {"group":"bds128CheckboxGroup-group","legend":"bds128CheckboxGroup-legend","required":"bds128CheckboxGroup-required","items":"bds128CheckboxGroup-items"};
|
|
1869
1869
|
|
|
1870
1870
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1871
1871
|
import { cn as cn35 } from "@boostdev/design-system-foundation";
|
|
@@ -1913,7 +1913,7 @@ import {
|
|
|
1913
1913
|
} from "react";
|
|
1914
1914
|
|
|
1915
1915
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1916
|
-
var Combobox_default = {"formGroup":"
|
|
1916
|
+
var Combobox_default = {"formGroup":"bds128Combobox-formGroup","inputWrapper":"bds128Combobox-inputWrapper","input":"bds128Combobox-input","inputError":"bds128Combobox-inputError","chevron":"bds128Combobox-chevron","listbox":"bds128Combobox-listbox","option":"bds128Combobox-option","--highlighted":"bds128Combobox---highlighted","--selected":"bds128Combobox---selected","--disabled":"bds128Combobox---disabled"};
|
|
1917
1917
|
|
|
1918
1918
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1919
1919
|
import { cn as cn36 } from "@boostdev/design-system-foundation";
|
|
@@ -2064,7 +2064,7 @@ function Combobox({
|
|
|
2064
2064
|
import { useId as useId14, useRef as useRef10, useState as useState10 } from "react";
|
|
2065
2065
|
|
|
2066
2066
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2067
|
-
var FileInput_default = {"formGroup":"
|
|
2067
|
+
var FileInput_default = {"formGroup":"bds128FileInput-formGroup","fieldLabel":"bds128FileInput-fieldLabel","dropZone":"bds128FileInput-dropZone","isDragging":"bds128FileInput-isDragging","hasError":"bds128FileInput-hasError","isDisabled":"bds128FileInput-isDisabled","icon":"bds128FileInput-icon","prompt":"bds128FileInput-prompt","acceptHint":"bds128FileInput-acceptHint","hiddenInput":"bds128FileInput-hiddenInput"};
|
|
2068
2068
|
|
|
2069
2069
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2070
2070
|
import { cn as cn37 } from "@boostdev/design-system-foundation";
|
|
@@ -2165,7 +2165,7 @@ function FileInput({
|
|
|
2165
2165
|
import { useId as useId15 } from "react";
|
|
2166
2166
|
|
|
2167
2167
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2168
|
-
var FormInput_default = {"formGroup":"
|
|
2168
|
+
var FormInput_default = {"formGroup":"bds128FormInput-formGroup","input":"bds128FormInput-input","inputError":"bds128FormInput-inputError"};
|
|
2169
2169
|
|
|
2170
2170
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2171
2171
|
import { cn as cn38 } from "@boostdev/design-system-foundation";
|
|
@@ -2209,7 +2209,7 @@ function FormInput({
|
|
|
2209
2209
|
import { useId as useId16, useRef as useRef11, useState as useState11 } from "react";
|
|
2210
2210
|
|
|
2211
2211
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2212
|
-
var NumberInput_default = {"formGroup":"
|
|
2212
|
+
var NumberInput_default = {"formGroup":"bds128NumberInput-formGroup","inputRow":"bds128NumberInput-inputRow","input":"bds128NumberInput-input","inputError":"bds128NumberInput-inputError","stepper":"bds128NumberInput-stepper"};
|
|
2213
2213
|
|
|
2214
2214
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2215
2215
|
import { cn as cn39 } from "@boostdev/design-system-foundation";
|
|
@@ -2314,7 +2314,7 @@ function NumberInput({
|
|
|
2314
2314
|
import { useId as useId17 } from "react";
|
|
2315
2315
|
|
|
2316
2316
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2317
|
-
var Radio_default = {"radioGroup":"
|
|
2317
|
+
var Radio_default = {"radioGroup":"bds128Radio-radioGroup","inputWrapper":"bds128Radio-inputWrapper","textWrapper":"bds128Radio-textWrapper","description":"bds128Radio-description","radio":"bds128Radio-radio","radioError":"bds128Radio-radioError"};
|
|
2318
2318
|
|
|
2319
2319
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2320
2320
|
import { cn as cn40 } from "@boostdev/design-system-foundation";
|
|
@@ -2352,7 +2352,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2352
2352
|
import { useId as useId18 } from "react";
|
|
2353
2353
|
|
|
2354
2354
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2355
|
-
var RadioGroup_default = {"group":"
|
|
2355
|
+
var RadioGroup_default = {"group":"bds128RadioGroup-group","legend":"bds128RadioGroup-legend","required":"bds128RadioGroup-required","items":"bds128RadioGroup-items"};
|
|
2356
2356
|
|
|
2357
2357
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2358
2358
|
import { cn as cn41 } from "@boostdev/design-system-foundation";
|
|
@@ -2394,7 +2394,7 @@ function RadioGroup({
|
|
|
2394
2394
|
import { Children, cloneElement as cloneElement4, isValidElement as isValidElement4 } from "react";
|
|
2395
2395
|
|
|
2396
2396
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2397
|
-
var SegmentedControl_default = {"control":"
|
|
2397
|
+
var SegmentedControl_default = {"control":"bds128SegmentedControl-control","thumb":"bds128SegmentedControl-thumb","indicator":"bds128SegmentedControl-indicator","item":"bds128SegmentedControl-item","--active":"bds128SegmentedControl---active","--disabled":"bds128SegmentedControl---disabled","--size_small":"bds128SegmentedControl---size_small","--size_large":"bds128SegmentedControl---size_large","--variant_outline":"bds128SegmentedControl---variant_outline"};
|
|
2398
2398
|
|
|
2399
2399
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2400
2400
|
import { cn as cn42 } from "@boostdev/design-system-foundation";
|
|
@@ -2450,7 +2450,7 @@ function SegmentedControl({
|
|
|
2450
2450
|
import { useId as useId19 } from "react";
|
|
2451
2451
|
|
|
2452
2452
|
// src/components/interaction/form/Select/Select.module.css
|
|
2453
|
-
var Select_default = {"formGroup":"
|
|
2453
|
+
var Select_default = {"formGroup":"bds128Select-formGroup","selectWrapper":"bds128Select-selectWrapper","select":"bds128Select-select","selectError":"bds128Select-selectError","chevron":"bds128Select-chevron"};
|
|
2454
2454
|
|
|
2455
2455
|
// src/components/interaction/form/Select/Select.tsx
|
|
2456
2456
|
import { cn as cn43 } from "@boostdev/design-system-foundation";
|
|
@@ -2501,7 +2501,7 @@ function Select({
|
|
|
2501
2501
|
import { useId as useId20, useState as useState12 } from "react";
|
|
2502
2502
|
|
|
2503
2503
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2504
|
-
var Slider_default = {"formGroup":"
|
|
2504
|
+
var Slider_default = {"formGroup":"bds128Slider-formGroup","labelRow":"bds128Slider-labelRow","value":"bds128Slider-value","slider":"bds128Slider-slider","sliderError":"bds128Slider-sliderError"};
|
|
2505
2505
|
|
|
2506
2506
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2507
2507
|
import { cn as cn44 } from "@boostdev/design-system-foundation";
|
|
@@ -2563,7 +2563,7 @@ function Slider({
|
|
|
2563
2563
|
import { useId as useId21 } from "react";
|
|
2564
2564
|
|
|
2565
2565
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2566
|
-
var Switch_default = {"switchGroup":"
|
|
2566
|
+
var Switch_default = {"switchGroup":"bds128Switch-switchGroup","--size_small":"bds128Switch---size_small","--size_medium":"bds128Switch---size_medium","--size_large":"bds128Switch---size_large","inputWrapper":"bds128Switch-inputWrapper","trackWrapper":"bds128Switch-trackWrapper","switch":"bds128Switch-switch","track":"bds128Switch-track","thumb":"bds128Switch-thumb","switchError":"bds128Switch-switchError"};
|
|
2567
2567
|
|
|
2568
2568
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2569
2569
|
import { cn as cn45 } from "@boostdev/design-system-foundation";
|
|
@@ -2611,7 +2611,7 @@ function Switch({
|
|
|
2611
2611
|
import { useId as useId22 } from "react";
|
|
2612
2612
|
|
|
2613
2613
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2614
|
-
var Textarea_default = {"formGroup":"
|
|
2614
|
+
var Textarea_default = {"formGroup":"bds128Textarea-formGroup","textarea":"bds128Textarea-textarea","textareaError":"bds128Textarea-textareaError"};
|
|
2615
2615
|
|
|
2616
2616
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2617
2617
|
import { cn as cn46 } from "@boostdev/design-system-foundation";
|
|
@@ -2650,12 +2650,12 @@ function Textarea({
|
|
|
2650
2650
|
}
|
|
2651
2651
|
|
|
2652
2652
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2653
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2653
|
+
var ButtonGroup_default = {"buttonGroup":"bds128ButtonGroup-buttonGroup","container":"bds128ButtonGroup-container","--variant_card":"bds128ButtonGroup---variant_card","--variant_flow":"bds128ButtonGroup---variant_flow","--variant_modal":"bds128ButtonGroup---variant_modal","--variant_content":"bds128ButtonGroup---variant_content","--variant_grid":"bds128ButtonGroup---variant_grid"};
|
|
2654
2654
|
|
|
2655
2655
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2656
2656
|
import { cn as cn47 } from "@boostdev/design-system-foundation";
|
|
2657
2657
|
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
2658
|
-
function
|
|
2658
|
+
function ButtonContainer({ children, className, variant, ...rest }) {
|
|
2659
2659
|
return /* @__PURE__ */ jsx47(
|
|
2660
2660
|
"div",
|
|
2661
2661
|
{
|
|
@@ -2666,9 +2666,10 @@ function ButtonGroup({ children, className, variant, ...rest }) {
|
|
|
2666
2666
|
}
|
|
2667
2667
|
);
|
|
2668
2668
|
}
|
|
2669
|
+
var ButtonGroup = ButtonContainer;
|
|
2669
2670
|
|
|
2670
2671
|
// src/components/layout/Card/Card.module.css
|
|
2671
|
-
var Card_default = {"card":"
|
|
2672
|
+
var Card_default = {"card":"bds128Card-card","--default":"bds128Card---default","--elevated":"bds128Card---elevated","--outlined":"bds128Card---outlined","--clickable":"bds128Card---clickable","--padding-none":"bds128Card---padding-none","--padding-small":"bds128Card---padding-small","--padding-medium":"bds128Card---padding-medium","--padding-large":"bds128Card---padding-large","--padding-extra-large":"bds128Card---padding-extra-large","--text-start":"bds128Card---text-start","--text-center":"bds128Card---text-center","--text-end":"bds128Card---text-end"};
|
|
2672
2673
|
|
|
2673
2674
|
// src/components/layout/Card/Card.tsx
|
|
2674
2675
|
import { cn as cn48 } from "@boostdev/design-system-foundation";
|
|
@@ -2679,6 +2680,7 @@ function Card({
|
|
|
2679
2680
|
variant = "default",
|
|
2680
2681
|
padding = "medium",
|
|
2681
2682
|
textAlign = "start",
|
|
2683
|
+
as,
|
|
2682
2684
|
onClick,
|
|
2683
2685
|
...rest
|
|
2684
2686
|
}) {
|
|
@@ -2690,21 +2692,21 @@ function Card({
|
|
|
2690
2692
|
onClick && Card_default["--clickable"],
|
|
2691
2693
|
className
|
|
2692
2694
|
);
|
|
2693
|
-
const Component = onClick ? "button" : "div";
|
|
2695
|
+
const Component = as ?? (onClick ? "button" : "div");
|
|
2694
2696
|
return /* @__PURE__ */ jsx48(
|
|
2695
2697
|
Component,
|
|
2696
2698
|
{
|
|
2697
2699
|
...rest,
|
|
2698
2700
|
className: classNames,
|
|
2699
2701
|
onClick,
|
|
2700
|
-
|
|
2702
|
+
...!as && onClick && { type: "button" },
|
|
2701
2703
|
children
|
|
2702
2704
|
}
|
|
2703
2705
|
);
|
|
2704
2706
|
}
|
|
2705
2707
|
|
|
2706
2708
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2707
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2709
|
+
var SectionHeader_default = {"sectionHeader":"bds128SectionHeader-sectionHeader","title":"bds128SectionHeader-title","subtitle":"bds128SectionHeader-subtitle","--start":"bds128SectionHeader---start","--center":"bds128SectionHeader---center","--end":"bds128SectionHeader---end","--medium":"bds128SectionHeader---medium","--xs":"bds128SectionHeader---xs","--small":"bds128SectionHeader---small","--large":"bds128SectionHeader---large"};
|
|
2708
2710
|
|
|
2709
2711
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2710
2712
|
import { cn as cn49 } from "@boostdev/design-system-foundation";
|
|
@@ -2726,7 +2728,7 @@ function SectionHeader({
|
|
|
2726
2728
|
}
|
|
2727
2729
|
|
|
2728
2730
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2729
|
-
var IconWrapper_default = {"wrapper":"
|
|
2731
|
+
var IconWrapper_default = {"wrapper":"bds128IconWrapper-wrapper"};
|
|
2730
2732
|
|
|
2731
2733
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2732
2734
|
import { cn as cn50 } from "@boostdev/design-system-foundation";
|
|
@@ -2744,6 +2746,7 @@ export {
|
|
|
2744
2746
|
Badge,
|
|
2745
2747
|
Breadcrumb,
|
|
2746
2748
|
Button,
|
|
2749
|
+
ButtonContainer,
|
|
2747
2750
|
ButtonGroup,
|
|
2748
2751
|
Calendar,
|
|
2749
2752
|
Card,
|