@progress/kendo-angular-dateinputs 19.0.0-develop.20 → 19.0.0-develop.22

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.
@@ -215,11 +215,13 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
215
215
  /**
216
216
  * Specifies the biggest date that is valid
217
217
  * ([see example]({% slug dateranges_dateinput %})).
218
+ * By default, the `max` value is `2099-12-31`.
218
219
  */
219
220
  max: Date;
220
221
  /**
221
222
  * Specifies the smallest date that is valid
222
223
  * ([see example]({% slug dateranges_dateinput %})).
224
+ * By default, the `min` value is `1900-1-1`.
223
225
  */
224
226
  min: Date;
225
227
  /**
@@ -24,6 +24,7 @@ import { DateInput } from '@progress/kendo-dateinputs-common';
24
24
  import { IconWrapperComponent } from '@progress/kendo-angular-icons';
25
25
  import { NgIf } from '@angular/common';
26
26
  import { DateInputLocalizedMessagesDirective } from './localization/dateinput-localized-messages.directive';
27
+ import { MAX_DATE, MIN_DATE } from '../defaults';
27
28
  import * as i0 from "@angular/core";
28
29
  import * as i1 from "@progress/kendo-angular-intl";
29
30
  import * as i2 from "@progress/kendo-angular-l10n";
@@ -271,13 +272,15 @@ export class DateInputComponent {
271
272
  /**
272
273
  * Specifies the biggest date that is valid
273
274
  * ([see example]({% slug dateranges_dateinput %})).
275
+ * By default, the `max` value is `2099-12-31`.
274
276
  */
275
- max;
277
+ max = cloneDate(MAX_DATE);
276
278
  /**
277
279
  * Specifies the smallest date that is valid
278
280
  * ([see example]({% slug dateranges_dateinput %})).
281
+ * By default, the `min` value is `1900-1-1`.
279
282
  */
280
- min;
283
+ min = cloneDate(MIN_DATE);
281
284
  /**
282
285
  * Determines whether the built-in min or max validators are to be enforced when a form is being validated.
283
286
  *
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1747410166,
14
- version: '19.0.0-develop.20',
13
+ publishDate: 1747414711,
14
+ version: '19.0.0-develop.22',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -36,8 +36,8 @@ const packageMetadata = {
36
36
  productName: 'Kendo UI for Angular',
37
37
  productCode: 'KENDOUIANGULAR',
38
38
  productCodes: ['KENDOUIANGULAR'],
39
- publishDate: 1747410166,
40
- version: '19.0.0-develop.20',
39
+ publishDate: 1747414711,
40
+ version: '19.0.0-develop.22',
41
41
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
42
  };
43
43
 
@@ -8706,13 +8706,15 @@ class DateInputComponent {
8706
8706
  /**
8707
8707
  * Specifies the biggest date that is valid
8708
8708
  * ([see example]({% slug dateranges_dateinput %})).
8709
+ * By default, the `max` value is `2099-12-31`.
8709
8710
  */
8710
- max;
8711
+ max = cloneDate(MAX_DATE);
8711
8712
  /**
8712
8713
  * Specifies the smallest date that is valid
8713
8714
  * ([see example]({% slug dateranges_dateinput %})).
8715
+ * By default, the `min` value is `1900-1-1`.
8714
8716
  */
8715
- min;
8717
+ min = cloneDate(MIN_DATE);
8716
8718
  /**
8717
8719
  * Determines whether the built-in min or max validators are to be enforced when a form is being validated.
8718
8720
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "19.0.0-develop.20",
3
+ "version": "19.0.0-develop.22",
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": 1747410166,
32
+ "publishDate": 1747414711,
33
33
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
34
34
  }
35
35
  },
@@ -40,19 +40,19 @@
40
40
  "@angular/forms": "16 - 19",
41
41
  "@angular/platform-browser": "16 - 19",
42
42
  "@progress/kendo-licensing": "^1.5.0",
43
- "@progress/kendo-angular-buttons": "19.0.0-develop.20",
44
- "@progress/kendo-angular-common": "19.0.0-develop.20",
45
- "@progress/kendo-angular-utils": "19.0.0-develop.20",
46
- "@progress/kendo-angular-intl": "19.0.0-develop.20",
47
- "@progress/kendo-angular-l10n": "19.0.0-develop.20",
48
- "@progress/kendo-angular-icons": "19.0.0-develop.20",
49
- "@progress/kendo-angular-popup": "19.0.0-develop.20",
50
- "@progress/kendo-angular-navigation": "19.0.0-develop.20",
43
+ "@progress/kendo-angular-buttons": "19.0.0-develop.22",
44
+ "@progress/kendo-angular-common": "19.0.0-develop.22",
45
+ "@progress/kendo-angular-utils": "19.0.0-develop.22",
46
+ "@progress/kendo-angular-intl": "19.0.0-develop.22",
47
+ "@progress/kendo-angular-l10n": "19.0.0-develop.22",
48
+ "@progress/kendo-angular-icons": "19.0.0-develop.22",
49
+ "@progress/kendo-angular-popup": "19.0.0-develop.22",
50
+ "@progress/kendo-angular-navigation": "19.0.0-develop.22",
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": "19.0.0-develop.20",
55
+ "@progress/kendo-angular-schematics": "19.0.0-develop.22",
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.4"