@epam/ai-dial-ui-kit 0.4.0-rc.13 → 0.4.0-rc.15
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/dial-ui-kit.cjs.js +10 -10
- package/dist/dial-ui-kit.es.js +897 -892
- package/dist/src/components/Input/Input.d.ts +2 -0
- package/dist/src/models/select.d.ts +1 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export interface DialInputProps extends InputBaseProps, Partial<NumberInputBaseP
|
|
|
7
7
|
hideBorder?: boolean;
|
|
8
8
|
tooltipText?: string;
|
|
9
9
|
tooltipTriggerClassName?: string;
|
|
10
|
+
hideTooltip?: boolean;
|
|
10
11
|
onChange?: (value?: string) => void;
|
|
11
12
|
onBlur?: (event: FocusEvent<HTMLInputElement, Element>) => void;
|
|
12
13
|
}
|
|
@@ -34,6 +35,7 @@ export interface DialInputProps extends InputBaseProps, Partial<NumberInputBaseP
|
|
|
34
35
|
* @param hideBorder - Whether to hide the input border styling
|
|
35
36
|
* @param tooltipText - The text to display inside the tooltip. If empty, the tooltip will display the value prop.
|
|
36
37
|
* @param tooltipTriggerClassName - Additional CSS classes to apply to the tooltip
|
|
38
|
+
* @param hideTooltip - Whether to hide the tooltip
|
|
37
39
|
* @param onChange - Callback function called when the input value changes
|
|
38
40
|
* @param onBlur - Callback function called when the input blurs
|
|
39
41
|
*/
|