@progress/kendo-angular-dateinputs 18.1.0-develop.9 → 18.1.1-develop.1
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/esm2022/dateinput/dateinput.component.mjs +1 -0
- package/esm2022/datetimepicker/datetimepicker.component.mjs +3 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/timepicker/timepicker.component.mjs +3 -0
- package/fesm2022/progress-kendo-angular-dateinputs.mjs +9 -2
- package/package.json +12 -12
|
@@ -758,6 +758,7 @@ export class DateInputComponent {
|
|
|
758
758
|
this.kendoDate?.refreshElementValue();
|
|
759
759
|
}
|
|
760
760
|
resetInput() {
|
|
761
|
+
this.isDateIncomplete = false;
|
|
761
762
|
this.writeValue(null);
|
|
762
763
|
// Notify datepicker that a change has happened and emit `valueChange`
|
|
763
764
|
this.notify();
|
|
@@ -1421,6 +1421,9 @@ export class DateTimePickerComponent extends MultiTabStop {
|
|
|
1421
1421
|
}
|
|
1422
1422
|
handleValueChange(value) {
|
|
1423
1423
|
if (isEqual(this.value, value)) {
|
|
1424
|
+
if (this.incompleteDateValidation) {
|
|
1425
|
+
this.onControlChange(cloneDate(value));
|
|
1426
|
+
}
|
|
1424
1427
|
return;
|
|
1425
1428
|
}
|
|
1426
1429
|
this.value = cloneDate(value);
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '18.1.
|
|
13
|
+
publishDate: 1739868597,
|
|
14
|
+
version: '18.1.1-develop.1',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -736,6 +736,9 @@ export class TimePickerComponent extends MultiTabStop {
|
|
|
736
736
|
this.focusInput();
|
|
737
737
|
this.show = false;
|
|
738
738
|
}
|
|
739
|
+
if (this.incompleteDateValidation) {
|
|
740
|
+
this.onControlChange(cloneDate(value));
|
|
741
|
+
}
|
|
739
742
|
return;
|
|
740
743
|
}
|
|
741
744
|
this.value = cloneDate(value);
|
|
@@ -36,8 +36,8 @@ const packageMetadata = {
|
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
37
|
productCode: 'KENDOUIANGULAR',
|
|
38
38
|
productCodes: ['KENDOUIANGULAR'],
|
|
39
|
-
publishDate:
|
|
40
|
-
version: '18.1.
|
|
39
|
+
publishDate: 1739868597,
|
|
40
|
+
version: '18.1.1-develop.1',
|
|
41
41
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
42
42
|
};
|
|
43
43
|
|
|
@@ -9188,6 +9188,7 @@ class DateInputComponent {
|
|
|
9188
9188
|
this.kendoDate?.refreshElementValue();
|
|
9189
9189
|
}
|
|
9190
9190
|
resetInput() {
|
|
9191
|
+
this.isDateIncomplete = false;
|
|
9191
9192
|
this.writeValue(null);
|
|
9192
9193
|
// Notify datepicker that a change has happened and emit `valueChange`
|
|
9193
9194
|
this.notify();
|
|
@@ -14355,6 +14356,9 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
14355
14356
|
this.focusInput();
|
|
14356
14357
|
this.show = false;
|
|
14357
14358
|
}
|
|
14359
|
+
if (this.incompleteDateValidation) {
|
|
14360
|
+
this.onControlChange(cloneDate(value));
|
|
14361
|
+
}
|
|
14358
14362
|
return;
|
|
14359
14363
|
}
|
|
14360
14364
|
this.value = cloneDate(value);
|
|
@@ -16798,6 +16802,9 @@ class DateTimePickerComponent extends MultiTabStop {
|
|
|
16798
16802
|
}
|
|
16799
16803
|
handleValueChange(value) {
|
|
16800
16804
|
if (isEqual(this.value, value)) {
|
|
16805
|
+
if (this.incompleteDateValidation) {
|
|
16806
|
+
this.onControlChange(cloneDate(value));
|
|
16807
|
+
}
|
|
16801
16808
|
return;
|
|
16802
16809
|
}
|
|
16803
16810
|
this.value = cloneDate(value);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "18.1.
|
|
3
|
+
"version": "18.1.1-develop.1",
|
|
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",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"package": {
|
|
30
30
|
"productName": "Kendo UI for Angular",
|
|
31
31
|
"productCode": "KENDOUIANGULAR",
|
|
32
|
-
"publishDate":
|
|
32
|
+
"publishDate": 1739868597,
|
|
33
33
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
@@ -39,20 +39,20 @@
|
|
|
39
39
|
"@angular/core": "16 - 19",
|
|
40
40
|
"@angular/forms": "16 - 19",
|
|
41
41
|
"@angular/platform-browser": "16 - 19",
|
|
42
|
-
"@progress/kendo-licensing": "^1.0
|
|
43
|
-
"@progress/kendo-angular-buttons": "18.1.
|
|
44
|
-
"@progress/kendo-angular-common": "18.1.
|
|
45
|
-
"@progress/kendo-angular-utils": "18.1.
|
|
46
|
-
"@progress/kendo-angular-intl": "18.1.
|
|
47
|
-
"@progress/kendo-angular-l10n": "18.1.
|
|
48
|
-
"@progress/kendo-angular-icons": "18.1.
|
|
49
|
-
"@progress/kendo-angular-popup": "18.1.
|
|
50
|
-
"@progress/kendo-angular-navigation": "18.1.
|
|
42
|
+
"@progress/kendo-licensing": "^1.4.0",
|
|
43
|
+
"@progress/kendo-angular-buttons": "18.1.1-develop.1",
|
|
44
|
+
"@progress/kendo-angular-common": "18.1.1-develop.1",
|
|
45
|
+
"@progress/kendo-angular-utils": "18.1.1-develop.1",
|
|
46
|
+
"@progress/kendo-angular-intl": "18.1.1-develop.1",
|
|
47
|
+
"@progress/kendo-angular-l10n": "18.1.1-develop.1",
|
|
48
|
+
"@progress/kendo-angular-icons": "18.1.1-develop.1",
|
|
49
|
+
"@progress/kendo-angular-popup": "18.1.1-develop.1",
|
|
50
|
+
"@progress/kendo-angular-navigation": "18.1.1-develop.1",
|
|
51
51
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1",
|
|
55
|
-
"@progress/kendo-angular-schematics": "18.1.
|
|
55
|
+
"@progress/kendo-angular-schematics": "18.1.1-develop.1",
|
|
56
56
|
"@progress/kendo-common": "^1.0.1",
|
|
57
57
|
"@progress/kendo-date-math": "^1.1.0",
|
|
58
58
|
"@progress/kendo-dateinputs-common": "^0.4.1"
|