@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
|
@@ -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:
|
|
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
|
};
|
package/dist/fesm2015/index.js
CHANGED
|
@@ -23,7 +23,7 @@ const packageMetadata = {
|
|
|
23
23
|
name: '@progress/kendo-angular-dateinputs',
|
|
24
24
|
productName: 'Kendo UI for Angular',
|
|
25
25
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
26
|
-
publishDate:
|
|
26
|
+
publishDate: 1633509845,
|
|
27
27
|
version: '',
|
|
28
28
|
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'
|
|
29
29
|
};
|
|
@@ -3155,6 +3155,10 @@ let CalendarComponent = class CalendarComponent {
|
|
|
3155
3155
|
*/
|
|
3156
3156
|
set disabledDates(value) {
|
|
3157
3157
|
this.disabledDatesService.initialize(value);
|
|
3158
|
+
this._disabledDates = value;
|
|
3159
|
+
}
|
|
3160
|
+
get disabledDates() {
|
|
3161
|
+
return this._disabledDates;
|
|
3158
3162
|
}
|
|
3159
3163
|
/**
|
|
3160
3164
|
* Specifies the Calendar type.
|
package/dist/fesm5/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var packageMetadata = {
|
|
|
23
23
|
name: '@progress/kendo-angular-dateinputs',
|
|
24
24
|
productName: 'Kendo UI for Angular',
|
|
25
25
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
26
|
-
publishDate:
|
|
26
|
+
publishDate: 1633509845,
|
|
27
27
|
version: '',
|
|
28
28
|
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'
|
|
29
29
|
};
|
|
@@ -3179,12 +3179,16 @@ var CalendarComponent = /** @class */ (function () {
|
|
|
3179
3179
|
configurable: true
|
|
3180
3180
|
});
|
|
3181
3181
|
Object.defineProperty(CalendarComponent.prototype, "disabledDates", {
|
|
3182
|
+
get: function () {
|
|
3183
|
+
return this._disabledDates;
|
|
3184
|
+
},
|
|
3182
3185
|
/**
|
|
3183
3186
|
* Sets the dates of the Calendar that will be disabled
|
|
3184
3187
|
* ([see example]({% slug disabled_dates_calendar %})).
|
|
3185
3188
|
*/
|
|
3186
3189
|
set: function (value) {
|
|
3187
3190
|
this.disabledDatesService.initialize(value);
|
|
3191
|
+
this._disabledDates = value;
|
|
3188
3192
|
},
|
|
3189
3193
|
enumerable: true,
|
|
3190
3194
|
configurable: true
|
|
@@ -295,12 +295,16 @@ var CalendarComponent = /** @class */ (function () {
|
|
|
295
295
|
configurable: true
|
|
296
296
|
});
|
|
297
297
|
Object.defineProperty(CalendarComponent.prototype, "disabledDates", {
|
|
298
|
+
get: function () {
|
|
299
|
+
return this._disabledDates;
|
|
300
|
+
},
|
|
298
301
|
/**
|
|
299
302
|
* Sets the dates of the Calendar that will be disabled
|
|
300
303
|
* ([see example]({% slug disabled_dates_calendar %})).
|
|
301
304
|
*/
|
|
302
305
|
set: function (value) {
|
|
303
306
|
this.disabledDatesService.initialize(value);
|
|
307
|
+
this._disabledDates = value;
|
|
304
308
|
},
|
|
305
309
|
enumerable: true,
|
|
306
310
|
configurable: true
|
|
@@ -11,7 +11,7 @@ exports.packageMetadata = {
|
|
|
11
11
|
name: '@progress/kendo-angular-dateinputs',
|
|
12
12
|
productName: 'Kendo UI for Angular',
|
|
13
13
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
14
|
-
publishDate:
|
|
14
|
+
publishDate: 1633509845,
|
|
15
15
|
version: '',
|
|
16
16
|
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'
|
|
17
17
|
};
|