@epam/ai-dial-ui-kit 0.9.0-dev.69 → 0.9.0-dev.71
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.
|
@@ -15,6 +15,7 @@ export interface DialInputPopupProps {
|
|
|
15
15
|
editable?: boolean;
|
|
16
16
|
onValueChange?: (value: string) => void;
|
|
17
17
|
collapseTagOverflow?: boolean;
|
|
18
|
+
iconBefore?: ReactNode;
|
|
18
19
|
}
|
|
19
20
|
/**
|
|
20
21
|
* An input field that opens a popup when clicked, displaying a selected value or a list of values.
|
|
@@ -54,5 +55,6 @@ export interface DialInputPopupProps {
|
|
|
54
55
|
* @param [emptyValueText] - The text displayed when no value is selected and placeholder is not provided.
|
|
55
56
|
* @param [editable=false] - When true, the input area becomes an editable text field; only the icon opens the popup.
|
|
56
57
|
* @param [onValueChange] - Callback fired when the user types in the editable input.
|
|
58
|
+
* @param [iconBefore] - Optional icon rendered at the start of the field, before the value.
|
|
57
59
|
*/
|
|
58
60
|
export declare const DialInputPopup: FC<DialInputPopupProps>;
|