@soma-vertical-web/multi-lib 0.0.70 → 0.0.71
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/ContentTypes/LPCadastro/LPCadastroContent.d.ts +4 -0
- package/cms/server.d.ts +1 -0
- package/index.js +17 -17
- package/index.mjs +4158 -3932
- package/index2.js +1 -1
- package/index2.mjs +452 -437
- package/layout/index.d.ts +12 -0
- package/layout/team-component/Form/Composite/Content.d.ts +4 -0
- package/layout/team-component/Form/Composite/FieldGroup.d.ts +7 -0
- package/layout/team-component/Form/Composite/FieldWrapper.d.ts +7 -0
- package/layout/team-component/Form/Composite/FormError.d.ts +4 -0
- package/layout/team-component/Form/Composite/Success.d.ts +4 -0
- package/layout/team-component/Form/Composite/index.d.ts +4 -0
- package/layout/team-component/Form/Form.d.ts +11 -0
- package/layout/team-component/Form/FormContext.d.ts +5 -0
- package/layout/team-component/Form/index.d.ts +1 -0
- package/layout/template/LPCadastro/index.d.ts +3 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/types/layout/team-components/Form/index.d.ts +16 -3
- package/types/layout/templates/LPCadastro/index.d.ts +31 -0
package/layout/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { helpers as FilterHelpers } from './team-component/Filter';
|
|
2
|
+
import { default as LPCadastro } from './template/LPCadastro';
|
|
2
3
|
import * as pdp from './template/PDP';
|
|
3
4
|
export declare const layout: {
|
|
4
5
|
teamComponents: {
|
|
@@ -137,6 +138,16 @@ export declare const layout: {
|
|
|
137
138
|
({ className, description, formPayloadOptionals, fields, masterDataEntity, masterDataEmailField, masterDataNameField, lgpd, title, variant, borderTop, borderBottom, CONSTANTS, ...props }: import('../types/layout/team-components/Newsletter').RootProps): import("react/jsx-runtime").JSX.Element | null;
|
|
138
139
|
displayName: string;
|
|
139
140
|
};
|
|
141
|
+
Form: {
|
|
142
|
+
Root: (props: import('../types/layout/team-components/Form').IFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
143
|
+
FieldGroup: ({ group, children, className, }: import('react').HTMLAttributes<HTMLDivElement> & {
|
|
144
|
+
group: import('../types/layout/team-components/Form').IFormGroup;
|
|
145
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
146
|
+
FieldWrapper: ({ fields, className, }: {
|
|
147
|
+
fields: import('../types/layout/team-components/Form').Fields[];
|
|
148
|
+
className?: string;
|
|
149
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
150
|
+
};
|
|
140
151
|
Footer: {
|
|
141
152
|
({ data: { links: { links }, }, payments, socialInfo, socialMedias, adornment, LEGAL_INFORMATION_TEXT, ICONS }: import('../types/layout/team-components/Footer').IFooter): import("react/jsx-runtime").JSX.Element;
|
|
142
153
|
displayName: string;
|
|
@@ -320,6 +331,7 @@ export declare const layout: {
|
|
|
320
331
|
displayName: string;
|
|
321
332
|
};
|
|
322
333
|
};
|
|
334
|
+
LPCadastro: typeof LPCadastro;
|
|
323
335
|
};
|
|
324
336
|
utils: {
|
|
325
337
|
EventCollector: ({ page, data }: import('react').PropsWithChildren & import('../types/data/events').CollectorProps) => null;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
import { IFormGroup } from '../../../../types/layout/team-components/Form';
|
|
3
|
+
|
|
4
|
+
declare const FieldGroup: ({ group, children, className, }: HTMLAttributes<HTMLDivElement> & {
|
|
5
|
+
group: IFormGroup;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default FieldGroup;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const Filter: {
|
|
2
|
+
Root: (props: import('../../../types/layout/team-components/Form').IFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
FieldGroup: ({ group, children, className, }: import('react').HTMLAttributes<HTMLDivElement> & {
|
|
4
|
+
group: import('../../../types/layout/team-components/Form').IFormGroup;
|
|
5
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
FieldWrapper: ({ fields, className, }: {
|
|
7
|
+
fields: import('../../../types/layout/team-components/Form').Fields[];
|
|
8
|
+
className?: string;
|
|
9
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
};
|
|
11
|
+
export default Filter;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { IFormContext, IFormProps } from '../../../types/layout/team-components/Form';
|
|
2
|
+
|
|
3
|
+
export declare const FormContext: import('react').Context<IFormContext>;
|
|
4
|
+
export default function FormProvider({ children, groups, masterDataEntity, postFn, }: IFormProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare function useForm(): IFormContext;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Form';
|