@progress/kendo-angular-dateinputs 25.1.0-develop.15 → 25.1.0-develop.17

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/index.d.ts CHANGED
@@ -1983,7 +1983,8 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
1983
1983
  * Clicking this button resets the value of the component to `null` and triggers the `valueChange` event.
1984
1984
  * @default false
1985
1985
  */
1986
- clearButton: boolean;
1986
+ set clearButton(value: boolean);
1987
+ get clearButton(): boolean;
1987
1988
  /**
1988
1989
  * Specifies whether the component is disabled
1989
1990
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/disabled-state)).
@@ -1991,34 +1992,40 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
1991
1992
  *
1992
1993
  * @default false
1993
1994
  */
1994
- disabled: boolean;
1995
+ set disabled(value: boolean);
1996
+ get disabled(): boolean;
1995
1997
  /**
1996
1998
  * Specifies the read-only state of the DateInput
1997
1999
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/readonly-state)).
1998
2000
  *
1999
2001
  * @default false
2000
2002
  */
2001
- readonly: boolean;
2003
+ set readonly(value: boolean);
2004
+ get readonly(): boolean;
2002
2005
  /**
2003
2006
  * Specifies the title of the input element of the DateInput.
2004
2007
  *
2005
2008
  * @default ""
2006
2009
  */
2007
- title: string;
2010
+ set title(value: string);
2011
+ get title(): string;
2008
2012
  /**
2009
2013
  * Specifies the `tabIndex` property of the DateInput.
2010
2014
  *
2011
2015
  * @default 0
2012
2016
  */
2013
- tabindex: number;
2017
+ set tabindex(value: number);
2018
+ get tabindex(): number;
2014
2019
  /**
2015
2020
  * @hidden
2016
2021
  */
2017
- role: string;
2022
+ set role(value: string);
2023
+ get role(): string;
2018
2024
  /**
2019
2025
  * @hidden
2020
2026
  */
2021
- ariaReadOnly: boolean;
2027
+ set ariaReadOnly(value: boolean | null);
2028
+ get ariaReadOnly(): boolean | null;
2022
2029
  /**
2023
2030
  * @hidden
2024
2031
  */
@@ -2027,7 +2034,8 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
2027
2034
  /**
2028
2035
  * @hidden
2029
2036
  */
2030
- isRequired: boolean;
2037
+ set isRequired(value: boolean);
2038
+ get isRequired(): boolean;
2031
2039
  /**
2032
2040
  * Specifies the date format that is used to display the input value
2033
2041
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/formats)).
@@ -2035,7 +2043,8 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
2035
2043
  * You can provide a string if a single format is going to be used regardless whether the input is focused or blurred.
2036
2044
  * Alternatively, you can provide a FormatSettings object to display different formats when the component is focused or blurred by specifying inputFormat and displayFormat values.
2037
2045
  */
2038
- format: string | FormatSettings;
2046
+ set format(value: string | FormatSettings);
2047
+ get format(): string | FormatSettings;
2039
2048
  /**
2040
2049
  * Defines the descriptions of the format sections in the input field.
2041
2050
  * For more information, refer to the article on
@@ -2048,72 +2057,83 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
2048
2057
  * For more information, refer to the article on
2049
2058
  * [placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/placeholders).
2050
2059
  */
2051
- placeholder: string;
2060
+ set placeholder(value: string);
2061
+ get placeholder(): string;
2052
2062
  /**
2053
2063
  * Configures the incremental steps of the DateInput.
2054
2064
  * For more information, refer to the article on
2055
2065
  * [incremental steps](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/incremental-steps).
2056
2066
  */
2057
- steps: DateInputIncrementalSteps;
2067
+ set steps(value: DateInputIncrementalSteps);
2068
+ get steps(): DateInputIncrementalSteps;
2058
2069
  /**
2059
2070
  * Specifies the biggest date that is valid
2060
2071
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/date-ranges)).
2061
2072
  *
2062
2073
  * @default 2099-12-31
2063
2074
  */
2064
- max: Date;
2075
+ set max(value: Date);
2076
+ get max(): Date;
2065
2077
  /**
2066
2078
  * Specifies the smallest date that is valid
2067
2079
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/date-ranges)).
2068
2080
  *
2069
2081
  * @default 1900-1-1
2070
2082
  */
2071
- min: Date;
2083
+ set min(value: Date);
2084
+ get min(): Date;
2072
2085
  /**
2073
2086
  * Specifies whether to enforce the built-in min and max validators when validating a form.
2074
2087
  * Set to `true` to enable validation for the `min` and `max` values.
2075
2088
  *
2076
2089
  * @default true
2077
2090
  */
2078
- rangeValidation: boolean;
2091
+ set rangeValidation(value: boolean);
2092
+ get rangeValidation(): boolean;
2079
2093
  /**
2080
2094
  * Specifies if the component automatically corrects invalid date segments.
2081
2095
  * When set to `true`, the component fixes invalid segments as you type.
2082
2096
  *
2083
2097
  * @default true
2084
2098
  */
2085
- autoCorrectParts: boolean;
2099
+ set autoCorrectParts(value: boolean);
2100
+ get autoCorrectParts(): boolean;
2086
2101
  /**
2087
2102
  * Specifies if the component automatically moves to the next segment after you complete the current one.
2088
2103
  * When set to `true`, focus moves to the next segment as soon as you finish typing the current segment.
2089
2104
  *
2090
2105
  * @default true
2091
2106
  */
2092
- autoSwitchParts: boolean;
2107
+ set autoSwitchParts(value: boolean);
2108
+ get autoSwitchParts(): boolean;
2093
2109
  /**
2094
2110
  * Specifies custom keys that move focus to the next date format segment.
2095
2111
  * Provide an array of strings to define which keys trigger the focus change.
2096
2112
  */
2097
- autoSwitchKeys: string[];
2113
+ set autoSwitchKeys(value: string[]);
2114
+ get autoSwitchKeys(): string[];
2098
2115
  /**
2099
2116
  * Specifies if the component displays a blinking caret inside the DateInput when possible.
2100
2117
  * Set to `true` to show a blinking caret for better visual feedback.
2101
2118
  *
2102
2119
  * @default false
2103
2120
  */
2104
- allowCaretMode: boolean;
2121
+ set allowCaretMode(value: boolean);
2122
+ get allowCaretMode(): boolean;
2105
2123
  /**
2106
2124
  * Specifies whether to autofill the rest of the date to the current date when the component loses focus.
2107
2125
  *
2108
2126
  * @default false
2109
2127
  */
2110
- autoFill: boolean;
2128
+ set autoFill(value: boolean);
2129
+ get autoFill(): boolean;
2111
2130
  /**
2112
2131
  * Specifies whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
2113
2132
  *
2114
2133
  * @default false
2115
2134
  */
2116
- incompleteDateValidation: boolean;
2135
+ set incompleteDateValidation(value: boolean);
2136
+ get incompleteDateValidation(): boolean;
2117
2137
  /**
2118
2138
  * The maximum year to assume to be from the current century when typing two-digit year value
2119
2139
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/formats#two-digit-year-format)).
@@ -2122,13 +2142,15 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
2122
2142
  * will be assumed to be 20xx, while 69 and larger will be assumed to be 19xx.
2123
2143
  * @default 68
2124
2144
  */
2125
- twoDigitYearMax: number;
2145
+ set twoDigitYearMax(value: number);
2146
+ get twoDigitYearMax(): number;
2126
2147
  /**
2127
2148
  * Indicates whether the mouse scroll can be used to increase/decrease the time segments values.
2128
2149
  *
2129
2150
  * @default true
2130
2151
  */
2131
- enableMouseWheel: boolean;
2152
+ set enableMouseWheel(value: boolean);
2153
+ get enableMouseWheel(): boolean;
2132
2154
  /**
2133
2155
  * Specifies the value of the DateInput component.
2134
2156
  *
@@ -2143,15 +2165,18 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
2143
2165
  *
2144
2166
  * @default false
2145
2167
  */
2146
- spinners: boolean;
2168
+ set spinners(value: boolean);
2169
+ get spinners(): boolean;
2147
2170
  /**
2148
2171
  * @hidden
2149
2172
  */
2150
- isPopupOpen: boolean;
2173
+ set isPopupOpen(value: boolean);
2174
+ get isPopupOpen(): boolean;
2151
2175
  /**
2152
2176
  * @hidden
2153
2177
  */
2154
- hasPopup: string;
2178
+ set hasPopup(value: string);
2179
+ get hasPopup(): string;
2155
2180
  /**
2156
2181
  * @hidden
2157
2182
  */
@@ -2238,17 +2263,19 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
2238
2263
  intlService: DateInputIntl;
2239
2264
  };
2240
2265
  arrow: any;
2241
- arrowDirection: Arrow;
2242
- formatSections: {
2266
+ get arrowDirection(): Arrow;
2267
+ set arrowDirection(v: Arrow);
2268
+ get formatSections(): {
2243
2269
  [x: string]: boolean;
2244
2270
  };
2245
2271
  hasMousedown: boolean;
2246
2272
  focusedPriorToMousedown: boolean;
2247
- showClearButton: boolean;
2273
+ get showClearButton(): boolean;
2274
+ set showClearButton(value: boolean);
2248
2275
  /**
2249
2276
  * @hidden
2250
2277
  */
2251
- isDateIncomplete: boolean;
2278
+ get isDateIncomplete(): boolean;
2252
2279
  protected currentFormat: string;
2253
2280
  private spinup;
2254
2281
  private spindown;
@@ -2266,14 +2293,43 @@ declare class DateInputComponent implements OnInit, AfterViewInit, ControlValueA
2266
2293
  private onControlChange;
2267
2294
  private onControlTouched;
2268
2295
  private onValidatorChange;
2296
+ private _ariaInvalidState;
2269
2297
  private _size;
2270
2298
  private _rounded;
2271
2299
  private _fillMode;
2272
- private _ariaInvalidState;
2273
2300
  private control;
2274
2301
  private subs;
2275
2302
  private _inputAttributes;
2276
2303
  private parsedAttributes;
2304
+ private _clearButton;
2305
+ private _disabled;
2306
+ private _readonly;
2307
+ private _title;
2308
+ private _tabindex;
2309
+ private _role;
2310
+ private _ariaReadOnly;
2311
+ private _isRequired;
2312
+ private _format;
2313
+ private _placeholder;
2314
+ private _steps;
2315
+ private _max;
2316
+ private _min;
2317
+ private _rangeValidation;
2318
+ private _autoCorrectParts;
2319
+ private _autoSwitchParts;
2320
+ private _autoSwitchKeys;
2321
+ private _allowCaretMode;
2322
+ private _autoFill;
2323
+ private _incompleteDateValidation;
2324
+ private _twoDigitYearMax;
2325
+ private _enableMouseWheel;
2326
+ private _spinners;
2327
+ private _isPopupOpen;
2328
+ private _hasPopup;
2329
+ private _arrowDirection;
2330
+ private _showClearButton;
2331
+ private _formatSections;
2332
+ private _isDateIncomplete;
2277
2333
  private get defaultAttributes();
2278
2334
  private get mutableAttributes();
2279
2335
  constructor(cdr: ChangeDetectorRef, intl: IntlService, renderer: Renderer2, wrapper: ElementRef, ngZone: NgZone, injector: Injector, localization: LocalizationService, pickerService?: PickerService);
@@ -2764,11 +2820,11 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
2764
2820
  */
2765
2821
  set showOtherMonthDays(_showOtherMonthDays: boolean);
2766
2822
  get showOtherMonthDays(): boolean;
2767
- private _showOtherMonthDays;
2768
2823
  /**
2769
2824
  * @hidden
2770
2825
  */
2771
- id: string;
2826
+ set id(id: string);
2827
+ get id(): string;
2772
2828
  /**
2773
2829
  * @hidden
2774
2830
  */
@@ -2806,19 +2862,22 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
2806
2862
  *
2807
2863
  * @default false
2808
2864
  */
2809
- rangeValidation: boolean;
2865
+ set rangeValidation(value: boolean);
2866
+ get rangeValidation(): boolean;
2810
2867
  /**
2811
2868
  * Specifies the format of the displayed week day names.
2812
2869
  *
2813
2870
  * @default 'short'
2814
2871
  */
2815
- weekDaysFormat?: WeekDaysFormat;
2872
+ set weekDaysFormat(value: WeekDaysFormat);
2873
+ get weekDaysFormat(): WeekDaysFormat;
2816
2874
  /**
2817
2875
  * Toggles the visibility of the footer.
2818
2876
  *
2819
2877
  * @default false
2820
2878
  */
2821
- footer: boolean;
2879
+ set footer(value: boolean);
2880
+ get footer(): boolean;
2822
2881
  /**
2823
2882
  * Sets the Calendar selection mode
2824
2883
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/selection-modes)).
@@ -2826,14 +2885,14 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
2826
2885
  */
2827
2886
  set selection(_selection: CalendarSelection);
2828
2887
  get selection(): CalendarSelection;
2829
- private _selection;
2830
2888
  /**
2831
2889
  * Allows reverse selection when using `range` selection.
2832
2890
  * If `allowReverse` is set to `true`, the component skips the validation of whether the start date is after the end date.
2833
2891
  *
2834
2892
  * @default false
2835
2893
  */
2836
- allowReverse: boolean;
2894
+ set allowReverse(value: boolean);
2895
+ get allowReverse(): boolean;
2837
2896
  /**
2838
2897
  * Sets or gets the `value` property of the Calendar and defines the selected value of the component.
2839
2898
  *
@@ -2847,7 +2906,8 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
2847
2906
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/disabled-state)).
2848
2907
  * 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).
2849
2908
  */
2850
- disabled: boolean;
2909
+ set disabled(value: boolean);
2910
+ get disabled(): boolean;
2851
2911
  /**
2852
2912
  * Specifies the `tabindex` property of the Calendar. Based on the
2853
2913
  * [HTML `tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) behavior,
@@ -2855,7 +2915,8 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
2855
2915
  *
2856
2916
  * @default 0
2857
2917
  */
2858
- tabindex: number;
2918
+ set tabindex(value: number);
2919
+ get tabindex(): number;
2859
2920
  /**
2860
2921
  * @hidden
2861
2922
  */
@@ -2874,7 +2935,8 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
2874
2935
  *
2875
2936
  * @default true
2876
2937
  */
2877
- navigation: boolean;
2938
+ set navigation(value: boolean);
2939
+ get navigation(): boolean;
2878
2940
  /**
2879
2941
  * Defines the active view that the Calendar initially renders
2880
2942
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-options)).
@@ -2882,21 +2944,24 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
2882
2944
  *
2883
2945
  * @default 'month'
2884
2946
  */
2885
- activeView: CalendarView;
2947
+ set activeView(value: CalendarView);
2948
+ get activeView(): CalendarView;
2886
2949
  /**
2887
2950
  * Defines the bottommost view to which the user can navigate
2888
2951
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-depth)).
2889
2952
  *
2890
2953
  * @default 'month'
2891
2954
  */
2892
- bottomView: CalendarView;
2955
+ set bottomView(value: CalendarView);
2956
+ get bottomView(): CalendarView;
2893
2957
  /**
2894
2958
  * Defines the topmost view to which the user can navigate
2895
2959
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-depth)).
2896
2960
  *
2897
2961
  * @default 'century'
2898
2962
  */
2899
- topView: CalendarView;
2963
+ set topView(value: CalendarView);
2964
+ get topView(): CalendarView;
2900
2965
  /**
2901
2966
  * Specifies the Calendar type.
2902
2967
  *
@@ -2912,14 +2977,16 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
2912
2977
  *
2913
2978
  * @default false
2914
2979
  */
2915
- animateNavigation: boolean;
2980
+ set animateNavigation(value: boolean);
2981
+ get animateNavigation(): boolean;
2916
2982
  /**
2917
2983
  * Determines whether to display a week number column in the `month` view
2918
2984
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/week-num-column)).
2919
2985
  *
2920
2986
  * @default false
2921
2987
  */
2922
- weekNumber: boolean;
2988
+ set weekNumber(value: boolean);
2989
+ get weekNumber(): boolean;
2923
2990
  /**
2924
2991
  * @hidden
2925
2992
  */
@@ -3126,7 +3193,6 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
3126
3193
  */
3127
3194
  set size(size: DateInputSize);
3128
3195
  get size(): DateInputSize;
3129
- private _size;
3130
3196
  /**
3131
3197
  * Specifies which end of the defined selection range should be marked as active.
3132
3198
  * Value will be ignored if the selection range is undefined. If range selection is used then the default value is 'start'.
@@ -3135,20 +3201,23 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
3135
3201
  */
3136
3202
  set activeRangeEnd(_activeRangeEnd: SelectionRangeEnd);
3137
3203
  get activeRangeEnd(): SelectionRangeEnd;
3138
- private _activeRangeEnd;
3139
3204
  navigationView: NavigationComponent;
3140
3205
  monthView: ViewListComponent;
3141
3206
  multiViewCalendar: MultiViewCalendarComponent;
3142
- isActive: boolean;
3207
+ get isActive(): boolean;
3143
3208
  cellUID: string;
3144
- selectionRange: SelectionRange;
3145
- selectedDates: Date[];
3146
- rangePivot: Date;
3209
+ get selectionRange(): SelectionRange;
3210
+ get selectedDates(): Date[];
3211
+ get rangePivot(): Date;
3147
3212
  private _disabledDates;
3148
3213
  private _min;
3149
3214
  private _max;
3150
3215
  private _focusedDate;
3151
3216
  private _value;
3217
+ private _showOtherMonthDays;
3218
+ private _selection;
3219
+ private _size;
3220
+ private _activeRangeEnd;
3152
3221
  private onControlChange;
3153
3222
  private onControlTouched;
3154
3223
  private onValidatorChange;
@@ -3170,6 +3239,24 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
3170
3239
  private _headerTemplateRef;
3171
3240
  private _footerTemplateRef;
3172
3241
  private _navigationItemTemplateRef;
3242
+ private _id;
3243
+ private _rangeValidation;
3244
+ private _weekDaysFormat;
3245
+ private _footer;
3246
+ private _allowReverse;
3247
+ private _disabled;
3248
+ private _tabindex;
3249
+ private _navigation;
3250
+ private _activeView;
3251
+ private _bottomView;
3252
+ private _topView;
3253
+ private _animateNavigation;
3254
+ private _weekNumber;
3255
+ private _isActive;
3256
+ private _selectionRange;
3257
+ private _selectedDates;
3258
+ private _rangePivot;
3259
+ private activeViewDate;
3173
3260
  get activeViewEnum(): CalendarViewEnum;
3174
3261
  get bottomViewEnum(): CalendarViewEnum;
3175
3262
  get topViewEnum(): CalendarViewEnum;
@@ -3181,7 +3268,7 @@ declare class CalendarComponent implements ControlValueAccessor, OnChanges, DoCh
3181
3268
  private resolvedPromise;
3182
3269
  private destroyed;
3183
3270
  private localizationChangeSubscription;
3184
- private activeViewDate;
3271
+ private controlEventsSubscription;
3185
3272
  private currentlyFocusedElement;
3186
3273
  private canHover;
3187
3274
  constructor(bus: BusViewService, dom: CalendarDOMService, element: ElementRef, navigator: NavigationService, renderer: Renderer2, cdr: ChangeDetectorRef, ngZone: NgZone, injector: Injector, scrollSyncService: ScrollSyncService, disabledDatesService: DisabledDatesService, localization: LocalizationService, selectionService: SelectionService, pickerService?: PickerService);
@@ -3421,7 +3508,8 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3421
3508
  /**
3422
3509
  * @hidden
3423
3510
  */
3424
- focusableId: string;
3511
+ set focusableId(value: string);
3512
+ get focusableId(): string;
3425
3513
  /**
3426
3514
  * @hidden
3427
3515
  */
@@ -3435,7 +3523,8 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3435
3523
  * Click this button to reset the component value to `null` and trigger the `valueChange` event.
3436
3524
  * @default false
3437
3525
  */
3438
- clearButton: boolean;
3526
+ set clearButton(value: boolean);
3527
+ get clearButton(): boolean;
3439
3528
  /**
3440
3529
  * Specifies the HTML attributes of the inner focusable input element.
3441
3530
  * You cannot change attributes that are essential for certain component functionalities.
@@ -3443,7 +3532,10 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3443
3532
  * @remarks
3444
3533
  * This property is related to accessibility.
3445
3534
  */
3446
- inputAttributes: {
3535
+ set inputAttributes(value: {
3536
+ [key: string]: string;
3537
+ });
3538
+ get inputAttributes(): {
3447
3539
  [key: string]: string;
3448
3540
  };
3449
3541
  /**
@@ -3514,7 +3606,8 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3514
3606
  * Controls the visibility of the Calendar footer.
3515
3607
  * @default false
3516
3608
  */
3517
- footer: boolean;
3609
+ set footer(value: boolean);
3610
+ get footer(): boolean;
3518
3611
  /**
3519
3612
  * @hidden
3520
3613
  */
@@ -3527,34 +3620,40 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3527
3620
  * Specifies the format of the displayed Calendar week days' names.
3528
3621
  * @default 'short'
3529
3622
  */
3530
- weekDaysFormat?: WeekDaysFormat;
3623
+ set weekDaysFormat(value: WeekDaysFormat);
3624
+ get weekDaysFormat(): WeekDaysFormat;
3531
3625
  /**
3532
3626
  * Shows the days that fall outside the current month in the Calendar ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-options#displaying-other-month-days)).
3533
3627
  * The default value is `false` for infinite Calendar type and `true` for classic Calendar type.
3534
3628
  */
3535
- showOtherMonthDays: boolean;
3629
+ set showOtherMonthDays(value: boolean);
3630
+ get showOtherMonthDays(): boolean;
3536
3631
  /**
3537
3632
  * Specifies the active view that the Calendar initially renders ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-options#active-view)).
3538
3633
  *
3539
3634
  * You have to set `activeView` within the `topView`-`bottomView` range.
3540
3635
  * @default 'month'
3541
3636
  */
3542
- activeView: CalendarView;
3637
+ set activeView(value: CalendarView);
3638
+ get activeView(): CalendarView;
3543
3639
  /**
3544
3640
  * Specifies the bottommost Calendar view to which you can navigate ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/calendar-options#view-selection-depth)).
3545
3641
  * @default 'month'
3546
3642
  */
3547
- bottomView: CalendarView;
3643
+ set bottomView(value: CalendarView);
3644
+ get bottomView(): CalendarView;
3548
3645
  /**
3549
3646
  * Specifies the topmost Calendar view to which you can navigate ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/calendar-options#view-selection-depth)).
3550
3647
  * @default 'century'
3551
3648
  */
3552
- topView: CalendarView;
3649
+ set topView(value: CalendarView);
3650
+ get topView(): CalendarView;
3553
3651
  /**
3554
3652
  * Specifies the Calendar type.
3555
3653
  * @default 'infinite'
3556
3654
  */
3557
- calendarType: CalendarType;
3655
+ set calendarType(value: CalendarType);
3656
+ get calendarType(): CalendarType;
3558
3657
  /**
3559
3658
  * Determines whether to enable animation when navigating to previous/next Calendar view.
3560
3659
  * Applies to the [`classic`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/datepickercomponent#calendartype) Calendar only.
@@ -3563,18 +3662,21 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3563
3662
  *
3564
3663
  * @default false
3565
3664
  */
3566
- animateCalendarNavigation: boolean;
3665
+ set animateCalendarNavigation(value: boolean);
3666
+ get animateCalendarNavigation(): boolean;
3567
3667
  /**
3568
3668
  * Specifies or gets the `disabled` property of the DatePicker and determines whether the component is active ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/disabled-state)).
3569
3669
  * 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/datepicker/forms#managing-the-datepicker-disabled-state-in-reactive-forms).
3570
3670
  */
3571
- disabled: boolean;
3671
+ set disabled(value: boolean);
3672
+ get disabled(): boolean;
3572
3673
  /**
3573
3674
  * Specifies the read-only state of the DatePicker ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/readonly-state#read-only-datepicker)).
3574
3675
  *
3575
3676
  * @default false
3576
3677
  */
3577
- readonly: boolean;
3678
+ set readonly(value: boolean);
3679
+ get readonly(): boolean;
3578
3680
  /**
3579
3681
  * Sets the read-only state of the DatePicker input field
3580
3682
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/readonly-state#read-only-input)).
@@ -3582,7 +3684,8 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3582
3684
  * If you set the [`readonly`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/datepickercomponent#readonly) property value to `true`,
3583
3685
  * the input will be rendered in a read-only state regardless of the `readOnlyInput` value.
3584
3686
  */
3585
- readOnlyInput: boolean;
3687
+ set readOnlyInput(value: boolean);
3688
+ get readOnlyInput(): boolean;
3586
3689
  /**
3587
3690
  * Configures the popup options of the DatePicker.
3588
3691
  *
@@ -3605,58 +3708,68 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3605
3708
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/date-ranges)).
3606
3709
  * @default 1900-1-1
3607
3710
  */
3608
- min: Date;
3711
+ set min(value: Date);
3712
+ get min(): Date;
3609
3713
  /**
3610
3714
  * Specifies the biggest valid date
3611
3715
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/date-ranges)).
3612
3716
  * @default 2099-12-31
3613
3717
  */
3614
- max: Date;
3718
+ set max(value: Date);
3719
+ get max(): Date;
3615
3720
  /**
3616
3721
  * Determines whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
3617
3722
  * @default false
3618
3723
  */
3619
- incompleteDateValidation: boolean;
3724
+ set incompleteDateValidation(value: boolean);
3725
+ get incompleteDateValidation(): boolean;
3620
3726
  /**
3621
3727
  * Determines whether to autocorrect invalid segments automatically.
3622
3728
  *
3623
3729
  * @default true
3624
3730
  */
3625
- autoCorrectParts: boolean;
3731
+ set autoCorrectParts(value: boolean);
3732
+ get autoCorrectParts(): boolean;
3626
3733
  /**
3627
3734
  * Determines whether to automatically move to the next segment after the user completes the current one.
3628
3735
  *
3629
3736
  * @default true
3630
3737
  */
3631
- autoSwitchParts: boolean;
3738
+ set autoSwitchParts(value: boolean);
3739
+ get autoSwitchParts(): boolean;
3632
3740
  /**
3633
3741
  * A string array representing custom keys, which will move the focus to the next date format segment.
3634
3742
  */
3635
- autoSwitchKeys: string[];
3743
+ set autoSwitchKeys(value: string[]);
3744
+ get autoSwitchKeys(): string[];
3636
3745
  /**
3637
3746
  * Indicates whether the mouse scroll can be used to increase/decrease the time segments values.
3638
3747
  *
3639
3748
  * @default true
3640
3749
  */
3641
- enableMouseWheel: boolean;
3750
+ set enableMouseWheel(value: boolean);
3751
+ get enableMouseWheel(): boolean;
3642
3752
  /**
3643
3753
  * Determines if the users should see a blinking caret inside the Date Input when possible.
3644
3754
  *
3645
3755
  * @default false
3646
3756
  */
3647
- allowCaretMode: boolean;
3757
+ set allowCaretMode(value: boolean);
3758
+ get allowCaretMode(): boolean;
3648
3759
  /**
3649
3760
  * When enabled, the DatePicker will autofill the rest of the date to the current date when the component loses focus.
3650
3761
  *
3651
3762
  * @default false
3652
3763
  */
3653
- autoFill: boolean;
3764
+ set autoFill(value: boolean);
3765
+ get autoFill(): boolean;
3654
3766
  /**
3655
3767
  * Specifies the focused date of the Calendar component
3656
3768
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/calendar-options#focused-dates)).
3657
3769
  * @default null
3658
3770
  */
3659
- focusedDate: Date;
3771
+ set focusedDate(value: Date);
3772
+ get focusedDate(): Date;
3660
3773
  /**
3661
3774
  * Specifies the value of the DatePicker component.
3662
3775
  *
@@ -3671,7 +3784,8 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3671
3784
  * Format value options include string to provide a single format that is used regardless whether the input is focused or blurred.
3672
3785
  * FormatSettings can be used to display different formats when the component is focused or blurred by providing a settings object with specified inputFormat and displayFormat values.
3673
3786
  */
3674
- format: string | FormatSettings;
3787
+ set format(value: string | FormatSettings);
3788
+ get format(): string | FormatSettings;
3675
3789
  /**
3676
3790
  * The maximum year to assume to be from the current century when typing two-digit year value
3677
3791
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/formats#two-digit-year-format)).
@@ -3680,24 +3794,28 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3680
3794
  * will be assumed to be 20xx, while 69 and larger will be assumed to be 19xx.
3681
3795
  * @default 68
3682
3796
  */
3683
- twoDigitYearMax: number;
3797
+ set twoDigitYearMax(value: number);
3798
+ get twoDigitYearMax(): number;
3684
3799
  /**
3685
3800
  * Defines the descriptions of the format sections in the input field.
3686
3801
  * ([more information and examples](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/placeholders)).
3687
3802
  *
3688
3803
  */
3689
- formatPlaceholder: DateInputFormatPlaceholder;
3804
+ set formatPlaceholder(value: DateInputFormatPlaceholder);
3805
+ get formatPlaceholder(): DateInputFormatPlaceholder;
3690
3806
  /**
3691
3807
  * Specifies the hint the DatePicker displays when its value is `null`.
3692
3808
  * ([more information and exaples](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/placeholders)).
3693
3809
  */
3694
- placeholder: string;
3810
+ set placeholder(value: string);
3811
+ get placeholder(): string;
3695
3812
  /**
3696
3813
  * Sets the `tabindex` of the DatePicker.
3697
3814
  * This property is used to set the order in which the DatePicker will receive focus when navigating through the page using the Tab key.
3698
3815
  * @default 0
3699
3816
  */
3700
- tabindex: number;
3817
+ set tabindex(value: number);
3818
+ get tabindex(): number;
3701
3819
  /**
3702
3820
  * @hidden
3703
3821
  */
@@ -3714,32 +3832,37 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3714
3832
  * in the header of the popup(action sheet). Applicable only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
3715
3833
  * @default ""
3716
3834
  */
3717
- adaptiveTitle: string;
3835
+ set adaptiveTitle(value: string);
3836
+ get adaptiveTitle(): string;
3718
3837
  /**
3719
3838
  * Sets the subtitle text rendered in the header of the popup(action sheet).
3720
3839
  * Applicable only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
3721
3840
  * @default ""
3722
3841
  */
3723
- adaptiveSubtitle: string;
3842
+ set adaptiveSubtitle(value: string);
3843
+ get adaptiveSubtitle(): string;
3724
3844
  /**
3725
3845
  * Determines whether the built-in min or max validators are enforced when validating a form.
3726
3846
  *
3727
3847
  * @default true
3728
3848
  */
3729
- rangeValidation: boolean;
3849
+ set rangeValidation(value: boolean);
3850
+ get rangeValidation(): boolean;
3730
3851
  /**
3731
3852
  * Determines whether the built-in validator for disabled
3732
3853
  * date ranges is enforced when validating a form
3733
3854
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/disabled-dates#using-a-function)).
3734
3855
  * @default true
3735
3856
  */
3736
- disabledDatesValidation: boolean;
3857
+ set disabledDatesValidation(value: boolean);
3858
+ get disabledDatesValidation(): boolean;
3737
3859
  /**
3738
3860
  * Determines whether to display a week number column in the `month` view of the Calendar
3739
3861
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/calendar-options#week-number-column)).
3740
3862
  * @default false
3741
3863
  */
3742
- weekNumber: boolean;
3864
+ set weekNumber(value: boolean);
3865
+ get weekNumber(): boolean;
3743
3866
  /**
3744
3867
  * Sets the size of the component. The default value is set by the Kendo theme.
3745
3868
  */
@@ -3760,7 +3883,8 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3760
3883
  *
3761
3884
  * @default 'none'
3762
3885
  */
3763
- adaptiveMode: AdaptiveMode;
3886
+ set adaptiveMode(value: AdaptiveMode);
3887
+ get adaptiveMode(): AdaptiveMode;
3764
3888
  /**
3765
3889
  * Fires each time the user selects a new value
3766
3890
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/events)).
@@ -3841,6 +3965,41 @@ declare class DatePickerComponent extends MultiTabStop implements ControlValueAc
3841
3965
  private _size;
3842
3966
  private _rounded;
3843
3967
  private _fillMode;
3968
+ private _focusableId;
3969
+ private _clearButton;
3970
+ private _inputAttributes;
3971
+ private _footer;
3972
+ private _weekDaysFormat;
3973
+ private _showOtherMonthDays;
3974
+ private _activeView;
3975
+ private _bottomView;
3976
+ private _topView;
3977
+ private _calendarType;
3978
+ private _animateCalendarNavigation;
3979
+ private _disabled;
3980
+ private _readonly;
3981
+ private _readOnlyInput;
3982
+ private _min;
3983
+ private _max;
3984
+ private _incompleteDateValidation;
3985
+ private _autoCorrectParts;
3986
+ private _autoSwitchParts;
3987
+ private _autoSwitchKeys;
3988
+ private _enableMouseWheel;
3989
+ private _allowCaretMode;
3990
+ private _autoFill;
3991
+ private _focusedDate;
3992
+ private _format;
3993
+ private _twoDigitYearMax;
3994
+ private _formatPlaceholder;
3995
+ private _placeholder;
3996
+ private _tabindex;
3997
+ private _adaptiveTitle;
3998
+ private _adaptiveSubtitle;
3999
+ private _rangeValidation;
4000
+ private _disabledDatesValidation;
4001
+ private _weekNumber;
4002
+ private _adaptiveMode;
3844
4003
  constructor(zone: NgZone, localization: LocalizationService, cdr: ChangeDetectorRef, popupService: PopupService, wrapper: ElementRef, renderer: Renderer2, injector: Injector, pickerService: PickerService, disabledDatesService: DisabledDatesService, adaptiveService: AdaptiveService);
3845
4004
  /**
3846
4005
  * @hidden
@@ -4026,7 +4185,8 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4026
4185
  /**
4027
4186
  * @hidden
4028
4187
  */
4029
- focusableId: string;
4188
+ set focusableId(value: string);
4189
+ get focusableId(): string;
4030
4190
  /**
4031
4191
  * Determines whether the TimePicker is disabled
4032
4192
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/disabled-state)).
@@ -4034,14 +4194,16 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4034
4194
  *
4035
4195
  * @default false
4036
4196
  */
4037
- disabled: boolean;
4197
+ set disabled(value: boolean);
4198
+ get disabled(): boolean;
4038
4199
  /**
4039
4200
  * Determines the read-only state of the TimePicker
4040
4201
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/readonly-state#read-only-timepicker)).
4041
4202
  *
4042
4203
  * @default false
4043
4204
  */
4044
- readonly: boolean;
4205
+ set readonly(value: boolean);
4206
+ get readonly(): boolean;
4045
4207
  /**
4046
4208
  * Sets the read-only state of the TimePicker input field
4047
4209
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/readonly-state#read-only-input)).
@@ -4050,32 +4212,37 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4050
4212
  * the input will be rendered in a read-only state regardless of the `readOnlyInput` value.
4051
4213
  * @default false
4052
4214
  */
4053
- readOnlyInput: boolean;
4215
+ set readOnlyInput(value: boolean);
4216
+ get readOnlyInput(): boolean;
4054
4217
  /**
4055
4218
  * If set to `true`, renders a clear button after the input text or TimePicker value has been changed.
4056
4219
  * Clicking this button resets the value of the component to `null` and triggers the `valueChange` event.
4057
4220
  * @default false
4058
4221
  */
4059
- clearButton: boolean;
4222
+ set clearButton(value: boolean);
4223
+ get clearButton(): boolean;
4060
4224
  /**
4061
4225
  * Specifies the time format that is used to display the input value
4062
4226
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/formats)).
4063
4227
  * @default 't'
4064
4228
  */
4065
- format: string;
4229
+ set format(value: string);
4230
+ get format(): string;
4066
4231
  /**
4067
4232
  * Defines the descriptions of the format sections in the input field.
4068
4233
  * For more information, refer to the article on
4069
4234
  * [placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/placeholders).
4070
4235
  */
4071
- formatPlaceholder: DateInputFormatPlaceholder;
4236
+ set formatPlaceholder(value: DateInputFormatPlaceholder);
4237
+ get formatPlaceholder(): DateInputFormatPlaceholder;
4072
4238
  /**
4073
4239
  * Specifies the hint the TimePicker displays when its value is `null`.
4074
4240
  * For more information, refer to the article on
4075
4241
  * [placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/placeholders).
4076
4242
  * @default null
4077
4243
  */
4078
- placeholder: string;
4244
+ set placeholder(value: string);
4245
+ get placeholder(): string;
4079
4246
  /**
4080
4247
  * Specifies the smallest valid time value
4081
4248
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/time-ranges)).
@@ -4095,35 +4262,41 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4095
4262
  *
4096
4263
  * @default false
4097
4264
  */
4098
- incompleteDateValidation: boolean;
4265
+ set incompleteDateValidation(value: boolean);
4266
+ get incompleteDateValidation(): boolean;
4099
4267
  /**
4100
4268
  * Determines whether to automatically move to the next segment after the user completes the current one.
4101
4269
  *
4102
4270
  * @default true
4103
4271
  */
4104
- autoSwitchParts: boolean;
4272
+ set autoSwitchParts(value: boolean);
4273
+ get autoSwitchParts(): boolean;
4105
4274
  /**
4106
4275
  * A string array representing custom keys, which will move the focus to the next date format segment.
4107
4276
  */
4108
- autoSwitchKeys: string[];
4277
+ set autoSwitchKeys(value: string[]);
4278
+ get autoSwitchKeys(): string[];
4109
4279
  /**
4110
4280
  * Indicates whether the mouse scroll can be used to increase/decrease the time segments values.
4111
4281
  *
4112
4282
  * @default true
4113
4283
  */
4114
- enableMouseWheel: boolean;
4284
+ set enableMouseWheel(value: boolean);
4285
+ get enableMouseWheel(): boolean;
4115
4286
  /**
4116
4287
  * Determines if the users should see a blinking caret inside the Date Input when possible.
4117
4288
  *
4118
4289
  * @default false
4119
4290
  */
4120
- allowCaretMode: boolean;
4291
+ set allowCaretMode(value: boolean);
4292
+ get allowCaretMode(): boolean;
4121
4293
  /**
4122
4294
  * Determines whether to display the **Cancel** button in the popup.
4123
4295
  *
4124
4296
  * @default true
4125
4297
  */
4126
- cancelButton: boolean;
4298
+ set cancelButton(value: boolean);
4299
+ get cancelButton(): boolean;
4127
4300
  /**
4128
4301
  * Determines whether to display the **Now** button in the popup.
4129
4302
  *
@@ -4131,7 +4304,8 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4131
4304
  *
4132
4305
  * @default true
4133
4306
  */
4134
- nowButton: boolean;
4307
+ set nowButton(value: boolean);
4308
+ get nowButton(): boolean;
4135
4309
  /**
4136
4310
  * Configures the incremental steps of the TimePicker.
4137
4311
  * For more information, refer to the article on
@@ -4154,7 +4328,8 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4154
4328
  * Sets the tabindex of the TimePicker component.
4155
4329
  * @default 0
4156
4330
  */
4157
- tabindex: number;
4331
+ set tabindex(value: number);
4332
+ get tabindex(): number;
4158
4333
  /**
4159
4334
  * @hidden
4160
4335
  */
@@ -4164,24 +4339,28 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4164
4339
  * Sets the title of the input element of the TimePicker and the title text rendered
4165
4340
  * in the header of the popup(action sheet). Applicable only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
4166
4341
  */
4167
- adaptiveTitle: string;
4342
+ set adaptiveTitle(value: string);
4343
+ get adaptiveTitle(): string;
4168
4344
  /**
4169
4345
  * Sets the subtitle text rendered in the header of the popup(action sheet).
4170
4346
  * Applicable only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
4171
4347
  * By default, subtitle is not rendered.
4172
4348
  */
4173
- adaptiveSubtitle: string;
4349
+ set adaptiveSubtitle(value: string);
4350
+ get adaptiveSubtitle(): string;
4174
4351
  /**
4175
4352
  * Determines whether the built-in min or max validators are enforced when a form is being validated.
4176
4353
  *
4177
4354
  * @default true
4178
4355
  */
4179
- rangeValidation: boolean;
4356
+ set rangeValidation(value: boolean);
4357
+ get rangeValidation(): boolean;
4180
4358
  /**
4181
4359
  * Determines whether the TimePicker is in adaptive mode.
4182
4360
  * @default 'none'
4183
4361
  */
4184
- adaptiveMode: AdaptiveMode;
4362
+ set adaptiveMode(value: AdaptiveMode);
4363
+ get adaptiveMode(): AdaptiveMode;
4185
4364
  /**
4186
4365
  * Determines whether the TimePicker is in adaptive mode.
4187
4366
  *
@@ -4211,7 +4390,10 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4211
4390
  * @remarks
4212
4391
  * This property is related to accessibility.
4213
4392
  */
4214
- inputAttributes: {
4393
+ set inputAttributes(value: {
4394
+ [key: string]: string;
4395
+ });
4396
+ get inputAttributes(): {
4215
4397
  [key: string]: string;
4216
4398
  };
4217
4399
  /**
@@ -4299,6 +4481,27 @@ declare class TimePickerComponent extends MultiTabStop implements ControlValueAc
4299
4481
  private _size;
4300
4482
  private _rounded;
4301
4483
  private _fillMode;
4484
+ private _focusableId;
4485
+ private _disabled;
4486
+ private _readonly;
4487
+ private _readOnlyInput;
4488
+ private _clearButton;
4489
+ private _format;
4490
+ private _formatPlaceholder;
4491
+ private _placeholder;
4492
+ private _incompleteDateValidation;
4493
+ private _autoSwitchParts;
4494
+ private _autoSwitchKeys;
4495
+ private _enableMouseWheel;
4496
+ private _allowCaretMode;
4497
+ private _cancelButton;
4498
+ private _nowButton;
4499
+ private _tabindex;
4500
+ private _adaptiveTitle;
4501
+ private _adaptiveSubtitle;
4502
+ private _rangeValidation;
4503
+ private _adaptiveMode;
4504
+ private _inputAttributes;
4302
4505
  constructor(bus: BusViewService, zone: NgZone, localization: LocalizationService, cdr: ChangeDetectorRef, popupService: PopupService, wrapper: ElementRef, renderer: Renderer2, injector: Injector, pickerService: PickerService, intl: IntlService, adaptiveService: AdaptiveService);
4303
4506
  /**
4304
4507
  * @hidden
@@ -4539,19 +4742,22 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4539
4742
  /**
4540
4743
  * @hidden
4541
4744
  */
4542
- focusableId: string;
4745
+ set focusableId(value: string);
4746
+ get focusableId(): string;
4543
4747
  /**
4544
4748
  * Sets the format of the displayed Calendar week days' names.
4545
4749
  * @default 'short'
4546
4750
  */
4547
- weekDaysFormat?: WeekDaysFormat;
4751
+ set weekDaysFormat(value: WeekDaysFormat);
4752
+ get weekDaysFormat(): WeekDaysFormat;
4548
4753
  /**
4549
4754
  * Displays the days that fall out of the current month in the Calendar ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/calendar-options#displaying-other-month-days)).
4550
4755
  * You can set this to show or hide days from other months.
4551
4756
  *
4552
4757
  * For infinite Calendar the default value is `false`, while for classic Calendar it is `true`.
4553
4758
  */
4554
- showOtherMonthDays: boolean;
4759
+ set showOtherMonthDays(value: boolean);
4760
+ get showOtherMonthDays(): boolean;
4555
4761
  /**
4556
4762
  * Sets the value of the DateTimePicker component.
4557
4763
  * You can set a specific date and time for the picker to display and use.
@@ -4579,7 +4785,8 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4579
4785
  * will be assumed to be 20xx, while 69 and larger will be assumed to be 19xx.
4580
4786
  * @default 68
4581
4787
  */
4582
- twoDigitYearMax: number;
4788
+ set twoDigitYearMax(value: number);
4789
+ get twoDigitYearMax(): number;
4583
4790
  /**
4584
4791
  * Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the DateTimePicker.
4585
4792
  *
@@ -4608,20 +4815,23 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4608
4815
  * in the header of the popup (action sheet). Applicable only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
4609
4816
  * @default ''
4610
4817
  */
4611
- adaptiveTitle: string;
4818
+ set adaptiveTitle(value: string);
4819
+ get adaptiveTitle(): string;
4612
4820
  /**
4613
4821
  * Specifies the subtitle text rendered in the header of the popup (action sheet).
4614
4822
  * Applicable only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
4615
4823
  * @default ''
4616
4824
  */
4617
- adaptiveSubtitle: string;
4825
+ set adaptiveSubtitle(value: string);
4826
+ get adaptiveSubtitle(): string;
4618
4827
  /**
4619
4828
  * Specifies the `disabled` property of the DateTimePicker and determines whether the component is active
4620
4829
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/disabled-state)).
4621
4830
  * 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/datetimepicker/forms#managing-the-datetimepicker-disabled-state-in-reactive-forms).
4622
4831
  * @default false
4623
4832
  */
4624
- disabled: boolean;
4833
+ set disabled(value: boolean);
4834
+ get disabled(): boolean;
4625
4835
  /**
4626
4836
  * Specifies the read-only state of the DateTimePicker
4627
4837
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/readonly-state#read-only-datetimepicker)).
@@ -4629,7 +4839,8 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4629
4839
  *
4630
4840
  * @default false
4631
4841
  */
4632
- readonly: boolean;
4842
+ set readonly(value: boolean);
4843
+ get readonly(): boolean;
4633
4844
  /**
4634
4845
  * Determines whether the input field of the DateTimePicker is read-only
4635
4846
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/readonly-state#read-only-input)).
@@ -4639,39 +4850,46 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4639
4850
  *
4640
4851
  * @default false
4641
4852
  */
4642
- readOnlyInput: boolean;
4853
+ set readOnlyInput(value: boolean);
4854
+ get readOnlyInput(): boolean;
4643
4855
  /**
4644
4856
  * Determines whether to display the **Cancel** button in the popup
4645
4857
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/popup-options#toggling-the-cancel-button)).
4646
4858
  * @default true
4647
4859
  */
4648
- cancelButton: boolean;
4860
+ set cancelButton(value: boolean);
4861
+ get cancelButton(): boolean;
4649
4862
  /**
4650
4863
  * Defines the descriptions of the format sections in the input field
4651
4864
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/placeholders#format-sections-description)).
4652
4865
  */
4653
- formatPlaceholder: DateInputFormatPlaceholder;
4866
+ set formatPlaceholder(value: DateInputFormatPlaceholder);
4867
+ get formatPlaceholder(): DateInputFormatPlaceholder;
4654
4868
  /**
4655
4869
  * Specifies the hint which is displayed by the DateTimePicker when its value is `null`
4656
4870
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/placeholders#text-hints)).
4657
4871
  */
4658
- placeholder: string;
4872
+ set placeholder(value: string);
4873
+ get placeholder(): string;
4659
4874
  /**
4660
4875
  * Configures the incremental steps of the DateInput and the popup component of the TimePicker
4661
4876
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/incremental-steps)).
4662
4877
  */
4663
- steps: DateInputIncrementalSteps;
4878
+ set steps(value: DateInputIncrementalSteps);
4879
+ get steps(): DateInputIncrementalSteps;
4664
4880
  /**
4665
4881
  * Specifies the focused date of the popup Calendar
4666
4882
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/calendar-options#focused-dates)).
4667
4883
  */
4668
- focusedDate: Date;
4884
+ set focusedDate(value: Date);
4885
+ get focusedDate(): Date;
4669
4886
  /**
4670
4887
  * Specifies the Calendar type.
4671
4888
  *
4672
4889
  * @default 'infinite'
4673
4890
  */
4674
- calendarType: CalendarType;
4891
+ set calendarType(value: CalendarType);
4892
+ get calendarType(): CalendarType;
4675
4893
  /**
4676
4894
  * Determines whether to enable animation when navigating to previous/next Calendar view.
4677
4895
  * Applies to the [`classic`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/datetimepickercomponent#calendartype) Calendar only.
@@ -4680,13 +4898,15 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4680
4898
  *
4681
4899
  * @default false
4682
4900
  */
4683
- animateCalendarNavigation: boolean;
4901
+ set animateCalendarNavigation(value: boolean);
4902
+ get animateCalendarNavigation(): boolean;
4684
4903
  /**
4685
4904
  * Determines whether to display a week number column in the `month` view of the popup Calendar
4686
4905
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/calendar-options#week-number-column)).
4687
4906
  * @default false
4688
4907
  */
4689
- weekNumber: boolean;
4908
+ set weekNumber(value: boolean);
4909
+ get weekNumber(): boolean;
4690
4910
  /**
4691
4911
  * Specifies the smallest valid date.
4692
4912
  * The Calendar will not display dates before this value.
@@ -4711,70 +4931,84 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4711
4931
  *
4712
4932
  * @default true
4713
4933
  */
4714
- rangeValidation: boolean;
4934
+ set rangeValidation(value: boolean);
4935
+ get rangeValidation(): boolean;
4715
4936
  /**
4716
4937
  * Determines whether the built-in validator for disabled date ranges is enforced when validating a form
4717
4938
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/disabled-dates)).
4718
4939
  * @default true
4719
4940
  */
4720
- disabledDatesValidation: boolean;
4941
+ set disabledDatesValidation(value: boolean);
4942
+ get disabledDatesValidation(): boolean;
4721
4943
  /**
4722
4944
  * Determines whether the built-in validation for incomplete dates is enforced when validating a form.
4723
4945
  * @default false
4724
4946
  */
4725
- incompleteDateValidation: boolean;
4947
+ set incompleteDateValidation(value: boolean);
4948
+ get incompleteDateValidation(): boolean;
4726
4949
  /**
4727
4950
  * Determines whether to auto correct invalid segments automatically.
4728
4951
  *
4729
4952
  * @default true
4730
4953
  */
4731
- autoCorrectParts: boolean;
4954
+ set autoCorrectParts(value: boolean);
4955
+ get autoCorrectParts(): boolean;
4732
4956
  /**
4733
4957
  * Determines whether to automatically move to the next segment after the user completes the current one.
4734
4958
  *
4735
4959
  * @default true
4736
4960
  */
4737
- autoSwitchParts: boolean;
4961
+ set autoSwitchParts(value: boolean);
4962
+ get autoSwitchParts(): boolean;
4738
4963
  /**
4739
4964
  * Specifies custom keys that move the focus to the next date format segment.
4740
4965
  */
4741
- autoSwitchKeys: string[];
4966
+ set autoSwitchKeys(value: string[]);
4967
+ get autoSwitchKeys(): string[];
4742
4968
  /**
4743
4969
  * Determines whether you can use the mouse scroll to increase or decrease the time segment values.
4744
4970
  *
4745
4971
  * @default true
4746
4972
  */
4747
- enableMouseWheel: boolean;
4973
+ set enableMouseWheel(value: boolean);
4974
+ get enableMouseWheel(): boolean;
4748
4975
  /**
4749
4976
  * Determines whether you can see a blinking caret inside the DateInput when possible.
4750
4977
  *
4751
4978
  * @default false
4752
4979
  */
4753
- allowCaretMode: boolean;
4980
+ set allowCaretMode(value: boolean);
4981
+ get allowCaretMode(): boolean;
4754
4982
  /**
4755
4983
  * Renders a clear button when set to `true` after the input text or DateTimePicker value has been changed.
4756
4984
  * Clicking this button resets the value of the component to `null` and triggers the `valueChange` event.
4757
4985
  * @default false
4758
4986
  */
4759
- clearButton: boolean;
4987
+ set clearButton(value: boolean);
4988
+ get clearButton(): boolean;
4760
4989
  /**
4761
4990
  * Auto fills the rest of the date to the current date when the component loses focus.
4762
4991
  *
4763
4992
  * @default false
4764
4993
  */
4765
- autoFill: boolean;
4994
+ set autoFill(value: boolean);
4995
+ get autoFill(): boolean;
4766
4996
  /**
4767
4997
  * Enables or disables the adaptive mode. The adaptive rendering is disabled by default.
4768
4998
  * @default 'none'
4769
4999
  */
4770
- adaptiveMode: AdaptiveMode;
5000
+ set adaptiveMode(value: AdaptiveMode);
5001
+ get adaptiveMode(): AdaptiveMode;
4771
5002
  /**
4772
5003
  * Specifies the HTML attributes of the inner focusable input element. You cannot change attributes that are essential for certain component functionalities.
4773
5004
  *
4774
5005
  * @remarks
4775
5006
  * This property is related to accessibility.
4776
5007
  */
4777
- inputAttributes: {
5008
+ set inputAttributes(value: {
5009
+ [key: string]: string;
5010
+ });
5011
+ get inputAttributes(): {
4778
5012
  [key: string]: string;
4779
5013
  };
4780
5014
  /**
@@ -4960,7 +5194,8 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4960
5194
  * Toggles the visibility of the Calendar footer.
4961
5195
  * @default false
4962
5196
  */
4963
- footer: boolean;
5197
+ set footer(value: boolean);
5198
+ get footer(): boolean;
4964
5199
  private get activeTabComponent();
4965
5200
  private get appendTo();
4966
5201
  private container;
@@ -4996,6 +5231,36 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
4996
5231
  private _disabledDates;
4997
5232
  private _isActive;
4998
5233
  private _activeTab;
5234
+ private _focusableId;
5235
+ private _weekDaysFormat;
5236
+ private _showOtherMonthDays;
5237
+ private _twoDigitYearMax;
5238
+ private _readOnlyInput;
5239
+ private _cancelButton;
5240
+ private _formatPlaceholder;
5241
+ private _placeholder;
5242
+ private _steps;
5243
+ private _focusedDate;
5244
+ private _calendarType;
5245
+ private _animateCalendarNavigation;
5246
+ private _weekNumber;
5247
+ private _rangeValidation;
5248
+ private _disabledDatesValidation;
5249
+ private _incompleteDateValidation;
5250
+ private _autoCorrectParts;
5251
+ private _autoSwitchParts;
5252
+ private _autoSwitchKeys;
5253
+ private _enableMouseWheel;
5254
+ private _allowCaretMode;
5255
+ private _clearButton;
5256
+ private _autoFill;
5257
+ private _adaptiveMode;
5258
+ private _inputAttributes;
5259
+ private _adaptiveTitle;
5260
+ private _adaptiveSubtitle;
5261
+ private _disabled;
5262
+ private _footer;
5263
+ private _readonly;
4999
5264
  private onControlTouched;
5000
5265
  private onControlChange;
5001
5266
  private onValidatorChange;
@@ -5779,18 +6044,21 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
5779
6044
  *
5780
6045
  * Determines whether to display the MultiViewCalendar header.
5781
6046
  */
5782
- showCalendarHeader: boolean;
6047
+ set showCalendarHeader(value: boolean);
6048
+ get showCalendarHeader(): boolean;
5783
6049
  /**
5784
6050
  * Specifies the focused date of the MultiViewCalendar component.
5785
6051
  * Defines which date receives focus when the component loads ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/dates#focused-dates)).
5786
6052
  *
5787
6053
  * If the MultiViewCalendar is out of the min or max range, it normalizes the defined `focusedDate`.
5788
6054
  */
5789
- focusedDate: Date;
6055
+ set focusedDate(value: Date);
6056
+ get focusedDate(): Date;
5790
6057
  /**
5791
6058
  * Specifies the dates in the MultiViewCalendar that you want to disable ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/disabled-dates)).
5792
6059
  */
5793
- disabledDates: ((date: Date) => boolean) | Date[] | Day[];
6060
+ set disabledDates(value: ((date: Date) => boolean) | Date[] | Day[]);
6061
+ get disabledDates(): ((date: Date) => boolean) | Date[] | Day[];
5794
6062
  /**
5795
6063
  * Specifies the initial view that the MultiViewCalendar displays when it loads ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-options)).
5796
6064
  * By default, the active view is `month`.
@@ -5799,63 +6067,73 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
5799
6067
  *
5800
6068
  * @default 'month
5801
6069
  */
5802
- activeView: CalendarView;
6070
+ set activeView(value: CalendarView);
6071
+ get activeView(): CalendarView;
5803
6072
  /**
5804
6073
  * Specifies the lowest view level that users can navigate to ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-depth)).
5805
6074
  *
5806
6075
  * @default 'month'
5807
6076
  */
5808
- bottomView: CalendarView;
6077
+ set bottomView(value: CalendarView);
6078
+ get bottomView(): CalendarView;
5809
6079
  /**
5810
6080
  * Specifies the highest view level that users can navigate to ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-depth)).
5811
6081
  *
5812
6082
  * @default 'century'
5813
6083
  */
5814
- topView: CalendarView;
6084
+ set topView(value: CalendarView);
6085
+ get topView(): CalendarView;
5815
6086
  /**
5816
6087
  * Specifies the minimum date that users can select ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/dates#focused-dates)).
5817
6088
  *
5818
6089
  * @default '1900-01-01'
5819
6090
  */
5820
- min: Date;
6091
+ set min(value: Date);
6092
+ get min(): Date;
5821
6093
  /**
5822
6094
  * Specifies the maximum date that users can select ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/dates#focused-dates)).
5823
6095
  *
5824
6096
  * @default '2099-12-31'
5825
6097
  */
5826
- max: Date;
6098
+ set max(value: Date);
6099
+ get max(): Date;
5827
6100
  /**
5828
6101
  * Determines whether users can select dates in reverse order.
5829
6102
  * When you set `allowReverse` to `true`, the component does not validate if the start date comes after the end date.
5830
6103
  *
5831
6104
  * @default false
5832
6105
  */
5833
- allowReverse: boolean;
6106
+ set allowReverse(value: boolean);
6107
+ get allowReverse(): boolean;
5834
6108
  /**
5835
6109
  * Determines whether to animate transitions when users navigate between views.
5836
6110
  *
5837
6111
  * @default false
5838
6112
  */
5839
- animateNavigation: boolean;
6113
+ set animateNavigation(value: boolean);
6114
+ get animateNavigation(): boolean;
5840
6115
  /**
5841
6116
  * Determines whether the MultiViewCalendar is interactive ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/disabled-state)).
5842
6117
  * When you set `disabled` to `true`, users cannot interact with the component.
5843
6118
  *
5844
6119
  * @default false
5845
6120
  */
5846
- disabled: boolean;
6121
+ set disabled(value: boolean);
6122
+ get disabled(): boolean;
5847
6123
  /**
5848
6124
  * Specifies the number of calendar views to display side by side.
5849
6125
  *
5850
6126
  * @default 2
5851
6127
  */
5852
- views: number;
6128
+ set views(value: number);
6129
+ get views(): number;
5853
6130
  /**
5854
6131
  * Determines whether to display week numbers in the `month` view ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/week-num-column)).
5855
6132
  *
5856
6133
  * @default false
5857
6134
  */
5858
- weekNumber: boolean;
6135
+ set weekNumber(value: boolean);
6136
+ get weekNumber(): boolean;
5859
6137
  /**
5860
6138
  * Controls the popup animations.
5861
6139
  * When you set `animate` to `true`, the popup displays opening and closing animations.
@@ -5864,40 +6142,46 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
5864
6142
  *
5865
6143
  * @default true
5866
6144
  */
5867
- animate: boolean | PopupAnimation;
6145
+ set animate(value: boolean | PopupAnimation);
6146
+ get animate(): boolean | PopupAnimation;
5868
6147
  /**
5869
6148
  * Specifies the element that serves as an anchor for the popup.
5870
6149
  * The popup opens next to this element.
5871
6150
  * For more information, refer to the section on
5872
6151
  * [aligning to specific components](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#aligning-to-components).
5873
6152
  */
5874
- anchor: ElementRef;
6153
+ set anchor(value: ElementRef);
6154
+ get anchor(): ElementRef;
5875
6155
  /**
5876
6156
  * Specifies the alignment point for the anchor element.
5877
6157
  * For more information, refer to the section on
5878
6158
  * [positioning](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#positioning).
5879
6159
  */
5880
- anchorAlign: Align;
6160
+ set anchorAlign(value: Align);
6161
+ get anchorAlign(): Align;
5881
6162
  /**
5882
6163
  * Determines whether to display a header for each view ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-header)).
5883
6164
  * For example, displays the month name in the month view.
5884
6165
  *
5885
6166
  * @default false
5886
6167
  */
5887
- showViewHeader: boolean;
6168
+ set showViewHeader(value: boolean);
6169
+ get showViewHeader(): boolean;
5888
6170
  /**
5889
6171
  * Determines whether to display days from adjacent months in the current month view ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-options#displaying-other-month-days)).
5890
6172
  *
5891
6173
  * @default false
5892
6174
  */
5893
- showOtherMonthDays: boolean;
6175
+ set showOtherMonthDays(value: boolean);
6176
+ get showOtherMonthDays(): boolean;
5894
6177
  /**
5895
6178
  * Specifies where to render the popup container.
5896
6179
  * By default, the popup renders in the root component.
5897
6180
  *
5898
6181
  * @default 'root'
5899
6182
  */
5900
- appendTo: 'root' | 'component' | ViewContainerRef;
6183
+ set appendTo(value: 'root' | 'component' | ViewContainerRef);
6184
+ get appendTo(): 'root' | 'component' | ViewContainerRef;
5901
6185
  /**
5902
6186
  * Configures how the popup behaves when it encounters viewport boundaries.
5903
6187
  * For more information, refer to the article on
@@ -5905,39 +6189,45 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
5905
6189
  *
5906
6190
  * @default { horizontal: 'fit', vertical: 'flip' }
5907
6191
  */
5908
- collision: Collision;
6192
+ set collision(value: Collision);
6193
+ get collision(): Collision;
5909
6194
  /**
5910
6195
  * Specifies the alignment point for the popup element.
5911
6196
  * For more information, refer to the section on
5912
6197
  * [positioning](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#positioning).
5913
6198
  */
5914
- popupAlign: Align;
6199
+ set popupAlign(value: Align);
6200
+ get popupAlign(): Align;
5915
6201
  /**
5916
6202
  * Specifies the margin around the popup in pixels.
5917
6203
  * Creates empty space between the popup and its anchor element.
5918
6204
  */
5919
- margin: Margin;
6205
+ set margin(value: Margin);
6206
+ get margin(): Margin;
5920
6207
  /**
5921
6208
  * Determines whether the component uses adaptive rendering for different screen sizes.
5922
6209
  * By default, adaptive rendering is disabled.
5923
6210
  *
5924
6211
  * @default 'none'
5925
6212
  */
5926
- adaptiveMode: AdaptiveMode;
6213
+ set adaptiveMode(value: AdaptiveMode);
6214
+ get adaptiveMode(): AdaptiveMode;
5927
6215
  /**
5928
6216
  * Specifies the title text for the input element and the header of the action sheet.
5929
6217
  * Applies only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
5930
6218
  *
5931
6219
  * @default ""
5932
6220
  */
5933
- adaptiveTitle: string;
6221
+ set adaptiveTitle(value: string);
6222
+ get adaptiveTitle(): string;
5934
6223
  /**
5935
6224
  * Specifies the subtitle text displayed in the header of the action sheet.
5936
6225
  * Applies only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
5937
6226
  *
5938
6227
  * @default ""
5939
6228
  */
5940
- adaptiveSubtitle: string;
6229
+ set adaptiveSubtitle(value: string);
6230
+ get adaptiveSubtitle(): string;
5941
6231
  /**
5942
6232
  * @hidden
5943
6233
  *
@@ -5945,7 +6235,8 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
5945
6235
  * Sets the size of the component.
5946
6236
  * @default undefined
5947
6237
  */
5948
- size: DateInputSize;
6238
+ set size(value: DateInputSize);
6239
+ get size(): DateInputSize;
5949
6240
  /**
5950
6241
  * Fires when the popup is about to open ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange/popup#events)).
5951
6242
  * You can prevent this event to keep the popup closed.
@@ -6003,7 +6294,8 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
6003
6294
  /**
6004
6295
  * @hidden
6005
6296
  */
6006
- windowSize: AdaptiveSize;
6297
+ get windowSize(): AdaptiveSize;
6298
+ set windowSize(value: AdaptiveSize);
6007
6299
  /**
6008
6300
  * @hidden
6009
6301
  */
@@ -6027,6 +6319,33 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
6027
6319
  private resolvedPromise;
6028
6320
  private _calendar;
6029
6321
  private _show;
6322
+ private _showCalendarHeader;
6323
+ private _focusedDate;
6324
+ private _disabledDates;
6325
+ private _activeView;
6326
+ private _bottomView;
6327
+ private _topView;
6328
+ private _min;
6329
+ private _max;
6330
+ private _allowReverse;
6331
+ private _animateNavigation;
6332
+ private _disabled;
6333
+ private _views;
6334
+ private _weekNumber;
6335
+ private _animate;
6336
+ private _anchor;
6337
+ private _anchorAlign;
6338
+ private _showViewHeader;
6339
+ private _showOtherMonthDays;
6340
+ private _appendToValue;
6341
+ private _collision;
6342
+ private _popupAlign;
6343
+ private _margin;
6344
+ private _adaptiveMode;
6345
+ private _adaptiveTitle;
6346
+ private _adaptiveSubtitle;
6347
+ private _size;
6348
+ private _windowSize;
6030
6349
  constructor(popupService: PopupService, dateRangeService: DateRangeService, zone: NgZone, renderer: Renderer2, localization: LocalizationService, cdr: ChangeDetectorRef, rtl: boolean, adaptiveService: AdaptiveService);
6031
6350
  ngOnInit(): void;
6032
6351
  ngAfterViewInit(): void;
@@ -6254,7 +6573,8 @@ declare class DateRangeComponent implements AfterContentInit, OnDestroy {
6254
6573
  *
6255
6574
  * @default undefined
6256
6575
  */
6257
- size: DateInputSize;
6576
+ set size(value: DateInputSize);
6577
+ get size(): DateInputSize;
6258
6578
  /**
6259
6579
  * @hidden
6260
6580
  */
@@ -6263,10 +6583,12 @@ declare class DateRangeComponent implements AfterContentInit, OnDestroy {
6263
6583
  /**
6264
6584
  * @hidden
6265
6585
  */
6266
- showDefault: boolean;
6586
+ get showDefault(): boolean;
6267
6587
  private contentPopup;
6268
6588
  private get hasContentPopup();
6269
6589
  private subscription;
6590
+ private _size;
6591
+ private _showDefault;
6270
6592
  constructor(dateRangeService: DateRangeService);
6271
6593
  ngAfterContentInit(): void;
6272
6594
  ngOnDestroy(): void;
@@ -6420,25 +6742,35 @@ declare class CalendarMessages extends ComponentMessages {
6420
6742
  /**
6421
6743
  * The **Today** button text in the header of the Calendar.
6422
6744
  */
6423
- today: string;
6745
+ set today(value: string);
6746
+ get today(): string;
6424
6747
  /**
6425
6748
  * The title of the **Prev** button in the header of the Classic Calendar.
6426
6749
  */
6427
- prevButtonTitle: string;
6750
+ set prevButtonTitle(value: string);
6751
+ get prevButtonTitle(): string;
6428
6752
  /**
6429
6753
  * The title of the **Next** button in the header of the Classic Calendar.
6430
6754
  */
6431
- nextButtonTitle: string;
6755
+ set nextButtonTitle(value: string);
6756
+ get nextButtonTitle(): string;
6432
6757
  /**
6433
- * The title of the **Parent View** button in the header of the Calendar.
6758
+ * The label of the week number column in the Calendar.
6434
6759
  */
6435
- parentViewButtonTitle: string;
6760
+ set weekNumberLabel(value: string);
6761
+ get weekNumberLabel(): string;
6436
6762
  /**
6437
- * The label of the week number column in the Calendar.
6763
+ * The title of the **Parent View** button in the header of the Calendar.
6438
6764
  */
6439
- weekNumberLabel: string;
6765
+ set parentViewButtonTitle(value: string);
6766
+ get parentViewButtonTitle(): string;
6767
+ private _today;
6768
+ private _prevButtonTitle;
6769
+ private _nextButtonTitle;
6770
+ private _parentViewButtonTitle;
6771
+ private _weekNumberLabel;
6440
6772
  static ɵfac: i0.ɵɵFactoryDeclaration<CalendarMessages, never>;
6441
- static ɵdir: i0.ɵɵDirectiveDeclaration<CalendarMessages, "kendo-calendar-messages-base", never, { "today": { "alias": "today"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; "weekNumberLabel": { "alias": "weekNumberLabel"; "required": false; }; }, {}, never, never, true, never>;
6773
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CalendarMessages, "kendo-calendar-messages-base", never, { "today": { "alias": "today"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "weekNumberLabel": { "alias": "weekNumberLabel"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; }, {}, never, never, true, never>;
6442
6774
  }
6443
6775
 
6444
6776
  /**
@@ -6502,25 +6834,35 @@ declare class Messages extends ComponentMessages {
6502
6834
  /**
6503
6835
  * The **Today** button text in the header of the MultiViewCalendar.
6504
6836
  */
6505
- today: string;
6837
+ set today(value: string);
6838
+ get today(): string;
6506
6839
  /**
6507
6840
  * The title of the **Prev** button in the header of the MultiViewCalendar.
6508
6841
  */
6509
- prevButtonTitle: string;
6842
+ set prevButtonTitle(value: string);
6843
+ get prevButtonTitle(): string;
6510
6844
  /**
6511
6845
  * The title of the **Next** button in the header of the MultiViewCalendar.
6512
6846
  */
6513
- nextButtonTitle: string;
6847
+ set nextButtonTitle(value: string);
6848
+ get nextButtonTitle(): string;
6514
6849
  /**
6515
- * The title of the **Parent View** button in the header of the MultiViewCalendar.
6850
+ * The label of the week number column in the Calendar.
6516
6851
  */
6517
- parentViewButtonTitle: string;
6852
+ set weekNumberLabel(value: string);
6853
+ get weekNumberLabel(): string;
6518
6854
  /**
6519
- * The label of the week number column in the Calendar.
6855
+ * The title of the **Parent View** button in the header of the MultiViewCalendar.
6520
6856
  */
6521
- weekNumberLabel: string;
6857
+ set parentViewButtonTitle(value: string);
6858
+ get parentViewButtonTitle(): string;
6859
+ private _today;
6860
+ private _prevButtonTitle;
6861
+ private _nextButtonTitle;
6862
+ private _parentViewButtonTitle;
6863
+ private _weekNumberLabel;
6522
6864
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
6523
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-multiview-calendar-messages-base", never, { "today": { "alias": "today"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; "weekNumberLabel": { "alias": "weekNumberLabel"; "required": false; }; }, {}, never, never, true, never>;
6865
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-multiview-calendar-messages-base", never, { "today": { "alias": "today"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "weekNumberLabel": { "alias": "weekNumberLabel"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; }, {}, never, never, true, never>;
6524
6866
  }
6525
6867
 
6526
6868
  /**
@@ -6578,15 +6920,21 @@ declare class DateInputMessages extends ComponentMessages {
6578
6920
  /**
6579
6921
  * The title of the **Decrement** button of the DateInput.
6580
6922
  */
6581
- decrement: string;
6923
+ set decrement(value: string);
6924
+ get decrement(): string;
6582
6925
  /**
6583
6926
  * The title of the **Increment** button of the DateInput.
6584
6927
  */
6585
- increment: string;
6928
+ set increment(value: string);
6929
+ get increment(): string;
6586
6930
  /**
6587
6931
  * The title of the **Clear** button of the DateInput.
6588
6932
  */
6589
- clearTitle: string;
6933
+ set clearTitle(value: string);
6934
+ get clearTitle(): string;
6935
+ private _decrement;
6936
+ private _increment;
6937
+ private _clearTitle;
6590
6938
  static ɵfac: i0.ɵɵFactoryDeclaration<DateInputMessages, never>;
6591
6939
  static ɵdir: i0.ɵɵDirectiveDeclaration<DateInputMessages, "kendo-dateinput-messages-base", never, { "decrement": { "alias": "decrement"; "required": false; }; "increment": { "alias": "increment"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; }, {}, never, never, true, never>;
6592
6940
  }
@@ -6649,31 +6997,45 @@ declare class DatePickerMessages extends ComponentMessages {
6649
6997
  /**
6650
6998
  * The **Today** button text in the header of the Calendar.
6651
6999
  */
6652
- today: string;
7000
+ set today(value: string);
7001
+ get today(): string;
6653
7002
  /**
6654
7003
  * The title of the **Toggle** button of the DatePicker.
6655
7004
  */
6656
- toggle: string;
7005
+ set toggle(value: string);
7006
+ get toggle(): string;
6657
7007
  /**
6658
7008
  * The title of the **Prev** button in the header of the Classic Calendar.
6659
7009
  */
6660
- prevButtonTitle: string;
7010
+ set prevButtonTitle(value: string);
7011
+ get prevButtonTitle(): string;
6661
7012
  /**
6662
7013
  * The title of the **Next** button in the header of the Classic Calendar.
6663
7014
  */
6664
- nextButtonTitle: string;
7015
+ set nextButtonTitle(value: string);
7016
+ get nextButtonTitle(): string;
6665
7017
  /**
6666
7018
  * The title of the **Parent View** button in the header of the Calendar.
6667
7019
  */
6668
- parentViewButtonTitle: string;
7020
+ set parentViewButtonTitle(value: string);
7021
+ get parentViewButtonTitle(): string;
6669
7022
  /**
6670
7023
  * The title of the **Clear** button of the DatePicker.
6671
7024
  */
6672
- clearTitle: string;
7025
+ set clearTitle(value: string);
7026
+ get clearTitle(): string;
6673
7027
  /**
6674
7028
  * The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
6675
7029
  */
6676
- adaptiveCloseButtonTitle: string;
7030
+ set adaptiveCloseButtonTitle(value: string);
7031
+ get adaptiveCloseButtonTitle(): string;
7032
+ private _today;
7033
+ private _toggle;
7034
+ private _prevButtonTitle;
7035
+ private _nextButtonTitle;
7036
+ private _parentViewButtonTitle;
7037
+ private _clearTitle;
7038
+ private _adaptiveCloseButtonTitle;
6677
7039
  static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerMessages, never>;
6678
7040
  static ɵdir: i0.ɵɵDirectiveDeclaration<DatePickerMessages, "kendo-datepicker-messages-base", never, { "today": { "alias": "today"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; }, {}, never, never, true, never>;
6679
7041
  }
@@ -6725,23 +7087,33 @@ declare class DateRangePopupMessages extends ComponentMessages {
6725
7087
  /**
6726
7088
  * The text of the **Accept** button in the popup footer of the DateRange Popup.
6727
7089
  */
6728
- accept: string;
7090
+ set accept(value: string);
7091
+ get accept(): string;
6729
7092
  /**
6730
7093
  * The label of the **Accept** button in the popup footer of the DateRange Popup.
6731
7094
  */
6732
- acceptLabel: string;
7095
+ set acceptLabel(value: string);
7096
+ get acceptLabel(): string;
6733
7097
  /**
6734
7098
  * The text of the **Cancel** button in the popup footer of the DateRange Popup.
6735
7099
  */
6736
- cancel: string;
7100
+ set cancel(value: string);
7101
+ get cancel(): string;
6737
7102
  /**
6738
7103
  * The label of the **Cancel** button in the popup footer of the DateRange Popup.
6739
7104
  */
6740
- cancelLabel: string;
7105
+ set cancelLabel(value: string);
7106
+ get cancelLabel(): string;
6741
7107
  /**
6742
7108
  * The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
6743
7109
  */
6744
- adaptiveCloseButtonTitle: string;
7110
+ set adaptiveCloseButtonTitle(value: string);
7111
+ get adaptiveCloseButtonTitle(): string;
7112
+ private _accept;
7113
+ private _acceptLabel;
7114
+ private _cancel;
7115
+ private _cancelLabel;
7116
+ private _adaptiveCloseButtonTitle;
6745
7117
  static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePopupMessages, never>;
6746
7118
  static ɵdir: i0.ɵɵDirectiveDeclaration<DateRangePopupMessages, "kendo-daterangepopup-messages-base", never, { "accept": { "alias": "accept"; "required": false; }; "acceptLabel": { "alias": "acceptLabel"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; }, {}, never, never, true, never>;
6747
7119
  }
@@ -6764,101 +7136,149 @@ declare class DateTimePickerMessages extends ComponentMessages {
6764
7136
  /**
6765
7137
  * The title of the **Toggle** button of the DateTimePicker.
6766
7138
  */
6767
- toggle: string;
7139
+ set toggle(value: string);
7140
+ get toggle(): string;
6768
7141
  /**
6769
7142
  * The text of the **Date** tab in the popup header of the DateTimePicker.
6770
7143
  */
6771
- dateTab: string;
7144
+ set dateTab(value: string);
7145
+ get dateTab(): string;
6772
7146
  /**
6773
7147
  * The label of the **Date** tab in the popup header of the DateTimePicker.
6774
7148
  */
6775
- dateTabLabel: string;
7149
+ set dateTabLabel(value: string);
7150
+ get dateTabLabel(): string;
6776
7151
  /**
6777
7152
  * The text of the **Time** tab in the popup header of the DateTimePicker.
6778
7153
  */
6779
- timeTab: string;
7154
+ set timeTab(value: string);
7155
+ get timeTab(): string;
6780
7156
  /**
6781
7157
  * The label of the **Time** tab in the popup header of the DateTimePicker.
6782
7158
  */
6783
- timeTabLabel: string;
7159
+ set timeTabLabel(value: string);
7160
+ get timeTabLabel(): string;
6784
7161
  /**
6785
7162
  * The text of the **Accept** button in the popup footer of the DateTimePicker.
6786
7163
  */
6787
- accept: string;
7164
+ set accept(value: string);
7165
+ get accept(): string;
6788
7166
  /**
6789
7167
  * The label of the **Accept** button in the popup footer of the DateTimePicker.
6790
7168
  */
6791
- acceptLabel: string;
7169
+ set acceptLabel(value: string);
7170
+ get acceptLabel(): string;
6792
7171
  /**
6793
7172
  * The text of the **Cancel** button in the popup footer of the DateTimePicker.
6794
7173
  */
6795
- cancel: string;
7174
+ set cancel(value: string);
7175
+ get cancel(): string;
6796
7176
  /**
6797
7177
  * The label of the **Cancel** button in the popup footer of the DateTimePicker.
6798
7178
  */
6799
- cancelLabel: string;
7179
+ set cancelLabel(value: string);
7180
+ get cancelLabel(): string;
6800
7181
  /**
6801
7182
  * The **Today** button text in the header of the Calendar.
6802
7183
  */
6803
- today: string;
7184
+ set today(value: string);
7185
+ get today(): string;
6804
7186
  /**
6805
7187
  * The text of the **Now** button in the popup header of the TimePicker.
6806
7188
  */
6807
- now: string;
7189
+ set now(value: string);
7190
+ get now(): string;
6808
7191
  /**
6809
7192
  * The label of the **Now** button in the popup header of the TimePicker.
6810
7193
  */
6811
- nowLabel: string;
7194
+ set nowLabel(value: string);
7195
+ get nowLabel(): string;
6812
7196
  /**
6813
7197
  * The title of the **Prev** button in the header of the Classic Calendar.
6814
7198
  */
6815
- prevButtonTitle: string;
7199
+ set prevButtonTitle(value: string);
7200
+ get prevButtonTitle(): string;
6816
7201
  /**
6817
7202
  * The title of the **Next** button in the header of the Classic Calendar.
6818
7203
  */
6819
- nextButtonTitle: string;
7204
+ set nextButtonTitle(value: string);
7205
+ get nextButtonTitle(): string;
6820
7206
  /**
6821
7207
  * The title of the **Parent View** button in the header of the Calendar.
6822
7208
  */
6823
- parentViewButtonTitle: string;
7209
+ set parentViewButtonTitle(value: string);
7210
+ get parentViewButtonTitle(): string;
6824
7211
  /**
6825
7212
  * The label of the **Hour** part in the TimePicker.
6826
7213
  */
6827
- hour: string;
7214
+ set hour(value: string);
7215
+ get hour(): string;
6828
7216
  /**
6829
7217
  * The label of the **Minute** part in the TimePicker.
6830
7218
  */
6831
- minute: string;
7219
+ set minute(value: string);
7220
+ get minute(): string;
6832
7221
  /**
6833
7222
  * The label of the **Second** part in the TimePicker.
6834
7223
  */
6835
- second: string;
7224
+ set second(value: string);
7225
+ get second(): string;
6836
7226
  /**
6837
7227
  * The label of the **Millisecond** part in the TimePicker.
6838
7228
  */
6839
- millisecond: string;
7229
+ set millisecond(value: string);
7230
+ get millisecond(): string;
6840
7231
  /**
6841
7232
  * The label of the **Dayperiod** part in the TimePicker.
6842
7233
  */
6843
- dayperiod: string;
7234
+ set dayperiod(value: string);
7235
+ get dayperiod(): string;
6844
7236
  /**
6845
7237
  * The title of the **Clear** button of the DateTimePicker.
6846
7238
  */
6847
- clearTitle: string;
6848
- /**
6849
- * The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
6850
- */
6851
- adaptiveCloseButtonTitle: string;
7239
+ set clearTitle(value: string);
7240
+ get clearTitle(): string;
6852
7241
  /**
6853
7242
  * The accessible label of the date and time selector container.
6854
7243
  */
6855
- dateTimeSelectorLabel: string;
7244
+ set dateTimeSelectorLabel(value: string);
7245
+ get dateTimeSelectorLabel(): string;
6856
7246
  /**
6857
7247
  * The accessible label of the time selector element.
6858
7248
  */
6859
- timeSelectorLabel: string;
7249
+ set timeSelectorLabel(value: string);
7250
+ get timeSelectorLabel(): string;
7251
+ /**
7252
+ * The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
7253
+ */
7254
+ set adaptiveCloseButtonTitle(value: string);
7255
+ get adaptiveCloseButtonTitle(): string;
7256
+ private _toggle;
7257
+ private _dateTab;
7258
+ private _dateTabLabel;
7259
+ private _timeTab;
7260
+ private _timeTabLabel;
7261
+ private _accept;
7262
+ private _acceptLabel;
7263
+ private _cancel;
7264
+ private _cancelLabel;
7265
+ private _today;
7266
+ private _now;
7267
+ private _nowLabel;
7268
+ private _prevButtonTitle;
7269
+ private _nextButtonTitle;
7270
+ private _parentViewButtonTitle;
7271
+ private _hour;
7272
+ private _minute;
7273
+ private _second;
7274
+ private _millisecond;
7275
+ private _dayperiod;
7276
+ private _clearTitle;
7277
+ private _adaptiveCloseButtonTitle;
7278
+ private _dateTimeSelectorLabel;
7279
+ private _timeSelectorLabel;
6860
7280
  static ɵfac: i0.ɵɵFactoryDeclaration<DateTimePickerMessages, never>;
6861
- static ɵdir: i0.ɵɵDirectiveDeclaration<DateTimePickerMessages, "kendo-datetimepicker-messages-base", never, { "toggle": { "alias": "toggle"; "required": false; }; "dateTab": { "alias": "dateTab"; "required": false; }; "dateTabLabel": { "alias": "dateTabLabel"; "required": false; }; "timeTab": { "alias": "timeTab"; "required": false; }; "timeTabLabel": { "alias": "timeTabLabel"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "acceptLabel": { "alias": "acceptLabel"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "today": { "alias": "today"; "required": false; }; "now": { "alias": "now"; "required": false; }; "nowLabel": { "alias": "nowLabel"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; "hour": { "alias": "hour"; "required": false; }; "minute": { "alias": "minute"; "required": false; }; "second": { "alias": "second"; "required": false; }; "millisecond": { "alias": "millisecond"; "required": false; }; "dayperiod": { "alias": "dayperiod"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "dateTimeSelectorLabel": { "alias": "dateTimeSelectorLabel"; "required": false; }; "timeSelectorLabel": { "alias": "timeSelectorLabel"; "required": false; }; }, {}, never, never, true, never>;
7281
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DateTimePickerMessages, "kendo-datetimepicker-messages-base", never, { "toggle": { "alias": "toggle"; "required": false; }; "dateTab": { "alias": "dateTab"; "required": false; }; "dateTabLabel": { "alias": "dateTabLabel"; "required": false; }; "timeTab": { "alias": "timeTab"; "required": false; }; "timeTabLabel": { "alias": "timeTabLabel"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "acceptLabel": { "alias": "acceptLabel"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "today": { "alias": "today"; "required": false; }; "now": { "alias": "now"; "required": false; }; "nowLabel": { "alias": "nowLabel"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; "hour": { "alias": "hour"; "required": false; }; "minute": { "alias": "minute"; "required": false; }; "second": { "alias": "second"; "required": false; }; "millisecond": { "alias": "millisecond"; "required": false; }; "dayperiod": { "alias": "dayperiod"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "dateTimeSelectorLabel": { "alias": "dateTimeSelectorLabel"; "required": false; }; "timeSelectorLabel": { "alias": "timeSelectorLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; }, {}, never, never, true, never>;
6862
7282
  }
6863
7283
 
6864
7284
  /**
@@ -6888,65 +7308,95 @@ declare class TimePickerMessages extends ComponentMessages {
6888
7308
  /**
6889
7309
  * Specifies the text of the **Accept** button in the popup footer of the TimeList.
6890
7310
  */
6891
- accept: string;
7311
+ set accept(value: string);
7312
+ get accept(): string;
6892
7313
  /**
6893
7314
  * Specifies the label of the **Accept** button in the popup footer of the TimeList.
6894
7315
  */
6895
- acceptLabel: string;
7316
+ set acceptLabel(value: string);
7317
+ get acceptLabel(): string;
6896
7318
  /**
6897
7319
  * Specifies the text of the **Cancel** button in the popup footer of the TimeList.
6898
7320
  */
6899
- cancel: string;
7321
+ set cancel(value: string);
7322
+ get cancel(): string;
6900
7323
  /**
6901
7324
  * Specifies the label of the **Cancel** button in the popup footer of the TimeList.
6902
7325
  */
6903
- cancelLabel: string;
7326
+ set cancelLabel(value: string);
7327
+ get cancelLabel(): string;
6904
7328
  /**
6905
7329
  * Specifies the text of the **Now** button in the popup header of the TimeList.
6906
7330
  */
6907
- now: string;
7331
+ set now(value: string);
7332
+ get now(): string;
6908
7333
  /**
6909
7334
  * Specifies the label of the **Now** button in the popup header of the TimeList.
6910
7335
  */
6911
- nowLabel: string;
7336
+ set nowLabel(value: string);
7337
+ get nowLabel(): string;
6912
7338
  /**
6913
7339
  * Specifies the title of the **Toggle** button of the TimePicker.
6914
7340
  */
6915
- toggle: string;
7341
+ set toggle(value: string);
7342
+ get toggle(): string;
6916
7343
  /**
6917
7344
  * Specifies the label of the **Hour** part in the TimePicker.
6918
7345
  */
6919
- hour: string;
7346
+ set hour(value: string);
7347
+ get hour(): string;
6920
7348
  /**
6921
7349
  * Specifies the label of the **Minute** part in the TimePicker.
6922
7350
  */
6923
- minute: string;
7351
+ set minute(value: string);
7352
+ get minute(): string;
6924
7353
  /**
6925
7354
  * Specifies the label of the **Second** part in the TimePicker.
6926
7355
  */
6927
- second: string;
7356
+ set second(value: string);
7357
+ get second(): string;
6928
7358
  /**
6929
7359
  * Specifies the label of the **Millisecond** part in the TimePicker.
6930
7360
  */
6931
- millisecond: string;
7361
+ set millisecond(value: string);
7362
+ get millisecond(): string;
6932
7363
  /**
6933
7364
  * Specifies the label of the **Dayperiod** part in the TimePicker.
6934
7365
  */
6935
- dayperiod: string;
7366
+ set dayperiod(value: string);
7367
+ get dayperiod(): string;
6936
7368
  /**
6937
7369
  * Specifies the title of the **Clear** button of the TimePicker.
6938
7370
  */
6939
- clearTitle: string;
7371
+ set clearTitle(value: string);
7372
+ get clearTitle(): string;
6940
7373
  /**
6941
- * Specifies the title of the **Close** button of the ActionSheet that renders instead of the popup when using small screen devices in adaptive mode.
7374
+ * Specifies the accessible label of the TimeSelector.
6942
7375
  */
6943
- adaptiveCloseButtonTitle: string;
7376
+ set timeSelectorLabel(value: string);
7377
+ get timeSelectorLabel(): string;
6944
7378
  /**
6945
- * Specifies the accessible label of the TimeSelector.
7379
+ * Specifies the title of the **Close** button of the ActionSheet that renders instead of the popup when using small screen devices in adaptive mode.
6946
7380
  */
6947
- timeSelectorLabel: string;
7381
+ set adaptiveCloseButtonTitle(value: string);
7382
+ get adaptiveCloseButtonTitle(): string;
7383
+ private _accept;
7384
+ private _acceptLabel;
7385
+ private _cancel;
7386
+ private _cancelLabel;
7387
+ private _now;
7388
+ private _nowLabel;
7389
+ private _toggle;
7390
+ private _hour;
7391
+ private _minute;
7392
+ private _second;
7393
+ private _millisecond;
7394
+ private _dayperiod;
7395
+ private _clearTitle;
7396
+ private _adaptiveCloseButtonTitle;
7397
+ private _timeSelectorLabel;
6948
7398
  static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerMessages, never>;
6949
- static ɵdir: i0.ɵɵDirectiveDeclaration<TimePickerMessages, "kendo-timepicker-messages-base", never, { "accept": { "alias": "accept"; "required": false; }; "acceptLabel": { "alias": "acceptLabel"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "now": { "alias": "now"; "required": false; }; "nowLabel": { "alias": "nowLabel"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "hour": { "alias": "hour"; "required": false; }; "minute": { "alias": "minute"; "required": false; }; "second": { "alias": "second"; "required": false; }; "millisecond": { "alias": "millisecond"; "required": false; }; "dayperiod": { "alias": "dayperiod"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "timeSelectorLabel": { "alias": "timeSelectorLabel"; "required": false; }; }, {}, never, never, true, never>;
7399
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TimePickerMessages, "kendo-timepicker-messages-base", never, { "accept": { "alias": "accept"; "required": false; }; "acceptLabel": { "alias": "acceptLabel"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "now": { "alias": "now"; "required": false; }; "nowLabel": { "alias": "nowLabel"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "hour": { "alias": "hour"; "required": false; }; "minute": { "alias": "minute"; "required": false; }; "second": { "alias": "second"; "required": false; }; "millisecond": { "alias": "millisecond"; "required": false; }; "dayperiod": { "alias": "dayperiod"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "timeSelectorLabel": { "alias": "timeSelectorLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; }, {}, never, never, true, never>;
6950
7400
  }
6951
7401
 
6952
7402
  /**