@sunrise-upc/mobile-prod-card 8.9.3 → 8.9.4
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
|
@@ -244,9 +244,13 @@ declare const CoverageCheckModal: FC<any>;
|
|
|
244
244
|
|
|
245
245
|
declare const StickyBottomSheet: FC<any>;
|
|
246
246
|
|
|
247
|
+
type StepItem = {
|
|
248
|
+
Title: string;
|
|
249
|
+
subTitle?: string;
|
|
250
|
+
};
|
|
247
251
|
type ProgressionBarProps = {
|
|
248
|
-
step: number;
|
|
249
|
-
steps:
|
|
252
|
+
step: number | string;
|
|
253
|
+
steps: StepItem[];
|
|
250
254
|
};
|
|
251
255
|
declare const ProgressionBar: ({ step, steps }: ProgressionBarProps) => JSX.Element;
|
|
252
256
|
|