@epam/ai-dial-ui-kit 0.3.0-rc.38 → 0.3.0-rc.39

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 DialSelectProps {
7
7
  defaultValue?: string | string[];
8
8
  placeholder?: string;
9
9
  searchable?: boolean;
10
+ searchPlaceholder?: string;
10
11
  selectAll?: boolean;
11
12
  selectAllLabel?: string;
12
13
  emptyStateTitle?: string;
@@ -39,21 +40,22 @@ export interface DialSelectProps {
39
40
  *
40
41
  * Multiple mode uses checkboxes (including Select All with indeterminate state).
41
42
  *
42
- * @property options - Array of options to select from.
43
- * @property multiple - Whether multiple selections are allowed.
44
- * @property value - Controlled selected value(s).
45
- * @property defaultValue - Uncontrolled initial selected value(s).
46
- * @property placeholder - Placeholder text when no selection is made.
47
- * @property searchable - Whether to show a search input to filter options.
48
- * @property selectAll - Whether to show a "Select All" checkbox in multiple mode.
49
- * @property selectAllLabel - Label for the "Select All" checkbox.
50
- * @property emptyStateTitle - Title text when there are no options to display.
51
- * @property emptyStateDescription - Optional description text when there are no options.
52
- * @property emptyStateIcon - Optional icon to display when there are no options.
53
- * @property disabled - Whether the select is disabled.
54
- * @property cssClass - Additional CSS classes to apply to the select trigger.
55
- * @property closable - Whether to show a close button in the dropdown header.
56
- * @property onClose - Callback when the dropdown is closed via the close button.
57
- * @property onChange - Callback when the selection changes.
43
+ * @param options - Array of options to select from.
44
+ * @param [multiple] - Whether multiple selections are allowed.
45
+ * @param [value] - Controlled selected value(s).
46
+ * @param [defaultValue] - Uncontrolled initial selected value(s).
47
+ * @param [placeholder] - Placeholder text when no selection is made.
48
+ * @param [searchable] - Whether to show a search input to filter options.
49
+ * @param [searchPlaceholder] - Search Placeholder text shown when search input is empty
50
+ * @param [selectAll] - Whether to show a "Select All" checkbox in multiple mode.
51
+ * @param [selectAllLabel] - Label for the "Select All" checkbox.
52
+ * @param [emptyStateTitle] - Title text when there are no options to display.
53
+ * @param [emptyStateDescription] - Optional description text when there are no options.
54
+ * @param [emptyStateIcon] - Optional icon to display when there are no options.
55
+ * @param [disabled] - Whether the select is disabled.
56
+ * @param [cssClass] - Additional CSS classes to apply to the select trigger.
57
+ * @param [closable] - Whether to show a close button in the dropdown header.
58
+ * @param [onClose] - Callback when the dropdown is closed via the close button.
59
+ * @param [onChange] - Callback when the selection changes.
58
60
  */
59
61
  export declare const DialSelect: FC<DialSelectProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-ui-kit",
3
- "version": "0.3.0-rc.38",
3
+ "version": "0.3.0-rc.39",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A modern UI kit for building AI DIAL interfaces with React",