@sunrise-upc/mobile-prod-card 1.0.16 → 1.0.17

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.
@@ -6,7 +6,7 @@ export interface RichTextWithTooltip extends GenericSBProps {
6
6
  text: Array<Object>;
7
7
  tooltipTxt: string;
8
8
  }
9
- export interface ProductTeaserSlidesSchema extends GenericSBProps {
9
+ export interface ProductTeaserSlideSchema extends GenericSBProps {
10
10
  buttonLbl: string;
11
11
  conDuration: string;
12
12
  description: Array<Object>;
@@ -31,7 +31,7 @@ export interface ProductTeaserCompSchema extends GenericSBProps {
31
31
  btnIcon: Asset;
32
32
  serviceabilityError: string;
33
33
  tvIcon: Asset;
34
- productTeaserSlides: ProductTeaserSlidesSchema[];
34
+ productTeaserSlides: ProductTeaserSlideSchema[];
35
35
  }
36
36
  export interface ProductTeaserSchema {
37
37
  content: ProductTeaserCompSchema;
@@ -0,0 +1,11 @@
1
+ import { FC } from "react";
2
+ import { ProductTeaserCompSchema, ProductTeaserSlideSchema } from "./ProductTeaser";
3
+ export interface ProductTeaserSlidesSchema {
4
+ content: ProductTeaserCompSchema;
5
+ slides: ProductTeaserSlideSchema;
6
+ index: number;
7
+ offeringData: any;
8
+ lineCheckCallBack?: () => void;
9
+ }
10
+ declare const ProductTeaserSlides: FC<ProductTeaserSlidesSchema>;
11
+ export default ProductTeaserSlides;
@@ -1,3 +1,3 @@
1
- import { FC } from "react";
1
+ import { FC } from 'react';
2
2
  declare const BundleProductsV3: FC<any>;
3
3
  export default BundleProductsV3;