@epam/ai-dial-ui-kit 0.5.0-rc.24 → 0.5.0-rc.26
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.
- package/dist/dial-ui-kit.cjs.js +11 -11
- package/dist/dial-ui-kit.es.js +2174 -2174
- package/dist/src/components/Select/Select.d.ts +2 -2
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { SelectSize, SelectVariant } from '../../types/select';
|
|
|
4
4
|
export interface DialSelectProps {
|
|
5
5
|
options: SelectOption[];
|
|
6
6
|
multiple?: boolean;
|
|
7
|
-
elementId
|
|
7
|
+
elementId?: string;
|
|
8
8
|
size?: SelectSize;
|
|
9
9
|
variant?: SelectVariant;
|
|
10
10
|
value?: string | string[];
|
|
@@ -54,7 +54,7 @@ export interface DialSelectProps {
|
|
|
54
54
|
* ```
|
|
55
55
|
*
|
|
56
56
|
* @param options - Array of options to select from.
|
|
57
|
-
* @param elementId - The id attribute for the select element.
|
|
57
|
+
* @param [elementId] - The id attribute for the select element.
|
|
58
58
|
* @param [multiple] - Whether multiple selections are allowed.
|
|
59
59
|
* @param [size=SelectSize.Md] - Size of the control.
|
|
60
60
|
* @param [variant=SelectVariant.Primary] - Visual variant.
|