@epam/ai-dial-ui-kit 0.3.0-rc.34 → 0.3.0-rc.35
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.
|
@@ -5,6 +5,7 @@ export interface DialInputProps extends InputBaseProps {
|
|
|
5
5
|
containerCssClass?: string;
|
|
6
6
|
cssClass?: string;
|
|
7
7
|
hideBorder?: boolean;
|
|
8
|
+
tooltipText?: string;
|
|
8
9
|
tooltipTriggerClassName?: string;
|
|
9
10
|
onChange?: (value: string) => void;
|
|
10
11
|
onBlur?: (event: FocusEvent<HTMLInputElement, Element>) => void;
|
|
@@ -43,6 +44,7 @@ export interface DialInputProps extends InputBaseProps {
|
|
|
43
44
|
* @param [prefix] - Text to display inside the input on the left
|
|
44
45
|
* @param [suffix] - Text to display inside the input on the right
|
|
45
46
|
* @param [textBeforeInput] - Text to display before the input in a separate field
|
|
47
|
+
* @param [tooltipText] - The text to display inside the tooltip. If empty, the tooltip will display the value prop.
|
|
46
48
|
* @param [tooltipTriggerClassName] - Additional CSS classes to apply to the tooltip
|
|
47
49
|
* @param [textAfterInput] - Text to display after the input in a separate field
|
|
48
50
|
*/
|