@progress/kendo-angular-dateinputs 18.1.0-develop.30 → 18.1.0-develop.4

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.
@@ -531,7 +531,6 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
531
531
  private onWidgetInputEnd;
532
532
  private onWidgetFocus;
533
533
  private onWidgetBlur;
534
- private handleKeyDown;
535
534
  private verifyRange;
536
535
  private verifyValue;
537
536
  private intlChange;
@@ -698,7 +698,6 @@ export class DateInputComponent {
698
698
  this.control = formControl;
699
699
  this.subs.add(this.formControl?.statusChanges.subscribe(() => this.setAriaInvalid()));
700
700
  this.setAriaInvalid();
701
- this.subs.add(this.dateInput?.nativeElement.addEventListener('keydown', this.handleKeyDown, true));
702
701
  }
703
702
  ngOnDestroy() {
704
703
  this.subs.unsubscribe();
@@ -758,7 +757,6 @@ export class DateInputComponent {
758
757
  this.kendoDate?.refreshElementValue();
759
758
  }
760
759
  resetInput() {
761
- this.isDateIncomplete = false;
762
760
  this.writeValue(null);
763
761
  // Notify datepicker that a change has happened and emit `valueChange`
764
762
  this.notify();
@@ -885,12 +883,6 @@ export class DateInputComponent {
885
883
  this.emitBlur(args.event);
886
884
  }
887
885
  }
888
- handleKeyDown(event) {
889
- // an event without keyCode is triggered when using Edge's autofill -> ignore it in the common package
890
- if (!isPresent(event.keyCode)) {
891
- event.stopImmediatePropagation();
892
- }
893
- }
894
886
  verifyRange() {
895
887
  if (!isDevMode()) {
896
888
  return;
@@ -1421,9 +1421,6 @@ export class DateTimePickerComponent extends MultiTabStop {
1421
1421
  }
1422
1422
  handleValueChange(value) {
1423
1423
  if (isEqual(this.value, value)) {
1424
- if (this.incompleteDateValidation) {
1425
- this.onControlChange(cloneDate(value));
1426
- }
1427
1424
  return;
1428
1425
  }
1429
1426
  this.value = cloneDate(value);
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1738962076,
14
- version: '18.1.0-develop.30',
13
+ publishDate: 1738318326,
14
+ version: '18.1.0-develop.4',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -736,9 +736,6 @@ export class TimePickerComponent extends MultiTabStop {
736
736
  this.focusInput();
737
737
  this.show = false;
738
738
  }
739
- if (this.incompleteDateValidation) {
740
- this.onControlChange(cloneDate(value));
741
- }
742
739
  return;
743
740
  }
744
741
  this.value = cloneDate(value);
@@ -36,8 +36,8 @@ const packageMetadata = {
36
36
  productName: 'Kendo UI for Angular',
37
37
  productCode: 'KENDOUIANGULAR',
38
38
  productCodes: ['KENDOUIANGULAR'],
39
- publishDate: 1738962076,
40
- version: '18.1.0-develop.30',
39
+ publishDate: 1738318326,
40
+ version: '18.1.0-develop.4',
41
41
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
42
  };
43
43
 
@@ -9128,7 +9128,6 @@ class DateInputComponent {
9128
9128
  this.control = formControl;
9129
9129
  this.subs.add(this.formControl?.statusChanges.subscribe(() => this.setAriaInvalid()));
9130
9130
  this.setAriaInvalid();
9131
- this.subs.add(this.dateInput?.nativeElement.addEventListener('keydown', this.handleKeyDown, true));
9132
9131
  }
9133
9132
  ngOnDestroy() {
9134
9133
  this.subs.unsubscribe();
@@ -9188,7 +9187,6 @@ class DateInputComponent {
9188
9187
  this.kendoDate?.refreshElementValue();
9189
9188
  }
9190
9189
  resetInput() {
9191
- this.isDateIncomplete = false;
9192
9190
  this.writeValue(null);
9193
9191
  // Notify datepicker that a change has happened and emit `valueChange`
9194
9192
  this.notify();
@@ -9315,12 +9313,6 @@ class DateInputComponent {
9315
9313
  this.emitBlur(args.event);
9316
9314
  }
9317
9315
  }
9318
- handleKeyDown(event) {
9319
- // an event without keyCode is triggered when using Edge's autofill -> ignore it in the common package
9320
- if (!isPresent(event.keyCode)) {
9321
- event.stopImmediatePropagation();
9322
- }
9323
- }
9324
9316
  verifyRange() {
9325
9317
  if (!isDevMode()) {
9326
9318
  return;
@@ -14356,9 +14348,6 @@ class TimePickerComponent extends MultiTabStop {
14356
14348
  this.focusInput();
14357
14349
  this.show = false;
14358
14350
  }
14359
- if (this.incompleteDateValidation) {
14360
- this.onControlChange(cloneDate(value));
14361
- }
14362
14351
  return;
14363
14352
  }
14364
14353
  this.value = cloneDate(value);
@@ -16802,9 +16791,6 @@ class DateTimePickerComponent extends MultiTabStop {
16802
16791
  }
16803
16792
  handleValueChange(value) {
16804
16793
  if (isEqual(this.value, value)) {
16805
- if (this.incompleteDateValidation) {
16806
- this.onControlChange(cloneDate(value));
16807
- }
16808
16794
  return;
16809
16795
  }
16810
16796
  this.value = cloneDate(value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "18.1.0-develop.30",
3
+ "version": "18.1.0-develop.4",
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",
@@ -29,7 +29,7 @@
29
29
  "package": {
30
30
  "productName": "Kendo UI for Angular",
31
31
  "productCode": "KENDOUIANGULAR",
32
- "publishDate": 1738962076,
32
+ "publishDate": 1738318326,
33
33
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
34
34
  }
35
35
  },
@@ -39,20 +39,20 @@
39
39
  "@angular/core": "16 - 19",
40
40
  "@angular/forms": "16 - 19",
41
41
  "@angular/platform-browser": "16 - 19",
42
- "@progress/kendo-licensing": "^1.4.0",
43
- "@progress/kendo-angular-buttons": "18.1.0-develop.30",
44
- "@progress/kendo-angular-common": "18.1.0-develop.30",
45
- "@progress/kendo-angular-utils": "18.1.0-develop.30",
46
- "@progress/kendo-angular-intl": "18.1.0-develop.30",
47
- "@progress/kendo-angular-l10n": "18.1.0-develop.30",
48
- "@progress/kendo-angular-icons": "18.1.0-develop.30",
49
- "@progress/kendo-angular-popup": "18.1.0-develop.30",
50
- "@progress/kendo-angular-navigation": "18.1.0-develop.30",
42
+ "@progress/kendo-licensing": "^1.0.2",
43
+ "@progress/kendo-angular-buttons": "18.1.0-develop.4",
44
+ "@progress/kendo-angular-common": "18.1.0-develop.4",
45
+ "@progress/kendo-angular-utils": "18.1.0-develop.4",
46
+ "@progress/kendo-angular-intl": "18.1.0-develop.4",
47
+ "@progress/kendo-angular-l10n": "18.1.0-develop.4",
48
+ "@progress/kendo-angular-icons": "18.1.0-develop.4",
49
+ "@progress/kendo-angular-popup": "18.1.0-develop.4",
50
+ "@progress/kendo-angular-navigation": "18.1.0-develop.4",
51
51
  "rxjs": "^6.5.3 || ^7.0.0"
52
52
  },
53
53
  "dependencies": {
54
54
  "tslib": "^2.3.1",
55
- "@progress/kendo-angular-schematics": "18.1.0-develop.30",
55
+ "@progress/kendo-angular-schematics": "18.1.0-develop.4",
56
56
  "@progress/kendo-common": "^1.0.1",
57
57
  "@progress/kendo-date-math": "^1.1.0",
58
58
  "@progress/kendo-dateinputs-common": "^0.4.1"