@progress/kendo-angular-dateinputs 15.3.0-develop.6 → 15.3.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.
@@ -270,6 +270,12 @@ export class CalendarComponent {
270
270
  this.setAriaActivedescendant();
271
271
  }
272
272
  get focusedDate() {
273
+ if (this._focusedDate > this.max) {
274
+ return this.max;
275
+ }
276
+ if (this._focusedDate < this.min) {
277
+ return this.min;
278
+ }
273
279
  return this._focusedDate;
274
280
  }
275
281
  /**
@@ -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: 1710433537,
13
- version: '15.3.0-develop.6',
12
+ publishDate: 1710925295,
13
+ version: '15.3.0',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -37,8 +37,8 @@ const packageMetadata = {
37
37
  name: '@progress/kendo-angular-dateinputs',
38
38
  productName: 'Kendo UI for Angular',
39
39
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
40
- publishDate: 1710433537,
41
- version: '15.3.0-develop.6',
40
+ publishDate: 1710925295,
41
+ version: '15.3.0',
42
42
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
43
43
  };
44
44
 
@@ -5974,6 +5974,12 @@ class CalendarComponent {
5974
5974
  this.setAriaActivedescendant();
5975
5975
  }
5976
5976
  get focusedDate() {
5977
+ if (this._focusedDate > this.max) {
5978
+ return this.max;
5979
+ }
5980
+ if (this._focusedDate < this.min) {
5981
+ return this.min;
5982
+ }
5977
5983
  return this._focusedDate;
5978
5984
  }
5979
5985
  /**
@@ -37,8 +37,8 @@ const packageMetadata = {
37
37
  name: '@progress/kendo-angular-dateinputs',
38
38
  productName: 'Kendo UI for Angular',
39
39
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
40
- publishDate: 1710433537,
41
- version: '15.3.0-develop.6',
40
+ publishDate: 1710925295,
41
+ version: '15.3.0',
42
42
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
43
43
  };
44
44
 
@@ -5971,6 +5971,12 @@ class CalendarComponent {
5971
5971
  this.setAriaActivedescendant();
5972
5972
  }
5973
5973
  get focusedDate() {
5974
+ if (this._focusedDate > this.max) {
5975
+ return this.max;
5976
+ }
5977
+ if (this._focusedDate < this.min) {
5978
+ return this.min;
5979
+ }
5974
5980
  return this._focusedDate;
5975
5981
  }
5976
5982
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "15.3.0-develop.6",
3
+ "version": "15.3.0",
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,20 +34,20 @@
34
34
  "@angular/forms": "13 - 17",
35
35
  "@angular/platform-browser": "13 - 17",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-common": "15.3.0-develop.6",
38
- "@progress/kendo-angular-intl": "15.3.0-develop.6",
39
- "@progress/kendo-angular-l10n": "15.3.0-develop.6",
40
- "@progress/kendo-angular-icons": "15.3.0-develop.6",
41
- "@progress/kendo-angular-popup": "15.3.0-develop.6",
42
- "@progress/kendo-angular-navigation": "15.3.0-develop.6",
37
+ "@progress/kendo-angular-common": "15.3.0",
38
+ "@progress/kendo-angular-intl": "15.3.0",
39
+ "@progress/kendo-angular-l10n": "15.3.0",
40
+ "@progress/kendo-angular-icons": "15.3.0",
41
+ "@progress/kendo-angular-popup": "15.3.0",
42
+ "@progress/kendo-angular-navigation": "15.3.0",
43
43
  "rxjs": "^6.5.3 || ^7.0.0",
44
- "@progress/kendo-angular-buttons": "15.3.0-develop.6",
45
- "@progress/kendo-angular-inputs": "15.3.0-develop.6",
46
- "@progress/kendo-angular-label": "15.3.0-develop.6"
44
+ "@progress/kendo-angular-buttons": "15.3.0",
45
+ "@progress/kendo-angular-inputs": "15.3.0",
46
+ "@progress/kendo-angular-label": "15.3.0"
47
47
  },
48
48
  "dependencies": {
49
49
  "tslib": "^2.3.1",
50
- "@progress/kendo-angular-schematics": "15.3.0-develop.6",
50
+ "@progress/kendo-angular-schematics": "15.3.0",
51
51
  "@progress/kendo-common": "^0.2.0",
52
52
  "@progress/kendo-date-math": "^1.1.0",
53
53
  "@progress/kendo-dateinputs-common": "^0.3.2"