@progress/kendo-angular-dateinputs 14.4.0-develop.4 → 14.4.0-develop.6
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/calendar/calendar.component.d.ts +1 -0
- package/calendar/multiview-calendar.component.d.ts +1 -0
- package/dateinput/dateinput.component.d.ts +1 -0
- package/datepicker/datepicker.component.d.ts +1 -0
- package/datetimepicker/datetimepicker.component.d.ts +1 -0
- package/esm2020/calendar/calendar.component.mjs +1 -0
- package/esm2020/calendar/multiview-calendar.component.mjs +1 -0
- package/esm2020/dateinput/dateinput.component.mjs +1 -0
- package/esm2020/datepicker/datepicker.component.mjs +1 -0
- package/esm2020/datetimepicker/datetimepicker.component.mjs +1 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/timepicker/timepicker.component.mjs +1 -0
- package/fesm2015/progress-kendo-angular-dateinputs.mjs +8 -2
- package/fesm2020/progress-kendo-angular-dateinputs.mjs +8 -2
- package/package.json +11 -11
- package/timepicker/timepicker.component.d.ts +1 -0
|
@@ -133,6 +133,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
133
133
|
* Sets or gets the `disabled` property of the Calendar and
|
|
134
134
|
* determines whether the component is active
|
|
135
135
|
* ([see example]({% slug disabled_calendar %})).
|
|
136
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_calendar#toc-managing-the-calendar-disabled-state-in-reactive-forms).
|
|
136
137
|
*/
|
|
137
138
|
disabled: boolean;
|
|
138
139
|
/**
|
|
@@ -128,6 +128,7 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
128
128
|
* Sets or gets the `disabled` property of the Calendar and
|
|
129
129
|
* determines whether the component is active
|
|
130
130
|
* ([see example]({% slug disabled_multiviewcalendar %})).
|
|
131
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_multiviewcalendar#toc-managing-the-multiviewcalendar-disabled-state-in-reactive-forms).
|
|
131
132
|
*/
|
|
132
133
|
disabled: boolean;
|
|
133
134
|
/**
|
|
@@ -74,6 +74,7 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
74
74
|
* Sets or gets the `disabled` property of the DateInput and
|
|
75
75
|
* determines whether the component is active
|
|
76
76
|
* ([see example]({% slug disabled_dateinput %})).
|
|
77
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_dateinput#toc-managing-the-dateinput-disabled-state-in-reactive-forms).
|
|
77
78
|
*/
|
|
78
79
|
disabled: boolean;
|
|
79
80
|
/**
|
|
@@ -160,6 +160,7 @@ export declare class DatePickerComponent implements ControlValueAccessor, OnInit
|
|
|
160
160
|
/**
|
|
161
161
|
* Sets or gets the `disabled` property of the DatePicker and determines whether the component is active
|
|
162
162
|
* ([see example]({% slug disabled_datepicker %})).
|
|
163
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_datepicker#toc-managing-the-datepicker-disabled-state-in-reactive-forms).
|
|
163
164
|
*/
|
|
164
165
|
disabled: boolean;
|
|
165
166
|
/**
|
|
@@ -148,6 +148,7 @@ export declare class DateTimePickerComponent implements OnInit, OnChanges, After
|
|
|
148
148
|
/**
|
|
149
149
|
* Sets or gets the `disabled` property of the DateTimePicker and determines whether the component is active
|
|
150
150
|
* ([see example]({% slug disabled_datetimepicker %})).
|
|
151
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_datetimepicker#toc-managing-the-datetimepicker-disabled-state-in-reactive-forms).
|
|
151
152
|
*/
|
|
152
153
|
disabled: boolean;
|
|
153
154
|
/**
|
|
@@ -126,6 +126,7 @@ export class CalendarComponent {
|
|
|
126
126
|
* Sets or gets the `disabled` property of the Calendar and
|
|
127
127
|
* determines whether the component is active
|
|
128
128
|
* ([see example]({% slug disabled_calendar %})).
|
|
129
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_calendar#toc-managing-the-calendar-disabled-state-in-reactive-forms).
|
|
129
130
|
*/
|
|
130
131
|
this.disabled = false;
|
|
131
132
|
/**
|
|
@@ -105,6 +105,7 @@ export class MultiViewCalendarComponent {
|
|
|
105
105
|
* Sets or gets the `disabled` property of the Calendar and
|
|
106
106
|
* determines whether the component is active
|
|
107
107
|
* ([see example]({% slug disabled_multiviewcalendar %})).
|
|
108
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_multiviewcalendar#toc-managing-the-multiviewcalendar-disabled-state-in-reactive-forms).
|
|
108
109
|
*/
|
|
109
110
|
this.disabled = false;
|
|
110
111
|
/**
|
|
@@ -91,6 +91,7 @@ export class DateInputComponent {
|
|
|
91
91
|
* Sets or gets the `disabled` property of the DateInput and
|
|
92
92
|
* determines whether the component is active
|
|
93
93
|
* ([see example]({% slug disabled_dateinput %})).
|
|
94
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_dateinput#toc-managing-the-dateinput-disabled-state-in-reactive-forms).
|
|
94
95
|
*/
|
|
95
96
|
this.disabled = false;
|
|
96
97
|
/**
|
|
@@ -110,6 +110,7 @@ export class DatePickerComponent {
|
|
|
110
110
|
/**
|
|
111
111
|
* Sets or gets the `disabled` property of the DatePicker and determines whether the component is active
|
|
112
112
|
* ([see example]({% slug disabled_datepicker %})).
|
|
113
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_datepicker#toc-managing-the-datepicker-disabled-state-in-reactive-forms).
|
|
113
114
|
*/
|
|
114
115
|
this.disabled = false;
|
|
115
116
|
/**
|
|
@@ -104,6 +104,7 @@ export class DateTimePickerComponent {
|
|
|
104
104
|
/**
|
|
105
105
|
* Sets or gets the `disabled` property of the DateTimePicker and determines whether the component is active
|
|
106
106
|
* ([see example]({% slug disabled_datetimepicker %})).
|
|
107
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_datetimepicker#toc-managing-the-datetimepicker-disabled-state-in-reactive-forms).
|
|
107
108
|
*/
|
|
108
109
|
this.disabled = false;
|
|
109
110
|
/**
|
|
@@ -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:
|
|
13
|
-
version: '14.4.0-develop.
|
|
12
|
+
publishDate: 1704812181,
|
|
13
|
+
version: '14.4.0-develop.6',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -66,6 +66,7 @@ export class TimePickerComponent {
|
|
|
66
66
|
* Sets or gets the `disabled` property of the TimePicker and
|
|
67
67
|
* determines whether the component is active
|
|
68
68
|
* ([see example]({% slug disabled_timepicker %})).
|
|
69
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_timepicker#toc-managing-the-timepicker-disabled-state-in-reactive-forms).
|
|
69
70
|
*/
|
|
70
71
|
this.disabled = false;
|
|
71
72
|
/**
|
|
@@ -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:
|
|
41
|
-
version: '14.4.0-develop.
|
|
40
|
+
publishDate: 1704812181,
|
|
41
|
+
version: '14.4.0-develop.6',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -3299,6 +3299,7 @@ class MultiViewCalendarComponent {
|
|
|
3299
3299
|
* Sets or gets the `disabled` property of the Calendar and
|
|
3300
3300
|
* determines whether the component is active
|
|
3301
3301
|
* ([see example]({% slug disabled_multiviewcalendar %})).
|
|
3302
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_multiviewcalendar#toc-managing-the-multiviewcalendar-disabled-state-in-reactive-forms).
|
|
3302
3303
|
*/
|
|
3303
3304
|
this.disabled = false;
|
|
3304
3305
|
/**
|
|
@@ -5794,6 +5795,7 @@ class CalendarComponent {
|
|
|
5794
5795
|
* Sets or gets the `disabled` property of the Calendar and
|
|
5795
5796
|
* determines whether the component is active
|
|
5796
5797
|
* ([see example]({% slug disabled_calendar %})).
|
|
5798
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_calendar#toc-managing-the-calendar-disabled-state-in-reactive-forms).
|
|
5797
5799
|
*/
|
|
5798
5800
|
this.disabled = false;
|
|
5799
5801
|
/**
|
|
@@ -7121,6 +7123,7 @@ class DateInputComponent {
|
|
|
7121
7123
|
* Sets or gets the `disabled` property of the DateInput and
|
|
7122
7124
|
* determines whether the component is active
|
|
7123
7125
|
* ([see example]({% slug disabled_dateinput %})).
|
|
7126
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_dateinput#toc-managing-the-dateinput-disabled-state-in-reactive-forms).
|
|
7124
7127
|
*/
|
|
7125
7128
|
this.disabled = false;
|
|
7126
7129
|
/**
|
|
@@ -8339,6 +8342,7 @@ class DatePickerComponent {
|
|
|
8339
8342
|
/**
|
|
8340
8343
|
* Sets or gets the `disabled` property of the DatePicker and determines whether the component is active
|
|
8341
8344
|
* ([see example]({% slug disabled_datepicker %})).
|
|
8345
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_datepicker#toc-managing-the-datepicker-disabled-state-in-reactive-forms).
|
|
8342
8346
|
*/
|
|
8343
8347
|
this.disabled = false;
|
|
8344
8348
|
/**
|
|
@@ -11711,6 +11715,7 @@ class TimePickerComponent {
|
|
|
11711
11715
|
* Sets or gets the `disabled` property of the TimePicker and
|
|
11712
11716
|
* determines whether the component is active
|
|
11713
11717
|
* ([see example]({% slug disabled_timepicker %})).
|
|
11718
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_timepicker#toc-managing-the-timepicker-disabled-state-in-reactive-forms).
|
|
11714
11719
|
*/
|
|
11715
11720
|
this.disabled = false;
|
|
11716
11721
|
/**
|
|
@@ -13287,6 +13292,7 @@ class DateTimePickerComponent {
|
|
|
13287
13292
|
/**
|
|
13288
13293
|
* Sets or gets the `disabled` property of the DateTimePicker and determines whether the component is active
|
|
13289
13294
|
* ([see example]({% slug disabled_datetimepicker %})).
|
|
13295
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_datetimepicker#toc-managing-the-datetimepicker-disabled-state-in-reactive-forms).
|
|
13290
13296
|
*/
|
|
13291
13297
|
this.disabled = false;
|
|
13292
13298
|
/**
|
|
@@ -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:
|
|
41
|
-
version: '14.4.0-develop.
|
|
40
|
+
publishDate: 1704812181,
|
|
41
|
+
version: '14.4.0-develop.6',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -3299,6 +3299,7 @@ class MultiViewCalendarComponent {
|
|
|
3299
3299
|
* Sets or gets the `disabled` property of the Calendar and
|
|
3300
3300
|
* determines whether the component is active
|
|
3301
3301
|
* ([see example]({% slug disabled_multiviewcalendar %})).
|
|
3302
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_multiviewcalendar#toc-managing-the-multiviewcalendar-disabled-state-in-reactive-forms).
|
|
3302
3303
|
*/
|
|
3303
3304
|
this.disabled = false;
|
|
3304
3305
|
/**
|
|
@@ -5791,6 +5792,7 @@ class CalendarComponent {
|
|
|
5791
5792
|
* Sets or gets the `disabled` property of the Calendar and
|
|
5792
5793
|
* determines whether the component is active
|
|
5793
5794
|
* ([see example]({% slug disabled_calendar %})).
|
|
5795
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_calendar#toc-managing-the-calendar-disabled-state-in-reactive-forms).
|
|
5794
5796
|
*/
|
|
5795
5797
|
this.disabled = false;
|
|
5796
5798
|
/**
|
|
@@ -7114,6 +7116,7 @@ class DateInputComponent {
|
|
|
7114
7116
|
* Sets or gets the `disabled` property of the DateInput and
|
|
7115
7117
|
* determines whether the component is active
|
|
7116
7118
|
* ([see example]({% slug disabled_dateinput %})).
|
|
7119
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_dateinput#toc-managing-the-dateinput-disabled-state-in-reactive-forms).
|
|
7117
7120
|
*/
|
|
7118
7121
|
this.disabled = false;
|
|
7119
7122
|
/**
|
|
@@ -8330,6 +8333,7 @@ class DatePickerComponent {
|
|
|
8330
8333
|
/**
|
|
8331
8334
|
* Sets or gets the `disabled` property of the DatePicker and determines whether the component is active
|
|
8332
8335
|
* ([see example]({% slug disabled_datepicker %})).
|
|
8336
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_datepicker#toc-managing-the-datepicker-disabled-state-in-reactive-forms).
|
|
8333
8337
|
*/
|
|
8334
8338
|
this.disabled = false;
|
|
8335
8339
|
/**
|
|
@@ -11691,6 +11695,7 @@ class TimePickerComponent {
|
|
|
11691
11695
|
* Sets or gets the `disabled` property of the TimePicker and
|
|
11692
11696
|
* determines whether the component is active
|
|
11693
11697
|
* ([see example]({% slug disabled_timepicker %})).
|
|
11698
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_timepicker#toc-managing-the-timepicker-disabled-state-in-reactive-forms).
|
|
11694
11699
|
*/
|
|
11695
11700
|
this.disabled = false;
|
|
11696
11701
|
/**
|
|
@@ -13262,6 +13267,7 @@ class DateTimePickerComponent {
|
|
|
13262
13267
|
/**
|
|
13263
13268
|
* Sets or gets the `disabled` property of the DateTimePicker and determines whether the component is active
|
|
13264
13269
|
* ([see example]({% slug disabled_datetimepicker %})).
|
|
13270
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_datetimepicker#toc-managing-the-datetimepicker-disabled-state-in-reactive-forms).
|
|
13265
13271
|
*/
|
|
13266
13272
|
this.disabled = false;
|
|
13267
13273
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "14.4.0-develop.
|
|
3
|
+
"version": "14.4.0-develop.6",
|
|
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": "14.4.0-develop.
|
|
38
|
-
"@progress/kendo-angular-intl": "14.4.0-develop.
|
|
39
|
-
"@progress/kendo-angular-l10n": "14.4.0-develop.
|
|
40
|
-
"@progress/kendo-angular-icons": "14.4.0-develop.
|
|
41
|
-
"@progress/kendo-angular-popup": "14.4.0-develop.
|
|
42
|
-
"@progress/kendo-angular-navigation": "14.4.0-develop.
|
|
37
|
+
"@progress/kendo-angular-common": "14.4.0-develop.6",
|
|
38
|
+
"@progress/kendo-angular-intl": "14.4.0-develop.6",
|
|
39
|
+
"@progress/kendo-angular-l10n": "14.4.0-develop.6",
|
|
40
|
+
"@progress/kendo-angular-icons": "14.4.0-develop.6",
|
|
41
|
+
"@progress/kendo-angular-popup": "14.4.0-develop.6",
|
|
42
|
+
"@progress/kendo-angular-navigation": "14.4.0-develop.6",
|
|
43
43
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
44
|
-
"@progress/kendo-angular-buttons": "14.4.0-develop.
|
|
45
|
-
"@progress/kendo-angular-inputs": "14.4.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "14.4.0-develop.
|
|
44
|
+
"@progress/kendo-angular-buttons": "14.4.0-develop.6",
|
|
45
|
+
"@progress/kendo-angular-inputs": "14.4.0-develop.6",
|
|
46
|
+
"@progress/kendo-angular-label": "14.4.0-develop.6"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"tslib": "^2.3.1",
|
|
50
|
-
"@progress/kendo-angular-schematics": "14.4.0-develop.
|
|
50
|
+
"@progress/kendo-angular-schematics": "14.4.0-develop.6",
|
|
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.1"
|
|
@@ -53,6 +53,7 @@ export declare class TimePickerComponent implements ControlValueAccessor, OnInit
|
|
|
53
53
|
* Sets or gets the `disabled` property of the TimePicker and
|
|
54
54
|
* determines whether the component is active
|
|
55
55
|
* ([see example]({% slug disabled_timepicker %})).
|
|
56
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_timepicker#toc-managing-the-timepicker-disabled-state-in-reactive-forms).
|
|
56
57
|
*/
|
|
57
58
|
disabled: boolean;
|
|
58
59
|
/**
|