@progress/kendo-angular-dateinputs 16.11.0-develop.16 → 16.11.0-develop.18
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/datepicker/datepicker.component.d.ts +1 -1
- package/esm2020/datepicker/datepicker.component.mjs +5 -3
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-dateinputs.mjs +7 -5
- package/fesm2020/progress-kendo-angular-dateinputs.mjs +7 -5
- package/package.json +9 -9
|
@@ -781,10 +781,12 @@ export class DatePickerComponent extends MultiTabStop {
|
|
|
781
781
|
/**
|
|
782
782
|
* @hidden
|
|
783
783
|
*/
|
|
784
|
-
handleChange(value) {
|
|
784
|
+
handleChange(value, isInputValueChange) {
|
|
785
785
|
this.value = value;
|
|
786
786
|
if (this.show) {
|
|
787
|
-
|
|
787
|
+
if (!isInputValueChange) {
|
|
788
|
+
this.focusInput();
|
|
789
|
+
}
|
|
788
790
|
this.show = false;
|
|
789
791
|
}
|
|
790
792
|
this.onControlChange(cloneDate(value));
|
|
@@ -794,7 +796,7 @@ export class DatePickerComponent extends MultiTabStop {
|
|
|
794
796
|
* @hidden
|
|
795
797
|
*/
|
|
796
798
|
handleInputChange(value) {
|
|
797
|
-
this.handleChange(this.dateInput.formatSections['time'] ? value : this.mergeTime(value));
|
|
799
|
+
this.handleChange(this.dateInput.formatSections['time'] ? value : this.mergeTime(value), true);
|
|
798
800
|
}
|
|
799
801
|
/**
|
|
800
802
|
* @hidden
|
|
@@ -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.11.0-develop.
|
|
12
|
+
publishDate: 1728308828,
|
|
13
|
+
version: '16.11.0-develop.18',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -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.11.0-develop.
|
|
38
|
+
publishDate: 1728308828,
|
|
39
|
+
version: '16.11.0-develop.18',
|
|
40
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
41
|
};
|
|
42
42
|
|
|
@@ -10118,10 +10118,12 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
10118
10118
|
/**
|
|
10119
10119
|
* @hidden
|
|
10120
10120
|
*/
|
|
10121
|
-
handleChange(value) {
|
|
10121
|
+
handleChange(value, isInputValueChange) {
|
|
10122
10122
|
this.value = value;
|
|
10123
10123
|
if (this.show) {
|
|
10124
|
-
|
|
10124
|
+
if (!isInputValueChange) {
|
|
10125
|
+
this.focusInput();
|
|
10126
|
+
}
|
|
10125
10127
|
this.show = false;
|
|
10126
10128
|
}
|
|
10127
10129
|
this.onControlChange(cloneDate(value));
|
|
@@ -10131,7 +10133,7 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
10131
10133
|
* @hidden
|
|
10132
10134
|
*/
|
|
10133
10135
|
handleInputChange(value) {
|
|
10134
|
-
this.handleChange(this.dateInput.formatSections['time'] ? value : this.mergeTime(value));
|
|
10136
|
+
this.handleChange(this.dateInput.formatSections['time'] ? value : this.mergeTime(value), true);
|
|
10135
10137
|
}
|
|
10136
10138
|
/**
|
|
10137
10139
|
* @hidden
|
|
@@ -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.11.0-develop.
|
|
38
|
+
publishDate: 1728308828,
|
|
39
|
+
version: '16.11.0-develop.18',
|
|
40
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
41
|
};
|
|
42
42
|
|
|
@@ -10095,10 +10095,12 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
10095
10095
|
/**
|
|
10096
10096
|
* @hidden
|
|
10097
10097
|
*/
|
|
10098
|
-
handleChange(value) {
|
|
10098
|
+
handleChange(value, isInputValueChange) {
|
|
10099
10099
|
this.value = value;
|
|
10100
10100
|
if (this.show) {
|
|
10101
|
-
|
|
10101
|
+
if (!isInputValueChange) {
|
|
10102
|
+
this.focusInput();
|
|
10103
|
+
}
|
|
10102
10104
|
this.show = false;
|
|
10103
10105
|
}
|
|
10104
10106
|
this.onControlChange(cloneDate(value));
|
|
@@ -10108,7 +10110,7 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
10108
10110
|
* @hidden
|
|
10109
10111
|
*/
|
|
10110
10112
|
handleInputChange(value) {
|
|
10111
|
-
this.handleChange(this.dateInput.formatSections['time'] ? value : this.mergeTime(value));
|
|
10113
|
+
this.handleChange(this.dateInput.formatSections['time'] ? value : this.mergeTime(value), true);
|
|
10112
10114
|
}
|
|
10113
10115
|
/**
|
|
10114
10116
|
* @hidden
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "16.11.0-develop.
|
|
3
|
+
"version": "16.11.0-develop.18",
|
|
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.11.0-develop.
|
|
38
|
-
"@progress/kendo-angular-common": "16.11.0-develop.
|
|
39
|
-
"@progress/kendo-angular-intl": "16.11.0-develop.
|
|
40
|
-
"@progress/kendo-angular-l10n": "16.11.0-develop.
|
|
41
|
-
"@progress/kendo-angular-icons": "16.11.0-develop.
|
|
42
|
-
"@progress/kendo-angular-popup": "16.11.0-develop.
|
|
43
|
-
"@progress/kendo-angular-navigation": "16.11.0-develop.
|
|
37
|
+
"@progress/kendo-angular-buttons": "16.11.0-develop.18",
|
|
38
|
+
"@progress/kendo-angular-common": "16.11.0-develop.18",
|
|
39
|
+
"@progress/kendo-angular-intl": "16.11.0-develop.18",
|
|
40
|
+
"@progress/kendo-angular-l10n": "16.11.0-develop.18",
|
|
41
|
+
"@progress/kendo-angular-icons": "16.11.0-develop.18",
|
|
42
|
+
"@progress/kendo-angular-popup": "16.11.0-develop.18",
|
|
43
|
+
"@progress/kendo-angular-navigation": "16.11.0-develop.18",
|
|
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.11.0-develop.
|
|
48
|
+
"@progress/kendo-angular-schematics": "16.11.0-develop.18",
|
|
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.5"
|