@progress/kendo-angular-dateinputs 25.1.0-develop.9 → 25.1.0
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/fesm2022/progress-kendo-angular-dateinputs.mjs +1669 -546
- package/index.d.ts +695 -244
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
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
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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;
|
|
@@ -4971,6 +5206,7 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
|
|
|
4971
5206
|
private get cancelButtonElement();
|
|
4972
5207
|
private get dateTabButton();
|
|
4973
5208
|
private get timeTabButton();
|
|
5209
|
+
private get activeTabButton();
|
|
4974
5210
|
private get todayButton();
|
|
4975
5211
|
private get popupClasses();
|
|
4976
5212
|
/**
|
|
@@ -4996,6 +5232,36 @@ declare class DateTimePickerComponent extends MultiTabStop implements OnInit, On
|
|
|
4996
5232
|
private _disabledDates;
|
|
4997
5233
|
private _isActive;
|
|
4998
5234
|
private _activeTab;
|
|
5235
|
+
private _focusableId;
|
|
5236
|
+
private _weekDaysFormat;
|
|
5237
|
+
private _showOtherMonthDays;
|
|
5238
|
+
private _twoDigitYearMax;
|
|
5239
|
+
private _readOnlyInput;
|
|
5240
|
+
private _cancelButton;
|
|
5241
|
+
private _formatPlaceholder;
|
|
5242
|
+
private _placeholder;
|
|
5243
|
+
private _steps;
|
|
5244
|
+
private _focusedDate;
|
|
5245
|
+
private _calendarType;
|
|
5246
|
+
private _animateCalendarNavigation;
|
|
5247
|
+
private _weekNumber;
|
|
5248
|
+
private _rangeValidation;
|
|
5249
|
+
private _disabledDatesValidation;
|
|
5250
|
+
private _incompleteDateValidation;
|
|
5251
|
+
private _autoCorrectParts;
|
|
5252
|
+
private _autoSwitchParts;
|
|
5253
|
+
private _autoSwitchKeys;
|
|
5254
|
+
private _enableMouseWheel;
|
|
5255
|
+
private _allowCaretMode;
|
|
5256
|
+
private _clearButton;
|
|
5257
|
+
private _autoFill;
|
|
5258
|
+
private _adaptiveMode;
|
|
5259
|
+
private _inputAttributes;
|
|
5260
|
+
private _adaptiveTitle;
|
|
5261
|
+
private _adaptiveSubtitle;
|
|
5262
|
+
private _disabled;
|
|
5263
|
+
private _footer;
|
|
5264
|
+
private _readonly;
|
|
4999
5265
|
private onControlTouched;
|
|
5000
5266
|
private onControlChange;
|
|
5001
5267
|
private onValidatorChange;
|
|
@@ -5779,18 +6045,21 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
|
|
|
5779
6045
|
*
|
|
5780
6046
|
* Determines whether to display the MultiViewCalendar header.
|
|
5781
6047
|
*/
|
|
5782
|
-
showCalendarHeader: boolean;
|
|
6048
|
+
set showCalendarHeader(value: boolean);
|
|
6049
|
+
get showCalendarHeader(): boolean;
|
|
5783
6050
|
/**
|
|
5784
6051
|
* Specifies the focused date of the MultiViewCalendar component.
|
|
5785
6052
|
* 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
6053
|
*
|
|
5787
6054
|
* If the MultiViewCalendar is out of the min or max range, it normalizes the defined `focusedDate`.
|
|
5788
6055
|
*/
|
|
5789
|
-
focusedDate: Date;
|
|
6056
|
+
set focusedDate(value: Date);
|
|
6057
|
+
get focusedDate(): Date;
|
|
5790
6058
|
/**
|
|
5791
6059
|
* 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
6060
|
*/
|
|
5793
|
-
disabledDates: ((date: Date) => boolean) | Date[] | Day[];
|
|
6061
|
+
set disabledDates(value: ((date: Date) => boolean) | Date[] | Day[]);
|
|
6062
|
+
get disabledDates(): ((date: Date) => boolean) | Date[] | Day[];
|
|
5794
6063
|
/**
|
|
5795
6064
|
* 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
6065
|
* By default, the active view is `month`.
|
|
@@ -5799,63 +6068,73 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
|
|
|
5799
6068
|
*
|
|
5800
6069
|
* @default 'month
|
|
5801
6070
|
*/
|
|
5802
|
-
activeView: CalendarView;
|
|
6071
|
+
set activeView(value: CalendarView);
|
|
6072
|
+
get activeView(): CalendarView;
|
|
5803
6073
|
/**
|
|
5804
6074
|
* 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
6075
|
*
|
|
5806
6076
|
* @default 'month'
|
|
5807
6077
|
*/
|
|
5808
|
-
bottomView: CalendarView;
|
|
6078
|
+
set bottomView(value: CalendarView);
|
|
6079
|
+
get bottomView(): CalendarView;
|
|
5809
6080
|
/**
|
|
5810
6081
|
* 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
6082
|
*
|
|
5812
6083
|
* @default 'century'
|
|
5813
6084
|
*/
|
|
5814
|
-
topView: CalendarView;
|
|
6085
|
+
set topView(value: CalendarView);
|
|
6086
|
+
get topView(): CalendarView;
|
|
5815
6087
|
/**
|
|
5816
6088
|
* Specifies the minimum date that users can select ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/dates#focused-dates)).
|
|
5817
6089
|
*
|
|
5818
6090
|
* @default '1900-01-01'
|
|
5819
6091
|
*/
|
|
5820
|
-
min: Date;
|
|
6092
|
+
set min(value: Date);
|
|
6093
|
+
get min(): Date;
|
|
5821
6094
|
/**
|
|
5822
6095
|
* Specifies the maximum date that users can select ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/dates#focused-dates)).
|
|
5823
6096
|
*
|
|
5824
6097
|
* @default '2099-12-31'
|
|
5825
6098
|
*/
|
|
5826
|
-
max: Date;
|
|
6099
|
+
set max(value: Date);
|
|
6100
|
+
get max(): Date;
|
|
5827
6101
|
/**
|
|
5828
6102
|
* Determines whether users can select dates in reverse order.
|
|
5829
6103
|
* When you set `allowReverse` to `true`, the component does not validate if the start date comes after the end date.
|
|
5830
6104
|
*
|
|
5831
6105
|
* @default false
|
|
5832
6106
|
*/
|
|
5833
|
-
allowReverse: boolean;
|
|
6107
|
+
set allowReverse(value: boolean);
|
|
6108
|
+
get allowReverse(): boolean;
|
|
5834
6109
|
/**
|
|
5835
6110
|
* Determines whether to animate transitions when users navigate between views.
|
|
5836
6111
|
*
|
|
5837
6112
|
* @default false
|
|
5838
6113
|
*/
|
|
5839
|
-
animateNavigation: boolean;
|
|
6114
|
+
set animateNavigation(value: boolean);
|
|
6115
|
+
get animateNavigation(): boolean;
|
|
5840
6116
|
/**
|
|
5841
6117
|
* Determines whether the MultiViewCalendar is interactive ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/disabled-state)).
|
|
5842
6118
|
* When you set `disabled` to `true`, users cannot interact with the component.
|
|
5843
6119
|
*
|
|
5844
6120
|
* @default false
|
|
5845
6121
|
*/
|
|
5846
|
-
disabled: boolean;
|
|
6122
|
+
set disabled(value: boolean);
|
|
6123
|
+
get disabled(): boolean;
|
|
5847
6124
|
/**
|
|
5848
6125
|
* Specifies the number of calendar views to display side by side.
|
|
5849
6126
|
*
|
|
5850
6127
|
* @default 2
|
|
5851
6128
|
*/
|
|
5852
|
-
views: number;
|
|
6129
|
+
set views(value: number);
|
|
6130
|
+
get views(): number;
|
|
5853
6131
|
/**
|
|
5854
6132
|
* 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
6133
|
*
|
|
5856
6134
|
* @default false
|
|
5857
6135
|
*/
|
|
5858
|
-
weekNumber: boolean;
|
|
6136
|
+
set weekNumber(value: boolean);
|
|
6137
|
+
get weekNumber(): boolean;
|
|
5859
6138
|
/**
|
|
5860
6139
|
* Controls the popup animations.
|
|
5861
6140
|
* When you set `animate` to `true`, the popup displays opening and closing animations.
|
|
@@ -5864,40 +6143,46 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
|
|
|
5864
6143
|
*
|
|
5865
6144
|
* @default true
|
|
5866
6145
|
*/
|
|
5867
|
-
animate: boolean | PopupAnimation;
|
|
6146
|
+
set animate(value: boolean | PopupAnimation);
|
|
6147
|
+
get animate(): boolean | PopupAnimation;
|
|
5868
6148
|
/**
|
|
5869
6149
|
* Specifies the element that serves as an anchor for the popup.
|
|
5870
6150
|
* The popup opens next to this element.
|
|
5871
6151
|
* For more information, refer to the section on
|
|
5872
6152
|
* [aligning to specific components](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#aligning-to-components).
|
|
5873
6153
|
*/
|
|
5874
|
-
anchor: ElementRef;
|
|
6154
|
+
set anchor(value: ElementRef);
|
|
6155
|
+
get anchor(): ElementRef;
|
|
5875
6156
|
/**
|
|
5876
6157
|
* Specifies the alignment point for the anchor element.
|
|
5877
6158
|
* For more information, refer to the section on
|
|
5878
6159
|
* [positioning](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#positioning).
|
|
5879
6160
|
*/
|
|
5880
|
-
anchorAlign: Align;
|
|
6161
|
+
set anchorAlign(value: Align);
|
|
6162
|
+
get anchorAlign(): Align;
|
|
5881
6163
|
/**
|
|
5882
6164
|
* Determines whether to display a header for each view ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-header)).
|
|
5883
6165
|
* For example, displays the month name in the month view.
|
|
5884
6166
|
*
|
|
5885
6167
|
* @default false
|
|
5886
6168
|
*/
|
|
5887
|
-
showViewHeader: boolean;
|
|
6169
|
+
set showViewHeader(value: boolean);
|
|
6170
|
+
get showViewHeader(): boolean;
|
|
5888
6171
|
/**
|
|
5889
6172
|
* 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
6173
|
*
|
|
5891
6174
|
* @default false
|
|
5892
6175
|
*/
|
|
5893
|
-
showOtherMonthDays: boolean;
|
|
6176
|
+
set showOtherMonthDays(value: boolean);
|
|
6177
|
+
get showOtherMonthDays(): boolean;
|
|
5894
6178
|
/**
|
|
5895
6179
|
* Specifies where to render the popup container.
|
|
5896
6180
|
* By default, the popup renders in the root component.
|
|
5897
6181
|
*
|
|
5898
6182
|
* @default 'root'
|
|
5899
6183
|
*/
|
|
5900
|
-
appendTo: 'root' | 'component' | ViewContainerRef;
|
|
6184
|
+
set appendTo(value: 'root' | 'component' | ViewContainerRef);
|
|
6185
|
+
get appendTo(): 'root' | 'component' | ViewContainerRef;
|
|
5901
6186
|
/**
|
|
5902
6187
|
* Configures how the popup behaves when it encounters viewport boundaries.
|
|
5903
6188
|
* For more information, refer to the article on
|
|
@@ -5905,39 +6190,45 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
|
|
|
5905
6190
|
*
|
|
5906
6191
|
* @default { horizontal: 'fit', vertical: 'flip' }
|
|
5907
6192
|
*/
|
|
5908
|
-
collision: Collision;
|
|
6193
|
+
set collision(value: Collision);
|
|
6194
|
+
get collision(): Collision;
|
|
5909
6195
|
/**
|
|
5910
6196
|
* Specifies the alignment point for the popup element.
|
|
5911
6197
|
* For more information, refer to the section on
|
|
5912
6198
|
* [positioning](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#positioning).
|
|
5913
6199
|
*/
|
|
5914
|
-
popupAlign: Align;
|
|
6200
|
+
set popupAlign(value: Align);
|
|
6201
|
+
get popupAlign(): Align;
|
|
5915
6202
|
/**
|
|
5916
6203
|
* Specifies the margin around the popup in pixels.
|
|
5917
6204
|
* Creates empty space between the popup and its anchor element.
|
|
5918
6205
|
*/
|
|
5919
|
-
margin: Margin;
|
|
6206
|
+
set margin(value: Margin);
|
|
6207
|
+
get margin(): Margin;
|
|
5920
6208
|
/**
|
|
5921
6209
|
* Determines whether the component uses adaptive rendering for different screen sizes.
|
|
5922
6210
|
* By default, adaptive rendering is disabled.
|
|
5923
6211
|
*
|
|
5924
6212
|
* @default 'none'
|
|
5925
6213
|
*/
|
|
5926
|
-
adaptiveMode: AdaptiveMode;
|
|
6214
|
+
set adaptiveMode(value: AdaptiveMode);
|
|
6215
|
+
get adaptiveMode(): AdaptiveMode;
|
|
5927
6216
|
/**
|
|
5928
6217
|
* Specifies the title text for the input element and the header of the action sheet.
|
|
5929
6218
|
* Applies only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
|
|
5930
6219
|
*
|
|
5931
6220
|
* @default ""
|
|
5932
6221
|
*/
|
|
5933
|
-
adaptiveTitle: string;
|
|
6222
|
+
set adaptiveTitle(value: string);
|
|
6223
|
+
get adaptiveTitle(): string;
|
|
5934
6224
|
/**
|
|
5935
6225
|
* Specifies the subtitle text displayed in the header of the action sheet.
|
|
5936
6226
|
* Applies only when [`AdaptiveMode` is set to `auto`](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/adaptivemode).
|
|
5937
6227
|
*
|
|
5938
6228
|
* @default ""
|
|
5939
6229
|
*/
|
|
5940
|
-
adaptiveSubtitle: string;
|
|
6230
|
+
set adaptiveSubtitle(value: string);
|
|
6231
|
+
get adaptiveSubtitle(): string;
|
|
5941
6232
|
/**
|
|
5942
6233
|
* @hidden
|
|
5943
6234
|
*
|
|
@@ -5945,7 +6236,8 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
|
|
|
5945
6236
|
* Sets the size of the component.
|
|
5946
6237
|
* @default undefined
|
|
5947
6238
|
*/
|
|
5948
|
-
size: DateInputSize;
|
|
6239
|
+
set size(value: DateInputSize);
|
|
6240
|
+
get size(): DateInputSize;
|
|
5949
6241
|
/**
|
|
5950
6242
|
* Fires when the popup is about to open ([see example](https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange/popup#events)).
|
|
5951
6243
|
* You can prevent this event to keep the popup closed.
|
|
@@ -6003,7 +6295,8 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
|
|
|
6003
6295
|
/**
|
|
6004
6296
|
* @hidden
|
|
6005
6297
|
*/
|
|
6006
|
-
windowSize: AdaptiveSize;
|
|
6298
|
+
get windowSize(): AdaptiveSize;
|
|
6299
|
+
set windowSize(value: AdaptiveSize);
|
|
6007
6300
|
/**
|
|
6008
6301
|
* @hidden
|
|
6009
6302
|
*/
|
|
@@ -6027,6 +6320,33 @@ declare class DateRangePopupComponent implements OnInit, OnDestroy {
|
|
|
6027
6320
|
private resolvedPromise;
|
|
6028
6321
|
private _calendar;
|
|
6029
6322
|
private _show;
|
|
6323
|
+
private _showCalendarHeader;
|
|
6324
|
+
private _focusedDate;
|
|
6325
|
+
private _disabledDates;
|
|
6326
|
+
private _activeView;
|
|
6327
|
+
private _bottomView;
|
|
6328
|
+
private _topView;
|
|
6329
|
+
private _min;
|
|
6330
|
+
private _max;
|
|
6331
|
+
private _allowReverse;
|
|
6332
|
+
private _animateNavigation;
|
|
6333
|
+
private _disabled;
|
|
6334
|
+
private _views;
|
|
6335
|
+
private _weekNumber;
|
|
6336
|
+
private _animate;
|
|
6337
|
+
private _anchor;
|
|
6338
|
+
private _anchorAlign;
|
|
6339
|
+
private _showViewHeader;
|
|
6340
|
+
private _showOtherMonthDays;
|
|
6341
|
+
private _appendToValue;
|
|
6342
|
+
private _collision;
|
|
6343
|
+
private _popupAlign;
|
|
6344
|
+
private _margin;
|
|
6345
|
+
private _adaptiveMode;
|
|
6346
|
+
private _adaptiveTitle;
|
|
6347
|
+
private _adaptiveSubtitle;
|
|
6348
|
+
private _size;
|
|
6349
|
+
private _windowSize;
|
|
6030
6350
|
constructor(popupService: PopupService, dateRangeService: DateRangeService, zone: NgZone, renderer: Renderer2, localization: LocalizationService, cdr: ChangeDetectorRef, rtl: boolean, adaptiveService: AdaptiveService);
|
|
6031
6351
|
ngOnInit(): void;
|
|
6032
6352
|
ngAfterViewInit(): void;
|
|
@@ -6254,7 +6574,8 @@ declare class DateRangeComponent implements AfterContentInit, OnDestroy {
|
|
|
6254
6574
|
*
|
|
6255
6575
|
* @default undefined
|
|
6256
6576
|
*/
|
|
6257
|
-
size: DateInputSize;
|
|
6577
|
+
set size(value: DateInputSize);
|
|
6578
|
+
get size(): DateInputSize;
|
|
6258
6579
|
/**
|
|
6259
6580
|
* @hidden
|
|
6260
6581
|
*/
|
|
@@ -6263,10 +6584,12 @@ declare class DateRangeComponent implements AfterContentInit, OnDestroy {
|
|
|
6263
6584
|
/**
|
|
6264
6585
|
* @hidden
|
|
6265
6586
|
*/
|
|
6266
|
-
showDefault: boolean;
|
|
6587
|
+
get showDefault(): boolean;
|
|
6267
6588
|
private contentPopup;
|
|
6268
6589
|
private get hasContentPopup();
|
|
6269
6590
|
private subscription;
|
|
6591
|
+
private _size;
|
|
6592
|
+
private _showDefault;
|
|
6270
6593
|
constructor(dateRangeService: DateRangeService);
|
|
6271
6594
|
ngAfterContentInit(): void;
|
|
6272
6595
|
ngOnDestroy(): void;
|
|
@@ -6420,25 +6743,35 @@ declare class CalendarMessages extends ComponentMessages {
|
|
|
6420
6743
|
/**
|
|
6421
6744
|
* The **Today** button text in the header of the Calendar.
|
|
6422
6745
|
*/
|
|
6423
|
-
today: string;
|
|
6746
|
+
set today(value: string);
|
|
6747
|
+
get today(): string;
|
|
6424
6748
|
/**
|
|
6425
6749
|
* The title of the **Prev** button in the header of the Classic Calendar.
|
|
6426
6750
|
*/
|
|
6427
|
-
prevButtonTitle: string;
|
|
6751
|
+
set prevButtonTitle(value: string);
|
|
6752
|
+
get prevButtonTitle(): string;
|
|
6428
6753
|
/**
|
|
6429
6754
|
* The title of the **Next** button in the header of the Classic Calendar.
|
|
6430
6755
|
*/
|
|
6431
|
-
nextButtonTitle: string;
|
|
6756
|
+
set nextButtonTitle(value: string);
|
|
6757
|
+
get nextButtonTitle(): string;
|
|
6432
6758
|
/**
|
|
6433
|
-
* The
|
|
6759
|
+
* The label of the week number column in the Calendar.
|
|
6434
6760
|
*/
|
|
6435
|
-
|
|
6761
|
+
set weekNumberLabel(value: string);
|
|
6762
|
+
get weekNumberLabel(): string;
|
|
6436
6763
|
/**
|
|
6437
|
-
* The
|
|
6764
|
+
* The title of the **Parent View** button in the header of the Calendar.
|
|
6438
6765
|
*/
|
|
6439
|
-
|
|
6766
|
+
set parentViewButtonTitle(value: string);
|
|
6767
|
+
get parentViewButtonTitle(): string;
|
|
6768
|
+
private _today;
|
|
6769
|
+
private _prevButtonTitle;
|
|
6770
|
+
private _nextButtonTitle;
|
|
6771
|
+
private _parentViewButtonTitle;
|
|
6772
|
+
private _weekNumberLabel;
|
|
6440
6773
|
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; }; "
|
|
6774
|
+
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
6775
|
}
|
|
6443
6776
|
|
|
6444
6777
|
/**
|
|
@@ -6502,25 +6835,35 @@ declare class Messages extends ComponentMessages {
|
|
|
6502
6835
|
/**
|
|
6503
6836
|
* The **Today** button text in the header of the MultiViewCalendar.
|
|
6504
6837
|
*/
|
|
6505
|
-
today: string;
|
|
6838
|
+
set today(value: string);
|
|
6839
|
+
get today(): string;
|
|
6506
6840
|
/**
|
|
6507
6841
|
* The title of the **Prev** button in the header of the MultiViewCalendar.
|
|
6508
6842
|
*/
|
|
6509
|
-
prevButtonTitle: string;
|
|
6843
|
+
set prevButtonTitle(value: string);
|
|
6844
|
+
get prevButtonTitle(): string;
|
|
6510
6845
|
/**
|
|
6511
6846
|
* The title of the **Next** button in the header of the MultiViewCalendar.
|
|
6512
6847
|
*/
|
|
6513
|
-
nextButtonTitle: string;
|
|
6848
|
+
set nextButtonTitle(value: string);
|
|
6849
|
+
get nextButtonTitle(): string;
|
|
6514
6850
|
/**
|
|
6515
|
-
* The
|
|
6851
|
+
* The label of the week number column in the Calendar.
|
|
6516
6852
|
*/
|
|
6517
|
-
|
|
6853
|
+
set weekNumberLabel(value: string);
|
|
6854
|
+
get weekNumberLabel(): string;
|
|
6518
6855
|
/**
|
|
6519
|
-
* The
|
|
6856
|
+
* The title of the **Parent View** button in the header of the MultiViewCalendar.
|
|
6520
6857
|
*/
|
|
6521
|
-
|
|
6858
|
+
set parentViewButtonTitle(value: string);
|
|
6859
|
+
get parentViewButtonTitle(): string;
|
|
6860
|
+
private _today;
|
|
6861
|
+
private _prevButtonTitle;
|
|
6862
|
+
private _nextButtonTitle;
|
|
6863
|
+
private _parentViewButtonTitle;
|
|
6864
|
+
private _weekNumberLabel;
|
|
6522
6865
|
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; }; "
|
|
6866
|
+
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
6867
|
}
|
|
6525
6868
|
|
|
6526
6869
|
/**
|
|
@@ -6578,15 +6921,21 @@ declare class DateInputMessages extends ComponentMessages {
|
|
|
6578
6921
|
/**
|
|
6579
6922
|
* The title of the **Decrement** button of the DateInput.
|
|
6580
6923
|
*/
|
|
6581
|
-
decrement: string;
|
|
6924
|
+
set decrement(value: string);
|
|
6925
|
+
get decrement(): string;
|
|
6582
6926
|
/**
|
|
6583
6927
|
* The title of the **Increment** button of the DateInput.
|
|
6584
6928
|
*/
|
|
6585
|
-
increment: string;
|
|
6929
|
+
set increment(value: string);
|
|
6930
|
+
get increment(): string;
|
|
6586
6931
|
/**
|
|
6587
6932
|
* The title of the **Clear** button of the DateInput.
|
|
6588
6933
|
*/
|
|
6589
|
-
clearTitle: string;
|
|
6934
|
+
set clearTitle(value: string);
|
|
6935
|
+
get clearTitle(): string;
|
|
6936
|
+
private _decrement;
|
|
6937
|
+
private _increment;
|
|
6938
|
+
private _clearTitle;
|
|
6590
6939
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputMessages, never>;
|
|
6591
6940
|
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
6941
|
}
|
|
@@ -6649,31 +6998,45 @@ declare class DatePickerMessages extends ComponentMessages {
|
|
|
6649
6998
|
/**
|
|
6650
6999
|
* The **Today** button text in the header of the Calendar.
|
|
6651
7000
|
*/
|
|
6652
|
-
today: string;
|
|
7001
|
+
set today(value: string);
|
|
7002
|
+
get today(): string;
|
|
6653
7003
|
/**
|
|
6654
7004
|
* The title of the **Toggle** button of the DatePicker.
|
|
6655
7005
|
*/
|
|
6656
|
-
toggle: string;
|
|
7006
|
+
set toggle(value: string);
|
|
7007
|
+
get toggle(): string;
|
|
6657
7008
|
/**
|
|
6658
7009
|
* The title of the **Prev** button in the header of the Classic Calendar.
|
|
6659
7010
|
*/
|
|
6660
|
-
prevButtonTitle: string;
|
|
7011
|
+
set prevButtonTitle(value: string);
|
|
7012
|
+
get prevButtonTitle(): string;
|
|
6661
7013
|
/**
|
|
6662
7014
|
* The title of the **Next** button in the header of the Classic Calendar.
|
|
6663
7015
|
*/
|
|
6664
|
-
nextButtonTitle: string;
|
|
7016
|
+
set nextButtonTitle(value: string);
|
|
7017
|
+
get nextButtonTitle(): string;
|
|
6665
7018
|
/**
|
|
6666
7019
|
* The title of the **Parent View** button in the header of the Calendar.
|
|
6667
7020
|
*/
|
|
6668
|
-
parentViewButtonTitle: string;
|
|
7021
|
+
set parentViewButtonTitle(value: string);
|
|
7022
|
+
get parentViewButtonTitle(): string;
|
|
6669
7023
|
/**
|
|
6670
7024
|
* The title of the **Clear** button of the DatePicker.
|
|
6671
7025
|
*/
|
|
6672
|
-
clearTitle: string;
|
|
7026
|
+
set clearTitle(value: string);
|
|
7027
|
+
get clearTitle(): string;
|
|
6673
7028
|
/**
|
|
6674
7029
|
* 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
7030
|
*/
|
|
6676
|
-
adaptiveCloseButtonTitle: string;
|
|
7031
|
+
set adaptiveCloseButtonTitle(value: string);
|
|
7032
|
+
get adaptiveCloseButtonTitle(): string;
|
|
7033
|
+
private _today;
|
|
7034
|
+
private _toggle;
|
|
7035
|
+
private _prevButtonTitle;
|
|
7036
|
+
private _nextButtonTitle;
|
|
7037
|
+
private _parentViewButtonTitle;
|
|
7038
|
+
private _clearTitle;
|
|
7039
|
+
private _adaptiveCloseButtonTitle;
|
|
6677
7040
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerMessages, never>;
|
|
6678
7041
|
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
7042
|
}
|
|
@@ -6725,23 +7088,33 @@ declare class DateRangePopupMessages extends ComponentMessages {
|
|
|
6725
7088
|
/**
|
|
6726
7089
|
* The text of the **Accept** button in the popup footer of the DateRange Popup.
|
|
6727
7090
|
*/
|
|
6728
|
-
accept: string;
|
|
7091
|
+
set accept(value: string);
|
|
7092
|
+
get accept(): string;
|
|
6729
7093
|
/**
|
|
6730
7094
|
* The label of the **Accept** button in the popup footer of the DateRange Popup.
|
|
6731
7095
|
*/
|
|
6732
|
-
acceptLabel: string;
|
|
7096
|
+
set acceptLabel(value: string);
|
|
7097
|
+
get acceptLabel(): string;
|
|
6733
7098
|
/**
|
|
6734
7099
|
* The text of the **Cancel** button in the popup footer of the DateRange Popup.
|
|
6735
7100
|
*/
|
|
6736
|
-
cancel: string;
|
|
7101
|
+
set cancel(value: string);
|
|
7102
|
+
get cancel(): string;
|
|
6737
7103
|
/**
|
|
6738
7104
|
* The label of the **Cancel** button in the popup footer of the DateRange Popup.
|
|
6739
7105
|
*/
|
|
6740
|
-
cancelLabel: string;
|
|
7106
|
+
set cancelLabel(value: string);
|
|
7107
|
+
get cancelLabel(): string;
|
|
6741
7108
|
/**
|
|
6742
7109
|
* 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
7110
|
*/
|
|
6744
|
-
adaptiveCloseButtonTitle: string;
|
|
7111
|
+
set adaptiveCloseButtonTitle(value: string);
|
|
7112
|
+
get adaptiveCloseButtonTitle(): string;
|
|
7113
|
+
private _accept;
|
|
7114
|
+
private _acceptLabel;
|
|
7115
|
+
private _cancel;
|
|
7116
|
+
private _cancelLabel;
|
|
7117
|
+
private _adaptiveCloseButtonTitle;
|
|
6745
7118
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePopupMessages, never>;
|
|
6746
7119
|
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
7120
|
}
|
|
@@ -6764,101 +7137,149 @@ declare class DateTimePickerMessages extends ComponentMessages {
|
|
|
6764
7137
|
/**
|
|
6765
7138
|
* The title of the **Toggle** button of the DateTimePicker.
|
|
6766
7139
|
*/
|
|
6767
|
-
toggle: string;
|
|
7140
|
+
set toggle(value: string);
|
|
7141
|
+
get toggle(): string;
|
|
6768
7142
|
/**
|
|
6769
7143
|
* The text of the **Date** tab in the popup header of the DateTimePicker.
|
|
6770
7144
|
*/
|
|
6771
|
-
dateTab: string;
|
|
7145
|
+
set dateTab(value: string);
|
|
7146
|
+
get dateTab(): string;
|
|
6772
7147
|
/**
|
|
6773
7148
|
* The label of the **Date** tab in the popup header of the DateTimePicker.
|
|
6774
7149
|
*/
|
|
6775
|
-
dateTabLabel: string;
|
|
7150
|
+
set dateTabLabel(value: string);
|
|
7151
|
+
get dateTabLabel(): string;
|
|
6776
7152
|
/**
|
|
6777
7153
|
* The text of the **Time** tab in the popup header of the DateTimePicker.
|
|
6778
7154
|
*/
|
|
6779
|
-
timeTab: string;
|
|
7155
|
+
set timeTab(value: string);
|
|
7156
|
+
get timeTab(): string;
|
|
6780
7157
|
/**
|
|
6781
7158
|
* The label of the **Time** tab in the popup header of the DateTimePicker.
|
|
6782
7159
|
*/
|
|
6783
|
-
timeTabLabel: string;
|
|
7160
|
+
set timeTabLabel(value: string);
|
|
7161
|
+
get timeTabLabel(): string;
|
|
6784
7162
|
/**
|
|
6785
7163
|
* The text of the **Accept** button in the popup footer of the DateTimePicker.
|
|
6786
7164
|
*/
|
|
6787
|
-
accept: string;
|
|
7165
|
+
set accept(value: string);
|
|
7166
|
+
get accept(): string;
|
|
6788
7167
|
/**
|
|
6789
7168
|
* The label of the **Accept** button in the popup footer of the DateTimePicker.
|
|
6790
7169
|
*/
|
|
6791
|
-
acceptLabel: string;
|
|
7170
|
+
set acceptLabel(value: string);
|
|
7171
|
+
get acceptLabel(): string;
|
|
6792
7172
|
/**
|
|
6793
7173
|
* The text of the **Cancel** button in the popup footer of the DateTimePicker.
|
|
6794
7174
|
*/
|
|
6795
|
-
cancel: string;
|
|
7175
|
+
set cancel(value: string);
|
|
7176
|
+
get cancel(): string;
|
|
6796
7177
|
/**
|
|
6797
7178
|
* The label of the **Cancel** button in the popup footer of the DateTimePicker.
|
|
6798
7179
|
*/
|
|
6799
|
-
cancelLabel: string;
|
|
7180
|
+
set cancelLabel(value: string);
|
|
7181
|
+
get cancelLabel(): string;
|
|
6800
7182
|
/**
|
|
6801
7183
|
* The **Today** button text in the header of the Calendar.
|
|
6802
7184
|
*/
|
|
6803
|
-
today: string;
|
|
7185
|
+
set today(value: string);
|
|
7186
|
+
get today(): string;
|
|
6804
7187
|
/**
|
|
6805
7188
|
* The text of the **Now** button in the popup header of the TimePicker.
|
|
6806
7189
|
*/
|
|
6807
|
-
now: string;
|
|
7190
|
+
set now(value: string);
|
|
7191
|
+
get now(): string;
|
|
6808
7192
|
/**
|
|
6809
7193
|
* The label of the **Now** button in the popup header of the TimePicker.
|
|
6810
7194
|
*/
|
|
6811
|
-
nowLabel: string;
|
|
7195
|
+
set nowLabel(value: string);
|
|
7196
|
+
get nowLabel(): string;
|
|
6812
7197
|
/**
|
|
6813
7198
|
* The title of the **Prev** button in the header of the Classic Calendar.
|
|
6814
7199
|
*/
|
|
6815
|
-
prevButtonTitle: string;
|
|
7200
|
+
set prevButtonTitle(value: string);
|
|
7201
|
+
get prevButtonTitle(): string;
|
|
6816
7202
|
/**
|
|
6817
7203
|
* The title of the **Next** button in the header of the Classic Calendar.
|
|
6818
7204
|
*/
|
|
6819
|
-
nextButtonTitle: string;
|
|
7205
|
+
set nextButtonTitle(value: string);
|
|
7206
|
+
get nextButtonTitle(): string;
|
|
6820
7207
|
/**
|
|
6821
7208
|
* The title of the **Parent View** button in the header of the Calendar.
|
|
6822
7209
|
*/
|
|
6823
|
-
parentViewButtonTitle: string;
|
|
7210
|
+
set parentViewButtonTitle(value: string);
|
|
7211
|
+
get parentViewButtonTitle(): string;
|
|
6824
7212
|
/**
|
|
6825
7213
|
* The label of the **Hour** part in the TimePicker.
|
|
6826
7214
|
*/
|
|
6827
|
-
hour: string;
|
|
7215
|
+
set hour(value: string);
|
|
7216
|
+
get hour(): string;
|
|
6828
7217
|
/**
|
|
6829
7218
|
* The label of the **Minute** part in the TimePicker.
|
|
6830
7219
|
*/
|
|
6831
|
-
minute: string;
|
|
7220
|
+
set minute(value: string);
|
|
7221
|
+
get minute(): string;
|
|
6832
7222
|
/**
|
|
6833
7223
|
* The label of the **Second** part in the TimePicker.
|
|
6834
7224
|
*/
|
|
6835
|
-
second: string;
|
|
7225
|
+
set second(value: string);
|
|
7226
|
+
get second(): string;
|
|
6836
7227
|
/**
|
|
6837
7228
|
* The label of the **Millisecond** part in the TimePicker.
|
|
6838
7229
|
*/
|
|
6839
|
-
millisecond: string;
|
|
7230
|
+
set millisecond(value: string);
|
|
7231
|
+
get millisecond(): string;
|
|
6840
7232
|
/**
|
|
6841
7233
|
* The label of the **Dayperiod** part in the TimePicker.
|
|
6842
7234
|
*/
|
|
6843
|
-
dayperiod: string;
|
|
7235
|
+
set dayperiod(value: string);
|
|
7236
|
+
get dayperiod(): string;
|
|
6844
7237
|
/**
|
|
6845
7238
|
* The title of the **Clear** button of the DateTimePicker.
|
|
6846
7239
|
*/
|
|
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;
|
|
7240
|
+
set clearTitle(value: string);
|
|
7241
|
+
get clearTitle(): string;
|
|
6852
7242
|
/**
|
|
6853
7243
|
* The accessible label of the date and time selector container.
|
|
6854
7244
|
*/
|
|
6855
|
-
dateTimeSelectorLabel: string;
|
|
7245
|
+
set dateTimeSelectorLabel(value: string);
|
|
7246
|
+
get dateTimeSelectorLabel(): string;
|
|
6856
7247
|
/**
|
|
6857
7248
|
* The accessible label of the time selector element.
|
|
6858
7249
|
*/
|
|
6859
|
-
timeSelectorLabel: string;
|
|
7250
|
+
set timeSelectorLabel(value: string);
|
|
7251
|
+
get timeSelectorLabel(): string;
|
|
7252
|
+
/**
|
|
7253
|
+
* The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
|
|
7254
|
+
*/
|
|
7255
|
+
set adaptiveCloseButtonTitle(value: string);
|
|
7256
|
+
get adaptiveCloseButtonTitle(): string;
|
|
7257
|
+
private _toggle;
|
|
7258
|
+
private _dateTab;
|
|
7259
|
+
private _dateTabLabel;
|
|
7260
|
+
private _timeTab;
|
|
7261
|
+
private _timeTabLabel;
|
|
7262
|
+
private _accept;
|
|
7263
|
+
private _acceptLabel;
|
|
7264
|
+
private _cancel;
|
|
7265
|
+
private _cancelLabel;
|
|
7266
|
+
private _today;
|
|
7267
|
+
private _now;
|
|
7268
|
+
private _nowLabel;
|
|
7269
|
+
private _prevButtonTitle;
|
|
7270
|
+
private _nextButtonTitle;
|
|
7271
|
+
private _parentViewButtonTitle;
|
|
7272
|
+
private _hour;
|
|
7273
|
+
private _minute;
|
|
7274
|
+
private _second;
|
|
7275
|
+
private _millisecond;
|
|
7276
|
+
private _dayperiod;
|
|
7277
|
+
private _clearTitle;
|
|
7278
|
+
private _adaptiveCloseButtonTitle;
|
|
7279
|
+
private _dateTimeSelectorLabel;
|
|
7280
|
+
private _timeSelectorLabel;
|
|
6860
7281
|
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; }; "
|
|
7282
|
+
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
7283
|
}
|
|
6863
7284
|
|
|
6864
7285
|
/**
|
|
@@ -6888,65 +7309,95 @@ declare class TimePickerMessages extends ComponentMessages {
|
|
|
6888
7309
|
/**
|
|
6889
7310
|
* Specifies the text of the **Accept** button in the popup footer of the TimeList.
|
|
6890
7311
|
*/
|
|
6891
|
-
accept: string;
|
|
7312
|
+
set accept(value: string);
|
|
7313
|
+
get accept(): string;
|
|
6892
7314
|
/**
|
|
6893
7315
|
* Specifies the label of the **Accept** button in the popup footer of the TimeList.
|
|
6894
7316
|
*/
|
|
6895
|
-
acceptLabel: string;
|
|
7317
|
+
set acceptLabel(value: string);
|
|
7318
|
+
get acceptLabel(): string;
|
|
6896
7319
|
/**
|
|
6897
7320
|
* Specifies the text of the **Cancel** button in the popup footer of the TimeList.
|
|
6898
7321
|
*/
|
|
6899
|
-
cancel: string;
|
|
7322
|
+
set cancel(value: string);
|
|
7323
|
+
get cancel(): string;
|
|
6900
7324
|
/**
|
|
6901
7325
|
* Specifies the label of the **Cancel** button in the popup footer of the TimeList.
|
|
6902
7326
|
*/
|
|
6903
|
-
cancelLabel: string;
|
|
7327
|
+
set cancelLabel(value: string);
|
|
7328
|
+
get cancelLabel(): string;
|
|
6904
7329
|
/**
|
|
6905
7330
|
* Specifies the text of the **Now** button in the popup header of the TimeList.
|
|
6906
7331
|
*/
|
|
6907
|
-
now: string;
|
|
7332
|
+
set now(value: string);
|
|
7333
|
+
get now(): string;
|
|
6908
7334
|
/**
|
|
6909
7335
|
* Specifies the label of the **Now** button in the popup header of the TimeList.
|
|
6910
7336
|
*/
|
|
6911
|
-
nowLabel: string;
|
|
7337
|
+
set nowLabel(value: string);
|
|
7338
|
+
get nowLabel(): string;
|
|
6912
7339
|
/**
|
|
6913
7340
|
* Specifies the title of the **Toggle** button of the TimePicker.
|
|
6914
7341
|
*/
|
|
6915
|
-
toggle: string;
|
|
7342
|
+
set toggle(value: string);
|
|
7343
|
+
get toggle(): string;
|
|
6916
7344
|
/**
|
|
6917
7345
|
* Specifies the label of the **Hour** part in the TimePicker.
|
|
6918
7346
|
*/
|
|
6919
|
-
hour: string;
|
|
7347
|
+
set hour(value: string);
|
|
7348
|
+
get hour(): string;
|
|
6920
7349
|
/**
|
|
6921
7350
|
* Specifies the label of the **Minute** part in the TimePicker.
|
|
6922
7351
|
*/
|
|
6923
|
-
minute: string;
|
|
7352
|
+
set minute(value: string);
|
|
7353
|
+
get minute(): string;
|
|
6924
7354
|
/**
|
|
6925
7355
|
* Specifies the label of the **Second** part in the TimePicker.
|
|
6926
7356
|
*/
|
|
6927
|
-
second: string;
|
|
7357
|
+
set second(value: string);
|
|
7358
|
+
get second(): string;
|
|
6928
7359
|
/**
|
|
6929
7360
|
* Specifies the label of the **Millisecond** part in the TimePicker.
|
|
6930
7361
|
*/
|
|
6931
|
-
millisecond: string;
|
|
7362
|
+
set millisecond(value: string);
|
|
7363
|
+
get millisecond(): string;
|
|
6932
7364
|
/**
|
|
6933
7365
|
* Specifies the label of the **Dayperiod** part in the TimePicker.
|
|
6934
7366
|
*/
|
|
6935
|
-
dayperiod: string;
|
|
7367
|
+
set dayperiod(value: string);
|
|
7368
|
+
get dayperiod(): string;
|
|
6936
7369
|
/**
|
|
6937
7370
|
* Specifies the title of the **Clear** button of the TimePicker.
|
|
6938
7371
|
*/
|
|
6939
|
-
clearTitle: string;
|
|
7372
|
+
set clearTitle(value: string);
|
|
7373
|
+
get clearTitle(): string;
|
|
6940
7374
|
/**
|
|
6941
|
-
* Specifies the
|
|
7375
|
+
* Specifies the accessible label of the TimeSelector.
|
|
6942
7376
|
*/
|
|
6943
|
-
|
|
7377
|
+
set timeSelectorLabel(value: string);
|
|
7378
|
+
get timeSelectorLabel(): string;
|
|
6944
7379
|
/**
|
|
6945
|
-
* Specifies the
|
|
7380
|
+
* 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
7381
|
*/
|
|
6947
|
-
|
|
7382
|
+
set adaptiveCloseButtonTitle(value: string);
|
|
7383
|
+
get adaptiveCloseButtonTitle(): string;
|
|
7384
|
+
private _accept;
|
|
7385
|
+
private _acceptLabel;
|
|
7386
|
+
private _cancel;
|
|
7387
|
+
private _cancelLabel;
|
|
7388
|
+
private _now;
|
|
7389
|
+
private _nowLabel;
|
|
7390
|
+
private _toggle;
|
|
7391
|
+
private _hour;
|
|
7392
|
+
private _minute;
|
|
7393
|
+
private _second;
|
|
7394
|
+
private _millisecond;
|
|
7395
|
+
private _dayperiod;
|
|
7396
|
+
private _clearTitle;
|
|
7397
|
+
private _adaptiveCloseButtonTitle;
|
|
7398
|
+
private _timeSelectorLabel;
|
|
6948
7399
|
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; }; "
|
|
7400
|
+
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
7401
|
}
|
|
6951
7402
|
|
|
6952
7403
|
/**
|