@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.
@@ -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: 1631623618,
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
  };
@@ -269,6 +269,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
269
269
  cellUID: string;
270
270
  selectedDates: Date[];
271
271
  rangePivot: Date;
272
+ private _disabledDates;
272
273
  private _min;
273
274
  private _max;
274
275
  private _focusedDate;
@@ -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.