@soma-vertical-web/multi-lib 0.0.46 → 0.0.48

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.
@@ -1,6 +1,6 @@
1
1
  import { PLPContextProps, PLPProviderProps } from '../../../types/contexts/contexts/plp';
2
2
 
3
3
  declare const PLPContext: import('react').Context<PLPContextProps>;
4
- declare const PLPProvider: ({ children, slug, searchParams, collectionId, itemsPerPage }: PLPProviderProps) => import("react/jsx-runtime").JSX.Element;
4
+ declare const PLPProvider: ({ children, slug, searchParams, collectionId, brand, itemsPerPage }: PLPProviderProps) => import("react/jsx-runtime").JSX.Element;
5
5
  declare const usePLPContext: () => PLPContextProps;
6
6
  export { PLPContext, PLPProvider, usePLPContext };
@@ -1,5 +1,5 @@
1
1
  import { SearchProviderProps, SearchContextProps } from '../../../types/contexts/contexts/search';
2
2
 
3
- declare const SearchProvider: ({ children, sort, state, count, collectionId, CONSTANTS }: SearchProviderProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const SearchProvider: ({ children, sort, state, count, collectionId, brand, CONSTANTS }: SearchProviderProps) => import("react/jsx-runtime").JSX.Element;
4
4
  declare const useSearchContext: () => SearchContextProps;
5
5
  export { SearchProvider, useSearchContext };
@@ -77,7 +77,7 @@ export declare const contexts: {
77
77
  };
78
78
  };
79
79
  plp: {
80
- provider: ({ children, slug, searchParams, collectionId, itemsPerPage }: import('../types/contexts/contexts/plp').PLPProviderProps) => import("react/jsx-runtime").JSX.Element;
80
+ provider: ({ children, slug, searchParams, collectionId, brand, itemsPerPage }: import('../types/contexts/contexts/plp').PLPProviderProps) => import("react/jsx-runtime").JSX.Element;
81
81
  hook: () => import('../types/contexts/contexts/plp').PLPContextProps;
82
82
  };
83
83
  plpFilter: {
@@ -110,7 +110,7 @@ export declare const contexts: {
110
110
  };
111
111
  searchSearch: {
112
112
  hook: () => import('../types/contexts/contexts/search').SearchContextProps;
113
- provider: ({ children, sort, state, count, collectionId, CONSTANTS }: import('../types/contexts/contexts/search').SearchProviderProps) => import("react/jsx-runtime").JSX.Element;
113
+ provider: ({ children, sort, state, count, collectionId, brand, CONSTANTS }: import('../types/contexts/contexts/search').SearchProviderProps) => import("react/jsx-runtime").JSX.Element;
114
114
  };
115
115
  searchSuggestedTerms: {
116
116
  hook: () => import('../types/contexts/contexts/search').SuggestedTermsContextProps;