@progress/kendo-angular-toolbar 23.3.0-develop.15 → 23.3.0-develop.17

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.
@@ -26,8 +26,8 @@ const packageMetadata = {
26
26
  productName: 'Kendo UI for Angular',
27
27
  productCode: 'KENDOUIANGULAR',
28
28
  productCodes: ['KENDOUIANGULAR'],
29
- publishDate: 1774528979,
30
- version: '23.3.0-develop.15',
29
+ publishDate: 1774600067,
30
+ version: '23.3.0-develop.17',
31
31
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
32
32
  };
33
33
 
@@ -97,6 +97,9 @@ const isSmartBoxInput = (target) => {
97
97
  * @hidden
98
98
  */
99
99
  const isVisible = (element) => {
100
+ if (!element?.getBoundingClientRect) {
101
+ return false;
102
+ }
100
103
  const rect = element.getBoundingClientRect();
101
104
  const hasSize = rect.width > 0 && rect.height > 0;
102
105
  const hasPosition = rect.x !== 0 && rect.y !== 0;
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1774528979,
11
- "version": "23.3.0-develop.15",
10
+ "publishDate": 1774600067,
11
+ "version": "23.3.0-develop.17",
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.3.0-develop.15",
3
+ "version": "23.3.0-develop.17",
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": 1774528979,
48
+ "publishDate": 1774600067,
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.3.0-develop.15",
59
- "@progress/kendo-angular-common": "23.3.0-develop.15",
60
- "@progress/kendo-angular-l10n": "23.3.0-develop.15",
61
- "@progress/kendo-angular-icons": "23.3.0-develop.15",
62
- "@progress/kendo-angular-indicators": "23.3.0-develop.15",
63
- "@progress/kendo-angular-popup": "23.3.0-develop.15",
58
+ "@progress/kendo-angular-buttons": "23.3.0-develop.17",
59
+ "@progress/kendo-angular-common": "23.3.0-develop.17",
60
+ "@progress/kendo-angular-l10n": "23.3.0-develop.17",
61
+ "@progress/kendo-angular-icons": "23.3.0-develop.17",
62
+ "@progress/kendo-angular-indicators": "23.3.0-develop.17",
63
+ "@progress/kendo-angular-popup": "23.3.0-develop.17",
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.3.0-develop.15"
68
+ "@progress/kendo-angular-schematics": "23.3.0-develop.17"
69
69
  },
70
70
  "schematics": "./schematics/collection.json",
71
71
  "module": "fesm2022/progress-kendo-angular-toolbar.mjs",