dhre-component-lib 0.7.6 → 0.7.8
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/dist/components/InputTextField/InputTextField.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +21187 -14574
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +21226 -14613
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -18,7 +18,8 @@ export interface CustomInputFieldProps {
|
|
|
18
18
|
name?: string;
|
|
19
19
|
min?: string;
|
|
20
20
|
disabled?: boolean;
|
|
21
|
-
|
|
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
|
-
|
|
153
|
+
istoolTip?: boolean;
|
|
154
|
+
toolTipText?: string;
|
|
154
155
|
}
|
|
155
156
|
declare const CustomInputField: React.FC<CustomInputFieldProps>;
|
|
156
157
|
|