@sunrise-upc/mobile-prod-card 10.0.1-beta.0 → 10.0.1-beta.2

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.
@@ -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
@@ -318,7 +318,10 @@ interface MultiItemAccessoriesSchema extends GenericSBProps {
318
318
  ratePlanAccessoriesLimit: number;
319
319
  }
320
320
 
321
- declare const MultiItemAccessoriesWithProvider: (props: ComponentWithContentProps<MultiItemAccessoriesSchema>) => JSX.Element;
321
+ interface MultiItemAccessoriesProps extends ComponentWithContentProps<MultiItemAccessoriesSchema> {
322
+ setAccessoriesSelected?: (accessories: any[]) => void;
323
+ }
324
+ declare const MultiItemAccessoriesWithProvider: (props: MultiItemAccessoriesProps) => JSX.Element;
322
325
 
323
326
  interface NotificationToastProps {
324
327
  title: string;
@@ -415,11 +418,17 @@ interface PriceCalculationStickyProps {
415
418
  continueBtn?: Partial<FalconButtonSchema>[];
416
419
  };
417
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;
418
427
  }
419
428
 
420
429
  declare const PriceCalculationSticky: React.FC<PriceCalculationStickyProps>;
421
430
 
422
- declare const OttMiniSummaryCard: ({ content, metadta }: any) => JSX.Element;
431
+ declare const OttMiniSummaryCard: ({ content, metadata, cartData }: any) => JSX.Element;
423
432
 
424
433
  interface LineTableBasicPropConfigSchema {
425
434
  baseURL: string | '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunrise-upc/mobile-prod-card",
3
- "version": "10.0.1-beta.0",
3
+ "version": "10.0.1-beta.2",
4
4
  "description": "Starter project to create reusable functional component",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",