@soma-vertical-web/multi-lib 1.0.14 → 1.0.15

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,7 +1,7 @@
1
1
  import { HTMLAttributes } from 'react';
2
2
  import { BannerSectionType, IBannerSectionTypeComponent } from '../../../types/cms/Sections/Banner';
3
3
 
4
- export declare const BannerSection: ({ data, className, priority, creative, ...props }: IBannerSectionTypeComponent & {
4
+ export declare const BannerSection: ({ data, className, priority, creative, name, ...props }: IBannerSectionTypeComponent & {
5
5
  imgStyles?: HTMLAttributes<HTMLImageElement>["style"];
6
6
  } & HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
7
7
  export declare const SingleBannerSection: (data: BannerSectionType) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import { BennefitsBarProps } from '../../../types/cms/Sections/BennefitsBar';
2
2
 
3
- export declare const BennefitsBarSection: ({ data, CONSTANTS }: BennefitsBarProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const BennefitsBarSection: ({ data, name, CONSTANTS }: BennefitsBarProps) => import("react/jsx-runtime").JSX.Element;
@@ -4,5 +4,5 @@ export declare function generateBennefitsBarSection({ ICONS }: {
4
4
  ICONS: ICONSType;
5
5
  }): import('../../../types/cms/Factories').ISection;
6
6
  export declare const Component: {
7
- 'Bennefits Bar': ({ data, CONSTANTS }: import('../../../types/cms/Sections/BennefitsBar').BennefitsBarProps) => import("react/jsx-runtime").JSX.Element;
7
+ 'Bennefits Bar': ({ data, name, CONSTANTS }: import('../../../types/cms/Sections/BennefitsBar').BennefitsBarProps) => import("react/jsx-runtime").JSX.Element;
8
8
  };
@@ -1,4 +1,4 @@
1
1
  import { EmbedLiveProps } from 'libs/multi-lib/src/types/cms/Sections/EmbedLive';
2
2
 
3
- declare const EmbedLive: ({ data }: EmbedLiveProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const EmbedLive: ({ data, name }: EmbedLiveProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default EmbedLive;
@@ -1,3 +1,3 @@
1
1
  import { NewsLetterSectionType } from '../../../types/cms/Sections/Newsletter';
2
2
 
3
- export declare const NewsletterSection: ({ data: { componentIndex, ...props }, CONSTANTS, }: NewsLetterSectionType) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const NewsletterSection: ({ data: { componentIndex, ...props }, name, CONSTANTS, }: NewsLetterSectionType) => import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,4 @@
1
1
  import { PopupModalSectionProps } from '../../../types/cms/Sections/PopupModal';
2
2
 
3
- export declare const PopupModalSection: ({ data, CONSTANTS, }: PopupModalSectionProps) => import("react/jsx-runtime").JSX.Element | null;
3
+ export declare const PopupModalSection: ({ data, name, CONSTANTS, }: PopupModalSectionProps) => import("react/jsx-runtime").JSX.Element | null;
4
4
  export default PopupModalSection;
@@ -1,4 +1,4 @@
1
1
  import { ProductCarouselProps, PDPProductCarouselProps } from '../../../types/cms/Sections/ProductCarousel';
2
2
 
3
- export declare const PDPProductCarousel: ({ data, CONSTANTS, }: PDPProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
4
- export declare const ProductCarousel: ({ data, CONSTANTS, searchModal, }: ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
3
+ export declare const PDPProductCarousel: ({ data, name, CONSTANTS, }: PDPProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
4
+ export declare const ProductCarousel: ({ data, CONSTANTS, searchModal, name }: ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
@@ -1,3 +1,3 @@
1
1
  import { TextAccordionSectionProps } from '../../../types/cms/Sections/TextAccordion';
2
2
 
3
- export declare const TextAccordionSection: ({ data, id: sectionId, ICONS, className }: TextAccordionSectionProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const TextAccordionSection: ({ data, id: sectionId, ICONS, className, name }: TextAccordionSectionProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import { TextContentSectionProps } from '../../../types/cms/Sections/TextContent';
2
2
 
3
- export declare const TextContentSection: ({ data, ICONS, TEXTCONTENT_EXPANDED, className, }: TextContentSectionProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const TextContentSection: ({ data, ICONS, TEXTCONTENT_EXPANDED, className, name }: TextContentSectionProps) => import("react/jsx-runtime").JSX.Element;
package/cms/index.d.ts CHANGED
@@ -4,23 +4,23 @@ export declare const clientCMS: {
4
4
  Banner: {
5
5
  Banner: (data: import('../types/cms/Sections/Banner').BannerSectionType) => import("react/jsx-runtime").JSX.Element;
6
6
  };
7
- BannerSection: ({ data, className, priority, creative, ...props }: import('../types/cms/Sections/Banner').IBannerSectionTypeComponent & {
7
+ BannerSection: ({ data, className, priority, creative, name, ...props }: import('../types/cms/Sections/Banner').IBannerSectionTypeComponent & {
8
8
  imgStyles?: import('react').HTMLAttributes<HTMLImageElement>["style"];
9
9
  } & import('react').HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
10
- BennefitsBarSection: ({ data, CONSTANTS }: import('../types/cms/Sections/BennefitsBar').BennefitsBarProps) => import("react/jsx-runtime").JSX.Element;
10
+ BennefitsBarSection: ({ data, name, CONSTANTS }: import('../types/cms/Sections/BennefitsBar').BennefitsBarProps) => import("react/jsx-runtime").JSX.Element;
11
11
  SingleBannerSection: (data: import('../types/cms/Sections/Banner').BannerSectionType) => import("react/jsx-runtime").JSX.Element;
12
- TextContentSection: ({ data, ICONS, TEXTCONTENT_EXPANDED, className, }: import('../types/cms/Sections/TextContent').TextContentSectionProps) => import("react/jsx-runtime").JSX.Element;
12
+ TextContentSection: ({ data, ICONS, TEXTCONTENT_EXPANDED, className, name }: import('../types/cms/Sections/TextContent').TextContentSectionProps) => import("react/jsx-runtime").JSX.Element;
13
13
  BannerCarousel: (data: import('../types/cms/Sections/BannerCarousel').BannerCarouselProps) => import("react/jsx-runtime").JSX.Element;
14
- TextAccordionSection: ({ data, id: sectionId, ICONS, className }: import('../types/cms/Sections/TextAccordion').TextAccordionSectionProps) => import("react/jsx-runtime").JSX.Element;
14
+ TextAccordionSection: ({ data, id: sectionId, ICONS, className, name }: import('../types/cms/Sections/TextAccordion').TextAccordionSectionProps) => import("react/jsx-runtime").JSX.Element;
15
15
  TipbarScreening: ({ CONSTANTS, data }: import('../types/cms/ContentTypes/Tipbar').TipbarScreeningProps) => import("react/jsx-runtime").JSX.Element;
16
16
  ImageGrid: (data: import('../types/cms/Sections/ImageGrid').ImageGridSectionType) => import("react/jsx-runtime").JSX.Element;
17
17
  SearchPageScreening: ({ children, data, SectionZone, className, }: import('../types/cms/ContentTypes/Search').SearchPageScrenningProps) => import("react/jsx-runtime").JSX.Element;
18
18
  SearchContent: ({ SectionZone, name, storeId, previewId, }: import('../types/cms/ContentTypes/Search').SearchContentProps) => import("react/jsx-runtime").JSX.Element;
19
- NewsletterSection: ({ data: { componentIndex, ...props }, CONSTANTS, }: import('../types/cms/Sections/Newsletter').NewsLetterSectionType) => import("react/jsx-runtime").JSX.Element;
20
- PDPProductCarousel: ({ data, CONSTANTS, }: import('../types/cms/Sections/ProductCarousel').PDPProductCarouselProps) => 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
- EmbedLive: ({ data }: import('../types/cms/Sections/EmbedLive').EmbedLiveProps) => import("react/jsx-runtime").JSX.Element;
23
- PopupModalSection: ({ data, CONSTANTS, }: import('../types/cms/Sections/PopupModal').PopupModalSectionProps) => import("react/jsx-runtime").JSX.Element | null;
19
+ NewsletterSection: ({ data: { componentIndex, ...props }, name, CONSTANTS, }: import('../types/cms/Sections/Newsletter').NewsLetterSectionType) => import("react/jsx-runtime").JSX.Element;
20
+ PDPProductCarousel: ({ data, name, CONSTANTS, }: import('../types/cms/Sections/ProductCarousel').PDPProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
21
+ ProductCarousel: ({ data, CONSTANTS, searchModal, name }: import('../types/cms/Sections/ProductCarousel').ProductCarouselProps) => import("react/jsx-runtime").JSX.Element[] | null;
22
+ EmbedLive: ({ data, name }: import('../types/cms/Sections/EmbedLive').EmbedLiveProps) => import("react/jsx-runtime").JSX.Element;
23
+ PopupModalSection: ({ data, name, 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>;
25
25
  };
26
26
  helpers: typeof helpers;