@epam/ai-dial-ui-kit 0.12.0-dev.33 → 0.12.0-dev.34

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.
@@ -1,6 +1,7 @@
1
1
  import { FC, ReactNode, MouseEvent, Ref } from 'react';
2
2
  import { SelectOption } from '../../models/select';
3
3
  import { SelectSize, SelectVariant } from '../../types/select';
4
+ import { ElementSize } from '../../types/size';
4
5
  export interface DialSelectProps {
5
6
  options: SelectOption[];
6
7
  multiple?: boolean;
@@ -13,6 +14,7 @@ export interface DialSelectProps {
13
14
  defaultValue?: string | string[];
14
15
  placeholder?: string;
15
16
  searchable?: boolean;
17
+ searchSize?: ElementSize;
16
18
  searchPlaceholder?: string;
17
19
  selectAll?: boolean;
18
20
  selectAllLabel?: string;
@@ -71,6 +73,7 @@ export interface DialSelectProps {
71
73
  * @param [defaultValue] - Uncontrolled initial selected value(s).
72
74
  * @param [placeholder="Select..."] - Placeholder text when no selection is made.
73
75
  * @param [searchable=false] - Show a search field in the overlay header.
76
+ * @param [searchSize=ElementSize.Standard] - Size of the overlay search input when `searchable` is enabled.
74
77
  * @param [searchPlaceholder] - Placeholder for the search input (overlay/inline).
75
78
  * @param [selectAll=false] - Show a "Select All" checkbox in multiple mode.
76
79
  * @param [selectAllLabel="Select all"] - Label for the "Select All" checkbox.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-ui-kit",
3
- "version": "0.12.0-dev.33",
3
+ "version": "0.12.0-dev.34",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A modern UI kit for building AI DIAL interfaces with React",