dhre-component-lib 0.7.5 → 0.7.7

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.
@@ -18,7 +18,8 @@ export interface CustomInputFieldProps {
18
18
  name?: string;
19
19
  min?: string;
20
20
  disabled?: boolean;
21
- toolTip?: React.ReactNode;
21
+ istoolTip?: boolean;
22
+ toolTipText?: string;
22
23
  }
23
24
  declare const CustomInputField: React.FC<CustomInputFieldProps>;
24
25
  export default CustomInputField;
package/dist/index.d.ts CHANGED
@@ -150,7 +150,8 @@ interface CustomInputFieldProps {
150
150
  name?: string;
151
151
  min?: string;
152
152
  disabled?: boolean;
153
- toolTip?: React.ReactNode;
153
+ istoolTip?: boolean;
154
+ toolTipText?: string;
154
155
  }
155
156
  declare const CustomInputField: React.FC<CustomInputFieldProps>;
156
157