@sunrise-upc/mobile-prod-card 1.2.3 → 1.2.4-beta.1
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 +10 -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 +68 -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/TVChannelModal.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 +10 -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 +68 -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/TVChannelModal.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 +13 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -152,6 +152,18 @@ 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
|
+
changeAddressClicked?: any;
|
162
|
+
lineCheckCallBack?: any;
|
163
|
+
}
|
164
|
+
|
165
|
+
declare const StaticLineTable: FC<StaticLinetableSchema>;
|
166
|
+
|
155
167
|
interface LineTableBasicPropConfigSchema {
|
156
168
|
baseURL: string | '';
|
157
169
|
cartURL?: string | '';
|
@@ -195,4 +207,4 @@ declare class ProductTeaserPropConfig {
|
|
195
207
|
static create: (p_config: ProductTeaserPropConfigSchema) => void;
|
196
208
|
}
|
197
209
|
|
198
|
-
export { AssetPathPropConfig, AssetPathPropConfigSchema, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StickyProductAnchor };
|
210
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|