@progress/kendo-angular-dateinputs 5.2.3 → 5.2.4-dev.202110060847
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.
- package/dist/cdn/js/kendo-angular-dateinputs.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/calendar/calendar.component.js +4 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/es2015/calendar/calendar.component.d.ts +1 -0
- package/dist/es2015/calendar/calendar.component.js +4 -0
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/fesm2015/index.js +5 -1
- package/dist/fesm5/index.js +5 -1
- package/dist/npm/calendar/calendar.component.js +4 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-angular-dateinputs.js +1 -1
- package/package.json +1 -1
|
@@ -292,12 +292,16 @@ var CalendarComponent = /** @class */ (function () {
|
|
|
292
292
|
configurable: true
|
|
293
293
|
});
|
|
294
294
|
Object.defineProperty(CalendarComponent.prototype, "disabledDates", {
|
|
295
|
+
get: function () {
|
|
296
|
+
return this._disabledDates;
|
|
297
|
+
},
|
|
295
298
|
/**
|
|
296
299
|
* Sets the dates of the Calendar that will be disabled
|
|
297
300
|
* ([see example]({% slug disabled_dates_calendar %})).
|
|
298
301
|
*/
|
|
299
302
|
set: function (value) {
|
|
300
303
|
this.disabledDatesService.initialize(value);
|
|
304
|
+
this._disabledDates = value;
|
|
301
305
|
},
|
|
302
306
|
enumerable: true,
|
|
303
307
|
configurable: true
|
|
@@ -9,7 +9,7 @@ export var packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-dateinputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1633509845,
|
|
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
|
};
|
|
@@ -277,6 +277,10 @@ let CalendarComponent = class CalendarComponent {
|
|
|
277
277
|
*/
|
|
278
278
|
set disabledDates(value) {
|
|
279
279
|
this.disabledDatesService.initialize(value);
|
|
280
|
+
this._disabledDates = value;
|
|
281
|
+
}
|
|
282
|
+
get disabledDates() {
|
|
283
|
+
return this._disabledDates;
|
|
280
284
|
}
|
|
281
285
|
/**
|
|
282
286
|
* Specifies the Calendar type.
|