@soma-vertical-web/multi-lib 1.0.6 → 1.0.8
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/cms/Sections/ProductCarousel/Composite/CommonShelf.d.ts +1 -1
- package/cms/Sections/ProductCarousel/ProductCarousel.d.ts +1 -1
- package/cms/index.d.ts +1 -1
- package/contexts/contexts/Session.d.ts +1 -1
- package/contexts/index.d.ts +1 -1
- package/index.js +10 -10
- package/index.mjs +2987 -3000
- package/layout/template/SearchModal/Composite/Recommendations.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/types/cms/Sections/ProductCarousel/index.d.ts +2 -0
- package/types/cms/Sections/SectionZone/index.d.ts +1 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ICommonShelf } from '../../../../types/cms/Sections/ProductCarousel';
|
|
2
2
|
|
|
3
|
-
declare const CollectionShelf: ({ collectionSearch, title, CONSTANTS, }: ICommonShelf) => import("react/jsx-runtime").JSX.Element | null;
|
|
3
|
+
declare const CollectionShelf: ({ collectionSearch, title, CONSTANTS, searchModal, }: ICommonShelf) => import("react/jsx-runtime").JSX.Element | null;
|
|
4
4
|
export default CollectionShelf;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ProductCarouselProps, PDPProductCarouselProps } from '../../../types/cms/Sections/ProductCarousel';
|
|
2
2
|
|
|
3
3
|
export declare const PDPProductCarousel: ({ data, CONSTANTS, }: PDPProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
|
|
4
|
-
export declare const ProductCarousel: ({ data, CONSTANTS }: ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
|
|
4
|
+
export declare const ProductCarousel: ({ data, CONSTANTS, searchModal, }: ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
|
package/cms/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare const clientCMS: {
|
|
|
18
18
|
SearchContent: ({ SectionZone, name, storeId, previewId, }: import('../types/cms/ContentTypes/Search').SearchContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
19
|
NewsletterSection: ({ data: { componentIndex, ...props }, CONSTANTS, }: import('../types/cms/Sections/Newsletter').NewsLetterSectionType) => import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
PDPProductCarousel: ({ data, CONSTANTS, }: import('../types/cms/Sections/ProductCarousel').PDPProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
|
|
21
|
-
ProductCarousel: ({ data, CONSTANTS }: import('../types/cms/Sections/ProductCarousel').ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
|
|
21
|
+
ProductCarousel: ({ data, CONSTANTS, searchModal, }: import('../types/cms/Sections/ProductCarousel').ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
|
|
22
22
|
EmbedLive: ({ data }: import('../types/cms/Sections/EmbedLive').EmbedLiveProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
23
|
PopupModalSection: ({ data, CONSTANTS, }: import('../types/cms/Sections/PopupModal').PopupModalSectionProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
24
24
|
SectionZone: import('react').FunctionComponent<import('../types/cms/Sections/SectionZone').SectionZoneProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ISessionContext, SessionProviderProps } from '../../types/contexts/contexts/session';
|
|
2
2
|
|
|
3
|
-
declare const SessionProvider: ({ children, AUTH_TOKEN_COOKIE, accountName }: SessionProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare const SessionProvider: ({ children, AUTH_TOKEN_COOKIE, accountName, }: SessionProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
declare const useSession: () => ISessionContext;
|
|
5
5
|
export { SessionProvider, useSession };
|
package/contexts/index.d.ts
CHANGED
|
@@ -117,7 +117,7 @@ export declare const contexts: {
|
|
|
117
117
|
};
|
|
118
118
|
session: {
|
|
119
119
|
hook: () => import('../types/contexts/contexts/session').ISessionContext;
|
|
120
|
-
provider: ({ children, AUTH_TOKEN_COOKIE, accountName }: import('../types/contexts/contexts/session').SessionProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
120
|
+
provider: ({ children, AUTH_TOKEN_COOKIE, accountName, }: import('../types/contexts/contexts/session').SessionProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
121
121
|
};
|
|
122
122
|
ui: {
|
|
123
123
|
hook: () => import('../types/contexts/contexts/cart').UIContextProps;
|