@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/index.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/index.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/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":"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"};
|
|
6
6
|
|
|
7
7
|
// src/components/ui/Accordion/Accordion.tsx
|
|
8
8
|
import { cn } from "@boostdev/design-system-foundation";
|
|
@@ -71,7 +71,7 @@ function Accordion({
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
// src/components/ui/Alert/Alert.module.css
|
|
74
|
-
var Alert_default = {"alert":"
|
|
74
|
+
var Alert_default = {"alert":"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"};
|
|
75
75
|
|
|
76
76
|
// src/components/ui/Alert/Alert.tsx
|
|
77
77
|
import { cn as cn2 } from "@boostdev/design-system-foundation";
|
|
@@ -116,7 +116,7 @@ function Alert({
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
// src/components/ui/Avatar/Avatar.module.css
|
|
119
|
-
var Avatar_default = {"avatar":"
|
|
119
|
+
var Avatar_default = {"avatar":"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"};
|
|
120
120
|
|
|
121
121
|
// src/components/ui/Avatar/Avatar.tsx
|
|
122
122
|
import { cn as cn3 } from "@boostdev/design-system-foundation";
|
|
@@ -143,7 +143,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
// src/components/ui/Badge/Badge.module.css
|
|
146
|
-
var Badge_default = {"badge":"
|
|
146
|
+
var Badge_default = {"badge":"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"};
|
|
147
147
|
|
|
148
148
|
// src/components/ui/Badge/Badge.tsx
|
|
149
149
|
import { cn as cn4 } from "@boostdev/design-system-foundation";
|
|
@@ -153,7 +153,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
156
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
156
|
+
var Breadcrumb_default = {"breadcrumb":"bds128Breadcrumb-breadcrumb","list":"bds128Breadcrumb-list","item":"bds128Breadcrumb-item","link":"bds128Breadcrumb-link","separator":"bds128Breadcrumb-separator","current":"bds128Breadcrumb-current"};
|
|
157
157
|
|
|
158
158
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
159
159
|
import { cn as cn5 } from "@boostdev/design-system-foundation";
|
|
@@ -169,7 +169,7 @@ function Breadcrumb({ items, className, ...rest }) {
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
// src/components/ui/Collapsible/Collapsible.module.css
|
|
172
|
-
var Collapsible_default = {"collapsible":"
|
|
172
|
+
var Collapsible_default = {"collapsible":"bds128Collapsible-collapsible","summary":"bds128Collapsible-summary","summaryContent":"bds128Collapsible-summaryContent","icon":"bds128Collapsible-icon","content":"bds128Collapsible-content"};
|
|
173
173
|
|
|
174
174
|
// src/components/ui/Collapsible/Collapsible.tsx
|
|
175
175
|
import { cn as cn6 } from "@boostdev/design-system-foundation";
|
|
@@ -210,7 +210,7 @@ function Collapsible({
|
|
|
210
210
|
import { useState as useState2, useId as useId2 } from "react";
|
|
211
211
|
|
|
212
212
|
// src/components/ui/Calendar/Calendar.module.css
|
|
213
|
-
var Calendar_default = {"calendar":"
|
|
213
|
+
var Calendar_default = {"calendar":"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"};
|
|
214
214
|
|
|
215
215
|
// src/components/ui/Calendar/Calendar.tsx
|
|
216
216
|
import { cn as cn7 } from "@boostdev/design-system-foundation";
|
|
@@ -385,7 +385,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
|
|
|
385
385
|
import { useRef, useId as useId3 } from "react";
|
|
386
386
|
|
|
387
387
|
// src/components/ui/Carousel/Carousel.module.css
|
|
388
|
-
var Carousel_default = {"carousel":"
|
|
388
|
+
var Carousel_default = {"carousel":"bds128Carousel-carousel","track":"bds128Carousel-track","slide":"bds128Carousel-slide","navBtn":"bds128Carousel-navBtn"};
|
|
389
389
|
|
|
390
390
|
// src/components/ui/Carousel/Carousel.tsx
|
|
391
391
|
import { cn as cn8 } from "@boostdev/design-system-foundation";
|
|
@@ -438,7 +438,7 @@ function Carousel({ items, label, className, ...rest }) {
|
|
|
438
438
|
}
|
|
439
439
|
|
|
440
440
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
441
|
-
var DescriptionList_default = {"list":"
|
|
441
|
+
var DescriptionList_default = {"list":"bds128DescriptionList-list","group":"bds128DescriptionList-group","term":"bds128DescriptionList-term","details":"bds128DescriptionList-details","--layout_inline":"bds128DescriptionList---layout_inline"};
|
|
442
442
|
|
|
443
443
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
444
444
|
import { cn as cn9 } from "@boostdev/design-system-foundation";
|
|
@@ -451,7 +451,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
|
|
|
451
451
|
}
|
|
452
452
|
|
|
453
453
|
// src/components/ui/Link/Link.module.css
|
|
454
|
-
var Link_default = {"link":"
|
|
454
|
+
var Link_default = {"link":"bds128Link-link","--variant_default":"bds128Link---variant_default","--variant_subtle":"bds128Link---variant_subtle","--variant_standalone":"bds128Link---variant_standalone","externalLabel":"bds128Link-externalLabel"};
|
|
455
455
|
|
|
456
456
|
// src/components/ui/Link/Link.tsx
|
|
457
457
|
import { cn as cn10 } from "@boostdev/design-system-foundation";
|
|
@@ -482,7 +482,7 @@ function Link({
|
|
|
482
482
|
}
|
|
483
483
|
|
|
484
484
|
// src/components/ui/Loading/Loading.module.css
|
|
485
|
-
var Loading_default = {"loading":"
|
|
485
|
+
var Loading_default = {"loading":"bds128Loading-loading","spinner":"bds128Loading-spinner","--size_small":"bds128Loading---size_small","--size_large":"bds128Loading---size_large"};
|
|
486
486
|
|
|
487
487
|
// src/components/ui/Loading/Loading.tsx
|
|
488
488
|
import { cn as cn11 } from "@boostdev/design-system-foundation";
|
|
@@ -492,7 +492,7 @@ function Loading({ size = "medium", className, ...rest }) {
|
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
495
|
-
var NotificationBanner_default = {"banner":"
|
|
495
|
+
var NotificationBanner_default = {"banner":"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"};
|
|
496
496
|
|
|
497
497
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
498
498
|
import { cn as cn12 } from "@boostdev/design-system-foundation";
|
|
@@ -533,7 +533,7 @@ function NotificationBanner({
|
|
|
533
533
|
}
|
|
534
534
|
|
|
535
535
|
// src/components/ui/Pagination/Pagination.module.css
|
|
536
|
-
var Pagination_default = {"pagination":"
|
|
536
|
+
var Pagination_default = {"pagination":"bds128Pagination-pagination","list":"bds128Pagination-list","button":"bds128Pagination-button","--active":"bds128Pagination---active","--nav":"bds128Pagination---nav","ellipsis":"bds128Pagination-ellipsis"};
|
|
537
537
|
|
|
538
538
|
// src/components/ui/Pagination/Pagination.tsx
|
|
539
539
|
import { cn as cn13 } from "@boostdev/design-system-foundation";
|
|
@@ -598,7 +598,7 @@ function Pagination({
|
|
|
598
598
|
}
|
|
599
599
|
|
|
600
600
|
// src/components/ui/Progress/Progress.module.css
|
|
601
|
-
var Progress_default = {"container":"
|
|
601
|
+
var Progress_default = {"container":"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"};
|
|
602
602
|
|
|
603
603
|
// src/components/ui/Progress/Progress.tsx
|
|
604
604
|
import { cn as cn14 } from "@boostdev/design-system-foundation";
|
|
@@ -637,7 +637,7 @@ function Progress({
|
|
|
637
637
|
}
|
|
638
638
|
|
|
639
639
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
640
|
-
var ProgressCircle_default = {"wrapper":"
|
|
640
|
+
var ProgressCircle_default = {"wrapper":"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"};
|
|
641
641
|
|
|
642
642
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
643
643
|
import { cn as cn15 } from "@boostdev/design-system-foundation";
|
|
@@ -718,7 +718,7 @@ function ProgressCircle({
|
|
|
718
718
|
}
|
|
719
719
|
|
|
720
720
|
// src/components/ui/Separator/Separator.module.css
|
|
721
|
-
var Separator_default = {"separator":"
|
|
721
|
+
var Separator_default = {"separator":"bds128Separator-separator","--horizontal":"bds128Separator---horizontal","--vertical":"bds128Separator---vertical"};
|
|
722
722
|
|
|
723
723
|
// src/components/ui/Separator/Separator.tsx
|
|
724
724
|
import { cn as cn16 } from "@boostdev/design-system-foundation";
|
|
@@ -742,7 +742,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
|
|
|
742
742
|
import { cn as cn17 } from "@boostdev/design-system-foundation";
|
|
743
743
|
|
|
744
744
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
745
|
-
var Skeleton_default = {"skeleton":"
|
|
745
|
+
var Skeleton_default = {"skeleton":"bds128Skeleton-skeleton"};
|
|
746
746
|
|
|
747
747
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
748
748
|
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
@@ -751,7 +751,7 @@ function Skeleton({ className, ...rest }) {
|
|
|
751
751
|
}
|
|
752
752
|
|
|
753
753
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
754
|
-
var SkipLink_default = {"skipLink":"
|
|
754
|
+
var SkipLink_default = {"skipLink":"bds128SkipLink-skipLink"};
|
|
755
755
|
|
|
756
756
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
757
757
|
import { cn as cn18 } from "@boostdev/design-system-foundation";
|
|
@@ -761,7 +761,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
|
|
|
761
761
|
}
|
|
762
762
|
|
|
763
763
|
// src/components/ui/Table/Table.module.css
|
|
764
|
-
var Table_default = {"wrapper":"
|
|
764
|
+
var Table_default = {"wrapper":"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"};
|
|
765
765
|
|
|
766
766
|
// src/components/ui/Table/Table.tsx
|
|
767
767
|
import { cn as cn19 } from "@boostdev/design-system-foundation";
|
|
@@ -831,7 +831,7 @@ function Table({
|
|
|
831
831
|
import { useId as useId4, useRef as useRef2, useState as useState3 } from "react";
|
|
832
832
|
|
|
833
833
|
// src/components/ui/Tabs/Tabs.module.css
|
|
834
|
-
var Tabs_default = {"tabs":"
|
|
834
|
+
var Tabs_default = {"tabs":"bds128Tabs-tabs","tabList":"bds128Tabs-tabList","tab":"bds128Tabs-tab","--active":"bds128Tabs---active","panel":"bds128Tabs-panel"};
|
|
835
835
|
|
|
836
836
|
// src/components/ui/Tabs/Tabs.tsx
|
|
837
837
|
import { cn as cn20 } from "@boostdev/design-system-foundation";
|
|
@@ -911,7 +911,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
|
|
|
911
911
|
import { cloneElement, isValidElement, useId as useId5, useState as useState4 } from "react";
|
|
912
912
|
|
|
913
913
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
914
|
-
var Tooltip_default = {"wrapper":"
|
|
914
|
+
var Tooltip_default = {"wrapper":"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"};
|
|
915
915
|
|
|
916
916
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
917
917
|
import { cn as cn21 } from "@boostdev/design-system-foundation";
|
|
@@ -955,7 +955,7 @@ function Tooltip({
|
|
|
955
955
|
}
|
|
956
956
|
|
|
957
957
|
// src/components/ui/Typography/Typography.module.css
|
|
958
|
-
var Typography_default = {"typography":"
|
|
958
|
+
var Typography_default = {"typography":"bds128Typography-typography","--h1":"bds128Typography---h1","--h2":"bds128Typography---h2","--h3":"bds128Typography---h3","--body":"bds128Typography---body","--body_s":"bds128Typography---body_s"};
|
|
959
959
|
|
|
960
960
|
// src/components/ui/Typography/Typography.tsx
|
|
961
961
|
import { cn as cn22 } from "@boostdev/design-system-foundation";
|
|
@@ -973,7 +973,7 @@ function Typography({ variant = "body", component, children, className, ...rest
|
|
|
973
973
|
}
|
|
974
974
|
|
|
975
975
|
// src/components/interaction/Button/Button.module.css
|
|
976
|
-
var Button_default = {"button":"
|
|
976
|
+
var Button_default = {"button":"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"};
|
|
977
977
|
|
|
978
978
|
// src/components/interaction/Button/Button.tsx
|
|
979
979
|
import { cn as cn23 } from "@boostdev/design-system-foundation";
|
|
@@ -1088,7 +1088,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1088
1088
|
}
|
|
1089
1089
|
|
|
1090
1090
|
// src/components/interaction/Command/Command.module.css
|
|
1091
|
-
var Command_default = {"dialog":"
|
|
1091
|
+
var Command_default = {"dialog":"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"};
|
|
1092
1092
|
|
|
1093
1093
|
// src/components/interaction/Command/Command.tsx
|
|
1094
1094
|
import { cn as cn24 } from "@boostdev/design-system-foundation";
|
|
@@ -1265,7 +1265,7 @@ function Command({
|
|
|
1265
1265
|
import { useEffect as useEffect2, useId as useId7, useRef as useRef4 } from "react";
|
|
1266
1266
|
|
|
1267
1267
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1268
|
-
var Dialog_default = {"dialog":"
|
|
1268
|
+
var Dialog_default = {"dialog":"bds128Dialog-dialog","dialogContent":"bds128Dialog-dialogContent","closeButton":"bds128Dialog-closeButton"};
|
|
1269
1269
|
|
|
1270
1270
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1271
1271
|
import { cn as cn25 } from "@boostdev/design-system-foundation";
|
|
@@ -1371,7 +1371,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1371
1371
|
import { useEffect as useEffect3, useId as useId8, useRef as useRef5 } from "react";
|
|
1372
1372
|
|
|
1373
1373
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1374
|
-
var Drawer_default = {"drawer":"
|
|
1374
|
+
var Drawer_default = {"drawer":"bds128Drawer-drawer","--side_left":"bds128Drawer---side_left","header":"bds128Drawer-header","closeButton":"bds128Drawer-closeButton","body":"bds128Drawer-body"};
|
|
1375
1375
|
|
|
1376
1376
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1377
1377
|
import { cn as cn26 } from "@boostdev/design-system-foundation";
|
|
@@ -1479,7 +1479,7 @@ import {
|
|
|
1479
1479
|
} from "react";
|
|
1480
1480
|
|
|
1481
1481
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1482
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1482
|
+
var DropdownMenu_default = {"wrapper":"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"};
|
|
1483
1483
|
|
|
1484
1484
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1485
1485
|
import { cn as cn27 } from "@boostdev/design-system-foundation";
|
|
@@ -1600,7 +1600,7 @@ import {
|
|
|
1600
1600
|
} from "react";
|
|
1601
1601
|
|
|
1602
1602
|
// src/components/interaction/Popover/Popover.module.css
|
|
1603
|
-
var Popover_default = {"wrapper":"
|
|
1603
|
+
var Popover_default = {"wrapper":"bds128Popover-wrapper","panel":"bds128Popover-panel","g":"bds128Popover-g"};
|
|
1604
1604
|
|
|
1605
1605
|
// src/components/interaction/Popover/Popover.tsx
|
|
1606
1606
|
import { cn as cn28 } from "@boostdev/design-system-foundation";
|
|
@@ -1685,7 +1685,7 @@ function Popover({
|
|
|
1685
1685
|
}
|
|
1686
1686
|
|
|
1687
1687
|
// src/components/interaction/Rating/Rating.module.css
|
|
1688
|
-
var Rating_default = {"rating":"
|
|
1688
|
+
var Rating_default = {"rating":"bds128Rating-rating","star":"bds128Rating-star","--filled":"bds128Rating---filled"};
|
|
1689
1689
|
|
|
1690
1690
|
// src/components/interaction/Rating/Rating.tsx
|
|
1691
1691
|
import { cn as cn29 } from "@boostdev/design-system-foundation";
|
|
@@ -1717,7 +1717,7 @@ function Rating({ value, max = 5, className, ...rest }) {
|
|
|
1717
1717
|
import { useState as useState8, useEffect as useEffect6, createContext, useContext, useCallback, useMemo as useMemo2, useRef as useRef8 } from "react";
|
|
1718
1718
|
|
|
1719
1719
|
// src/components/interaction/Toast/Toast.module.css
|
|
1720
|
-
var Toast_default = {"toastContainer":"
|
|
1720
|
+
var Toast_default = {"toastContainer":"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"};
|
|
1721
1721
|
|
|
1722
1722
|
// src/components/interaction/Toast/Toast.tsx
|
|
1723
1723
|
import { cn as cn30 } from "@boostdev/design-system-foundation";
|
|
@@ -1795,10 +1795,10 @@ function useToast() {
|
|
|
1795
1795
|
import { useId as useId11 } from "react";
|
|
1796
1796
|
|
|
1797
1797
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1798
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1798
|
+
var Checkbox_default = {"checkboxGroup":"bds128Checkbox-checkboxGroup","inputWrapper":"bds128Checkbox-inputWrapper","checkbox":"bds128Checkbox-checkbox","checkboxError":"bds128Checkbox-checkboxError"};
|
|
1799
1799
|
|
|
1800
1800
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1801
|
-
var Message_default = {"error":"
|
|
1801
|
+
var Message_default = {"error":"bds128Message-error","hint":"bds128Message-hint"};
|
|
1802
1802
|
|
|
1803
1803
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1804
1804
|
import { cn as cn31 } from "@boostdev/design-system-foundation";
|
|
@@ -1809,7 +1809,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1809
1809
|
};
|
|
1810
1810
|
|
|
1811
1811
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1812
|
-
var Label_default = {"label":"
|
|
1812
|
+
var Label_default = {"label":"bds128Label-label"};
|
|
1813
1813
|
|
|
1814
1814
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1815
1815
|
import { cn as cn32 } from "@boostdev/design-system-foundation";
|
|
@@ -1822,7 +1822,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1822
1822
|
import { cn as cn34 } from "@boostdev/design-system-foundation";
|
|
1823
1823
|
|
|
1824
1824
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1825
|
-
var InputContainer_default = {"container":"
|
|
1825
|
+
var InputContainer_default = {"container":"bds128InputContainer-container"};
|
|
1826
1826
|
|
|
1827
1827
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1828
1828
|
import { cn as cn33 } from "@boostdev/design-system-foundation";
|
|
@@ -1863,7 +1863,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1863
1863
|
import { useId as useId12 } from "react";
|
|
1864
1864
|
|
|
1865
1865
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1866
|
-
var CheckboxGroup_default = {"group":"
|
|
1866
|
+
var CheckboxGroup_default = {"group":"bds128CheckboxGroup-group","legend":"bds128CheckboxGroup-legend","required":"bds128CheckboxGroup-required","items":"bds128CheckboxGroup-items"};
|
|
1867
1867
|
|
|
1868
1868
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1869
1869
|
import { cn as cn35 } from "@boostdev/design-system-foundation";
|
|
@@ -1911,7 +1911,7 @@ import {
|
|
|
1911
1911
|
} from "react";
|
|
1912
1912
|
|
|
1913
1913
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1914
|
-
var Combobox_default = {"formGroup":"
|
|
1914
|
+
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"};
|
|
1915
1915
|
|
|
1916
1916
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1917
1917
|
import { cn as cn36 } from "@boostdev/design-system-foundation";
|
|
@@ -2062,7 +2062,7 @@ function Combobox({
|
|
|
2062
2062
|
import { useId as useId14, useRef as useRef10, useState as useState10 } from "react";
|
|
2063
2063
|
|
|
2064
2064
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2065
|
-
var FileInput_default = {"formGroup":"
|
|
2065
|
+
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"};
|
|
2066
2066
|
|
|
2067
2067
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2068
2068
|
import { cn as cn37 } from "@boostdev/design-system-foundation";
|
|
@@ -2163,7 +2163,7 @@ function FileInput({
|
|
|
2163
2163
|
import { useId as useId15 } from "react";
|
|
2164
2164
|
|
|
2165
2165
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2166
|
-
var FormInput_default = {"formGroup":"
|
|
2166
|
+
var FormInput_default = {"formGroup":"bds128FormInput-formGroup","input":"bds128FormInput-input","inputError":"bds128FormInput-inputError"};
|
|
2167
2167
|
|
|
2168
2168
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2169
2169
|
import { cn as cn38 } from "@boostdev/design-system-foundation";
|
|
@@ -2207,7 +2207,7 @@ function FormInput({
|
|
|
2207
2207
|
import { useId as useId16, useRef as useRef11, useState as useState11 } from "react";
|
|
2208
2208
|
|
|
2209
2209
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2210
|
-
var NumberInput_default = {"formGroup":"
|
|
2210
|
+
var NumberInput_default = {"formGroup":"bds128NumberInput-formGroup","inputRow":"bds128NumberInput-inputRow","input":"bds128NumberInput-input","inputError":"bds128NumberInput-inputError","stepper":"bds128NumberInput-stepper"};
|
|
2211
2211
|
|
|
2212
2212
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2213
2213
|
import { cn as cn39 } from "@boostdev/design-system-foundation";
|
|
@@ -2312,7 +2312,7 @@ function NumberInput({
|
|
|
2312
2312
|
import { useId as useId17 } from "react";
|
|
2313
2313
|
|
|
2314
2314
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2315
|
-
var Radio_default = {"radioGroup":"
|
|
2315
|
+
var Radio_default = {"radioGroup":"bds128Radio-radioGroup","inputWrapper":"bds128Radio-inputWrapper","textWrapper":"bds128Radio-textWrapper","description":"bds128Radio-description","radio":"bds128Radio-radio","radioError":"bds128Radio-radioError"};
|
|
2316
2316
|
|
|
2317
2317
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2318
2318
|
import { cn as cn40 } from "@boostdev/design-system-foundation";
|
|
@@ -2350,7 +2350,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2350
2350
|
import { useId as useId18 } from "react";
|
|
2351
2351
|
|
|
2352
2352
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2353
|
-
var RadioGroup_default = {"group":"
|
|
2353
|
+
var RadioGroup_default = {"group":"bds128RadioGroup-group","legend":"bds128RadioGroup-legend","required":"bds128RadioGroup-required","items":"bds128RadioGroup-items"};
|
|
2354
2354
|
|
|
2355
2355
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2356
2356
|
import { cn as cn41 } from "@boostdev/design-system-foundation";
|
|
@@ -2392,7 +2392,7 @@ function RadioGroup({
|
|
|
2392
2392
|
import { Children, cloneElement as cloneElement4, isValidElement as isValidElement4 } from "react";
|
|
2393
2393
|
|
|
2394
2394
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2395
|
-
var SegmentedControl_default = {"control":"
|
|
2395
|
+
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"};
|
|
2396
2396
|
|
|
2397
2397
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2398
2398
|
import { cn as cn42 } from "@boostdev/design-system-foundation";
|
|
@@ -2448,7 +2448,7 @@ function SegmentedControl({
|
|
|
2448
2448
|
import { useId as useId19 } from "react";
|
|
2449
2449
|
|
|
2450
2450
|
// src/components/interaction/form/Select/Select.module.css
|
|
2451
|
-
var Select_default = {"formGroup":"
|
|
2451
|
+
var Select_default = {"formGroup":"bds128Select-formGroup","selectWrapper":"bds128Select-selectWrapper","select":"bds128Select-select","selectError":"bds128Select-selectError","chevron":"bds128Select-chevron"};
|
|
2452
2452
|
|
|
2453
2453
|
// src/components/interaction/form/Select/Select.tsx
|
|
2454
2454
|
import { cn as cn43 } from "@boostdev/design-system-foundation";
|
|
@@ -2499,7 +2499,7 @@ function Select({
|
|
|
2499
2499
|
import { useId as useId20, useState as useState12 } from "react";
|
|
2500
2500
|
|
|
2501
2501
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2502
|
-
var Slider_default = {"formGroup":"
|
|
2502
|
+
var Slider_default = {"formGroup":"bds128Slider-formGroup","labelRow":"bds128Slider-labelRow","value":"bds128Slider-value","slider":"bds128Slider-slider","sliderError":"bds128Slider-sliderError"};
|
|
2503
2503
|
|
|
2504
2504
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2505
2505
|
import { cn as cn44 } from "@boostdev/design-system-foundation";
|
|
@@ -2561,7 +2561,7 @@ function Slider({
|
|
|
2561
2561
|
import { useId as useId21 } from "react";
|
|
2562
2562
|
|
|
2563
2563
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2564
|
-
var Switch_default = {"switchGroup":"
|
|
2564
|
+
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"};
|
|
2565
2565
|
|
|
2566
2566
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2567
2567
|
import { cn as cn45 } from "@boostdev/design-system-foundation";
|
|
@@ -2609,7 +2609,7 @@ function Switch({
|
|
|
2609
2609
|
import { useId as useId22 } from "react";
|
|
2610
2610
|
|
|
2611
2611
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2612
|
-
var Textarea_default = {"formGroup":"
|
|
2612
|
+
var Textarea_default = {"formGroup":"bds128Textarea-formGroup","textarea":"bds128Textarea-textarea","textareaError":"bds128Textarea-textareaError"};
|
|
2613
2613
|
|
|
2614
2614
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2615
2615
|
import { cn as cn46 } from "@boostdev/design-system-foundation";
|
|
@@ -2648,12 +2648,12 @@ function Textarea({
|
|
|
2648
2648
|
}
|
|
2649
2649
|
|
|
2650
2650
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2651
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2651
|
+
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"};
|
|
2652
2652
|
|
|
2653
2653
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2654
2654
|
import { cn as cn47 } from "@boostdev/design-system-foundation";
|
|
2655
2655
|
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
2656
|
-
function
|
|
2656
|
+
function ButtonContainer({ children, className, variant, ...rest }) {
|
|
2657
2657
|
return /* @__PURE__ */ jsx47(
|
|
2658
2658
|
"div",
|
|
2659
2659
|
{
|
|
@@ -2664,9 +2664,10 @@ function ButtonGroup({ children, className, variant, ...rest }) {
|
|
|
2664
2664
|
}
|
|
2665
2665
|
);
|
|
2666
2666
|
}
|
|
2667
|
+
var ButtonGroup = ButtonContainer;
|
|
2667
2668
|
|
|
2668
2669
|
// src/components/layout/Card/Card.module.css
|
|
2669
|
-
var Card_default = {"card":"
|
|
2670
|
+
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"};
|
|
2670
2671
|
|
|
2671
2672
|
// src/components/layout/Card/Card.tsx
|
|
2672
2673
|
import { cn as cn48 } from "@boostdev/design-system-foundation";
|
|
@@ -2677,6 +2678,7 @@ function Card({
|
|
|
2677
2678
|
variant = "default",
|
|
2678
2679
|
padding = "medium",
|
|
2679
2680
|
textAlign = "start",
|
|
2681
|
+
as,
|
|
2680
2682
|
onClick,
|
|
2681
2683
|
...rest
|
|
2682
2684
|
}) {
|
|
@@ -2688,21 +2690,21 @@ function Card({
|
|
|
2688
2690
|
onClick && Card_default["--clickable"],
|
|
2689
2691
|
className
|
|
2690
2692
|
);
|
|
2691
|
-
const Component = onClick ? "button" : "div";
|
|
2693
|
+
const Component = as ?? (onClick ? "button" : "div");
|
|
2692
2694
|
return /* @__PURE__ */ jsx48(
|
|
2693
2695
|
Component,
|
|
2694
2696
|
{
|
|
2695
2697
|
...rest,
|
|
2696
2698
|
className: classNames,
|
|
2697
2699
|
onClick,
|
|
2698
|
-
|
|
2700
|
+
...!as && onClick && { type: "button" },
|
|
2699
2701
|
children
|
|
2700
2702
|
}
|
|
2701
2703
|
);
|
|
2702
2704
|
}
|
|
2703
2705
|
|
|
2704
2706
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2705
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2707
|
+
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"};
|
|
2706
2708
|
|
|
2707
2709
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2708
2710
|
import { cn as cn49 } from "@boostdev/design-system-foundation";
|
|
@@ -2724,7 +2726,7 @@ function SectionHeader({
|
|
|
2724
2726
|
}
|
|
2725
2727
|
|
|
2726
2728
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2727
|
-
var IconWrapper_default = {"wrapper":"
|
|
2729
|
+
var IconWrapper_default = {"wrapper":"bds128IconWrapper-wrapper"};
|
|
2728
2730
|
|
|
2729
2731
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2730
2732
|
import { cn as cn50 } from "@boostdev/design-system-foundation";
|
|
@@ -2742,6 +2744,7 @@ export {
|
|
|
2742
2744
|
Badge,
|
|
2743
2745
|
Breadcrumb,
|
|
2744
2746
|
Button,
|
|
2747
|
+
ButtonContainer,
|
|
2745
2748
|
ButtonGroup,
|
|
2746
2749
|
Calendar,
|
|
2747
2750
|
Card,
|