@sunrise-upc/mobile-prod-card 3.0.3-beta.2 → 3.0.3-beta.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,6 +30,11 @@ export interface ecomAddCartInfo {
30
30
  value: string | number;
31
31
  items: itemInfoEvent[];
32
32
  }
33
+ export declare const getItemCategory: (item: any) => {
34
+ prodCategory: string;
35
+ prodsubCategory: string;
36
+ prodsubscription: string;
37
+ };
33
38
  export declare const getItemData: (item: any, data?: any, isAvailable?: any) => itemInfoEvent;
34
39
  export declare const getEcomInfo: (items: any, category?: any, location?: any, eligibleBundle?: any) => any;
35
40
  export declare const getViewCartInfo: (items: any, category: any, location: any) => ecomViewCartInfo;
@@ -23,3 +23,4 @@ export declare const AVAILABLE_LANGUAGES: {
23
23
  DE: string;
24
24
  };
25
25
  export declare const ERROR_COLOR = "#C60047";
26
+ export declare const BREADCRUMB = "...";
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const Breadcrumb: FC<any>;
3
+ export default Breadcrumb;
@@ -0,0 +1 @@
1
+ export { default } from './Breadcrumb';
@@ -0,0 +1,4 @@
1
+ declare const useScrollCheck: () => {
2
+ isScrollBreak: boolean;
3
+ };
4
+ export default useScrollCheck;
@@ -9,3 +9,4 @@ export { default as StickyProductAnchor } from './StickyProductAnchor';
9
9
  export { default as StaticLineTable } from './StaticLineTable';
10
10
  export { default as LinecheckModal } from './LineCheckV3';
11
11
  export { default as BenefitWrapper } from './BenefitWrapper';
12
+ export { default as Breadcrumb } from './Breadcrumb';