bsm-design-system 1.19.1 → 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 +4 -1
- package/index.d.ts +4 -1
- package/index.js +6 -6
- package/index.mjs +6 -6
- package/package.json +1 -1
- package/styles.css +1 -1
package/index.d.mts
CHANGED
|
@@ -1020,8 +1020,10 @@ interface StepItem {
|
|
|
1020
1020
|
label: string;
|
|
1021
1021
|
caption?: string;
|
|
1022
1022
|
disabled?: boolean;
|
|
1023
|
+
icon?: React.ReactNode;
|
|
1023
1024
|
}
|
|
1024
1025
|
|
|
1026
|
+
type ConnectorType = "dashed" | "solid";
|
|
1025
1027
|
interface StepperProps {
|
|
1026
1028
|
steps: StepItem[];
|
|
1027
1029
|
activeStep: number;
|
|
@@ -1030,8 +1032,9 @@ interface StepperProps {
|
|
|
1030
1032
|
className?: string;
|
|
1031
1033
|
clickable?: boolean;
|
|
1032
1034
|
dotStyle?: boolean;
|
|
1035
|
+
connector?: ConnectorType;
|
|
1033
1036
|
}
|
|
1034
1037
|
|
|
1035
|
-
declare function Stepper({ steps, activeStep, onChange, orientation, className, clickable, dotStyle, }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
1038
|
+
declare function Stepper({ steps, activeStep, onChange, orientation, className, clickable, dotStyle, connector, }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
1036
1039
|
|
|
1037
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
|
@@ -1020,8 +1020,10 @@ interface StepItem {
|
|
|
1020
1020
|
label: string;
|
|
1021
1021
|
caption?: string;
|
|
1022
1022
|
disabled?: boolean;
|
|
1023
|
+
icon?: React.ReactNode;
|
|
1023
1024
|
}
|
|
1024
1025
|
|
|
1026
|
+
type ConnectorType = "dashed" | "solid";
|
|
1025
1027
|
interface StepperProps {
|
|
1026
1028
|
steps: StepItem[];
|
|
1027
1029
|
activeStep: number;
|
|
@@ -1030,8 +1032,9 @@ interface StepperProps {
|
|
|
1030
1032
|
className?: string;
|
|
1031
1033
|
clickable?: boolean;
|
|
1032
1034
|
dotStyle?: boolean;
|
|
1035
|
+
connector?: ConnectorType;
|
|
1033
1036
|
}
|
|
1034
1037
|
|
|
1035
|
-
declare function Stepper({ steps, activeStep, onChange, orientation, className, clickable, dotStyle, }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
1038
|
+
declare function Stepper({ steps, activeStep, onChange, orientation, className, clickable, dotStyle, connector, }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
1036
1039
|
|
|
1037
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 };
|