@soma-vertical-web/multi-lib 0.0.62 → 0.0.63

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.
@@ -0,0 +1,13 @@
1
+ import { IContentTypeResponseBase } from '../../../types/cms/Factories';
2
+
3
+ export declare const formatHelpButtonContent: (data: IContentTypeResponseBase[]) => {
4
+ iconLabel: string;
5
+ label: string;
6
+ content: never[];
7
+ helpButtonSize?: undefined;
8
+ } | {
9
+ iconLabel: any;
10
+ label: any;
11
+ helpButtonSize: any;
12
+ content: any;
13
+ };
@@ -0,0 +1,3 @@
1
+ import { HelpButtonContentProps } from '../../../types/cms/ContentTypes/HelpButton';
2
+
3
+ export declare const HelpButtonContent: ({ HelpButton, ICONS, className, ...props }: HelpButtonContentProps) => Promise<import("react/jsx-runtime").JSX.Element>;
@@ -1,3 +1,3 @@
1
1
  import { SearchContentProps } from '../../../types/cms/ContentTypes/Search';
2
2
 
3
- export declare const SearchContent: ({ SectionZone, CMS_PROJECT_NAME, storeId, previewId }: SearchContentProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const SearchContent: ({ SectionZone, CMS_PROJECT_NAME, storeId, previewId, }: SearchContentProps) => import("react/jsx-runtime").JSX.Element;
package/cms/index.d.ts CHANGED
@@ -15,7 +15,7 @@ export declare const clientCMS: {
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
- SearchContent: ({ SectionZone, CMS_PROJECT_NAME, storeId, previewId }: import('../types/cms/ContentTypes/Search').SearchContentProps) => import("react/jsx-runtime").JSX.Element;
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 }, ClientNewsletterSection, }: import('../types/cms/Sections/Newsletter').NewsLetterSectionType & {
20
20
  ClientNewsletterSection: React.ComponentType<any>;
21
21
  }) => import("react/jsx-runtime").JSX.Element;
package/cms/server.d.ts CHANGED
@@ -37,5 +37,6 @@ export declare const serverCMS: {
37
37
  description: string;
38
38
  } | null>;
39
39
  SearchPageContent: ({ children, SectionZone, className, ...props }: import('../types/cms/ContentTypes/Search').SearchPageContentProps) => Promise<import("react/jsx-runtime").JSX.Element>;
40
+ HelpButtonContent: ({ HelpButton, ICONS, className, ...props }: import('../types/cms/ContentTypes/HelpButton').HelpButtonContentProps) => Promise<import("react/jsx-runtime").JSX.Element>;
40
41
  };
41
42
  };