mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
feat(datetime): add firstDayOfWeek property (#23692)
resolves #23556 Co-authored-by: Liam DeBeasi <liamdebeasi@icloud.com>
This commit is contained in:
8
core/src/components.d.ts
vendored
8
core/src/components.d.ts
vendored
@ -728,6 +728,10 @@ export namespace Components {
|
||||
* The text to display on the picker's "Done" button.
|
||||
*/
|
||||
"doneText": string;
|
||||
/**
|
||||
* The first day of the week to use for `ion-datetime`. The default value is `0` and represents Sunday.
|
||||
*/
|
||||
"firstDayOfWeek": number;
|
||||
/**
|
||||
* The hour cycle of the `ion-datetime`. If no value is set, this is specified by the current locale.
|
||||
*/
|
||||
@ -4296,6 +4300,10 @@ declare namespace LocalJSX {
|
||||
* The text to display on the picker's "Done" button.
|
||||
*/
|
||||
"doneText"?: string;
|
||||
/**
|
||||
* The first day of the week to use for `ion-datetime`. The default value is `0` and represents Sunday.
|
||||
*/
|
||||
"firstDayOfWeek"?: number;
|
||||
/**
|
||||
* The hour cycle of the `ion-datetime`. If no value is set, this is specified by the current locale.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user