@progress/kendo-angular-scheduler 16.3.1-develop.2 → 16.4.0-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.
|
@@ -60,11 +60,16 @@ export class FocusableDirective {
|
|
|
60
60
|
toggleFocus(value) {
|
|
61
61
|
const element = this.element.nativeElement;
|
|
62
62
|
const focusedClass = element.matches('.k-button-group .k-button') ? 'k-focus' : 'k-selected';
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
63
|
+
const renderedEvents = this.element.nativeElement.ownerDocument.querySelectorAll('.k-event');
|
|
64
|
+
const method = value ? 'addClass' : 'removeClass';
|
|
65
|
+
this.renderer[method](element, focusedClass);
|
|
66
|
+
if (renderedEvents.length > 0) {
|
|
67
|
+
const ariaLabel = element.getAttribute('aria-label');
|
|
68
|
+
renderedEvents.forEach((event) => {
|
|
69
|
+
if (event.getAttribute('aria-label') === ariaLabel) {
|
|
70
|
+
this.renderer[method](event, 'k-selected');
|
|
71
|
+
}
|
|
72
|
+
});
|
|
68
73
|
}
|
|
69
74
|
const selectable = element.matches('.k-scheduler-agendaview .k-scheduler-content .k-selected');
|
|
70
75
|
if (selectable) {
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-scheduler',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1719846278,
|
|
13
|
+
version: '16.4.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -50,8 +50,8 @@ const packageMetadata = {
|
|
|
50
50
|
name: '@progress/kendo-angular-scheduler',
|
|
51
51
|
productName: 'Kendo UI for Angular',
|
|
52
52
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
53
|
-
publishDate:
|
|
54
|
-
version: '16.
|
|
53
|
+
publishDate: 1719846278,
|
|
54
|
+
version: '16.4.0-develop.1',
|
|
55
55
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
56
56
|
};
|
|
57
57
|
|
|
@@ -1839,11 +1839,16 @@ class FocusableDirective {
|
|
|
1839
1839
|
var _a;
|
|
1840
1840
|
const element = this.element.nativeElement;
|
|
1841
1841
|
const focusedClass = element.matches('.k-button-group .k-button') ? 'k-focus' : 'k-selected';
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1842
|
+
const renderedEvents = this.element.nativeElement.ownerDocument.querySelectorAll('.k-event');
|
|
1843
|
+
const method = value ? 'addClass' : 'removeClass';
|
|
1844
|
+
this.renderer[method](element, focusedClass);
|
|
1845
|
+
if (renderedEvents.length > 0) {
|
|
1846
|
+
const ariaLabel = element.getAttribute('aria-label');
|
|
1847
|
+
renderedEvents.forEach((event) => {
|
|
1848
|
+
if (event.getAttribute('aria-label') === ariaLabel) {
|
|
1849
|
+
this.renderer[method](event, 'k-selected');
|
|
1850
|
+
}
|
|
1851
|
+
});
|
|
1847
1852
|
}
|
|
1848
1853
|
const selectable = element.matches('.k-scheduler-agendaview .k-scheduler-content .k-selected');
|
|
1849
1854
|
if (selectable) {
|
|
@@ -50,8 +50,8 @@ const packageMetadata = {
|
|
|
50
50
|
name: '@progress/kendo-angular-scheduler',
|
|
51
51
|
productName: 'Kendo UI for Angular',
|
|
52
52
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
53
|
-
publishDate:
|
|
54
|
-
version: '16.
|
|
53
|
+
publishDate: 1719846278,
|
|
54
|
+
version: '16.4.0-develop.1',
|
|
55
55
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
56
56
|
};
|
|
57
57
|
|
|
@@ -1804,11 +1804,16 @@ class FocusableDirective {
|
|
|
1804
1804
|
toggleFocus(value) {
|
|
1805
1805
|
const element = this.element.nativeElement;
|
|
1806
1806
|
const focusedClass = element.matches('.k-button-group .k-button') ? 'k-focus' : 'k-selected';
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1807
|
+
const renderedEvents = this.element.nativeElement.ownerDocument.querySelectorAll('.k-event');
|
|
1808
|
+
const method = value ? 'addClass' : 'removeClass';
|
|
1809
|
+
this.renderer[method](element, focusedClass);
|
|
1810
|
+
if (renderedEvents.length > 0) {
|
|
1811
|
+
const ariaLabel = element.getAttribute('aria-label');
|
|
1812
|
+
renderedEvents.forEach((event) => {
|
|
1813
|
+
if (event.getAttribute('aria-label') === ariaLabel) {
|
|
1814
|
+
this.renderer[method](event, 'k-selected');
|
|
1815
|
+
}
|
|
1816
|
+
});
|
|
1812
1817
|
}
|
|
1813
1818
|
const selectable = element.matches('.k-scheduler-agendaview .k-scheduler-content .k-selected');
|
|
1814
1819
|
if (selectable) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.4.0-develop.1",
|
|
4
4
|
"description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -26,23 +26,23 @@
|
|
|
26
26
|
"@progress/kendo-data-query": "^1.0.0",
|
|
27
27
|
"@progress/kendo-drawing": "^1.19.0",
|
|
28
28
|
"@progress/kendo-licensing": "^1.0.2",
|
|
29
|
-
"@progress/kendo-angular-tooltip": "16.
|
|
30
|
-
"@progress/kendo-angular-buttons": "16.
|
|
31
|
-
"@progress/kendo-angular-common": "16.
|
|
32
|
-
"@progress/kendo-angular-dateinputs": "16.
|
|
33
|
-
"@progress/kendo-angular-dialog": "16.
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "16.
|
|
35
|
-
"@progress/kendo-angular-icons": "16.
|
|
36
|
-
"@progress/kendo-angular-inputs": "16.
|
|
37
|
-
"@progress/kendo-angular-intl": "16.
|
|
38
|
-
"@progress/kendo-angular-l10n": "16.
|
|
39
|
-
"@progress/kendo-angular-label": "16.
|
|
40
|
-
"@progress/kendo-angular-popup": "16.
|
|
29
|
+
"@progress/kendo-angular-tooltip": "16.4.0-develop.1",
|
|
30
|
+
"@progress/kendo-angular-buttons": "16.4.0-develop.1",
|
|
31
|
+
"@progress/kendo-angular-common": "16.4.0-develop.1",
|
|
32
|
+
"@progress/kendo-angular-dateinputs": "16.4.0-develop.1",
|
|
33
|
+
"@progress/kendo-angular-dialog": "16.4.0-develop.1",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "16.4.0-develop.1",
|
|
35
|
+
"@progress/kendo-angular-icons": "16.4.0-develop.1",
|
|
36
|
+
"@progress/kendo-angular-inputs": "16.4.0-develop.1",
|
|
37
|
+
"@progress/kendo-angular-intl": "16.4.0-develop.1",
|
|
38
|
+
"@progress/kendo-angular-l10n": "16.4.0-develop.1",
|
|
39
|
+
"@progress/kendo-angular-label": "16.4.0-develop.1",
|
|
40
|
+
"@progress/kendo-angular-popup": "16.4.0-develop.1",
|
|
41
41
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"tslib": "^2.3.1",
|
|
45
|
-
"@progress/kendo-angular-schematics": "16.
|
|
45
|
+
"@progress/kendo-angular-schematics": "16.4.0-develop.1",
|
|
46
46
|
"@progress/kendo-date-math": "^1.3.2",
|
|
47
47
|
"@progress/kendo-draggable": "^3.0.2",
|
|
48
48
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -4,10 +4,10 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
|
|
6
6
|
// peer deps of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '16.
|
|
8
|
-
'@progress/kendo-angular-navigation': '16.
|
|
7
|
+
'@progress/kendo-angular-treeview': '16.4.0-develop.1',
|
|
8
|
+
'@progress/kendo-angular-navigation': '16.4.0-develop.1',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '16.
|
|
10
|
+
'@progress/kendo-angular-dialog': '16.4.0-develop.1',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^3.0.0'
|
|
13
13
|
} });
|