@sunrise-upc/mobile-prod-card 10.0.1-beta.11 → 10.0.1-beta.12
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/OttMiniSummaryCard/OttMiniSummaryCard.d.ts +1 -1
- package/dist/cjs/components/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +0 -3
- package/dist/cjs/index.js +3 -3
- package/dist/esm/components/OttMiniSummaryCard/OttMiniSummaryCard.d.ts +1 -1
- package/dist/esm/components/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +0 -3
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +1 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -402,29 +402,20 @@ declare const RecommendedOptions: React.FC<ComponentWithContentProps<Recommended
|
|
|
402
402
|
isPartialFetching?: boolean;
|
|
403
403
|
}>;
|
|
404
404
|
|
|
405
|
-
interface ProductItem {
|
|
406
|
-
productName: string;
|
|
407
|
-
derivedPrice: string;
|
|
408
|
-
recurringPrice?: string;
|
|
409
|
-
contractDuration?: string;
|
|
410
|
-
}
|
|
411
405
|
interface PriceCalculationStickyProps {
|
|
412
406
|
totalAmount: number;
|
|
413
|
-
productsName?: string;
|
|
414
|
-
products: ProductItem[];
|
|
415
407
|
onContinue?: () => void;
|
|
416
408
|
currencySymbol?: string;
|
|
417
409
|
isExpanded?: boolean;
|
|
418
410
|
onToggle?: (expanded: boolean) => void;
|
|
419
411
|
cartData?: Record<string, any>;
|
|
420
412
|
content?: any;
|
|
421
|
-
accessoriesSelected?: any;
|
|
422
413
|
flow?: string;
|
|
423
414
|
}
|
|
424
415
|
|
|
425
416
|
declare const PriceCalculationSticky: React.FC<PriceCalculationStickyProps>;
|
|
426
417
|
|
|
427
|
-
declare const OttMiniSummaryCard: ({ content,
|
|
418
|
+
declare const OttMiniSummaryCard: ({ content, cartData }: any) => JSX.Element;
|
|
428
419
|
|
|
429
420
|
interface LineTableBasicPropConfigSchema {
|
|
430
421
|
baseURL: string | '';
|
package/package.json
CHANGED