design-system-silkhaus 2.3.0-beta.travel-list.17 → 2.3.0-beta.travel-list.19

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/dist/index.d.ts CHANGED
@@ -659,6 +659,25 @@ export declare interface StepperProps {
659
659
  outerMobileDivClass?: string;
660
660
  }
661
661
 
662
+ export declare const StepsList: FC<StepsListProps>;
663
+
664
+ export declare const StepsListItem: FC<StepsListItemProps>;
665
+
666
+ export declare type StepsListItemProps = {
667
+ title: string;
668
+ description: string;
669
+ IconComponent: FC<{
670
+ className?: string;
671
+ }>;
672
+ iconClassName?: string;
673
+ className?: string;
674
+ };
675
+
676
+ export declare type StepsListProps = {
677
+ steps: StepsListItemProps[];
678
+ className?: string;
679
+ };
680
+
662
681
  export declare const Switch: default_2.ForwardRefExoticComponent<SwitchProps & default_2.RefAttributes<HTMLInputElement>>;
663
682
 
664
683
  export declare interface SwitchProps {