@progress/kendo-angular-toolbar 11.0.0-develop.104 → 11.0.0-develop.106

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.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-toolbar',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1673525045,
12
+ publishDate: 1673542209,
13
13
  version: '',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -37,7 +37,9 @@ const getInitialPopupSettings = (isRtl) => ({
37
37
  * Represents the [Kendo UI ToolBar component for Angular]({% slug overview_toolbar %}).
38
38
  */
39
39
  export class ToolBarComponent {
40
- constructor(localization, popupService, refreshService, navigationService, element, zone, renderer, _cdr) {
40
+ constructor(localization, popupService, refreshService, navigationService,
41
+ // Needs to be public as it is being accessed in the Editor component
42
+ element, zone, renderer, _cdr) {
41
43
  this.localization = localization;
42
44
  this.popupService = popupService;
43
45
  this.refreshService = refreshService;
@@ -25,7 +25,7 @@ const packageMetadata = {
25
25
  name: '@progress/kendo-angular-toolbar',
26
26
  productName: 'Kendo UI for Angular',
27
27
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
28
- publishDate: 1673525045,
28
+ publishDate: 1673542209,
29
29
  version: '',
30
30
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
31
31
  };
@@ -721,7 +721,9 @@ const getInitialPopupSettings = (isRtl) => ({
721
721
  * Represents the [Kendo UI ToolBar component for Angular]({% slug overview_toolbar %}).
722
722
  */
723
723
  class ToolBarComponent {
724
- constructor(localization, popupService, refreshService, navigationService, element, zone, renderer, _cdr) {
724
+ constructor(localization, popupService, refreshService, navigationService,
725
+ // Needs to be public as it is being accessed in the Editor component
726
+ element, zone, renderer, _cdr) {
725
727
  this.localization = localization;
726
728
  this.popupService = popupService;
727
729
  this.refreshService = refreshService;
@@ -25,7 +25,7 @@ const packageMetadata = {
25
25
  name: '@progress/kendo-angular-toolbar',
26
26
  productName: 'Kendo UI for Angular',
27
27
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
28
- publishDate: 1673525045,
28
+ publishDate: 1673542209,
29
29
  version: '',
30
30
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
31
31
  };
@@ -721,7 +721,9 @@ const getInitialPopupSettings = (isRtl) => ({
721
721
  * Represents the [Kendo UI ToolBar component for Angular]({% slug overview_toolbar %}).
722
722
  */
723
723
  class ToolBarComponent {
724
- constructor(localization, popupService, refreshService, navigationService, element, zone, renderer, _cdr) {
724
+ constructor(localization, popupService, refreshService, navigationService,
725
+ // Needs to be public as it is being accessed in the Editor component
726
+ element, zone, renderer, _cdr) {
725
727
  this.localization = localization;
726
728
  this.popupService = popupService;
727
729
  this.refreshService = refreshService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-toolbar",
3
- "version": "11.0.0-develop.104",
3
+ "version": "11.0.0-develop.106",
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",
@@ -29,11 +29,11 @@
29
29
  "@angular/core": "13 - 15",
30
30
  "@angular/platform-browser": "13 - 15",
31
31
  "@progress/kendo-licensing": "^1.0.2",
32
- "@progress/kendo-angular-buttons": "11.0.0-develop.104",
33
- "@progress/kendo-angular-common": "11.0.0-develop.104",
34
- "@progress/kendo-angular-l10n": "11.0.0-develop.104",
35
- "@progress/kendo-angular-popup": "11.0.0-develop.104",
36
- "@progress/kendo-angular-schematics": "11.0.0-develop.104",
32
+ "@progress/kendo-angular-buttons": "11.0.0-develop.106",
33
+ "@progress/kendo-angular-common": "11.0.0-develop.106",
34
+ "@progress/kendo-angular-l10n": "11.0.0-develop.106",
35
+ "@progress/kendo-angular-popup": "11.0.0-develop.106",
36
+ "@progress/kendo-angular-schematics": "11.0.0-develop.106",
37
37
  "rxjs": "^6.5.3 || ^7.0.0"
38
38
  },
39
39
  "dependencies": {
@@ -24,7 +24,7 @@ export declare class ToolBarComponent {
24
24
  private popupService;
25
25
  private refreshService;
26
26
  private navigationService;
27
- private element;
27
+ element: ElementRef;
28
28
  private zone;
29
29
  private renderer;
30
30
  private _cdr;