chore(datetime): sync auto-generate output (#24930)

This commit is contained in:
Sean Perkins
2022-03-11 15:45:04 -05:00
committed by GitHub
parent 4b21958ec5
commit d6d7c0576b
2 changed files with 30 additions and 30 deletions

View File

@ -757,7 +757,7 @@ export namespace Components {
*/
"hourValues"?: number[] | number | string;
/**
* Returns if an individual date (calendar day) is enabled or disabled. If `true`, the day will be enabled/interactive. If `false`, the day will be disabled/non-interactive. The function accepts an ISO 8601 date string of a given day. By default, all days are enabled. Developers can use this function to write custom logic to disable certain days. Custom implementations should be optimized for performance. This function is called often, so any extra logic should be avoided to reduce and prevent jank.
* Returns if an individual date (calendar day) is enabled or disabled. If `true`, the day will be enabled/interactive. If `false`, the day will be disabled/non-interactive. The function accepts an ISO 8601 date string of a given day. By default, all days are enabled. Developers can use this function to write custom logic to disable certain days. The function is called for each rendered calendar day, for the previous, current and next month. Custom implementations should be optimized for performance to avoid jank.
*/
"isDateEnabled"?: (dateIsoString: string) => boolean;
/**
@ -4451,7 +4451,7 @@ declare namespace LocalJSX {
*/
"hourValues"?: number[] | number | string;
/**
* Returns if an individual date (calendar day) is enabled or disabled. If `true`, the day will be enabled/interactive. If `false`, the day will be disabled/non-interactive. The function accepts an ISO 8601 date string of a given day. By default, all days are enabled. Developers can use this function to write custom logic to disable certain days. Custom implementations should be optimized for performance. This function is called often, so any extra logic should be avoided to reduce and prevent jank.
* Returns if an individual date (calendar day) is enabled or disabled. If `true`, the day will be enabled/interactive. If `false`, the day will be disabled/non-interactive. The function accepts an ISO 8601 date string of a given day. By default, all days are enabled. Developers can use this function to write custom logic to disable certain days. The function is called for each rendered calendar day, for the previous, current and next month. Custom implementations should be optimized for performance to avoid jank.
*/
"isDateEnabled"?: (dateIsoString: string) => boolean;
/**