@soma-vertical-web/multi-lib 0.0.24 → 0.0.25
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/Banner/Composite/Content.d.ts +1 -1
- package/cms/Sections/TextContent/Component.d.ts +1 -1
- package/cms/Sections/TextContent/Composite/ContentWrapper.d.ts +1 -1
- package/cms/index.d.ts +2 -2
- package/data/helpers/product/generalInfo.d.ts +1 -0
- package/index.js +41 -4
- package/index.mjs +7954 -4155
- package/layout/index.d.ts +11 -10
- package/layout/team-component/Footer/Composite/Devices/Column.Mobile.d.ts +1 -1
- package/layout/team-component/Footer/Composite/Support/index.d.ts +3 -0
- package/layout/team-component/Footer/Composite/Support/item.d.ts +3 -0
- package/layout/team-component/Footer/Footer.d.ts +1 -1
- package/layout/team-component/Footer/index.d.ts +4 -1
- package/layout/team-component/TipBar/Composite/Fields/FieldsScreening.d.ts +1 -1
- package/layout/team-component/TipBar/Composite/Fields/TextContent.d.ts +1 -1
- package/layout/team-component/TipBar/Composite/Root.d.ts +3 -1
- package/layout/team-component/TipBar/index.d.ts +1 -1
- package/layout/utils/DraftJsLinkWrapper/index.d.ts +5 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/types/cms/ContentTypes/Footer/index.d.ts +30 -0
- package/types/cms/Sections/Banner/index.d.ts +3 -0
- package/types/cms/Sections/TextContent/index.d.ts +7 -2
- package/types/constants.d.ts +2 -1
- package/types/contexts/contexts/cart/index.d.ts +1 -2
- package/types/contexts/store/cart.d.ts +3 -2
- package/types/data/api/search/product/index.d.ts +1 -1
- package/types/layout/team-components/Footer/index.d.ts +3 -0
- package/types/layout/team-components/TipBar/index.d.ts +6 -1
- package/types/layout/utils/index.d.ts +6 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
import { BannerContentProps } from '../../../../types/cms/Sections/Banner';
|
|
3
3
|
|
|
4
|
-
export declare const BannerContent: ({ data, videoUrl, priority, videoRef, ...props }: BannerContentProps & HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const BannerContent: ({ data, videoUrl, priority, videoRef, ICONS, ...props }: BannerContentProps & HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { TextContentSectionProps } from '../../../types/cms/Sections/TextContent';
|
|
2
2
|
|
|
3
|
-
export declare const TextContentSection: ({ data, }: TextContentSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const TextContentSection: ({ data, ICONS }: TextContentSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default TextContentSection;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TextContentProps } from '../../../../types/cms/Sections/TextContent';
|
|
2
2
|
|
|
3
|
-
export declare const TextContent: ({ data, }: TextContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const TextContent: ({ data, ICONS }: TextContentProps) => import("react/jsx-runtime").JSX.Element;
|
package/cms/index.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ export declare const clientCMS: {
|
|
|
10
10
|
BennefitsBarSection: ({ data, CONSTANTS }: import('../types/cms/Sections/BennefitsBar').BennefitsBarSectionType) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
DataScreening: ({ slug, data, SectionZone, COMMON_PAGE_COLUMN_GAP }: import('../types/cms/ContentTypes/CommonPage').DataScreeningProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
SingleBannerSection: (data: import('../types/cms/Sections/Banner').BannerSectionType) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
TextContentSection: ({ data, }: import('../types/cms/Sections/TextContent').TextContentSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
TextContent: ({ data, }: import('../types/cms/Sections/TextContent').TextContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
TextContentSection: ({ data, ICONS }: import('../types/cms/Sections/TextContent').TextContentSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
TextContent: ({ data, ICONS }: import('../types/cms/Sections/TextContent').TextContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
15
|
};
|
|
16
16
|
helpers: typeof helpers;
|
|
17
17
|
};
|
|
@@ -12,6 +12,7 @@ export declare const getColorAndSizeFromSkuName: (skuName: string, NAME_SPLIT_SY
|
|
|
12
12
|
size: string;
|
|
13
13
|
};
|
|
14
14
|
export declare const getSKUName: (item: HasVariant, key?: string) => string;
|
|
15
|
+
export declare const getProductNameWithoutSku: (fullName: string, skuName: string) => string;
|
|
15
16
|
/**
|
|
16
17
|
* TODO: check if this function is still needed
|
|
17
18
|
*/
|