@micromerce/formbuilder-react 1.0.725 → 1.0.730
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.
|
@@ -10,6 +10,8 @@ interface IProps {
|
|
|
10
10
|
isExpert?: boolean;
|
|
11
11
|
children: React.ReactNode;
|
|
12
12
|
controlProps?: controlProps;
|
|
13
|
+
tooltip?: string;
|
|
14
|
+
helper?: string;
|
|
13
15
|
}
|
|
14
16
|
declare const FormGroup: ({ controlProps, ...props }: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
17
|
export default FormGroup;
|
|
@@ -7,6 +7,8 @@ export interface IProps {
|
|
|
7
7
|
groupIsRequired?: boolean;
|
|
8
8
|
isInGroup?: boolean;
|
|
9
9
|
controlProps?: controlProps;
|
|
10
|
+
tooltip?: string;
|
|
11
|
+
helper?: string;
|
|
10
12
|
}
|
|
11
13
|
declare const Group: ({ ...props }: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
14
|
export default Group;
|
|
@@ -7,6 +7,8 @@ export interface IProps {
|
|
|
7
7
|
groupIsRequired?: boolean;
|
|
8
8
|
isInGroup?: boolean;
|
|
9
9
|
controlProps?: controlProps;
|
|
10
|
+
tooltip?: string;
|
|
11
|
+
helper?: string;
|
|
10
12
|
}
|
|
11
13
|
declare const AddressGroup: ({ ...props }: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
14
|
export default AddressGroup;
|