@sunrise-upc/mobile-prod-card 10.0.1-beta.3 → 10.0.1-beta.4
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/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +2 -1
- package/dist/cjs/index.js +2 -2
- package/dist/esm/components/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +2 -1
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -410,7 +410,7 @@ interface ProductItem {
|
|
|
410
410
|
}
|
|
411
411
|
interface PriceCalculationStickyProps {
|
|
412
412
|
totalAmount: number;
|
|
413
|
-
productsName
|
|
413
|
+
productsName?: string;
|
|
414
414
|
products: ProductItem[];
|
|
415
415
|
onContinue?: () => void;
|
|
416
416
|
currencySymbol?: string;
|
|
@@ -419,6 +419,7 @@ interface PriceCalculationStickyProps {
|
|
|
419
419
|
cartData?: Record<string, any>;
|
|
420
420
|
content?: any;
|
|
421
421
|
accessoriesSelected?: any;
|
|
422
|
+
flow?: string;
|
|
422
423
|
}
|
|
423
424
|
|
|
424
425
|
declare const PriceCalculationSticky: React.FC<PriceCalculationStickyProps>;
|
package/package.json
CHANGED