Skip to content

Commit 4672675

Browse files
committed
fix(pf4): add mising select interface properties
1 parent 6f6edce commit 4672675

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/pf4-component-mapper/src/files/select.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ interface BaseSelectProps {
1212
options?: SelectOption[];
1313
selectVariant?: 'default' | 'createable';
1414
isSearchable?: boolean;
15+
isClearable?: boolean;
16+
name?: string;
1517
showMoreLabel?: ReactNode;
1618
showLessLabel?: ReactNode;
1719
simpleValue?: boolean;
@@ -22,6 +24,7 @@ interface BaseSelectProps {
2224
noOptionsMessage?: ReactNode;
2325
menuIsPortal?: boolean;
2426
placeholder?: ReactNode;
27+
validated?: 'success' | 'error' | 'default';
2528
}
2629

2730
export interface InternalSelectProps extends BaseSelectProps {

0 commit comments

Comments
 (0)