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

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 {
@@ -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: 1668098044,
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: 1668098044,
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
  };
@@ -12084,12 +12084,14 @@ class TimePickerComponent {
12084
12084
  const { altKey, keyCode } = event;
12085
12085
  if (keyCode === Keys$1.Escape) {
12086
12086
  this.show = false;
12087
+ this.cdr.detectChanges();
12087
12088
  return;
12088
12089
  }
12089
12090
  if (altKey) {
12090
12091
  if (keyCode === Keys$1.ArrowUp) {
12091
12092
  event.preventDefault();
12092
12093
  this.show = false;
12094
+ this.cdr.detectChanges();
12093
12095
  }
12094
12096
  if (keyCode === Keys$1.ArrowDown && !this.show) {
12095
12097
  event.preventDefault();
@@ -12243,6 +12245,7 @@ class TimePickerComponent {
12243
12245
  //due to async IE focus event
12244
12246
  this.handleFocus();
12245
12247
  this.show = !this.show;
12248
+ this.cdr.detectChanges();
12246
12249
  }
12247
12250
  /**
12248
12251
  * @hidden
@@ -15761,7 +15764,7 @@ const COMPONENT_DIRECTIVES$3 = [
15761
15764
  /**
15762
15765
  * @hidden
15763
15766
  *
15764
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
15767
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
15765
15768
  * definition for the Virtualization component.
15766
15769
  */
15767
15770
  class VirtualizationModule {
@@ -15990,7 +15993,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
15990
15993
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
15991
15994
 
15992
15995
  /**
15993
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
15996
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
15994
15997
  * definition for the DateInput component.
15995
15998
  */
15996
15999
  class DateInputModule {
@@ -16053,7 +16056,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
16053
16056
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
16054
16057
 
16055
16058
  /**
16056
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
16059
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16057
16060
  * definition for the DatePicker component.
16058
16061
  */
16059
16062
  class DatePickerModule {
@@ -16248,7 +16251,7 @@ const providers = [
16248
16251
  }
16249
16252
  ];
16250
16253
  /**
16251
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
16254
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16252
16255
  * definition for the TimePicker component.
16253
16256
  */
16254
16257
  class TimePickerModule {
@@ -16321,7 +16324,7 @@ const COMPONENT_DIRECTIVES = [
16321
16324
  LocalizedMessagesDirective
16322
16325
  ];
16323
16326
  /**
16324
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
16327
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16325
16328
  * definition for the DateTimePicker component.
16326
16329
  */
16327
16330
  class DateTimePickerModule {
@@ -16386,7 +16389,7 @@ const COMPONENT_MODULES = [
16386
16389
  DateTimePickerModule
16387
16390
  ];
16388
16391
  /**
16389
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
16392
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16390
16393
  * definition for the Date Inputs components.
16391
16394
  *
16392
16395
  * @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.202211101635",
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 {