@sunrise-upc/mobile-prod-card 1.2.3 → 1.2.4-beta.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/dist/cjs/components/StaticLineTable/CheckoutButton.d.ts +4 -0
  2. package/dist/cjs/components/StaticLineTable/DynamicPriceSection.d.ts +4 -0
  3. package/dist/cjs/components/StaticLineTable/Product.utils.d.ts +9 -0
  4. package/dist/cjs/components/StaticLineTable/StaticBenefit.d.ts +4 -0
  5. package/dist/cjs/components/StaticLineTable/StaticLineTable.d.ts +4 -0
  6. package/dist/cjs/components/StaticLineTable/StaticProduct.d.ts +4 -0
  7. package/dist/cjs/components/StaticLineTable/StaticProductContainer.d.ts +4 -0
  8. package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +56 -0
  9. package/dist/cjs/components/StaticLineTable/StaticProductDetails.d.ts +4 -0
  10. package/dist/cjs/components/StaticLineTable/StaticProductDetailsModal.d.ts +14 -0
  11. package/dist/cjs/components/StaticLineTable/StaticProductEntitlement.d.ts +3 -0
  12. package/dist/cjs/components/StaticLineTable/index.d.ts +1 -0
  13. package/dist/cjs/components/index.d.ts +1 -0
  14. package/dist/cjs/components/lineTable/lineTable.types.d.ts +1 -1
  15. package/dist/cjs/index.js +1 -1
  16. package/dist/esm/components/StaticLineTable/CheckoutButton.d.ts +4 -0
  17. package/dist/esm/components/StaticLineTable/DynamicPriceSection.d.ts +4 -0
  18. package/dist/esm/components/StaticLineTable/Product.utils.d.ts +9 -0
  19. package/dist/esm/components/StaticLineTable/StaticBenefit.d.ts +4 -0
  20. package/dist/esm/components/StaticLineTable/StaticLineTable.d.ts +4 -0
  21. package/dist/esm/components/StaticLineTable/StaticProduct.d.ts +4 -0
  22. package/dist/esm/components/StaticLineTable/StaticProductContainer.d.ts +4 -0
  23. package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +56 -0
  24. package/dist/esm/components/StaticLineTable/StaticProductDetails.d.ts +4 -0
  25. package/dist/esm/components/StaticLineTable/StaticProductDetailsModal.d.ts +14 -0
  26. package/dist/esm/components/StaticLineTable/StaticProductEntitlement.d.ts +3 -0
  27. package/dist/esm/components/StaticLineTable/index.d.ts +1 -0
  28. package/dist/esm/components/index.d.ts +1 -0
  29. package/dist/esm/components/lineTable/lineTable.types.d.ts +1 -1
  30. package/dist/esm/index.js +1 -1
  31. package/dist/index.d.ts +11 -1
  32. 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunrise-upc/mobile-prod-card",
3
- "version": "1.2.3",
3
+ "version": "1.2.4-beta.0",
4
4
  "description": "Starter project to create reusable functional component",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",