feat(radio-group): add missing implementation for property allowEmptySelection (#16880)

fixes #16841
This commit is contained in:
kplhub
2018-12-31 17:24:44 +01:00
committed by Manu MA
parent 19c8d2252a
commit 09726b0d35
5 changed files with 37 additions and 2 deletions

View File

@ -3285,6 +3285,10 @@ export namespace Components {
*/
'onIonBlur'?: (event: CustomEvent<void>) => void;
/**
* Emitted when checked radio button is selected.
*/
'onIonDeselect'?: (event: CustomEvent<RadioChangeEventDetail>) => void;
/**
* Emitted when the radio button has focus.
*/
'onIonFocus'?: (event: CustomEvent<void>) => void;