mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
feat(datetime): add readonly prop (#17139)
This commit is contained in:
8
core/src/components.d.ts
vendored
8
core/src/components.d.ts
vendored
@ -1190,6 +1190,10 @@ export namespace Components {
|
||||
*/
|
||||
'placeholder'?: string | null;
|
||||
/**
|
||||
* If `true`, the datetime appears normal but is not interactive.
|
||||
*/
|
||||
'readonly': boolean;
|
||||
/**
|
||||
* The value of the datetime as a valid ISO 8601 datetime string.
|
||||
*/
|
||||
'value'?: string | null;
|
||||
@ -1292,6 +1296,10 @@ export namespace Components {
|
||||
*/
|
||||
'placeholder'?: string | null;
|
||||
/**
|
||||
* If `true`, the datetime appears normal but is not interactive.
|
||||
*/
|
||||
'readonly'?: boolean;
|
||||
/**
|
||||
* The value of the datetime as a valid ISO 8601 datetime string.
|
||||
*/
|
||||
'value'?: string | null;
|
||||
|
Reference in New Issue
Block a user