@sunrise-upc/mobile-prod-card 10.0.1-beta.2 → 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 -7
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/utils/utils.d.ts +1 -0
- package/dist/esm/components/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +2 -7
- package/dist/esm/index.js +2 -2
- package/dist/esm/utils/utils.d.ts +1 -0
- package/dist/index.d.ts +2 -6
- package/package.json +1 -1
|
@@ -32,3 +32,4 @@ export declare const viewportMultiItem: () => string;
|
|
|
32
32
|
export declare const setSessionStorage: (sname: string, valueobj: any) => any;
|
|
33
33
|
export declare const getSessionStorage: (sname: string) => any;
|
|
34
34
|
export declare const rp_lastcartItemWithParentPOType: (cart: any[], lastCartItems: Record<string, any>, parent: any, home: any) => Record<string, any>;
|
|
35
|
+
export declare const isStandaloneOption: (product: any) => any;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { FalconButtonSchema } from "../types";
|
|
2
1
|
export interface ProductItem {
|
|
3
2
|
productName: string;
|
|
4
3
|
derivedPrice: string;
|
|
@@ -7,13 +6,8 @@ export interface ProductItem {
|
|
|
7
6
|
}
|
|
8
7
|
export interface PriceCalculationStickyProps {
|
|
9
8
|
totalAmount: number;
|
|
10
|
-
productsName
|
|
9
|
+
productsName?: string;
|
|
11
10
|
products: ProductItem[];
|
|
12
|
-
content?: {
|
|
13
|
-
title?: string;
|
|
14
|
-
monthlyText?: string;
|
|
15
|
-
continueBtn?: Partial<FalconButtonSchema>[];
|
|
16
|
-
};
|
|
17
11
|
onContinue?: () => void;
|
|
18
12
|
currencySymbol?: string;
|
|
19
13
|
isExpanded?: boolean;
|
|
@@ -21,4 +15,5 @@ export interface PriceCalculationStickyProps {
|
|
|
21
15
|
cartData?: Record<string, any>;
|
|
22
16
|
content?: any;
|
|
23
17
|
accessoriesSelected?: any;
|
|
18
|
+
flow?: string;
|
|
24
19
|
}
|