Fix ambigious clearing behaviour on SelectButton (#4107)

This commit is contained in:
Quinten Coret 2023-10-09 11:36:37 +02:00 committed by GitHub
parent 0a08c56d3b
commit b666789c8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 27 additions and 2 deletions

View file

@ -51,6 +51,12 @@ const SelectButtonProps = [
name: 'unselectable',
type: 'boolean',
default: 'false',
description: 'Whether selection can not be cleared.'
},
{
name: 'allowEmpty',
type: 'boolean',
default: 'true',
description: 'Whether selection can be cleared.'
},
{