@progress/kendo-angular-layout 19.2.0-develop.14 → 19.2.0-develop.2
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/README.md
CHANGED
@@ -4,12 +4,9 @@
|
|
4
4
|
|
5
5
|
## Kendo UI for Angular Layout Package (Avatar, Card, Drawer, ExpansionPanel, GridLayout, PanelBar, Splitter, StackLayout, Stepper, TabStrip, TileLayout and Timeline Components)
|
6
6
|
|
7
|
-
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui
|
8
|
-
> *
|
9
|
-
> *
|
10
|
-
> * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
|
11
|
-
> * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
|
12
|
-
> * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
|
7
|
+
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui)—a commercial library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
|
8
|
+
> * You must [install a license key](https://www.telerik.com/kendo-angular-ui/my-license) when adding the package to your project. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
|
9
|
+
> * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular dev team!
|
13
10
|
>
|
14
11
|
> [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
|
15
12
|
|
@@ -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: '19.2.0-develop.
|
13
|
+
publishDate: 1750841527,
|
14
|
+
version: '19.2.0-develop.2',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
16
16
|
};
|
@@ -327,34 +327,24 @@ export class PanelBarComponent {
|
|
327
327
|
}
|
328
328
|
const modifiedItems = new Array();
|
329
329
|
const selectPreventedItems = [];
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
selectedState = this.selectable ? selectedState : currentItem.selected;
|
339
|
-
if (currentItem.selected !== selectedState || currentItem.focused !== focusedState) {
|
330
|
+
this.allItems
|
331
|
+
.forEach((currentItem) => {
|
332
|
+
let selectedState = currentItem === item;
|
333
|
+
const focusedState = selectedState;
|
334
|
+
selectedState = this.selectable ? selectedState : currentItem.selected;
|
335
|
+
if (currentItem.selected !== selectedState || currentItem.focused !== focusedState) {
|
336
|
+
const isSelectPrevented = selectedState ? this.emitEvent('select', currentItem).isDefaultPrevented() : false;
|
337
|
+
if (!isSelectPrevented) {
|
340
338
|
currentItem.selected = selectedState;
|
341
339
|
currentItem.focused = focusedState;
|
342
340
|
this.activeDescendant = focusedState ? currentItem.itemId : '';
|
343
341
|
modifiedItems.push(currentItem);
|
344
342
|
}
|
345
|
-
|
346
|
-
|
347
|
-
else {
|
348
|
-
selectPreventedItems.push(item);
|
349
|
-
this.allItems.forEach((currentItem) => {
|
350
|
-
const focusedState = currentItem === item;
|
351
|
-
if (currentItem.focused !== focusedState) {
|
352
|
-
currentItem.focused = focusedState;
|
353
|
-
this.activeDescendant = focusedState ? currentItem.itemId : '';
|
354
|
-
modifiedItems.push(currentItem);
|
343
|
+
else {
|
344
|
+
selectPreventedItems.push(currentItem);
|
355
345
|
}
|
356
|
-
}
|
357
|
-
}
|
346
|
+
}
|
347
|
+
});
|
358
348
|
if (this.expandMode === PanelBarExpandMode.Multiple) {
|
359
349
|
if ((item.hasChildItems || item.hasContent) && !selectPreventedItems.includes(item)) {
|
360
350
|
const isEventPrevented = item.expanded ?
|
@@ -464,9 +454,6 @@ export class PanelBarComponent {
|
|
464
454
|
}
|
465
455
|
}
|
466
456
|
moveFocus(from, to) {
|
467
|
-
if (!from || !to) {
|
468
|
-
return;
|
469
|
-
}
|
470
457
|
from.focused = false;
|
471
458
|
to.focused = true;
|
472
459
|
this.activeDescendant = to.itemId;
|
@@ -29,8 +29,8 @@ const packageMetadata = {
|
|
29
29
|
productName: 'Kendo UI for Angular',
|
30
30
|
productCode: 'KENDOUIANGULAR',
|
31
31
|
productCodes: ['KENDOUIANGULAR'],
|
32
|
-
publishDate:
|
33
|
-
version: '19.2.0-develop.
|
32
|
+
publishDate: 1750841527,
|
33
|
+
version: '19.2.0-develop.2',
|
34
34
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
35
35
|
};
|
36
36
|
|
@@ -1387,34 +1387,24 @@ class PanelBarComponent {
|
|
1387
1387
|
}
|
1388
1388
|
const modifiedItems = new Array();
|
1389
1389
|
const selectPreventedItems = [];
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
|
1397
|
-
|
1398
|
-
selectedState = this.selectable ? selectedState : currentItem.selected;
|
1399
|
-
if (currentItem.selected !== selectedState || currentItem.focused !== focusedState) {
|
1390
|
+
this.allItems
|
1391
|
+
.forEach((currentItem) => {
|
1392
|
+
let selectedState = currentItem === item;
|
1393
|
+
const focusedState = selectedState;
|
1394
|
+
selectedState = this.selectable ? selectedState : currentItem.selected;
|
1395
|
+
if (currentItem.selected !== selectedState || currentItem.focused !== focusedState) {
|
1396
|
+
const isSelectPrevented = selectedState ? this.emitEvent('select', currentItem).isDefaultPrevented() : false;
|
1397
|
+
if (!isSelectPrevented) {
|
1400
1398
|
currentItem.selected = selectedState;
|
1401
1399
|
currentItem.focused = focusedState;
|
1402
1400
|
this.activeDescendant = focusedState ? currentItem.itemId : '';
|
1403
1401
|
modifiedItems.push(currentItem);
|
1404
1402
|
}
|
1405
|
-
|
1406
|
-
|
1407
|
-
else {
|
1408
|
-
selectPreventedItems.push(item);
|
1409
|
-
this.allItems.forEach((currentItem) => {
|
1410
|
-
const focusedState = currentItem === item;
|
1411
|
-
if (currentItem.focused !== focusedState) {
|
1412
|
-
currentItem.focused = focusedState;
|
1413
|
-
this.activeDescendant = focusedState ? currentItem.itemId : '';
|
1414
|
-
modifiedItems.push(currentItem);
|
1403
|
+
else {
|
1404
|
+
selectPreventedItems.push(currentItem);
|
1415
1405
|
}
|
1416
|
-
}
|
1417
|
-
}
|
1406
|
+
}
|
1407
|
+
});
|
1418
1408
|
if (this.expandMode === PanelBarExpandMode.Multiple) {
|
1419
1409
|
if ((item.hasChildItems || item.hasContent) && !selectPreventedItems.includes(item)) {
|
1420
1410
|
const isEventPrevented = item.expanded ?
|
@@ -1524,9 +1514,6 @@ class PanelBarComponent {
|
|
1524
1514
|
}
|
1525
1515
|
}
|
1526
1516
|
moveFocus(from, to) {
|
1527
|
-
if (!from || !to) {
|
1528
|
-
return;
|
1529
|
-
}
|
1530
1517
|
from.focused = false;
|
1531
1518
|
to.focused = true;
|
1532
1519
|
this.activeDescendant = to.itemId;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
3
|
-
"version": "19.2.0-develop.
|
3
|
+
"version": "19.2.0-develop.2",
|
4
4
|
"description": "Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -50,7 +50,7 @@
|
|
50
50
|
"package": {
|
51
51
|
"productName": "Kendo UI for Angular",
|
52
52
|
"productCode": "KENDOUIANGULAR",
|
53
|
-
"publishDate":
|
53
|
+
"publishDate": 1750841527,
|
54
54
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
|
55
55
|
}
|
56
56
|
},
|
@@ -60,17 +60,17 @@
|
|
60
60
|
"@angular/core": "16 - 20",
|
61
61
|
"@angular/platform-browser": "16 - 20",
|
62
62
|
"@progress/kendo-licensing": "^1.5.0",
|
63
|
-
"@progress/kendo-angular-common": "19.2.0-develop.
|
64
|
-
"@progress/kendo-angular-l10n": "19.2.0-develop.
|
65
|
-
"@progress/kendo-angular-progressbar": "19.2.0-develop.
|
66
|
-
"@progress/kendo-angular-icons": "19.2.0-develop.
|
67
|
-
"@progress/kendo-angular-buttons": "19.2.0-develop.
|
68
|
-
"@progress/kendo-angular-intl": "19.2.0-develop.
|
63
|
+
"@progress/kendo-angular-common": "19.2.0-develop.2",
|
64
|
+
"@progress/kendo-angular-l10n": "19.2.0-develop.2",
|
65
|
+
"@progress/kendo-angular-progressbar": "19.2.0-develop.2",
|
66
|
+
"@progress/kendo-angular-icons": "19.2.0-develop.2",
|
67
|
+
"@progress/kendo-angular-buttons": "19.2.0-develop.2",
|
68
|
+
"@progress/kendo-angular-intl": "19.2.0-develop.2",
|
69
69
|
"rxjs": "^6.5.3 || ^7.0.0"
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
72
|
"tslib": "^2.3.1",
|
73
|
-
"@progress/kendo-angular-schematics": "19.2.0-develop.
|
73
|
+
"@progress/kendo-angular-schematics": "19.2.0-develop.2",
|
74
74
|
"@progress/kendo-draggable": "^3.0.2",
|
75
75
|
"node-html-parser": "^7.0.1"
|
76
76
|
},
|