novo-elements 7.2.2-next.0 → 7.2.3-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45462,7 +45462,12 @@ class NovoTimePickerInputElement {
45462
45462
  };
45463
45463
  }
45464
45464
  onComplete(dt) {
45465
- if (this.value !== dt) {
45465
+ if (this.value instanceof Date && dt instanceof Date) {
45466
+ if (this.value.getTime() !== dt.getTime()) {
45467
+ this.dispatchOnChange(dt);
45468
+ }
45469
+ }
45470
+ else if (this.value !== dt) {
45466
45471
  this.dispatchOnChange(dt);
45467
45472
  }
45468
45473
  }