@progress/kendo-angular-dateinputs 17.0.2-develop.1 → 17.0.2-develop.2

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.
@@ -767,7 +767,8 @@ export class DateInputComponent {
767
767
  */
768
768
  triggerChange() {
769
769
  const value = this.kendoDate.value;
770
- if (+value !== +this.value) {
770
+ const oneValuePresent = isPresent(value) !== isPresent(this.value);
771
+ if (+value !== +this.value || oneValuePresent) {
771
772
  this.value = cloneDate(value);
772
773
  this.notify();
773
774
  }
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-dateinputs',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1731579247,
13
- version: '17.0.2-develop.1',
12
+ publishDate: 1731591790,
13
+ version: '17.0.2-develop.2',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -33,8 +33,8 @@ const packageMetadata = {
33
33
  name: '@progress/kendo-angular-dateinputs',
34
34
  productName: 'Kendo UI for Angular',
35
35
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
36
- publishDate: 1731579247,
37
- version: '17.0.2-develop.1',
36
+ publishDate: 1731591790,
37
+ version: '17.0.2-develop.2',
38
38
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
39
39
  };
40
40
 
@@ -9208,7 +9208,8 @@ class DateInputComponent {
9208
9208
  */
9209
9209
  triggerChange() {
9210
9210
  const value = this.kendoDate.value;
9211
- if (+value !== +this.value) {
9211
+ const oneValuePresent = isPresent(value) !== isPresent(this.value);
9212
+ if (+value !== +this.value || oneValuePresent) {
9212
9213
  this.value = cloneDate(value);
9213
9214
  this.notify();
9214
9215
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "17.0.2-develop.1",
3
+ "version": "17.0.2-develop.2",
4
4
  "description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -34,18 +34,18 @@
34
34
  "@angular/forms": "16 - 18",
35
35
  "@angular/platform-browser": "16 - 18",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "17.0.2-develop.1",
38
- "@progress/kendo-angular-common": "17.0.2-develop.1",
39
- "@progress/kendo-angular-intl": "17.0.2-develop.1",
40
- "@progress/kendo-angular-l10n": "17.0.2-develop.1",
41
- "@progress/kendo-angular-icons": "17.0.2-develop.1",
42
- "@progress/kendo-angular-popup": "17.0.2-develop.1",
43
- "@progress/kendo-angular-navigation": "17.0.2-develop.1",
37
+ "@progress/kendo-angular-buttons": "17.0.2-develop.2",
38
+ "@progress/kendo-angular-common": "17.0.2-develop.2",
39
+ "@progress/kendo-angular-intl": "17.0.2-develop.2",
40
+ "@progress/kendo-angular-l10n": "17.0.2-develop.2",
41
+ "@progress/kendo-angular-icons": "17.0.2-develop.2",
42
+ "@progress/kendo-angular-popup": "17.0.2-develop.2",
43
+ "@progress/kendo-angular-navigation": "17.0.2-develop.2",
44
44
  "rxjs": "^6.5.3 || ^7.0.0"
45
45
  },
46
46
  "dependencies": {
47
47
  "tslib": "^2.3.1",
48
- "@progress/kendo-angular-schematics": "17.0.2-develop.1",
48
+ "@progress/kendo-angular-schematics": "17.0.2-develop.2",
49
49
  "@progress/kendo-common": "^1.0.1",
50
50
  "@progress/kendo-date-math": "^1.1.0",
51
51
  "@progress/kendo-dateinputs-common": "^0.4.0"