@sunrise-upc/mobile-prod-card 1.0.19-beta.0 → 1.0.20
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/cjs/components/ProductTeaser/ProductTeaser.d.ts +3 -2
- package/dist/cjs/components/StickyProductAnchor/StickyProductAnchor.d.ts +3 -0
- package/dist/cjs/components/StickyProductAnchor/index.d.ts +1 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/ProductTeaser/ProductTeaser.d.ts +3 -2
- package/dist/esm/components/StickyProductAnchor/StickyProductAnchor.d.ts +3 -0
- package/dist/esm/components/StickyProductAnchor/index.d.ts +1 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FC } from
|
|
2
|
-
import { Asset, GenericSBProps, Links } from
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { Asset, GenericSBProps, Links } from '../types';
|
|
3
3
|
export interface RichTextWithTooltip extends GenericSBProps {
|
|
4
4
|
icon: Asset;
|
|
5
5
|
mobIcon: Asset;
|
|
@@ -37,6 +37,7 @@ export interface ProductTeaserSchema {
|
|
|
37
37
|
content: ProductTeaserCompSchema;
|
|
38
38
|
lineCheckCallBack?: () => void;
|
|
39
39
|
changeAddressClicked?: boolean;
|
|
40
|
+
offerDataCallBack?: (a: any, b: any) => void;
|
|
40
41
|
}
|
|
41
42
|
declare const ProductTeaser: FC<ProductTeaserSchema>;
|
|
42
43
|
export default ProductTeaser;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './StickyProductAnchor';
|
|
@@ -5,3 +5,4 @@ export { default as CardEntitlement } from './CardEntitlement';
|
|
|
5
5
|
export { default as CarouselComp } from './CarouselComp';
|
|
6
6
|
export { default as ProductTeaser } from './ProductTeaser';
|
|
7
7
|
export { default as ProductTableV3 } from './lineTable';
|
|
8
|
+
export { default as StickyProductAnchor } from './StickyProductAnchor';
|