@zealicsolutions/web-ui 0.3.48 → 0.3.49
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/{OrganismItemWithActiveChildren.d.ts → FormOrganismItem.d.ts} +2 -2
- package/dist/cjs/src/containers/hooks/index.d.ts +1 -0
- package/dist/cjs/src/containers/hooks/useFormOrganismItem.d.ts +3 -0
- package/dist/cjs/src/containers/index.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/{OrganismItemWithActiveChildren.d.ts → FormOrganismItem.d.ts} +2 -2
- package/dist/esm/src/containers/hooks/index.d.ts +1 -0
- package/dist/esm/src/containers/hooks/useFormOrganismItem.d.ts +3 -0
- package/dist/esm/src/containers/index.d.ts +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
- package/dist/cjs/src/containers/hooks/useOrganismItemWithActiveChildren.d.ts +0 -3
- package/dist/esm/src/containers/hooks/useOrganismItemWithActiveChildren.d.ts +0 -3
package/dist/cjs/src/containers/{OrganismItemWithActiveChildren.d.ts → FormOrganismItem.d.ts}
RENAMED
@@ -1,10 +1,10 @@
|
|
1
1
|
import { ContainerComponentProps } from 'containers/types/types';
|
2
2
|
import { Dispatch, SetStateAction } from 'react';
|
3
3
|
import { AnyObject } from 'typescript';
|
4
|
-
export declare type
|
4
|
+
export declare type FormOrganismItemProps = {
|
5
5
|
item: ContainerComponentProps;
|
6
6
|
activeChildrenIds: string[];
|
7
7
|
formData?: AnyObject;
|
8
8
|
setFormData?: Dispatch<SetStateAction<AnyObject>>;
|
9
9
|
};
|
10
|
-
export declare const
|
10
|
+
export declare const FormOrganismItem: ({ formData, setFormData, ...props }: FormOrganismItemProps) => JSX.Element | null;
|
@@ -3,4 +3,4 @@ export * from './types/types';
|
|
3
3
|
export * from './types/moleculeTypes';
|
4
4
|
export * from './styles';
|
5
5
|
export * from './OrganismItem';
|
6
|
-
export {
|
6
|
+
export { FormOrganismItem } from './FormOrganismItem';
|