fix(datetime): can participate in native <form> (#16106)

fixes #16075
This commit is contained in:
Manu MA
2018-10-26 19:01:39 +02:00
committed by GitHub
parent c982856dba
commit aad7711af2
5 changed files with 22 additions and 6 deletions

View File

@ -1275,6 +1275,10 @@ export namespace Components {
*/
'monthValues'?: number[] | number | string;
/**
* The name of the control, which is submitted with the form data.
*/
'name': string;
/**
* Opens the datetime overlay.
*/
'open': () => Promise<void>;
@ -1361,6 +1365,10 @@ export namespace Components {
*/
'monthValues'?: number[] | number | string;
/**
* The name of the control, which is submitted with the form data.
*/
'name'?: string;
/**
* Emitted when the datetime selection was cancelled.
*/
'onIonCancel'?: (event: CustomEvent<void>) => void;