@progress/kendo-angular-dateinputs 17.1.1-develop.9 → 17.1.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.
|
@@ -163,7 +163,7 @@ export class ViewComponent {
|
|
|
163
163
|
return `${rowIndex}:${cellIndex}`;
|
|
164
164
|
}
|
|
165
165
|
handleWeekNumberClick(week) {
|
|
166
|
-
const availableDates = week.map(item => item.value).filter(date => !this.disabledDatesService.isDateDisabled(date));
|
|
166
|
+
const availableDates = week.filter(day => day).map(item => item.value).filter(date => !this.disabledDatesService.isDateDisabled(date));
|
|
167
167
|
this.weekNumberCellClick.emit(availableDates);
|
|
168
168
|
}
|
|
169
169
|
getMonthLabel(date) {
|
|
@@ -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: '17.1.1
|
|
12
|
+
publishDate: 1733732436,
|
|
13
|
+
version: '17.1.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -33,8 +33,8 @@ const packageMetadata = {
|
|
|
33
33
|
name: '@progress/kendo-angular-dateinputs',
|
|
34
34
|
productName: 'Kendo UI for Angular',
|
|
35
35
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
36
|
-
publishDate:
|
|
37
|
-
version: '17.1.1
|
|
36
|
+
publishDate: 1733732436,
|
|
37
|
+
version: '17.1.1',
|
|
38
38
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
39
39
|
};
|
|
40
40
|
|
|
@@ -1809,7 +1809,7 @@ class ViewComponent {
|
|
|
1809
1809
|
return `${rowIndex}:${cellIndex}`;
|
|
1810
1810
|
}
|
|
1811
1811
|
handleWeekNumberClick(week) {
|
|
1812
|
-
const availableDates = week.map(item => item.value).filter(date => !this.disabledDatesService.isDateDisabled(date));
|
|
1812
|
+
const availableDates = week.filter(day => day).map(item => item.value).filter(date => !this.disabledDatesService.isDateDisabled(date));
|
|
1813
1813
|
this.weekNumberCellClick.emit(availableDates);
|
|
1814
1814
|
}
|
|
1815
1815
|
getMonthLabel(date) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "17.1.1
|
|
3
|
+
"version": "17.1.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",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"@angular/forms": "16 - 19",
|
|
35
35
|
"@angular/platform-browser": "16 - 19",
|
|
36
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-buttons": "17.1.1
|
|
38
|
-
"@progress/kendo-angular-common": "17.1.1
|
|
39
|
-
"@progress/kendo-angular-intl": "17.1.1
|
|
40
|
-
"@progress/kendo-angular-l10n": "17.1.1
|
|
41
|
-
"@progress/kendo-angular-icons": "17.1.1
|
|
42
|
-
"@progress/kendo-angular-popup": "17.1.1
|
|
43
|
-
"@progress/kendo-angular-navigation": "17.1.1
|
|
37
|
+
"@progress/kendo-angular-buttons": "17.1.1",
|
|
38
|
+
"@progress/kendo-angular-common": "17.1.1",
|
|
39
|
+
"@progress/kendo-angular-intl": "17.1.1",
|
|
40
|
+
"@progress/kendo-angular-l10n": "17.1.1",
|
|
41
|
+
"@progress/kendo-angular-icons": "17.1.1",
|
|
42
|
+
"@progress/kendo-angular-popup": "17.1.1",
|
|
43
|
+
"@progress/kendo-angular-navigation": "17.1.1",
|
|
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": "17.1.1
|
|
48
|
+
"@progress/kendo-angular-schematics": "17.1.1",
|
|
49
49
|
"@progress/kendo-common": "^1.0.1",
|
|
50
50
|
"@progress/kendo-date-math": "^1.1.0",
|
|
51
51
|
"@progress/kendo-dateinputs-common": "^0.4.0"
|