bsm-design-system 1.19.0 → 1.19.2
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/index.d.mts +9 -4
- package/index.d.ts +9 -4
- package/index.js +26 -26
- package/index.mjs +26 -26
- package/package.json +1 -1
- package/styles.css +1 -1
package/index.d.mts
CHANGED
|
@@ -1011,13 +1011,19 @@ type PopoverContent = React.ComponentProps<
|
|
|
1011
1011
|
typeof PopoverPrimitive.Content
|
|
1012
1012
|
>;
|
|
1013
1013
|
|
|
1014
|
+
type IconType = React.ComponentType<React.SVGProps<SVGSVGElement>>;
|
|
1015
|
+
|
|
1016
|
+
type OrientationType = "horizontal" | "vertical";
|
|
1017
|
+
|
|
1014
1018
|
interface StepItem {
|
|
1015
1019
|
id: number;
|
|
1016
1020
|
label: string;
|
|
1017
1021
|
caption?: string;
|
|
1018
1022
|
disabled?: boolean;
|
|
1023
|
+
icon?: React.ReactNode;
|
|
1019
1024
|
}
|
|
1020
1025
|
|
|
1026
|
+
type ConnectorType = "dashed" | "solid";
|
|
1021
1027
|
interface StepperProps {
|
|
1022
1028
|
steps: StepItem[];
|
|
1023
1029
|
activeStep: number;
|
|
@@ -1026,10 +1032,9 @@ interface StepperProps {
|
|
|
1026
1032
|
className?: string;
|
|
1027
1033
|
clickable?: boolean;
|
|
1028
1034
|
dotStyle?: boolean;
|
|
1035
|
+
connector?: ConnectorType;
|
|
1029
1036
|
}
|
|
1030
1037
|
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
type OrientationType = "horizontal" | "vertical";
|
|
1038
|
+
declare function Stepper({ steps, activeStep, onChange, orientation, className, clickable, dotStyle, connector, }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
1034
1039
|
|
|
1035
|
-
export { Accordion, type AccordionProps, type AccordionVariant, Button, type ButtonColors, type ButtonProps, type ButtonSize, type ButtonVariant, Card, Checkbox, type CheckboxProps, type CheckboxSize, Badge as Chips, type ChipsType, type ChipsVariantType, SmartDialog as Dialog, type DialogHeaderBarProps, type SmartDialogProps as DialogProps, type DialogSize, SmartSheet as Drawer, type DrawerHeader, type DrawerProps, type DrawerSide, DropdownMenu, type IconType, Input, InputOTP, type InputProps, type InputSize, NestedAccordionMenu as ListMenu, type MultiSelectProps, type MultiSelectValueType, type OTPProps, type OrientationType, Pagination, type PaginationProps, Popover, type PopoverContent, type PopoverProps, type PopoverTrigger, RadioGroup, type RadioItemProps, type RadioProps, type RadioSize, SegmentButton, type SegmentButtonSize, type SegmentButtonType, Select, type SelectOptionType, type SelectProps, type SingleSelectProps, type SingleSelectValueType, Skeleton, type StepItem, type StepperProps, Switch, type SwitchProps, type SwitchSize, Table, Tabs, type TabsContentProps, type TabsListProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariants, Tag, type TagType, type TagVariantsType, Tooltip };
|
|
1040
|
+
export { Accordion, type AccordionProps, type AccordionVariant, Button, type ButtonColors, type ButtonProps, type ButtonSize, type ButtonVariant, Card, Checkbox, type CheckboxProps, type CheckboxSize, Badge as Chips, type ChipsType, type ChipsVariantType, SmartDialog as Dialog, type DialogHeaderBarProps, type SmartDialogProps as DialogProps, type DialogSize, SmartSheet as Drawer, type DrawerHeader, type DrawerProps, type DrawerSide, DropdownMenu, type IconType, Input, InputOTP, type InputProps, type InputSize, NestedAccordionMenu as ListMenu, type MultiSelectProps, type MultiSelectValueType, type OTPProps, type OrientationType, Pagination, type PaginationProps, Popover, type PopoverContent, type PopoverProps, type PopoverTrigger, RadioGroup, type RadioItemProps, type RadioProps, type RadioSize, SegmentButton, type SegmentButtonSize, type SegmentButtonType, Select, type SelectOptionType, type SelectProps, type SingleSelectProps, type SingleSelectValueType, Skeleton, type StepItem, Stepper, type StepperProps, Switch, type SwitchProps, type SwitchSize, Table, Tabs, type TabsContentProps, type TabsListProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariants, Tag, type TagType, type TagVariantsType, Tooltip };
|
package/index.d.ts
CHANGED
|
@@ -1011,13 +1011,19 @@ type PopoverContent = React.ComponentProps<
|
|
|
1011
1011
|
typeof PopoverPrimitive.Content
|
|
1012
1012
|
>;
|
|
1013
1013
|
|
|
1014
|
+
type IconType = React.ComponentType<React.SVGProps<SVGSVGElement>>;
|
|
1015
|
+
|
|
1016
|
+
type OrientationType = "horizontal" | "vertical";
|
|
1017
|
+
|
|
1014
1018
|
interface StepItem {
|
|
1015
1019
|
id: number;
|
|
1016
1020
|
label: string;
|
|
1017
1021
|
caption?: string;
|
|
1018
1022
|
disabled?: boolean;
|
|
1023
|
+
icon?: React.ReactNode;
|
|
1019
1024
|
}
|
|
1020
1025
|
|
|
1026
|
+
type ConnectorType = "dashed" | "solid";
|
|
1021
1027
|
interface StepperProps {
|
|
1022
1028
|
steps: StepItem[];
|
|
1023
1029
|
activeStep: number;
|
|
@@ -1026,10 +1032,9 @@ interface StepperProps {
|
|
|
1026
1032
|
className?: string;
|
|
1027
1033
|
clickable?: boolean;
|
|
1028
1034
|
dotStyle?: boolean;
|
|
1035
|
+
connector?: ConnectorType;
|
|
1029
1036
|
}
|
|
1030
1037
|
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
type OrientationType = "horizontal" | "vertical";
|
|
1038
|
+
declare function Stepper({ steps, activeStep, onChange, orientation, className, clickable, dotStyle, connector, }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
1034
1039
|
|
|
1035
|
-
export { Accordion, type AccordionProps, type AccordionVariant, Button, type ButtonColors, type ButtonProps, type ButtonSize, type ButtonVariant, Card, Checkbox, type CheckboxProps, type CheckboxSize, Badge as Chips, type ChipsType, type ChipsVariantType, SmartDialog as Dialog, type DialogHeaderBarProps, type SmartDialogProps as DialogProps, type DialogSize, SmartSheet as Drawer, type DrawerHeader, type DrawerProps, type DrawerSide, DropdownMenu, type IconType, Input, InputOTP, type InputProps, type InputSize, NestedAccordionMenu as ListMenu, type MultiSelectProps, type MultiSelectValueType, type OTPProps, type OrientationType, Pagination, type PaginationProps, Popover, type PopoverContent, type PopoverProps, type PopoverTrigger, RadioGroup, type RadioItemProps, type RadioProps, type RadioSize, SegmentButton, type SegmentButtonSize, type SegmentButtonType, Select, type SelectOptionType, type SelectProps, type SingleSelectProps, type SingleSelectValueType, Skeleton, type StepItem, type StepperProps, Switch, type SwitchProps, type SwitchSize, Table, Tabs, type TabsContentProps, type TabsListProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariants, Tag, type TagType, type TagVariantsType, Tooltip };
|
|
1040
|
+
export { Accordion, type AccordionProps, type AccordionVariant, Button, type ButtonColors, type ButtonProps, type ButtonSize, type ButtonVariant, Card, Checkbox, type CheckboxProps, type CheckboxSize, Badge as Chips, type ChipsType, type ChipsVariantType, SmartDialog as Dialog, type DialogHeaderBarProps, type SmartDialogProps as DialogProps, type DialogSize, SmartSheet as Drawer, type DrawerHeader, type DrawerProps, type DrawerSide, DropdownMenu, type IconType, Input, InputOTP, type InputProps, type InputSize, NestedAccordionMenu as ListMenu, type MultiSelectProps, type MultiSelectValueType, type OTPProps, type OrientationType, Pagination, type PaginationProps, Popover, type PopoverContent, type PopoverProps, type PopoverTrigger, RadioGroup, type RadioItemProps, type RadioProps, type RadioSize, SegmentButton, type SegmentButtonSize, type SegmentButtonType, Select, type SelectOptionType, type SelectProps, type SingleSelectProps, type SingleSelectValueType, Skeleton, type StepItem, Stepper, type StepperProps, Switch, type SwitchProps, type SwitchSize, Table, Tabs, type TabsContentProps, type TabsListProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariants, Tag, type TagType, type TagVariantsType, Tooltip };
|