@scbt-ecom/ui 0.91.1 → 0.91.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.
@@ -25,7 +25,7 @@ export type ButtonsConfig = {
25
25
  };
26
26
  };
27
27
  export type Images = {
28
- desktop: string;
29
- mobile: string;
30
- alt: string;
28
+ desktop?: string;
29
+ mobile?: string;
30
+ alt?: string;
31
31
  };
@@ -1,5 +1,5 @@
1
1
  export type Images = {
2
- desktop: string;
3
- mobile: string;
4
- alt: string;
2
+ desktop?: string;
3
+ mobile?: string;
4
+ alt?: string;
5
5
  };
@@ -6,7 +6,7 @@ export type StepperTabsClasses = {
6
6
  export interface StepperTab {
7
7
  headline: string;
8
8
  }
9
- export type StepperTabValue = string;
9
+ export type StepperTabValue = string | undefined;
10
10
  export interface StepperTabsProps {
11
11
  stepperTabs?: StepperTab[];
12
12
  activeStepper: StepperTabValue;