@progress/kendo-angular-toolbar 23.0.0-develop.3 → 23.0.0-develop.5

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.
@@ -27,7 +27,7 @@ const packageMetadata = {
27
27
  productCode: 'KENDOUIANGULAR',
28
28
  productCodes: ['KENDOUIANGULAR'],
29
29
  publishDate: 0,
30
- version: '23.0.0-develop.3',
30
+ version: '23.0.0-develop.5',
31
31
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
32
32
  };
33
33
 
@@ -87,6 +87,12 @@ const closest = (node, predicate) => {
87
87
  }
88
88
  return node;
89
89
  };
90
+ /**
91
+ * @hidden
92
+ */
93
+ const isSmartBoxInput = (target) => {
94
+ return !!closest(target, (el) => el.classList?.contains('k-smart-box'));
95
+ };
90
96
  /**
91
97
  * @hidden
92
98
  */
@@ -1472,7 +1478,9 @@ class ToolBarComponent {
1472
1478
  switch (code) {
1473
1479
  case Keys.ArrowLeft:
1474
1480
  this.zone.run(() => {
1475
- ev.preventDefault();
1481
+ if (!isSmartBoxInput(ev.target)) {
1482
+ ev.preventDefault();
1483
+ }
1476
1484
  if (this.direction === 'ltr') {
1477
1485
  this.navigationService.focusPrev(ev);
1478
1486
  }
@@ -1485,7 +1493,9 @@ class ToolBarComponent {
1485
1493
  break;
1486
1494
  case Keys.ArrowRight:
1487
1495
  this.zone.run(() => {
1488
- ev.preventDefault();
1496
+ if (!isSmartBoxInput(ev.target)) {
1497
+ ev.preventDefault();
1498
+ }
1489
1499
  if (this.direction === 'ltr') {
1490
1500
  this.navigationService.focusNext(ev);
1491
1501
  }
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1770292709,
11
- "version": "23.0.0-develop.3",
10
+ "publishDate": 1770309141,
11
+ "version": "23.0.0-develop.5",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-toolbar",
3
- "version": "23.0.0-develop.3",
3
+ "version": "23.0.0-develop.5",
4
4
  "description": "Kendo UI Angular Toolbar component - a single UI element that organizes buttons and other navigation elements",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -45,7 +45,7 @@
45
45
  "package": {
46
46
  "productName": "Kendo UI for Angular",
47
47
  "productCode": "KENDOUIANGULAR",
48
- "publishDate": 1770292709,
48
+ "publishDate": 1770309141,
49
49
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
50
50
  }
51
51
  },
@@ -55,17 +55,17 @@
55
55
  "@angular/core": "19 - 21",
56
56
  "@angular/platform-browser": "19 - 21",
57
57
  "@progress/kendo-licensing": "^1.10.0",
58
- "@progress/kendo-angular-buttons": "23.0.0-develop.3",
59
- "@progress/kendo-angular-common": "23.0.0-develop.3",
60
- "@progress/kendo-angular-l10n": "23.0.0-develop.3",
61
- "@progress/kendo-angular-icons": "23.0.0-develop.3",
62
- "@progress/kendo-angular-indicators": "23.0.0-develop.3",
63
- "@progress/kendo-angular-popup": "23.0.0-develop.3",
58
+ "@progress/kendo-angular-buttons": "23.0.0-develop.5",
59
+ "@progress/kendo-angular-common": "23.0.0-develop.5",
60
+ "@progress/kendo-angular-l10n": "23.0.0-develop.5",
61
+ "@progress/kendo-angular-icons": "23.0.0-develop.5",
62
+ "@progress/kendo-angular-indicators": "23.0.0-develop.5",
63
+ "@progress/kendo-angular-popup": "23.0.0-develop.5",
64
64
  "rxjs": "^6.5.3 || ^7.0.0"
65
65
  },
66
66
  "dependencies": {
67
67
  "tslib": "^2.3.1",
68
- "@progress/kendo-angular-schematics": "23.0.0-develop.3"
68
+ "@progress/kendo-angular-schematics": "23.0.0-develop.5"
69
69
  },
70
70
  "schematics": "./schematics/collection.json",
71
71
  "module": "fesm2022/progress-kendo-angular-toolbar.mjs",
package/util.d.ts CHANGED
@@ -28,6 +28,10 @@ export declare function outerHeight(element: any): number;
28
28
  * @hidden
29
29
  */
30
30
  export declare const closest: (node: any, predicate: any) => any;
31
+ /**
32
+ * @hidden
33
+ */
34
+ export declare const isSmartBoxInput: (target: any) => boolean;
31
35
  /**
32
36
  * @hidden
33
37
  */