@sunrise-upc/mobile-prod-card 10.0.0 → 10.0.1-beta.1
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/Accessories/Accessory-card/AccessoryCard.d.ts +2 -1
- package/dist/cjs/components/Accessories/MultiItemAccessories/MultiItemAccessoriesPage.d.ts +4 -1
- package/dist/cjs/components/Accessories/MultiItemAccessories/MultiItemAccessoriesSchema.d.ts +1 -0
- package/dist/cjs/components/Accessories/multiItemAccessoryStore/types.d.ts +1 -0
- package/dist/cjs/components/OttMiniSummaryCard/OttMiniSummaryCard.d.ts +2 -1
- package/dist/cjs/components/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +7 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/utils/utils.d.ts +1 -0
- package/dist/esm/components/Accessories/Accessory-card/AccessoryCard.d.ts +2 -1
- package/dist/esm/components/Accessories/MultiItemAccessories/MultiItemAccessoriesPage.d.ts +4 -1
- package/dist/esm/components/Accessories/MultiItemAccessories/MultiItemAccessoriesSchema.d.ts +1 -0
- package/dist/esm/components/Accessories/multiItemAccessoryStore/types.d.ts +1 -0
- package/dist/esm/components/OttMiniSummaryCard/OttMiniSummaryCard.d.ts +2 -1
- package/dist/esm/components/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +7 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/utils/utils.d.ts +1 -0
- package/dist/index.d.ts +13 -3
- package/package.json +1 -1
|
@@ -31,3 +31,4 @@ export declare const countZeros: (value: any) => any;
|
|
|
31
31
|
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
|
+
export declare const rp_lastcartItemWithParentPOType: (cart: any[], lastCartItems: Record<string, any>, parent: any, home: any) => Record<string, any>;
|
package/dist/index.d.ts
CHANGED
|
@@ -315,9 +315,13 @@ interface MultiItemAccessoriesSchema extends GenericSBProps {
|
|
|
315
315
|
winAccessoriesLimit: number;
|
|
316
316
|
winLimitWarningText: any;
|
|
317
317
|
winCheckoutUrl: any;
|
|
318
|
+
ratePlanAccessoriesLimit: number;
|
|
318
319
|
}
|
|
319
320
|
|
|
320
|
-
|
|
321
|
+
interface MultiItemAccessoriesProps extends ComponentWithContentProps<MultiItemAccessoriesSchema> {
|
|
322
|
+
setAccessoriesSelected?: (accessories: any[]) => void;
|
|
323
|
+
}
|
|
324
|
+
declare const MultiItemAccessoriesWithProvider: (props: MultiItemAccessoriesProps) => JSX.Element;
|
|
321
325
|
|
|
322
326
|
interface NotificationToastProps {
|
|
323
327
|
title: string;
|
|
@@ -411,14 +415,20 @@ interface PriceCalculationStickyProps {
|
|
|
411
415
|
content?: {
|
|
412
416
|
title?: string;
|
|
413
417
|
monthlyText?: string;
|
|
414
|
-
continueBtn?: FalconButtonSchema[];
|
|
418
|
+
continueBtn?: Partial<FalconButtonSchema>[];
|
|
415
419
|
};
|
|
416
420
|
onContinue?: () => void;
|
|
421
|
+
currencySymbol?: string;
|
|
422
|
+
isExpanded?: boolean;
|
|
423
|
+
onToggle?: (expanded: boolean) => void;
|
|
424
|
+
cartData?: Record<string, any>;
|
|
425
|
+
content?: any;
|
|
426
|
+
accessoriesSelected?: any;
|
|
417
427
|
}
|
|
418
428
|
|
|
419
429
|
declare const PriceCalculationSticky: React.FC<PriceCalculationStickyProps>;
|
|
420
430
|
|
|
421
|
-
declare const OttMiniSummaryCard: ({ content,
|
|
431
|
+
declare const OttMiniSummaryCard: ({ content, metadata, cartData }: any) => JSX.Element;
|
|
422
432
|
|
|
423
433
|
interface LineTableBasicPropConfigSchema {
|
|
424
434
|
baseURL: string | '';
|