Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions packages/main/src/TimePicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ class TimePicker extends UI5Element implements IFormInputElement {
/**
* Determines the format, displayed in the input field.
* @default undefined
* @since 2.20.0
* @since 2.21.0
* @public
*/
@property()
Expand All @@ -272,7 +272,7 @@ class TimePicker extends UI5Element implements IFormInputElement {
/**
* Determines the format, used for the value attribute.
* @default undefined
* @since 2.20.0
* @since 2.21.0
* @public
*/
@property()
Expand Down Expand Up @@ -880,6 +880,7 @@ class TimePicker extends UI5Element implements IFormInputElement {
* **Note:** an empty string is considered as valid value.
* @param value The value to be tested against the value format
* @public
* @since 2.21.0
*/
isValidValue(value: string | undefined): boolean {
if (value === "") {
Expand Down
Loading