mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
docs(alert): alert input label is only for radio/checkbox (#26923)
Resolves #26915
This commit is contained in:
@ -31,6 +31,9 @@ export interface AlertInput {
|
|||||||
name?: string;
|
name?: string;
|
||||||
placeholder?: string;
|
placeholder?: string;
|
||||||
value?: any; // TODO(FW-2832): type
|
value?: any; // TODO(FW-2832): type
|
||||||
|
/**
|
||||||
|
* The label text to display next to the input, if the input type is `radio` or `checkbox`.
|
||||||
|
*/
|
||||||
label?: string;
|
label?: string;
|
||||||
checked?: boolean;
|
checked?: boolean;
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
|
Reference in New Issue
Block a user