@soma-vertical-web/multi-lib 0.0.71 → 0.0.72
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/PopupModal/Component.d.ts +4 -0
- package/cms/Sections/PopupModal/Composite/FormSection.d.ts +4 -0
- package/cms/Sections/PopupModal/Composite/Success.d.ts +4 -0
- package/cms/index.d.ts +1 -0
- package/constants.d.ts +4 -1
- package/data/api/DitoIngest/sendDitoEvent.d.ts +3 -0
- package/data/api/search/autoCompleteSuggestions/index.d.ts +1 -1
- package/data/helpers/utils/stringToSHA1.d.ts +1 -0
- package/index.js +18 -18
- package/index.mjs +5373 -5202
- package/index2.mjs +5 -1
- package/layout/team-component/Form/FormContext.d.ts +1 -1
- package/layout/template/LPCadastro/index.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/types/cms/Sections/PopupModal/index.d.ts +26 -0
- package/types/data/api/dito-ingest/index.d.ts +65 -0
- package/types/layout/team-components/Form/index.d.ts +7 -2
- package/types/layout/templates/LPCadastro/index.d.ts +1 -0
package/cms/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export declare const clientCMS: {
|
|
|
20
20
|
PDPProductCarousel: ({ data, CONSTANTS, }: import('../types/cms/Sections/ProductCarousel').PDPProductCarouselProps) => import("react/jsx-runtime").JSX.Element[];
|
|
21
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
|
+
PopupModalSection: ({ data, CONSTANTS, }: import('../types/cms/Sections/PopupModal').PopupModalSectionProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
23
24
|
SectionZone: import('react').FunctionComponent<import('../types/cms/Sections/SectionZone/intex').SectionZoneProps>;
|
|
24
25
|
};
|
|
25
26
|
helpers: typeof helpers;
|
package/constants.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export declare const DEFAULT_IMAGE_ALT_TEXT = "Imagem do produto";
|
|
|
35
35
|
export declare const PLP_TOP_CONTENT_LENGTH = 1;
|
|
36
36
|
export declare const LOGOUT_TEXT = "Sair";
|
|
37
37
|
export declare const LOGOUT_ICON: (ICONS: ICONSType) => string;
|
|
38
|
-
export declare const LOGIN_MENU_OPTIONS_ARRAY: ({ ICONS, storeConfig }: LOGIN_MENU_OPTIONS_ARRAYProps) => {
|
|
38
|
+
export declare const LOGIN_MENU_OPTIONS_ARRAY: ({ ICONS, storeConfig, }: LOGIN_MENU_OPTIONS_ARRAYProps) => {
|
|
39
39
|
icon: string;
|
|
40
40
|
label: string;
|
|
41
41
|
href: string;
|
|
@@ -44,3 +44,6 @@ export declare const LOGIN_MENU_OPTIONS_ARRAY: ({ ICONS, storeConfig }: LOGIN_ME
|
|
|
44
44
|
}[];
|
|
45
45
|
export declare const LOGIN_MENU_TITLE: (signed: boolean, userName?: string) => string;
|
|
46
46
|
export declare const LOGIN_MENU_DESCRIPTION: (signed: boolean) => string;
|
|
47
|
+
export declare const POPUP_MODAL_TERMS_DESCRIPTION = "Marque a caixa para aceitar os termos de pol\u00EDtica de privacidade.";
|
|
48
|
+
export declare const POPUP_MODAL_ERROR_FEEDBACK = "Algumas informa\u00E7\u00F5es est\u00E3o incorretas ou n\u00E3o foram preenchidas";
|
|
49
|
+
export declare const POPUP_MODAL_BUTTON_LABEL = "Enviar";
|
|
@@ -7,5 +7,5 @@ declare const schema: yup.ObjectSchema<{
|
|
|
7
7
|
query: undefined;
|
|
8
8
|
}, "">;
|
|
9
9
|
type SchemaType = yup.InferType<typeof schema>;
|
|
10
|
-
export declare function getSearchAutoCompleteSuggestions({ apiUrl, body, fetchOptions }: FetchFunctionsProps<SchemaType>): Promise<any>;
|
|
10
|
+
export declare function getSearchAutoCompleteSuggestions({ apiUrl, body, fetchOptions, }: FetchFunctionsProps<SchemaType>): Promise<any>;
|
|
11
11
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function stringToSHA1(string: string): Promise<string>;
|