@sunrise-upc/mobile-prod-card 1.2.2 → 1.2.4-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/StaticLineTable/CheckoutButton.d.ts +4 -0
- package/dist/cjs/components/StaticLineTable/DynamicPriceSection.d.ts +4 -0
- package/dist/cjs/components/StaticLineTable/Product.utils.d.ts +9 -0
- package/dist/cjs/components/StaticLineTable/StaticBenefit.d.ts +4 -0
- package/dist/cjs/components/StaticLineTable/StaticLineTable.d.ts +4 -0
- package/dist/cjs/components/StaticLineTable/StaticProduct.d.ts +4 -0
- package/dist/cjs/components/StaticLineTable/StaticProductContainer.d.ts +4 -0
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +56 -0
- package/dist/cjs/components/StaticLineTable/StaticProductDetails.d.ts +4 -0
- package/dist/cjs/components/StaticLineTable/StaticProductDetailsModal.d.ts +14 -0
- package/dist/cjs/components/StaticLineTable/StaticProductEntitlement.d.ts +3 -0
- package/dist/cjs/components/StaticLineTable/index.d.ts +1 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/components/lineTable/lineTable.types.d.ts +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/StaticLineTable/CheckoutButton.d.ts +4 -0
- package/dist/esm/components/StaticLineTable/DynamicPriceSection.d.ts +4 -0
- package/dist/esm/components/StaticLineTable/Product.utils.d.ts +9 -0
- package/dist/esm/components/StaticLineTable/StaticBenefit.d.ts +4 -0
- package/dist/esm/components/StaticLineTable/StaticLineTable.d.ts +4 -0
- package/dist/esm/components/StaticLineTable/StaticProduct.d.ts +4 -0
- package/dist/esm/components/StaticLineTable/StaticProductContainer.d.ts +4 -0
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +56 -0
- package/dist/esm/components/StaticLineTable/StaticProductDetails.d.ts +4 -0
- package/dist/esm/components/StaticLineTable/StaticProductDetailsModal.d.ts +14 -0
- package/dist/esm/components/StaticLineTable/StaticProductEntitlement.d.ts +3 -0
- package/dist/esm/components/StaticLineTable/index.d.ts +1 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/components/lineTable/lineTable.types.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +11 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -152,6 +152,16 @@ declare const ProductTableV3: FC<ProductTableSchema>;
|
|
152
152
|
|
153
153
|
declare const StickyProductAnchor: ({ content, offerData, lineCheckCallBack }: any) => JSX.Element;
|
154
154
|
|
155
|
+
interface StaticLinetableSchema {
|
156
|
+
content: any;
|
157
|
+
tabCheckCallBack?: any;
|
158
|
+
setGenericErrorModalDetails: any;
|
159
|
+
metadata: any;
|
160
|
+
loginSuccess?: boolean;
|
161
|
+
}
|
162
|
+
|
163
|
+
declare const StaticLineTable: FC<StaticLinetableSchema>;
|
164
|
+
|
155
165
|
interface LineTableBasicPropConfigSchema {
|
156
166
|
baseURL: string | '';
|
157
167
|
cartURL?: string | '';
|
@@ -195,4 +205,4 @@ declare class ProductTeaserPropConfig {
|
|
195
205
|
static create: (p_config: ProductTeaserPropConfigSchema) => void;
|
196
206
|
}
|
197
207
|
|
198
|
-
export { AssetPathPropConfig, AssetPathPropConfigSchema, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StickyProductAnchor };
|
208
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|