@progress/kendo-angular-dateinputs 7.1.5-dev.202211011455 → 7.1.5-dev.202211110909

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.
@@ -10,7 +10,7 @@ import * as i4 from "@angular/common";
10
10
  import * as i5 from "@progress/kendo-angular-intl";
11
11
  import * as i6 from "@progress/kendo-angular-common";
12
12
  /**
13
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
13
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
14
14
  * definition for the DateInput component.
15
15
  */
16
16
  export declare class DateInputModule {
@@ -10,7 +10,7 @@ import * as i4 from "./timepicker/timepicker.module";
10
10
  import * as i5 from "./daterange/date-range.module";
11
11
  import * as i6 from "./datetimepicker/datetimepicker.module";
12
12
  /**
13
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
13
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
14
14
  * definition for the Date Inputs components.
15
15
  *
16
16
  * @example
@@ -14,7 +14,7 @@ import * as i8 from "@progress/kendo-angular-popup";
14
14
  import * as i9 from "../calendar/templates.module";
15
15
  import * as i10 from "@progress/kendo-angular-common";
16
16
  /**
17
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
17
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
18
18
  * definition for the DatePicker component.
19
19
  */
20
20
  export declare class DatePickerModule {
@@ -15,7 +15,7 @@ import * as i9 from "@progress/kendo-angular-popup";
15
15
  import * as i10 from "@progress/kendo-angular-common";
16
16
  import * as i11 from "../calendar/templates.module";
17
17
  /**
18
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
18
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
19
19
  * definition for the DateTimePicker component.
20
20
  */
21
21
  export declare class DateTimePickerModule {
@@ -1299,13 +1299,6 @@ export class DateInputComponent {
1299
1299
  if (this.disabled || this.readonly || event.altKey || event.ctrlKey || event.metaKey) {
1300
1300
  return;
1301
1301
  }
1302
- if (event.keyCode === Keys.Tab) {
1303
- const moved = this.switchDateSegment(event.shiftKey ? -1 : 1);
1304
- if (moved) {
1305
- event.preventDefault();
1306
- }
1307
- return;
1308
- }
1309
1302
  if (event.keyCode === Keys.Backspace) {
1310
1303
  this.backspace = true;
1311
1304
  return;
@@ -11,7 +11,7 @@ import { DateInputCustomMessagesComponent } from './localization/dateinput-custo
11
11
  import { EventsModule } from '@progress/kendo-angular-common';
12
12
  import * as i0 from "@angular/core";
13
13
  /**
14
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
14
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
15
15
  * definition for the DateInput component.
16
16
  */
17
17
  export class DateInputModule {
@@ -19,7 +19,7 @@ const COMPONENT_MODULES = [
19
19
  DateTimePickerModule
20
20
  ];
21
21
  /**
22
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
22
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
23
23
  * definition for the Date Inputs components.
24
24
  *
25
25
  * @example
@@ -17,7 +17,7 @@ import { touchEnabled } from '@progress/kendo-common';
17
17
  import { TOUCH_ENABLED } from '../touch-enabled';
18
18
  import * as i0 from "@angular/core";
19
19
  /**
20
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
20
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
21
21
  * definition for the DatePicker component.
22
22
  */
23
23
  export class DatePickerModule {
@@ -23,7 +23,7 @@ const COMPONENT_DIRECTIVES = [
23
23
  LocalizedMessagesDirective
24
24
  ];
25
25
  /**
26
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
26
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
27
27
  * definition for the DateTimePicker component.
28
28
  */
29
29
  export class DateTimePickerModule {
@@ -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: 1667314440,
12
+ publishDate: 1668157670,
13
13
  version: '',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
15
15
  };
@@ -470,12 +470,14 @@ export class TimePickerComponent {
470
470
  const { altKey, keyCode } = event;
471
471
  if (keyCode === Keys.Escape) {
472
472
  this.show = false;
473
+ this.cdr.detectChanges();
473
474
  return;
474
475
  }
475
476
  if (altKey) {
476
477
  if (keyCode === Keys.ArrowUp) {
477
478
  event.preventDefault();
478
479
  this.show = false;
480
+ this.cdr.detectChanges();
479
481
  }
480
482
  if (keyCode === Keys.ArrowDown && !this.show) {
481
483
  event.preventDefault();
@@ -629,6 +631,7 @@ export class TimePickerComponent {
629
631
  //due to async IE focus event
630
632
  this.handleFocus();
631
633
  this.show = !this.show;
634
+ this.cdr.detectChanges();
632
635
  }
633
636
  /**
634
637
  * @hidden
@@ -54,7 +54,7 @@ const providers = [
54
54
  }
55
55
  ];
56
56
  /**
57
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
57
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
58
58
  * definition for the TimePicker component.
59
59
  */
60
60
  export class TimePickerModule {
@@ -12,7 +12,7 @@ const COMPONENT_DIRECTIVES = [
12
12
  /**
13
13
  * @hidden
14
14
  *
15
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
15
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16
16
  * definition for the Virtualization component.
17
17
  */
18
18
  export class VirtualizationModule {
@@ -28,7 +28,7 @@ const packageMetadata = {
28
28
  name: '@progress/kendo-angular-dateinputs',
29
29
  productName: 'Kendo UI for Angular',
30
30
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
31
- publishDate: 1667314440,
31
+ publishDate: 1668157670,
32
32
  version: '',
33
33
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
34
34
  };
@@ -8161,13 +8161,6 @@ class DateInputComponent {
8161
8161
  if (this.disabled || this.readonly || event.altKey || event.ctrlKey || event.metaKey) {
8162
8162
  return;
8163
8163
  }
8164
- if (event.keyCode === Keys$1.Tab) {
8165
- const moved = this.switchDateSegment(event.shiftKey ? -1 : 1);
8166
- if (moved) {
8167
- event.preventDefault();
8168
- }
8169
- return;
8170
- }
8171
8164
  if (event.keyCode === Keys$1.Backspace) {
8172
8165
  this.backspace = true;
8173
8166
  return;
@@ -12084,12 +12077,14 @@ class TimePickerComponent {
12084
12077
  const { altKey, keyCode } = event;
12085
12078
  if (keyCode === Keys$1.Escape) {
12086
12079
  this.show = false;
12080
+ this.cdr.detectChanges();
12087
12081
  return;
12088
12082
  }
12089
12083
  if (altKey) {
12090
12084
  if (keyCode === Keys$1.ArrowUp) {
12091
12085
  event.preventDefault();
12092
12086
  this.show = false;
12087
+ this.cdr.detectChanges();
12093
12088
  }
12094
12089
  if (keyCode === Keys$1.ArrowDown && !this.show) {
12095
12090
  event.preventDefault();
@@ -12243,6 +12238,7 @@ class TimePickerComponent {
12243
12238
  //due to async IE focus event
12244
12239
  this.handleFocus();
12245
12240
  this.show = !this.show;
12241
+ this.cdr.detectChanges();
12246
12242
  }
12247
12243
  /**
12248
12244
  * @hidden
@@ -15761,7 +15757,7 @@ const COMPONENT_DIRECTIVES$3 = [
15761
15757
  /**
15762
15758
  * @hidden
15763
15759
  *
15764
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
15760
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
15765
15761
  * definition for the Virtualization component.
15766
15762
  */
15767
15763
  class VirtualizationModule {
@@ -15990,7 +15986,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
15990
15986
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
15991
15987
 
15992
15988
  /**
15993
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
15989
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
15994
15990
  * definition for the DateInput component.
15995
15991
  */
15996
15992
  class DateInputModule {
@@ -16053,7 +16049,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
16053
16049
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
16054
16050
 
16055
16051
  /**
16056
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
16052
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16057
16053
  * definition for the DatePicker component.
16058
16054
  */
16059
16055
  class DatePickerModule {
@@ -16248,7 +16244,7 @@ const providers = [
16248
16244
  }
16249
16245
  ];
16250
16246
  /**
16251
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
16247
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16252
16248
  * definition for the TimePicker component.
16253
16249
  */
16254
16250
  class TimePickerModule {
@@ -16321,7 +16317,7 @@ const COMPONENT_DIRECTIVES = [
16321
16317
  LocalizedMessagesDirective
16322
16318
  ];
16323
16319
  /**
16324
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
16320
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16325
16321
  * definition for the DateTimePicker component.
16326
16322
  */
16327
16323
  class DateTimePickerModule {
@@ -16386,7 +16382,7 @@ const COMPONENT_MODULES = [
16386
16382
  DateTimePickerModule
16387
16383
  ];
16388
16384
  /**
16389
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
16385
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16390
16386
  * definition for the Date Inputs components.
16391
16387
  *
16392
16388
  * @example
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "7.1.5-dev.202211011455",
3
+ "version": "7.1.5-dev.202211110909",
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",
@@ -17,7 +17,7 @@ import * as i11 from "@progress/kendo-angular-popup";
17
17
  import * as i12 from "../virtualization/virtualization.module";
18
18
  import * as i13 from "@progress/kendo-angular-common";
19
19
  /**
20
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
20
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
21
21
  * definition for the TimePicker component.
22
22
  */
23
23
  export declare class TimePickerModule {
@@ -8,7 +8,7 @@ import * as i2 from "@angular/common";
8
8
  /**
9
9
  * @hidden
10
10
  *
11
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
11
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
12
12
  * definition for the Virtualization component.
13
13
  */
14
14
  export declare class VirtualizationModule {