We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f6edce commit 4672675Copy full SHA for 4672675
packages/pf4-component-mapper/src/files/select.d.ts
@@ -12,6 +12,8 @@ interface BaseSelectProps {
12
options?: SelectOption[];
13
selectVariant?: 'default' | 'createable';
14
isSearchable?: boolean;
15
+ isClearable?: boolean;
16
+ name?: string;
17
showMoreLabel?: ReactNode;
18
showLessLabel?: ReactNode;
19
simpleValue?: boolean;
@@ -22,6 +24,7 @@ interface BaseSelectProps {
22
24
noOptionsMessage?: ReactNode;
23
25
menuIsPortal?: boolean;
26
placeholder?: ReactNode;
27
+ validated?: 'success' | 'error' | 'default';
28
}
29
30
export interface InternalSelectProps extends BaseSelectProps {
0 commit comments