@progress/kendo-angular-dateinputs 16.6.0-develop.5 → 16.6.0-develop.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dateinput/dateinput.component.d.ts +1 -4
- package/datepicker/datepicker.component.d.ts +1 -4
- package/datetimepicker/datetimepicker.component.d.ts +1 -4
- package/esm2020/dateinput/dateinput.component.mjs +2 -5
- package/esm2020/datepicker/datepicker.component.mjs +1 -4
- package/esm2020/datetimepicker/datetimepicker.component.mjs +1 -4
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/timepicker/timepicker.component.mjs +1 -14
- package/fesm2015/progress-kendo-angular-dateinputs.mjs +7 -29
- package/fesm2020/progress-kendo-angular-dateinputs.mjs +7 -29
- package/package.json +9 -9
- package/timepicker/timepicker.component.d.ts +1 -10
|
@@ -229,10 +229,7 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
|
|
|
229
229
|
*/
|
|
230
230
|
rangeValidation: boolean;
|
|
231
231
|
/**
|
|
232
|
-
*
|
|
233
|
-
*
|
|
234
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
235
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
232
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
236
233
|
*
|
|
237
234
|
* @default true
|
|
238
235
|
*/
|
|
@@ -261,10 +261,7 @@ export declare class DatePickerComponent extends MultiTabStop implements Control
|
|
|
261
261
|
*/
|
|
262
262
|
incompleteDateValidation: boolean;
|
|
263
263
|
/**
|
|
264
|
-
*
|
|
265
|
-
*
|
|
266
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
267
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
264
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
268
265
|
*
|
|
269
266
|
* @default true
|
|
270
267
|
*/
|
|
@@ -264,10 +264,7 @@ export declare class DateTimePickerComponent extends MultiTabStop implements OnI
|
|
|
264
264
|
*/
|
|
265
265
|
incompleteDateValidation: boolean;
|
|
266
266
|
/**
|
|
267
|
-
*
|
|
268
|
-
*
|
|
269
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
270
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
267
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
271
268
|
*
|
|
272
269
|
* @default true
|
|
273
270
|
*/
|
|
@@ -180,10 +180,7 @@ export class DateInputComponent {
|
|
|
180
180
|
*/
|
|
181
181
|
this.rangeValidation = true;
|
|
182
182
|
/**
|
|
183
|
-
*
|
|
184
|
-
*
|
|
185
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
186
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
183
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
187
184
|
*
|
|
188
185
|
* @default true
|
|
189
186
|
*/
|
|
@@ -614,7 +611,7 @@ export class DateInputComponent {
|
|
|
614
611
|
this.kendoDate?.setOptions(this.options, true);
|
|
615
612
|
this.updateFormatSections();
|
|
616
613
|
}
|
|
617
|
-
if (anyChanged(['enableMouseWheel', 'autoFill', 'autoSwitchParts', 'autoSwitchKeys', 'twoDigitYearMax', 'allowCaretMode'], changes)) {
|
|
614
|
+
if (anyChanged(['enableMouseWheel', 'autoFill', 'autoSwitchParts', 'autoSwitchKeys', 'twoDigitYearMax', 'allowCaretMode', 'autoCorrectParts'], changes)) {
|
|
618
615
|
if (!this.kendoDate) {
|
|
619
616
|
return;
|
|
620
617
|
}
|
|
@@ -163,10 +163,7 @@ export class DatePickerComponent extends MultiTabStop {
|
|
|
163
163
|
*/
|
|
164
164
|
this.incompleteDateValidation = false;
|
|
165
165
|
/**
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
169
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
166
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
170
167
|
*
|
|
171
168
|
* @default true
|
|
172
169
|
*/
|
|
@@ -179,10 +179,7 @@ export class DateTimePickerComponent extends MultiTabStop {
|
|
|
179
179
|
*/
|
|
180
180
|
this.incompleteDateValidation = false;
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
183
|
-
*
|
|
184
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
185
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
182
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
186
183
|
*
|
|
187
184
|
* @default true
|
|
188
185
|
*/
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-dateinputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.6.0-develop.
|
|
12
|
+
publishDate: 1722592317,
|
|
13
|
+
version: '16.6.0-develop.6',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -116,15 +116,6 @@ export class TimePickerComponent extends MultiTabStop {
|
|
|
116
116
|
* Determines whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
|
|
117
117
|
*/
|
|
118
118
|
this.incompleteDateValidation = false;
|
|
119
|
-
/**
|
|
120
|
-
* @hidden
|
|
121
|
-
*
|
|
122
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
123
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
124
|
-
*
|
|
125
|
-
* @default true
|
|
126
|
-
*/
|
|
127
|
-
this.autoCorrectParts = true;
|
|
128
119
|
/**
|
|
129
120
|
* Determines whether to automatically move to the next segment after the user completes the current one.
|
|
130
121
|
*
|
|
@@ -973,7 +964,7 @@ export class TimePickerComponent extends MultiTabStop {
|
|
|
973
964
|
}
|
|
974
965
|
}
|
|
975
966
|
TimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerComponent, deps: [{ token: i1.BusViewService }, { token: i0.NgZone }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i3.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i4.PickerService }, { token: i5.IntlService }], target: i0.ɵɵFactoryTarget.Component });
|
|
976
|
-
TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerComponent, isStandalone: true, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", clearButton: "clearButton", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation",
|
|
967
|
+
TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerComponent, isStandalone: true, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", clearButton: "clearButton", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", 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", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-timepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
977
968
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
978
969
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
979
970
|
{ provide: KendoInput, useExisting: forwardRef(() => TimePickerComponent) },
|
|
@@ -1044,7 +1035,6 @@ TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
1044
1035
|
[min]="normalizeTime(min)"
|
|
1045
1036
|
[max]="normalizeTime(max)"
|
|
1046
1037
|
[incompleteDateValidation]="incompleteDateValidation"
|
|
1047
|
-
[autoCorrectParts]="autoCorrectParts"
|
|
1048
1038
|
[autoSwitchParts]="autoSwitchParts"
|
|
1049
1039
|
[autoSwitchKeys]="autoSwitchKeys"
|
|
1050
1040
|
[enableMouseWheel]="enableMouseWheel"
|
|
@@ -1269,7 +1259,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1269
1259
|
[min]="normalizeTime(min)"
|
|
1270
1260
|
[max]="normalizeTime(max)"
|
|
1271
1261
|
[incompleteDateValidation]="incompleteDateValidation"
|
|
1272
|
-
[autoCorrectParts]="autoCorrectParts"
|
|
1273
1262
|
[autoSwitchParts]="autoSwitchParts"
|
|
1274
1263
|
[autoSwitchKeys]="autoSwitchKeys"
|
|
1275
1264
|
[enableMouseWheel]="enableMouseWheel"
|
|
@@ -1456,8 +1445,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1456
1445
|
type: Input
|
|
1457
1446
|
}], incompleteDateValidation: [{
|
|
1458
1447
|
type: Input
|
|
1459
|
-
}], autoCorrectParts: [{
|
|
1460
|
-
type: Input
|
|
1461
1448
|
}], autoSwitchParts: [{
|
|
1462
1449
|
type: Input
|
|
1463
1450
|
}], autoSwitchKeys: [{
|
|
@@ -35,8 +35,8 @@ const packageMetadata = {
|
|
|
35
35
|
name: '@progress/kendo-angular-dateinputs',
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
38
|
-
publishDate:
|
|
39
|
-
version: '16.6.0-develop.
|
|
38
|
+
publishDate: 1722592317,
|
|
39
|
+
version: '16.6.0-develop.6',
|
|
40
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
41
|
};
|
|
42
42
|
|
|
@@ -8221,10 +8221,7 @@ class DateInputComponent {
|
|
|
8221
8221
|
*/
|
|
8222
8222
|
this.rangeValidation = true;
|
|
8223
8223
|
/**
|
|
8224
|
-
*
|
|
8225
|
-
*
|
|
8226
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
8227
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
8224
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
8228
8225
|
*
|
|
8229
8226
|
* @default true
|
|
8230
8227
|
*/
|
|
@@ -8656,7 +8653,7 @@ class DateInputComponent {
|
|
|
8656
8653
|
(_a = this.kendoDate) === null || _a === void 0 ? void 0 : _a.setOptions(this.options, true);
|
|
8657
8654
|
this.updateFormatSections();
|
|
8658
8655
|
}
|
|
8659
|
-
if (anyChanged(['enableMouseWheel', 'autoFill', 'autoSwitchParts', 'autoSwitchKeys', 'twoDigitYearMax', 'allowCaretMode'], changes)) {
|
|
8656
|
+
if (anyChanged(['enableMouseWheel', 'autoFill', 'autoSwitchParts', 'autoSwitchKeys', 'twoDigitYearMax', 'allowCaretMode', 'autoCorrectParts'], changes)) {
|
|
8660
8657
|
if (!this.kendoDate) {
|
|
8661
8658
|
return;
|
|
8662
8659
|
}
|
|
@@ -9519,10 +9516,7 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
9519
9516
|
*/
|
|
9520
9517
|
this.incompleteDateValidation = false;
|
|
9521
9518
|
/**
|
|
9522
|
-
*
|
|
9523
|
-
*
|
|
9524
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
9525
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
9519
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
9526
9520
|
*
|
|
9527
9521
|
* @default true
|
|
9528
9522
|
*/
|
|
@@ -13004,15 +12998,6 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
13004
12998
|
* Determines whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
|
|
13005
12999
|
*/
|
|
13006
13000
|
this.incompleteDateValidation = false;
|
|
13007
|
-
/**
|
|
13008
|
-
* @hidden
|
|
13009
|
-
*
|
|
13010
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
13011
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
13012
|
-
*
|
|
13013
|
-
* @default true
|
|
13014
|
-
*/
|
|
13015
|
-
this.autoCorrectParts = true;
|
|
13016
13001
|
/**
|
|
13017
13002
|
* Determines whether to automatically move to the next segment after the user completes the current one.
|
|
13018
13003
|
*
|
|
@@ -13865,7 +13850,7 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
13865
13850
|
}
|
|
13866
13851
|
}
|
|
13867
13852
|
TimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerComponent, deps: [{ token: BusViewService }, { token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$3.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Component });
|
|
13868
|
-
TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerComponent, isStandalone: true, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", clearButton: "clearButton", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation",
|
|
13853
|
+
TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerComponent, isStandalone: true, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", clearButton: "clearButton", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", 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", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-timepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
13869
13854
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
13870
13855
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
13871
13856
|
{ provide: KendoInput, useExisting: forwardRef(() => TimePickerComponent) },
|
|
@@ -13936,7 +13921,6 @@ TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
13936
13921
|
[min]="normalizeTime(min)"
|
|
13937
13922
|
[max]="normalizeTime(max)"
|
|
13938
13923
|
[incompleteDateValidation]="incompleteDateValidation"
|
|
13939
|
-
[autoCorrectParts]="autoCorrectParts"
|
|
13940
13924
|
[autoSwitchParts]="autoSwitchParts"
|
|
13941
13925
|
[autoSwitchKeys]="autoSwitchKeys"
|
|
13942
13926
|
[enableMouseWheel]="enableMouseWheel"
|
|
@@ -14161,7 +14145,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
14161
14145
|
[min]="normalizeTime(min)"
|
|
14162
14146
|
[max]="normalizeTime(max)"
|
|
14163
14147
|
[incompleteDateValidation]="incompleteDateValidation"
|
|
14164
|
-
[autoCorrectParts]="autoCorrectParts"
|
|
14165
14148
|
[autoSwitchParts]="autoSwitchParts"
|
|
14166
14149
|
[autoSwitchKeys]="autoSwitchKeys"
|
|
14167
14150
|
[enableMouseWheel]="enableMouseWheel"
|
|
@@ -14348,8 +14331,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
14348
14331
|
type: Input
|
|
14349
14332
|
}], incompleteDateValidation: [{
|
|
14350
14333
|
type: Input
|
|
14351
|
-
}], autoCorrectParts: [{
|
|
14352
|
-
type: Input
|
|
14353
14334
|
}], autoSwitchParts: [{
|
|
14354
14335
|
type: Input
|
|
14355
14336
|
}], autoSwitchKeys: [{
|
|
@@ -14627,10 +14608,7 @@ class DateTimePickerComponent extends MultiTabStop {
|
|
|
14627
14608
|
*/
|
|
14628
14609
|
this.incompleteDateValidation = false;
|
|
14629
14610
|
/**
|
|
14630
|
-
*
|
|
14631
|
-
*
|
|
14632
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
14633
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
14611
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
14634
14612
|
*
|
|
14635
14613
|
* @default true
|
|
14636
14614
|
*/
|
|
@@ -35,8 +35,8 @@ const packageMetadata = {
|
|
|
35
35
|
name: '@progress/kendo-angular-dateinputs',
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
38
|
-
publishDate:
|
|
39
|
-
version: '16.6.0-develop.
|
|
38
|
+
publishDate: 1722592317,
|
|
39
|
+
version: '16.6.0-develop.6',
|
|
40
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
41
|
};
|
|
42
42
|
|
|
@@ -8203,10 +8203,7 @@ class DateInputComponent {
|
|
|
8203
8203
|
*/
|
|
8204
8204
|
this.rangeValidation = true;
|
|
8205
8205
|
/**
|
|
8206
|
-
*
|
|
8207
|
-
*
|
|
8208
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
8209
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
8206
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
8210
8207
|
*
|
|
8211
8208
|
* @default true
|
|
8212
8209
|
*/
|
|
@@ -8637,7 +8634,7 @@ class DateInputComponent {
|
|
|
8637
8634
|
this.kendoDate?.setOptions(this.options, true);
|
|
8638
8635
|
this.updateFormatSections();
|
|
8639
8636
|
}
|
|
8640
|
-
if (anyChanged(['enableMouseWheel', 'autoFill', 'autoSwitchParts', 'autoSwitchKeys', 'twoDigitYearMax', 'allowCaretMode'], changes)) {
|
|
8637
|
+
if (anyChanged(['enableMouseWheel', 'autoFill', 'autoSwitchParts', 'autoSwitchKeys', 'twoDigitYearMax', 'allowCaretMode', 'autoCorrectParts'], changes)) {
|
|
8641
8638
|
if (!this.kendoDate) {
|
|
8642
8639
|
return;
|
|
8643
8640
|
}
|
|
@@ -9499,10 +9496,7 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
9499
9496
|
*/
|
|
9500
9497
|
this.incompleteDateValidation = false;
|
|
9501
9498
|
/**
|
|
9502
|
-
*
|
|
9503
|
-
*
|
|
9504
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
9505
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
9499
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
9506
9500
|
*
|
|
9507
9501
|
* @default true
|
|
9508
9502
|
*/
|
|
@@ -12974,15 +12968,6 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
12974
12968
|
* Determines whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
|
|
12975
12969
|
*/
|
|
12976
12970
|
this.incompleteDateValidation = false;
|
|
12977
|
-
/**
|
|
12978
|
-
* @hidden
|
|
12979
|
-
*
|
|
12980
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
12981
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
12982
|
-
*
|
|
12983
|
-
* @default true
|
|
12984
|
-
*/
|
|
12985
|
-
this.autoCorrectParts = true;
|
|
12986
12971
|
/**
|
|
12987
12972
|
* Determines whether to automatically move to the next segment after the user completes the current one.
|
|
12988
12973
|
*
|
|
@@ -13831,7 +13816,7 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
13831
13816
|
}
|
|
13832
13817
|
}
|
|
13833
13818
|
TimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerComponent, deps: [{ token: BusViewService }, { token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$3.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Component });
|
|
13834
|
-
TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerComponent, isStandalone: true, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", clearButton: "clearButton", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation",
|
|
13819
|
+
TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerComponent, isStandalone: true, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", clearButton: "clearButton", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", 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", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-timepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
13835
13820
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
13836
13821
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
13837
13822
|
{ provide: KendoInput, useExisting: forwardRef(() => TimePickerComponent) },
|
|
@@ -13902,7 +13887,6 @@ TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
13902
13887
|
[min]="normalizeTime(min)"
|
|
13903
13888
|
[max]="normalizeTime(max)"
|
|
13904
13889
|
[incompleteDateValidation]="incompleteDateValidation"
|
|
13905
|
-
[autoCorrectParts]="autoCorrectParts"
|
|
13906
13890
|
[autoSwitchParts]="autoSwitchParts"
|
|
13907
13891
|
[autoSwitchKeys]="autoSwitchKeys"
|
|
13908
13892
|
[enableMouseWheel]="enableMouseWheel"
|
|
@@ -14127,7 +14111,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
14127
14111
|
[min]="normalizeTime(min)"
|
|
14128
14112
|
[max]="normalizeTime(max)"
|
|
14129
14113
|
[incompleteDateValidation]="incompleteDateValidation"
|
|
14130
|
-
[autoCorrectParts]="autoCorrectParts"
|
|
14131
14114
|
[autoSwitchParts]="autoSwitchParts"
|
|
14132
14115
|
[autoSwitchKeys]="autoSwitchKeys"
|
|
14133
14116
|
[enableMouseWheel]="enableMouseWheel"
|
|
@@ -14314,8 +14297,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
14314
14297
|
type: Input
|
|
14315
14298
|
}], incompleteDateValidation: [{
|
|
14316
14299
|
type: Input
|
|
14317
|
-
}], autoCorrectParts: [{
|
|
14318
|
-
type: Input
|
|
14319
14300
|
}], autoSwitchParts: [{
|
|
14320
14301
|
type: Input
|
|
14321
14302
|
}], autoSwitchKeys: [{
|
|
@@ -14593,10 +14574,7 @@ class DateTimePickerComponent extends MultiTabStop {
|
|
|
14593
14574
|
*/
|
|
14594
14575
|
this.incompleteDateValidation = false;
|
|
14595
14576
|
/**
|
|
14596
|
-
*
|
|
14597
|
-
*
|
|
14598
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
14599
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
14577
|
+
* Determines whether to autocorrect invalid segments automatically.
|
|
14600
14578
|
*
|
|
14601
14579
|
* @default true
|
|
14602
14580
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "16.6.0-develop.
|
|
3
|
+
"version": "16.6.0-develop.6",
|
|
4
4
|
"description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"@angular/forms": "15 - 18",
|
|
35
35
|
"@angular/platform-browser": "15 - 18",
|
|
36
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-buttons": "16.6.0-develop.
|
|
38
|
-
"@progress/kendo-angular-common": "16.6.0-develop.
|
|
39
|
-
"@progress/kendo-angular-intl": "16.6.0-develop.
|
|
40
|
-
"@progress/kendo-angular-l10n": "16.6.0-develop.
|
|
41
|
-
"@progress/kendo-angular-icons": "16.6.0-develop.
|
|
42
|
-
"@progress/kendo-angular-popup": "16.6.0-develop.
|
|
43
|
-
"@progress/kendo-angular-navigation": "16.6.0-develop.
|
|
37
|
+
"@progress/kendo-angular-buttons": "16.6.0-develop.6",
|
|
38
|
+
"@progress/kendo-angular-common": "16.6.0-develop.6",
|
|
39
|
+
"@progress/kendo-angular-intl": "16.6.0-develop.6",
|
|
40
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.6",
|
|
41
|
+
"@progress/kendo-angular-icons": "16.6.0-develop.6",
|
|
42
|
+
"@progress/kendo-angular-popup": "16.6.0-develop.6",
|
|
43
|
+
"@progress/kendo-angular-navigation": "16.6.0-develop.6",
|
|
44
44
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"tslib": "^2.3.1",
|
|
48
|
-
"@progress/kendo-angular-schematics": "16.6.0-develop.
|
|
48
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.6",
|
|
49
49
|
"@progress/kendo-common": "^0.2.0",
|
|
50
50
|
"@progress/kendo-date-math": "^1.1.0",
|
|
51
51
|
"@progress/kendo-dateinputs-common": "^0.3.4"
|
|
@@ -159,15 +159,6 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
|
|
|
159
159
|
* Determines whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
|
|
160
160
|
*/
|
|
161
161
|
incompleteDateValidation: boolean;
|
|
162
|
-
/**
|
|
163
|
-
* @hidden
|
|
164
|
-
*
|
|
165
|
-
* Determines whether to auto correct invalid segments automatically.
|
|
166
|
-
* TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
|
|
167
|
-
*
|
|
168
|
-
* @default true
|
|
169
|
-
*/
|
|
170
|
-
autoCorrectParts: boolean;
|
|
171
162
|
/**
|
|
172
163
|
* Determines whether to automatically move to the next segment after the user completes the current one.
|
|
173
164
|
*
|
|
@@ -555,5 +546,5 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
|
|
|
555
546
|
private handleDateCompletenessChange;
|
|
556
547
|
private setComponentClasses;
|
|
557
548
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, never>;
|
|
558
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "focusableId": "focusableId"; "disabled": "disabled"; "readonly": "readonly"; "readOnlyInput": "readOnlyInput"; "clearButton": "clearButton"; "format": "format"; "formatPlaceholder": "formatPlaceholder"; "placeholder": "placeholder"; "min": "min"; "max": "max"; "incompleteDateValidation": "incompleteDateValidation"; "
|
|
549
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "focusableId": "focusableId"; "disabled": "disabled"; "readonly": "readonly"; "readOnlyInput": "readOnlyInput"; "clearButton": "clearButton"; "format": "format"; "formatPlaceholder": "formatPlaceholder"; "placeholder": "placeholder"; "min": "min"; "max": "max"; "incompleteDateValidation": "incompleteDateValidation"; "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"; "inputAttributes": "inputAttributes"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; "escape": "escape"; }, never, never, true, never>;
|
|
559
550
|
}
|