@progress/kendo-angular-dateinputs 13.6.0-develop.9 → 14.0.0-develop.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dateinput/dateinput.component.d.ts +93 -57
- package/datepicker/datepicker.component.d.ts +38 -1
- package/datetimepicker/datetimepicker.component.d.ts +38 -1
- package/esm2020/dateinput/dateinput.component.mjs +240 -821
- package/esm2020/datepicker/datepicker.component.mjs +63 -2
- package/esm2020/datetimepicker/datetimepicker.component.mjs +71 -3
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/timepicker/timepicker.component.mjs +53 -2
- package/fesm2015/progress-kendo-angular-dateinputs.mjs +425 -827
- package/fesm2020/progress-kendo-angular-dateinputs.mjs +426 -827
- package/package.json +13 -12
- package/timepicker/timepicker.component.d.ts +32 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0-develop.10",
|
|
4
4
|
"description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -33,22 +33,23 @@
|
|
|
33
33
|
"@angular/core": "13 - 16",
|
|
34
34
|
"@angular/platform-browser": "13 - 16",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-common": "
|
|
37
|
-
"@progress/kendo-angular-intl": "
|
|
38
|
-
"@progress/kendo-angular-l10n": "
|
|
39
|
-
"@progress/kendo-angular-icons": "
|
|
40
|
-
"@progress/kendo-angular-popup": "
|
|
41
|
-
"@progress/kendo-angular-navigation": "
|
|
36
|
+
"@progress/kendo-angular-common": "14.0.0-develop.10",
|
|
37
|
+
"@progress/kendo-angular-intl": "14.0.0-develop.10",
|
|
38
|
+
"@progress/kendo-angular-l10n": "14.0.0-develop.10",
|
|
39
|
+
"@progress/kendo-angular-icons": "14.0.0-develop.10",
|
|
40
|
+
"@progress/kendo-angular-popup": "14.0.0-develop.10",
|
|
41
|
+
"@progress/kendo-angular-navigation": "14.0.0-develop.10",
|
|
42
42
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "
|
|
44
|
-
"@progress/kendo-angular-inputs": "
|
|
45
|
-
"@progress/kendo-angular-label": "
|
|
43
|
+
"@progress/kendo-angular-buttons": "14.0.0-develop.10",
|
|
44
|
+
"@progress/kendo-angular-inputs": "14.0.0-develop.10",
|
|
45
|
+
"@progress/kendo-angular-label": "14.0.0-develop.10"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tslib": "^2.3.1",
|
|
49
|
-
"@progress/kendo-angular-schematics": "
|
|
49
|
+
"@progress/kendo-angular-schematics": "14.0.0-develop.10",
|
|
50
50
|
"@progress/kendo-common": "^0.2.0",
|
|
51
|
-
"@progress/kendo-date-math": "^1.1.0"
|
|
51
|
+
"@progress/kendo-date-math": "^1.1.0",
|
|
52
|
+
"@progress/kendo-dateinputs-common": "v0.3.0"
|
|
52
53
|
},
|
|
53
54
|
"schematics": "./schematics/collection.json",
|
|
54
55
|
"module": "fesm2015/progress-kendo-angular-dateinputs.mjs",
|
|
@@ -150,6 +150,37 @@ export declare class TimePickerComponent implements ControlValueAccessor, OnInit
|
|
|
150
150
|
* Determines whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
|
|
151
151
|
*/
|
|
152
152
|
incompleteDateValidation: boolean;
|
|
153
|
+
/**
|
|
154
|
+
* @hidden
|
|
155
|
+
*
|
|
156
|
+
* Determines whether to auto correct invalid segments automatically.
|
|
157
|
+
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
158
|
+
*
|
|
159
|
+
* @default true
|
|
160
|
+
*/
|
|
161
|
+
autoCorrectParts: boolean;
|
|
162
|
+
/**
|
|
163
|
+
* Determines whether to automatically move to the next segment after the user completes the current one.
|
|
164
|
+
*
|
|
165
|
+
* @default true
|
|
166
|
+
*/
|
|
167
|
+
autoSwitchParts: boolean;
|
|
168
|
+
/**
|
|
169
|
+
* A string array representing custom keys, which will move the focus to the next date format segment.
|
|
170
|
+
*/
|
|
171
|
+
autoSwitchKeys: string[];
|
|
172
|
+
/**
|
|
173
|
+
* Indicates whether the mouse scroll can be used to increase/decrease the time segments values.
|
|
174
|
+
*
|
|
175
|
+
* @default true
|
|
176
|
+
*/
|
|
177
|
+
enableMouseWheel: boolean;
|
|
178
|
+
/**
|
|
179
|
+
* Determines if the users should see a blinking caret inside the Date Input when possible.
|
|
180
|
+
*
|
|
181
|
+
* @default false
|
|
182
|
+
*/
|
|
183
|
+
allowCaretMode: boolean;
|
|
153
184
|
/**
|
|
154
185
|
* Determines whether to display the **Cancel** button in the popup.
|
|
155
186
|
*/
|
|
@@ -537,5 +568,5 @@ export declare class TimePickerComponent implements ControlValueAccessor, OnInit
|
|
|
537
568
|
private handleDateCompletenessChange;
|
|
538
569
|
private setComponentClasses;
|
|
539
570
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, [null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
540
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "focusableId": "focusableId"; "disabled": "disabled"; "readonly": "readonly"; "readOnlyInput": "readOnlyInput"; "format": "format"; "formatPlaceholder": "formatPlaceholder"; "placeholder": "placeholder"; "min": "min"; "max": "max"; "incompleteDateValidation": "incompleteDateValidation"; "cancelButton": "cancelButton"; "nowButton": "nowButton"; "steps": "steps"; "popupSettings": "popupSettings"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "title": "title"; "subtitle": "subtitle"; "rangeValidation": "rangeValidation"; "adaptiveMode": "adaptiveMode"; "value": "value"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; }, never, never>;
|
|
571
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "focusableId": "focusableId"; "disabled": "disabled"; "readonly": "readonly"; "readOnlyInput": "readOnlyInput"; "format": "format"; "formatPlaceholder": "formatPlaceholder"; "placeholder": "placeholder"; "min": "min"; "max": "max"; "incompleteDateValidation": "incompleteDateValidation"; "autoCorrectParts": "autoCorrectParts"; "autoSwitchParts": "autoSwitchParts"; "autoSwitchKeys": "autoSwitchKeys"; "enableMouseWheel": "enableMouseWheel"; "allowCaretMode": "allowCaretMode"; "cancelButton": "cancelButton"; "nowButton": "nowButton"; "steps": "steps"; "popupSettings": "popupSettings"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "title": "title"; "subtitle": "subtitle"; "rangeValidation": "rangeValidation"; "adaptiveMode": "adaptiveMode"; "value": "value"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; }, never, never>;
|
|
541
572
|
}
|