@progress/kendo-angular-toolbar 18.4.0-develop.1 → 18.4.0

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.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1743499138,
14
- version: '18.4.0-develop.1',
13
+ publishDate: 1743579551,
14
+ version: '18.4.0',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -232,7 +232,10 @@ export class ToolBarDropDownButtonComponent extends ToolBarToolComponent {
232
232
  }
233
233
  ngAfterViewInit() {
234
234
  this.zone.onStable.pipe(take(1)).subscribe(() => {
235
- this.renderer.addClass(this[`${this.location}DropDownButton`].button.nativeElement, 'k-toolbar-menu-button');
235
+ const dropDownButton = this[`${this.location}DropDownButton`];
236
+ if (dropDownButton) {
237
+ this.renderer.addClass(dropDownButton.button.nativeElement, 'k-toolbar-menu-button');
238
+ }
236
239
  });
237
240
  }
238
241
  /**
@@ -25,8 +25,8 @@ const packageMetadata = {
25
25
  productName: 'Kendo UI for Angular',
26
26
  productCode: 'KENDOUIANGULAR',
27
27
  productCodes: ['KENDOUIANGULAR'],
28
- publishDate: 1743499138,
29
- version: '18.4.0-develop.1',
28
+ publishDate: 1743579551,
29
+ version: '18.4.0',
30
30
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
31
31
  };
32
32
 
@@ -3569,7 +3569,10 @@ class ToolBarDropDownButtonComponent extends ToolBarToolComponent {
3569
3569
  }
3570
3570
  ngAfterViewInit() {
3571
3571
  this.zone.onStable.pipe(take(1)).subscribe(() => {
3572
- this.renderer.addClass(this[`${this.location}DropDownButton`].button.nativeElement, 'k-toolbar-menu-button');
3572
+ const dropDownButton = this[`${this.location}DropDownButton`];
3573
+ if (dropDownButton) {
3574
+ this.renderer.addClass(dropDownButton.button.nativeElement, 'k-toolbar-menu-button');
3575
+ }
3573
3576
  });
3574
3577
  }
3575
3578
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-toolbar",
3
- "version": "18.4.0-develop.1",
3
+ "version": "18.4.0",
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",
@@ -25,7 +25,7 @@
25
25
  "package": {
26
26
  "productName": "Kendo UI for Angular",
27
27
  "productCode": "KENDOUIANGULAR",
28
- "publishDate": 1743499138,
28
+ "publishDate": 1743579551,
29
29
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
30
30
  }
31
31
  },
@@ -35,16 +35,16 @@
35
35
  "@angular/core": "16 - 19",
36
36
  "@angular/platform-browser": "16 - 19",
37
37
  "@progress/kendo-licensing": "^1.5.0",
38
- "@progress/kendo-angular-buttons": "18.4.0-develop.1",
39
- "@progress/kendo-angular-common": "18.4.0-develop.1",
40
- "@progress/kendo-angular-l10n": "18.4.0-develop.1",
41
- "@progress/kendo-angular-icons": "18.4.0-develop.1",
42
- "@progress/kendo-angular-popup": "18.4.0-develop.1",
38
+ "@progress/kendo-angular-buttons": "18.4.0",
39
+ "@progress/kendo-angular-common": "18.4.0",
40
+ "@progress/kendo-angular-l10n": "18.4.0",
41
+ "@progress/kendo-angular-icons": "18.4.0",
42
+ "@progress/kendo-angular-popup": "18.4.0",
43
43
  "rxjs": "^6.5.3 || ^7.0.0"
44
44
  },
45
45
  "dependencies": {
46
46
  "tslib": "^2.3.1",
47
- "@progress/kendo-angular-schematics": "18.4.0-develop.1"
47
+ "@progress/kendo-angular-schematics": "18.4.0"
48
48
  },
49
49
  "schematics": "./schematics/collection.json",
50
50
  "module": "fesm2022/progress-kendo-angular-toolbar.mjs",