@soma-vertical-web/multi-lib 0.0.67 → 0.0.69
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/Composite/RecommendationShelf.d.ts +1 -1
- package/cms/Sections/ProductCarousel/ProductCarousel.d.ts +2 -2
- package/cms/index.d.ts +2 -2
- package/index.js +19 -19
- package/index.mjs +6104 -5878
- package/layout/index.d.ts +28 -5
- package/layout/team-component/BuyPackage/BuyPackage.d.ts +1 -1
- package/layout/team-component/ProductCard/Composite/Root.d.ts +1 -1
- package/layout/team-component/ProductCard/ProductCard.d.ts +1 -1
- package/layout/team-component/ProductList/Composite/Card/Card.d.ts +1 -1
- package/layout/team-component/ProductList/ProductList.d.ts +1 -1
- package/layout/template/PDC/Composite/Empty/Empty.d.ts +1 -1
- package/layout/template/PDC/Composite/Products/Products.d.ts +1 -1
- package/layout/template/PDC/index.d.ts +2 -2
- package/layout/template/WishList/Composite/Feedback.d.ts +11 -0
- package/layout/template/WishList/Composite/Grid.d.ts +7 -0
- package/layout/template/WishList/Composite/Init.d.ts +11 -0
- package/layout/template/WishList/Composite/Toggle.d.ts +7 -0
- package/layout/template/WishList/WishList.d.ts +26 -0
- package/layout/template/WishList/helpers.d.ts +12 -0
- package/layout/template/WishList/index.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/types/cms/Sections/ProductCarousel/index.d.ts +0 -3
- package/types/cms/Sections/SectionZone/intex.d.ts +1 -1
- package/types/constants.d.ts +12 -0
- package/types/contexts/contexts/plp.d.ts +0 -1
- package/types/layout/team-components/BuyPackage/index.d.ts +0 -1
- package/types/layout/team-components/ProductCard/index.d.ts +3 -3
- package/types/layout/team-components/ProductList/index.d.ts +0 -1
- package/types/layout/templates/PLP/index.d.ts +5 -10
- package/types/layout/templates/Wishlist/index.d.ts +21 -0
- package/types/layout/utils/index.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ICommonShelf } from '../../../../types/cms/Sections/ProductCarousel';
|
|
2
2
|
|
|
3
|
-
declare const CollectionShelf: ({ collectionSearch, title, CONSTANTS,
|
|
3
|
+
declare const CollectionShelf: ({ collectionSearch, title, CONSTANTS, }: ICommonShelf) => import("react/jsx-runtime").JSX.Element | null;
|
|
4
4
|
export default CollectionShelf;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { IRecomendationShelf } from '../../../../types/cms/Sections/ProductCarousel';
|
|
2
2
|
|
|
3
|
-
declare const RecommendationShelf: ({ recommendationSearch, title, CONSTANTS,
|
|
3
|
+
declare const RecommendationShelf: ({ recommendationSearch, title, CONSTANTS, }: IRecomendationShelf) => import("react/jsx-runtime").JSX.Element | null;
|
|
4
4
|
export default RecommendationShelf;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ProductCarouselProps, PDPProductCarouselProps } from '../../../types/cms/Sections/ProductCarousel';
|
|
2
2
|
|
|
3
|
-
export declare const PDPProductCarousel: ({ data, CONSTANTS,
|
|
4
|
-
export declare const ProductCarousel: ({ data, CONSTANTS
|
|
3
|
+
export declare const PDPProductCarousel: ({ data, CONSTANTS, }: PDPProductCarouselProps) => import("react/jsx-runtime").JSX.Element[];
|
|
4
|
+
export declare const ProductCarousel: ({ data, CONSTANTS }: ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[];
|
package/cms/index.d.ts
CHANGED
|
@@ -17,8 +17,8 @@ export declare const clientCMS: {
|
|
|
17
17
|
SearchPageScreening: ({ children, data, SectionZone, className, }: import('../types/cms/ContentTypes/Search').SearchPageScrenningProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
SearchContent: ({ SectionZone, CMS_PROJECT_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
|
-
PDPProductCarousel: ({ data, CONSTANTS,
|
|
21
|
-
ProductCarousel: ({ data, CONSTANTS
|
|
20
|
+
PDPProductCarousel: ({ data, CONSTANTS, }: import('../types/cms/Sections/ProductCarousel').PDPProductCarouselProps) => import("react/jsx-runtime").JSX.Element[];
|
|
21
|
+
ProductCarousel: ({ data, CONSTANTS }: import('../types/cms/Sections/ProductCarousel').ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[];
|
|
22
22
|
EmbedLive: ({ data }: import('../types/cms/Sections/EmbedLive').EmbedLiveProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
23
|
SectionZone: import('react').FunctionComponent<import('../types/cms/Sections/SectionZone/intex').SectionZoneProps>;
|
|
24
24
|
};
|