@progress/kendo-angular-dateinputs 22.1.0-develop.9 → 23.0.0-develop.10
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 +25 -25
- package/calendar/localization/calendar-custom-messages.component.d.ts +1 -1
- package/calendar/localization/multiview-calendar-custom-messages.component.d.ts +1 -1
- package/calendar/multiview-calendar.component.d.ts +18 -18
- package/calendar/templates/cell-template.directive.d.ts +2 -2
- package/calendar/templates/century-cell-template.directive.d.ts +1 -1
- package/calendar/templates/decade-cell-template.directive.d.ts +1 -1
- package/calendar/templates/footer-template.directive.d.ts +1 -1
- package/calendar/templates/header-template.directive.d.ts +1 -1
- package/calendar/templates/header-title-template.directive.d.ts +1 -1
- package/calendar/templates/month-cell-template.directive.d.ts +1 -1
- package/calendar/templates/navigation-item-template.directive.d.ts +1 -1
- package/calendar/templates/weeknumber-cell-template.directive.d.ts +1 -1
- package/calendar/templates/year-cell-template.directive.d.ts +1 -1
- package/common/models/fillmode.d.ts +1 -2
- package/common/models/size.d.ts +1 -2
- package/dateinput/dateinput.component.d.ts +19 -23
- package/dateinput/localization/dateinput-custom-messages.component.d.ts +1 -1
- package/dateinput/models/format-settings.model.d.ts +1 -1
- package/datepicker/datepicker.component.d.ts +32 -35
- package/datepicker/localization/datepicker-custom-messages.component.d.ts +1 -1
- package/daterange/date-range-end-input.directive.d.ts +1 -1
- package/daterange/date-range-popup.component.d.ts +24 -24
- package/daterange/date-range-selection.directive.d.ts +4 -4
- package/daterange/date-range-start-input.directive.d.ts +1 -1
- package/daterange/date-range.component.d.ts +1 -1
- package/daterange/localization/daterange-popup-custom-messages.component.d.ts +1 -1
- package/datetimepicker/datetimepicker.component.d.ts +32 -33
- package/datetimepicker/localization/datetimepicker-custom-messages.component.d.ts +1 -1
- package/datetimepicker/models/active-tab.type.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-dateinputs.mjs +342 -411
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
- package/timepicker/localization/timepicker-custom-messages.component.d.ts +1 -1
- package/timepicker/timepicker.component.d.ts +22 -25
- package/util.d.ts +0 -12
|
@@ -48,7 +48,7 @@ export declare const CALENDAR_RANGE_VALIDATORS: any;
|
|
|
48
48
|
*/
|
|
49
49
|
export declare const KENDO_INPUT_PROVIDER: any;
|
|
50
50
|
/**
|
|
51
|
-
* Represents the [Kendo UI Calendar component for Angular](
|
|
51
|
+
* Represents the [Kendo UI Calendar component for Angular](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar).
|
|
52
52
|
* @example
|
|
53
53
|
* ```html
|
|
54
54
|
* <kendo-calendar></kendo-calendar>
|
|
@@ -72,7 +72,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
72
72
|
private selectionService;
|
|
73
73
|
private pickerService?;
|
|
74
74
|
/**
|
|
75
|
-
* Shows days that fall outside the current month and the default values per Calendar type are false for infinite and true for classic ([see example](
|
|
75
|
+
* Shows days that fall outside the current month and the default values per Calendar type are false for infinite and true for classic ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-options#displaying-other-month-days)).
|
|
76
76
|
*/
|
|
77
77
|
set showOtherMonthDays(_showOtherMonthDays: boolean);
|
|
78
78
|
get showOtherMonthDays(): boolean;
|
|
@@ -87,7 +87,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
87
87
|
get popupId(): string;
|
|
88
88
|
/**
|
|
89
89
|
* Specifies the focused date of the Calendar
|
|
90
|
-
* ([see example](
|
|
90
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/dates#focused-dates)).
|
|
91
91
|
*
|
|
92
92
|
* If the Calendar is outside the `min` or `max` range, the component normalizes the defined `focusedDate`.
|
|
93
93
|
*/
|
|
@@ -99,7 +99,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
99
99
|
get headerId(): string;
|
|
100
100
|
/**
|
|
101
101
|
* Specifies the minimum allowed date value
|
|
102
|
-
* ([see example](
|
|
102
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/date-ranges)).
|
|
103
103
|
*
|
|
104
104
|
* @default 1900-1-1
|
|
105
105
|
*/
|
|
@@ -107,7 +107,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
107
107
|
get min(): Date;
|
|
108
108
|
/**
|
|
109
109
|
* Specifies the maximum allowed date value
|
|
110
|
-
* ([see example](
|
|
110
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/date-ranges)).
|
|
111
111
|
*
|
|
112
112
|
* @default 2099-12-31
|
|
113
113
|
*/
|
|
@@ -133,7 +133,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
133
133
|
footer: boolean;
|
|
134
134
|
/**
|
|
135
135
|
* Sets the Calendar selection mode
|
|
136
|
-
* ([see example](
|
|
136
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/selection-modes)).
|
|
137
137
|
* @default 'single'
|
|
138
138
|
*/
|
|
139
139
|
set selection(_selection: CalendarSelection);
|
|
@@ -156,8 +156,8 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
156
156
|
/**
|
|
157
157
|
* Sets or gets the `disabled` property of the Calendar and
|
|
158
158
|
* determines whether the component is active
|
|
159
|
-
* ([see example](
|
|
160
|
-
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
159
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/disabled-state)).
|
|
160
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/forms#managing-the-calendar-disabled-state-in-reactive-forms).
|
|
161
161
|
*/
|
|
162
162
|
disabled: boolean;
|
|
163
163
|
/**
|
|
@@ -175,21 +175,21 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
175
175
|
get tabIndex(): number;
|
|
176
176
|
/**
|
|
177
177
|
* Specifies the dates of the Calendar that will be disabled
|
|
178
|
-
* ([see example](
|
|
178
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/disabled-dates)).
|
|
179
179
|
*/
|
|
180
180
|
set disabledDates(value: ((date: Date) => boolean) | Date[] | Day[]);
|
|
181
181
|
get disabledDates(): ((date: Date) => boolean) | Date[] | Day[];
|
|
182
182
|
/**
|
|
183
183
|
* Determines whether the navigation side-bar will be displayed
|
|
184
|
-
* ([see example](
|
|
185
|
-
* Applies to the [`infinite`](
|
|
184
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/sidebar)).
|
|
185
|
+
* Applies to the [`infinite`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/calendarcomponent#type) Calendar only.
|
|
186
186
|
*
|
|
187
187
|
* @default true
|
|
188
188
|
*/
|
|
189
189
|
navigation: boolean;
|
|
190
190
|
/**
|
|
191
191
|
* Defines the active view that the Calendar initially renders
|
|
192
|
-
* ([see example](
|
|
192
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-options)).
|
|
193
193
|
* You have to set `activeView` within the `topView`-`bottomView` range.
|
|
194
194
|
*
|
|
195
195
|
* @default 'month'
|
|
@@ -197,14 +197,14 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
197
197
|
activeView: CalendarView;
|
|
198
198
|
/**
|
|
199
199
|
* Defines the bottommost view to which the user can navigate
|
|
200
|
-
* ([see example](
|
|
200
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-depth)).
|
|
201
201
|
*
|
|
202
202
|
* @default 'month'
|
|
203
203
|
*/
|
|
204
204
|
bottomView: CalendarView;
|
|
205
205
|
/**
|
|
206
206
|
* Defines the topmost view to which the user can navigate
|
|
207
|
-
* ([see example](
|
|
207
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-depth)).
|
|
208
208
|
*
|
|
209
209
|
* @default 'century'
|
|
210
210
|
*/
|
|
@@ -218,7 +218,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
218
218
|
get type(): CalendarType;
|
|
219
219
|
/**
|
|
220
220
|
* Determines whether to enable animation when navigating to previous/next view.
|
|
221
|
-
* Applies to the [`classic`](
|
|
221
|
+
* Applies to the [`classic`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/calendarcomponent#type) Calendar only.
|
|
222
222
|
*
|
|
223
223
|
* This feature uses the [Web Animations API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API). In order to run the animation in browsers that do not support it, you need the `web-animations-js` polyfill.
|
|
224
224
|
*
|
|
@@ -227,7 +227,7 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
227
227
|
animateNavigation: boolean;
|
|
228
228
|
/**
|
|
229
229
|
* Determines whether to display a week number column in the `month` view
|
|
230
|
-
* ([see example](
|
|
230
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/week-num-column)).
|
|
231
231
|
*
|
|
232
232
|
* @default false
|
|
233
233
|
*/
|
|
@@ -238,12 +238,12 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
238
238
|
closePopup: EventEmitter<any>;
|
|
239
239
|
/**
|
|
240
240
|
* Fires when the active view is changed
|
|
241
|
-
* ([see example](
|
|
241
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/events)).
|
|
242
242
|
*/
|
|
243
243
|
activeViewChange: EventEmitter<CalendarView>;
|
|
244
244
|
/**
|
|
245
245
|
* Fires when navigating in the currently active view
|
|
246
|
-
* ([see example](
|
|
246
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/events)).
|
|
247
247
|
*/
|
|
248
248
|
navigate: EventEmitter<{
|
|
249
249
|
activeView: CalendarView;
|
|
@@ -251,23 +251,23 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
251
251
|
}>;
|
|
252
252
|
/**
|
|
253
253
|
* Fires when the active view date is changed
|
|
254
|
-
* ([see example](
|
|
255
|
-
* Applies to the [`infinite`](
|
|
254
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/events)).
|
|
255
|
+
* Applies to the [`infinite`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/calendarcomponent#type) Calendar only.
|
|
256
256
|
*/
|
|
257
257
|
activeViewDateChange: EventEmitter<Date>;
|
|
258
258
|
/**
|
|
259
259
|
* Fires each time the Calendar gets blurred
|
|
260
|
-
* ([see example](
|
|
260
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/events)).
|
|
261
261
|
*/
|
|
262
262
|
onBlur: EventEmitter<any>;
|
|
263
263
|
/**
|
|
264
264
|
* Fires each time the Calendar gets focused
|
|
265
|
-
* ([see example](
|
|
265
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/events)).
|
|
266
266
|
*/
|
|
267
267
|
onFocus: EventEmitter<any>;
|
|
268
268
|
/**
|
|
269
269
|
* Fires when the value is changed
|
|
270
|
-
* ([see example](
|
|
270
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/events)).
|
|
271
271
|
*/
|
|
272
272
|
valueChange: EventEmitter<any>;
|
|
273
273
|
/**
|
|
@@ -427,10 +427,10 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
|
|
|
427
427
|
*
|
|
428
428
|
* The possible values are:
|
|
429
429
|
* * `small`
|
|
430
|
-
* * `medium`
|
|
430
|
+
* * `medium`
|
|
431
431
|
* * `large`
|
|
432
|
-
* * `none`
|
|
433
432
|
*
|
|
433
|
+
* @default undefined
|
|
434
434
|
*/
|
|
435
435
|
set size(size: DateInputSize);
|
|
436
436
|
get size(): DateInputSize;
|
|
@@ -14,7 +14,7 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
* </kendo-calendar-messages>
|
|
15
15
|
* ```
|
|
16
16
|
*
|
|
17
|
-
* For more information, see the [globalization documentation](
|
|
17
|
+
* For more information, see the [globalization documentation](https://www.telerik.com/kendo-angular-ui/components/dateinputs/globalization#custom-messages).
|
|
18
18
|
*/
|
|
19
19
|
export declare class CalendarCustomMessagesComponent extends CalendarMessages {
|
|
20
20
|
protected service: LocalizationService;
|
|
@@ -14,7 +14,7 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
* </kendo-multiviewcalendar-messages>
|
|
15
15
|
* ```
|
|
16
16
|
*
|
|
17
|
-
* For more information, see the [globalization documentation](
|
|
17
|
+
* For more information, see the [globalization documentation](https://www.telerik.com/kendo-angular-ui/components/dateinputs/globalization#custom-messages).
|
|
18
18
|
*/
|
|
19
19
|
export declare class MultiViewCalendarCustomMessagesComponent extends Messages {
|
|
20
20
|
protected service: LocalizationService;
|
|
@@ -57,7 +57,7 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
57
57
|
private disabledDatesService;
|
|
58
58
|
private selectionService;
|
|
59
59
|
/**
|
|
60
|
-
* Shows days that fall outside the current month ([see example](
|
|
60
|
+
* Shows days that fall outside the current month ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-options#displaying-other-month-days)).
|
|
61
61
|
*
|
|
62
62
|
* @default true
|
|
63
63
|
*/
|
|
@@ -76,10 +76,10 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
76
76
|
*
|
|
77
77
|
* The possible values are:
|
|
78
78
|
* * `small`
|
|
79
|
-
* * `medium`
|
|
79
|
+
* * `medium`
|
|
80
80
|
* * `large`
|
|
81
|
-
* * `none`
|
|
82
81
|
*
|
|
82
|
+
* @default undefined
|
|
83
83
|
*/
|
|
84
84
|
set size(size: DateInputSize);
|
|
85
85
|
get size(): DateInputSize;
|
|
@@ -90,7 +90,7 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
90
90
|
id: string;
|
|
91
91
|
/**
|
|
92
92
|
* Specifies the focused date of the Calendar
|
|
93
|
-
* ([see example](
|
|
93
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/dates#focused-dates)).
|
|
94
94
|
*
|
|
95
95
|
* If the Calendar is outside the `min` or `max` range, the component normalizes the defined `focusedDate`.
|
|
96
96
|
*/
|
|
@@ -137,14 +137,14 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
137
137
|
/**
|
|
138
138
|
* Determines whether the built-in validator for disabled
|
|
139
139
|
* date ranges is enforced when validating a form
|
|
140
|
-
* ([see example](
|
|
140
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/disabled-dates)).
|
|
141
141
|
*
|
|
142
142
|
* @default false
|
|
143
143
|
*/
|
|
144
144
|
disabledDatesRangeValidation: boolean;
|
|
145
145
|
/**
|
|
146
146
|
* Sets the Calendar selection mode
|
|
147
|
-
* ([see example](
|
|
147
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/selection-modes)).
|
|
148
148
|
* @default 'single'
|
|
149
149
|
*/
|
|
150
150
|
set selection(_selection: CalendarSelection);
|
|
@@ -168,8 +168,8 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
168
168
|
get value(): Date | Date[] | SelectionRange | null;
|
|
169
169
|
/**
|
|
170
170
|
* Specifies whether the component is disabled
|
|
171
|
-
* ([see example](
|
|
172
|
-
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
171
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/disabled-state)).
|
|
172
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/forms#managing-the-multiviewcalendar-disabled-state-in-reactive-forms).
|
|
173
173
|
*
|
|
174
174
|
* @default false
|
|
175
175
|
*/
|
|
@@ -199,7 +199,7 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
199
199
|
isActive: boolean;
|
|
200
200
|
/**
|
|
201
201
|
* Specifies the dates of the MultiViewCalendar that will be disabled
|
|
202
|
-
* ([see example](
|
|
202
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/disabled-dates)).
|
|
203
203
|
*/
|
|
204
204
|
set disabledDates(value: ((date: Date) => boolean) | Date[] | Day[]);
|
|
205
205
|
/**
|
|
@@ -239,7 +239,7 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
239
239
|
animateNavigation: boolean;
|
|
240
240
|
/**
|
|
241
241
|
* Specifies whether to display a week number column in the `month` view
|
|
242
|
-
* ([see example](
|
|
242
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/week-num-column)).
|
|
243
243
|
*
|
|
244
244
|
* @default false
|
|
245
245
|
*/
|
|
@@ -255,7 +255,7 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
255
255
|
/**
|
|
256
256
|
* Specifies the `selectionRange` property and
|
|
257
257
|
* defines the selection range of the component
|
|
258
|
-
* ([see example](
|
|
258
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/selection-modes#range-selection)).
|
|
259
259
|
* > We recommend using the `value` property as it now supports `range` selection.
|
|
260
260
|
*/
|
|
261
261
|
set selectionRange(range: SelectionRange);
|
|
@@ -277,12 +277,12 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
277
277
|
orientation: CalendarOrientation;
|
|
278
278
|
/**
|
|
279
279
|
* Fires when the active view is changed
|
|
280
|
-
* ([see example](
|
|
280
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/events)).
|
|
281
281
|
*/
|
|
282
282
|
activeViewChange: EventEmitter<CalendarView>;
|
|
283
283
|
/**
|
|
284
284
|
* Fires when navigating in the currently active view
|
|
285
|
-
* ([see example](
|
|
285
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/events)).
|
|
286
286
|
*/
|
|
287
287
|
navigate: EventEmitter<{
|
|
288
288
|
activeView: CalendarView;
|
|
@@ -290,17 +290,17 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
290
290
|
}>;
|
|
291
291
|
/**
|
|
292
292
|
* Fires when a view cell is entered
|
|
293
|
-
* ([see example](
|
|
293
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/events)).
|
|
294
294
|
*/
|
|
295
295
|
cellEnter: EventEmitter<Date>;
|
|
296
296
|
/**
|
|
297
297
|
* Fires when a view cell is leaved
|
|
298
|
-
* ([see example](
|
|
298
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/events)).
|
|
299
299
|
*/
|
|
300
300
|
cellLeave: EventEmitter<Date>;
|
|
301
301
|
/**
|
|
302
302
|
* Fires when the value is changed
|
|
303
|
-
* ([see example](
|
|
303
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/events)).
|
|
304
304
|
*/
|
|
305
305
|
valueChange: EventEmitter<any>;
|
|
306
306
|
/**
|
|
@@ -310,12 +310,12 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
|
|
|
310
310
|
rangeSelectionChange: EventEmitter<any>;
|
|
311
311
|
/**
|
|
312
312
|
* Fires each time the MultiViewCalendar gets blurred
|
|
313
|
-
* ([see example](
|
|
313
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/events)).
|
|
314
314
|
*/
|
|
315
315
|
blurEvent: EventEmitter<any>;
|
|
316
316
|
/**
|
|
317
317
|
* Fires each time the MultiViewCalendar gets focused
|
|
318
|
-
* ([see example](
|
|
318
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/events)).
|
|
319
319
|
*/
|
|
320
320
|
focusEvent: EventEmitter<any>;
|
|
321
321
|
/**
|
|
@@ -14,10 +14,10 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
* - `date` - The Date object representing the current cell's date
|
|
15
15
|
* - `cellContext` - Additional context information about the current cell
|
|
16
16
|
*
|
|
17
|
-
* For more examples, refer to the article on [templates](
|
|
17
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
18
18
|
*
|
|
19
19
|
* `kendoCalendarCellTemplate` is equivalent to
|
|
20
|
-
* [`kendoCalendarMonthCellTemplate`](
|
|
20
|
+
* [`kendoCalendarMonthCellTemplate`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/monthcelltemplatedirective).
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
23
|
* ```html
|
|
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* - `date` - The Date object representing the current cell's date
|
|
16
16
|
* - `cellContext` - Additional context information about the current century cell
|
|
17
17
|
*
|
|
18
|
-
* For more examples, refer to the article on [templates](
|
|
18
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* - `date` - The Date object representing the current cell's date
|
|
16
16
|
* - `cellContext` - Additional context information about the current decade cell
|
|
17
17
|
*
|
|
18
|
-
* For more examples, refer to the article on [templates](
|
|
18
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -14,7 +14,7 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
* - `date` - The Date object representing the current calendar context
|
|
15
15
|
* - `activeView` - The current active view of the Calendar
|
|
16
16
|
*
|
|
17
|
-
* For more examples, refer to the article on [templates](
|
|
17
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
18
18
|
*
|
|
19
19
|
* @example
|
|
20
20
|
* ```html
|
|
@@ -16,7 +16,7 @@ import * as i0 from "@angular/core";
|
|
|
16
16
|
* - `date` - The Date object representing the current header context
|
|
17
17
|
* - `activeView` - The current active view of the Calendar
|
|
18
18
|
*
|
|
19
|
-
* For more examples, refer to the article on [templates](
|
|
19
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
20
20
|
*
|
|
21
21
|
* @example
|
|
22
22
|
* ```html
|
|
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* - `date` - The Date object representing the current header context
|
|
16
16
|
* - `activeView` - The current active view of the Calendar
|
|
17
17
|
*
|
|
18
|
-
* For more examples, refer to the article on [templates](
|
|
18
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* - `date` - The Date object representing the current cell's date
|
|
16
16
|
* - `cellContext` - Additional context information about the current month cell
|
|
17
17
|
*
|
|
18
|
-
* For more examples, refer to the article on [templates](
|
|
18
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* - `date` - The Date object representing the current navigation context
|
|
16
16
|
* - `activeView` - The current active view of the Calendar
|
|
17
17
|
*
|
|
18
|
-
* For more examples, refer to the article on [templates](
|
|
18
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* - `date` - The Date object representing the current week's date
|
|
16
16
|
* - `cellContext` - Additional context information about the current week number cell
|
|
17
17
|
*
|
|
18
|
-
* For more examples, refer to the article on [templates](
|
|
18
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* - `date` - The Date object representing the current cell's date
|
|
16
16
|
* - `cellContext` - Additional context information about the current year cell
|
|
17
17
|
*
|
|
18
|
-
* For more examples, refer to the article on [templates](
|
|
18
|
+
* For more examples, refer to the article on [templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/templates).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
package/common/models/size.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export declare class DateInputIntl {
|
|
|
42
42
|
constructor(service: IntlService);
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
|
-
* Represents the [Kendo UI DateInput component for Angular](
|
|
45
|
+
* Represents the [Kendo UI DateInput component for Angular](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput).
|
|
46
46
|
*
|
|
47
47
|
* ```html
|
|
48
48
|
* <kendo-dateinput/>
|
|
@@ -89,15 +89,15 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
89
89
|
clearButton: boolean;
|
|
90
90
|
/**
|
|
91
91
|
* Specifies whether the component is disabled
|
|
92
|
-
* ([see example](
|
|
93
|
-
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
92
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/disabled-state)).
|
|
93
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/forms#managing-the-dateinput-disabled-state-in-reactive-forms).
|
|
94
94
|
*
|
|
95
95
|
* @default false
|
|
96
96
|
*/
|
|
97
97
|
disabled: boolean;
|
|
98
98
|
/**
|
|
99
99
|
* Specifies the read-only state of the DateInput
|
|
100
|
-
* ([see example](
|
|
100
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/readonly-state)).
|
|
101
101
|
*
|
|
102
102
|
* @default false
|
|
103
103
|
*/
|
|
@@ -133,7 +133,7 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
133
133
|
isRequired: boolean;
|
|
134
134
|
/**
|
|
135
135
|
* Specifies the date format that is used to display the input value
|
|
136
|
-
* ([see example](
|
|
136
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/formats)).
|
|
137
137
|
*
|
|
138
138
|
* You can provide a string if a single format is going to be used regardless whether the input is focused or blurred.
|
|
139
139
|
* Alternatively, you can provide a FormatSettings object to display different formats when the component is focused or blurred by specifying inputFormat and displayFormat values.
|
|
@@ -142,32 +142,32 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
142
142
|
/**
|
|
143
143
|
* Defines the descriptions of the format sections in the input field.
|
|
144
144
|
* For more information, refer to the article on
|
|
145
|
-
* [placeholders](
|
|
145
|
+
* [placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/placeholders).
|
|
146
146
|
*/
|
|
147
147
|
set formatPlaceholder(format: DateInputFormatPlaceholder);
|
|
148
148
|
get formatPlaceholder(): DateInputFormatPlaceholder;
|
|
149
149
|
/**
|
|
150
150
|
* Specifies the hint the DateInput displays when its value is `null`.
|
|
151
151
|
* For more information, refer to the article on
|
|
152
|
-
* [placeholders](
|
|
152
|
+
* [placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/placeholders).
|
|
153
153
|
*/
|
|
154
154
|
placeholder: string;
|
|
155
155
|
/**
|
|
156
156
|
* Configures the incremental steps of the DateInput.
|
|
157
157
|
* For more information, refer to the article on
|
|
158
|
-
* [incremental steps](
|
|
158
|
+
* [incremental steps](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/incremental-steps).
|
|
159
159
|
*/
|
|
160
160
|
steps: DateInputIncrementalSteps;
|
|
161
161
|
/**
|
|
162
162
|
* Specifies the biggest date that is valid
|
|
163
|
-
* ([see example](
|
|
163
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/date-ranges)).
|
|
164
164
|
*
|
|
165
165
|
* @default 2099-12-31
|
|
166
166
|
*/
|
|
167
167
|
max: Date;
|
|
168
168
|
/**
|
|
169
169
|
* Specifies the smallest date that is valid
|
|
170
|
-
* ([see example](
|
|
170
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/date-ranges)).
|
|
171
171
|
*
|
|
172
172
|
* @default 1900-1-1
|
|
173
173
|
*/
|
|
@@ -219,7 +219,7 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
219
219
|
incompleteDateValidation: boolean;
|
|
220
220
|
/**
|
|
221
221
|
* The maximum year to assume to be from the current century when typing two-digit year value
|
|
222
|
-
* ([see example](
|
|
222
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/formats#two-digit-year-format)).
|
|
223
223
|
*
|
|
224
224
|
* The default value is 68, indicating that typing any value less than 69
|
|
225
225
|
* will be assumed to be 20xx, while 69 and larger will be assumed to be 19xx.
|
|
@@ -242,7 +242,7 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
242
242
|
/**
|
|
243
243
|
* Specifies whether the **Up** and **Down** spin buttons will be rendered.
|
|
244
244
|
* For more information, refer to the article on
|
|
245
|
-
* [spinner buttons](
|
|
245
|
+
* [spinner buttons](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/spin-buttons).
|
|
246
246
|
*
|
|
247
247
|
* @default false
|
|
248
248
|
*/
|
|
@@ -256,22 +256,18 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
256
256
|
*/
|
|
257
257
|
hasPopup: string;
|
|
258
258
|
/**
|
|
259
|
-
* Specifies the size of the component.
|
|
260
|
-
*
|
|
261
|
-
* @default medium
|
|
259
|
+
* Specifies the size of the component. The default value is set by the Kendo theme.
|
|
262
260
|
*
|
|
263
261
|
*/
|
|
264
262
|
set size(size: DateInputSize);
|
|
265
263
|
get size(): DateInputSize;
|
|
266
264
|
/**
|
|
267
|
-
* Specifies the border radius of the component.
|
|
268
|
-
* @default 'medium'
|
|
265
|
+
* Specifies the border radius of the component. The default value is set by the Kendo theme.
|
|
269
266
|
*/
|
|
270
267
|
set rounded(rounded: DateInputRounded);
|
|
271
268
|
get rounded(): DateInputRounded;
|
|
272
269
|
/**
|
|
273
|
-
* Specifies the fillMode of the component.
|
|
274
|
-
* @default 'solid'
|
|
270
|
+
* Specifies the fillMode of the component. The default value is set by the Kendo theme.
|
|
275
271
|
*/
|
|
276
272
|
set fillMode(fillMode: DateInputFillMode);
|
|
277
273
|
get fillMode(): DateInputFillMode;
|
|
@@ -286,23 +282,23 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
286
282
|
};
|
|
287
283
|
/**
|
|
288
284
|
* Fires each time the user selects a new value
|
|
289
|
-
* ([see example](
|
|
285
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/events)).
|
|
290
286
|
*/
|
|
291
287
|
valueChange: EventEmitter<Date>;
|
|
292
288
|
/**
|
|
293
289
|
* @hidden
|
|
294
290
|
* Fires each time the user selects a new value
|
|
295
|
-
* ([see example](
|
|
291
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/events)).
|
|
296
292
|
*/
|
|
297
293
|
valueUpdate: EventEmitter<Date>;
|
|
298
294
|
/**
|
|
299
295
|
* Fires each time the user focuses the input element
|
|
300
|
-
* ([see example](
|
|
296
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/events)).
|
|
301
297
|
*/
|
|
302
298
|
onFocus: EventEmitter<null>;
|
|
303
299
|
/**
|
|
304
300
|
* Fires each time the input element gets blurred
|
|
305
|
-
* ([see example](
|
|
301
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/events)).
|
|
306
302
|
*/
|
|
307
303
|
onBlur: EventEmitter<null>;
|
|
308
304
|
/**
|
|
@@ -7,7 +7,7 @@ import { DateInputMessages } from './messages';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Represents the Kendo UI DateInput custom messages component.
|
|
10
|
-
* Overrides the default component messages with custom messages ([see example](
|
|
10
|
+
* Overrides the default component messages with custom messages ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/globalization#custom-messages)).
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
* ```ts
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { DateFormatOptions } from "@progress/kendo-intl";
|
|
6
6
|
/**
|
|
7
7
|
* Represents the Kendo UI DateInput format settings interface.
|
|
8
|
-
* Specifies the formats used by the `DateInput` mask when the input is focused or blurred ([see example](
|
|
8
|
+
* Specifies the formats used by the `DateInput` mask when the input is focused or blurred ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/formats#display-and-input-formats)).
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* ```html
|