@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.
@@ -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
  */
@@ -2,6 +2,7 @@ import { ReactNode } from 'react';
2
2
  export interface SelectOption {
3
3
  value: string;
4
4
  label: string;
5
+ description?: string;
5
6
  disabled?: boolean;
6
7
  icon?: ReactNode;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-ui-kit",
3
- "version": "0.4.0-rc.13",
3
+ "version": "0.4.0-rc.15",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A modern UI kit for building AI DIAL interfaces with React",