@soma-vertical-web/multi-lib 0.0.72 → 0.0.74
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/ErrorBoundary/index.d.ts +18 -0
- package/contexts/contexts/cms/FlagsAndTagsContext.d.ts +1 -0
- package/contexts/index.d.ts +1 -0
- package/data/helpers/product/price.d.ts +1 -0
- package/index-BR_9YNfn.mjs +421 -0
- package/index-DL877zTH.js +1 -0
- package/index.js +19 -19
- package/index.mjs +3708 -3604
- package/index2.js +1 -1
- package/index2.mjs +19 -19
- package/layout/index.d.ts +1 -1
- package/layout/team-component/Newsletter/Composite/Form.d.ts +1 -1
- package/layout/team-component/Newsletter/index.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/types/cms/ContentTypes/FlagsAndTags/index.d.ts +7 -0
- package/types/cms/Sections/Newsletter/index.d.ts +6 -1
- package/types/layout/team-components/Newsletter/index.d.ts +12 -1
|
@@ -24,7 +24,9 @@ export type InputsStatusProps = {
|
|
|
24
24
|
interface TextCommonProps {
|
|
25
25
|
title?: string;
|
|
26
26
|
description?: string;
|
|
27
|
-
|
|
27
|
+
lgpdLinkLable?: string;
|
|
28
|
+
lgpdLink: string;
|
|
29
|
+
termsDescription: string;
|
|
28
30
|
}
|
|
29
31
|
interface BorderCommonProps {
|
|
30
32
|
borderTop?: boolean;
|
|
@@ -41,9 +43,18 @@ export interface RootProps extends HTMLAttributes<HTMLDivElement>, TextCommonPro
|
|
|
41
43
|
fields: FieldsProps[];
|
|
42
44
|
masterDataNameField: string;
|
|
43
45
|
masterDataEmailField: string;
|
|
46
|
+
banner: string;
|
|
47
|
+
altBanner: string;
|
|
48
|
+
bannerBackground: boolean;
|
|
44
49
|
}
|
|
45
50
|
export interface TextProps extends HTMLAttributes<HTMLDivElement>, Omit<TextCommonProps, 'lgpd'> {
|
|
46
51
|
}
|
|
52
|
+
export interface FormProps extends RootFormCommonProps {
|
|
53
|
+
banner: string;
|
|
54
|
+
termsDescription: string;
|
|
55
|
+
lgpdLinkLable?: string;
|
|
56
|
+
lgpdLink: string;
|
|
57
|
+
}
|
|
47
58
|
export interface FormProps extends RootFormCommonProps, Pick<NewsletterProviderProps, 'CONSTANTS'> {
|
|
48
59
|
}
|
|
49
60
|
export type MasterDataFieldProps = {
|