FieldNamePicker: support the isClearable option (#63828)

This commit is contained in:
Ryan McKinley
2023-02-28 11:15:30 -08:00
committed by GitHub
parent e643437ee6
commit bc2f68dc56
3 changed files with 8 additions and 8 deletions

View File

@@ -195,4 +195,7 @@ export interface FieldNamePickerConfigSettings {
* Placeholder text to display when nothing is selected.
*/
placeholderText?: string;
/** When set to false, the value can not be removed */
isClearable?: boolean;
}