@syncfusion/ej2-angular-ribbon 25.2.5-ngcc → 26.1.35-ngcc

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.
Files changed (53) hide show
  1. package/@syncfusion/ej2-angular-ribbon.es5.js.map +1 -1
  2. package/@syncfusion/ej2-angular-ribbon.js.map +1 -1
  3. package/dist/ej2-angular-ribbon.umd.js +126 -47
  4. package/dist/ej2-angular-ribbon.umd.min.js +2 -2
  5. package/dist/ej2-angular-ribbon.umd.min.js.map +1 -1
  6. package/package.json +9 -9
  7. package/schematics/utils/lib-details.ts +2 -2
  8. package/styles/bootstrap-dark.css +2723 -1
  9. package/styles/bootstrap.css +2725 -1
  10. package/styles/bootstrap4.css +2789 -1
  11. package/styles/bootstrap5-dark.css +2816 -1
  12. package/styles/bootstrap5.css +2816 -1
  13. package/styles/fabric-dark.css +2698 -1
  14. package/styles/fabric.css +2692 -1
  15. package/styles/fluent-dark.css +2795 -1
  16. package/styles/fluent.css +2795 -1
  17. package/styles/fluent2.css +3868 -0
  18. package/styles/fluent2.scss +1 -0
  19. package/styles/highcontrast-light.css +2705 -1
  20. package/styles/highcontrast.css +2710 -1
  21. package/styles/material-dark.css +2842 -1
  22. package/styles/material.css +2869 -1
  23. package/styles/material3-dark.css +2918 -1
  24. package/styles/material3.css +3030 -1
  25. package/styles/ribbon/bootstrap-dark.css +2723 -1
  26. package/styles/ribbon/bootstrap.css +2725 -1
  27. package/styles/ribbon/bootstrap4.css +2789 -1
  28. package/styles/ribbon/bootstrap5-dark.css +2816 -1
  29. package/styles/ribbon/bootstrap5.css +2816 -1
  30. package/styles/ribbon/fabric-dark.css +2698 -1
  31. package/styles/ribbon/fabric.css +2692 -1
  32. package/styles/ribbon/fluent-dark.css +2795 -1
  33. package/styles/ribbon/fluent.css +2795 -1
  34. package/styles/ribbon/fluent2.css +3868 -0
  35. package/styles/ribbon/fluent2.scss +1 -0
  36. package/styles/ribbon/highcontrast-light.css +2705 -1
  37. package/styles/ribbon/highcontrast.css +2710 -1
  38. package/styles/ribbon/material-dark.css +2842 -1
  39. package/styles/ribbon/material.css +2869 -1
  40. package/styles/ribbon/material3-dark.css +2918 -1
  41. package/styles/ribbon/material3.css +3030 -1
  42. package/styles/ribbon/tailwind-dark.css +2823 -1
  43. package/styles/ribbon/tailwind.css +2823 -1
  44. package/styles/tailwind-dark.css +2823 -1
  45. package/styles/tailwind.css +2823 -1
  46. package/CHANGELOG.md +0 -109
  47. package/postinstall/tagchange.js +0 -18
  48. package/schematics/ng-add/index.d.ts +0 -3
  49. package/schematics/ng-add/index.js +0 -9
  50. package/schematics/ng-add/schema.d.ts +0 -13
  51. package/schematics/ng-add/schema.js +0 -2
  52. package/schematics/utils/lib-details.d.ts +0 -4
  53. package/schematics/utils/lib-details.js +0 -6
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-ribbon.umd.js
3
- * version : 25.2.5
3
+ * version : 26.1.35
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -39,9 +39,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
39
39
  };
40
40
  var input = ['activeSize', 'allowedSizes', 'buttonSettings', 'checkBoxSettings', 'colorPickerSettings', 'comboBoxSettings', 'cssClass', 'disabled', 'displayOptions', 'dropDownSettings', 'gallerySettings', 'groupButtonSettings', 'id', 'itemTemplate', 'keyTip', 'ribbonTooltipSettings', 'splitButtonSettings', 'type'];
41
41
  var outputs = [];
42
- var RibbonItemDirective = (function (_super) {
42
+ var RibbonItemDirective = /** @class */ (function (_super) {
43
43
  __extends(RibbonItemDirective, _super);
44
-
44
+ /**
45
+ * @param {?} viewContainerRef
46
+ */
45
47
  function RibbonItemDirective(viewContainerRef) {
46
48
  var _this = _super.call(this) || this;
47
49
  _this.viewContainerRef = viewContainerRef;
@@ -60,7 +62,9 @@ RibbonItemDirective.decorators = [
60
62
  queries: {}
61
63
  },] },
62
64
  ];
63
-
65
+ /**
66
+ * @nocollapse
67
+ */
64
68
  RibbonItemDirective.ctorParameters = function () { return [
65
69
  { type: core.ViewContainerRef, },
66
70
  ]; };
@@ -71,8 +75,10 @@ __decorate([
71
75
  ej2AngularBase.Template(),
72
76
  __metadata("design:type", Object)
73
77
  ], RibbonItemDirective.prototype, "itemTemplate", void 0);
74
-
75
- var RibbonItemsDirective = (function (_super) {
78
+ /**
79
+ * RibbonItem Array Directive
80
+ */
81
+ var RibbonItemsDirective = /** @class */ (function (_super) {
76
82
  __extends(RibbonItemsDirective, _super);
77
83
  function RibbonItemsDirective() {
78
84
  return _super.call(this, 'items') || this;
@@ -87,13 +93,17 @@ RibbonItemsDirective.decorators = [
87
93
  },
88
94
  },] },
89
95
  ];
90
-
96
+ /**
97
+ * @nocollapse
98
+ */
91
99
  RibbonItemsDirective.ctorParameters = function () { return []; };
92
100
  var input$1 = ['cssClass', 'id', 'items'];
93
101
  var outputs$1 = [];
94
- var RibbonCollectionDirective = (function (_super) {
102
+ var RibbonCollectionDirective = /** @class */ (function (_super) {
95
103
  __extends(RibbonCollectionDirective, _super);
96
-
104
+ /**
105
+ * @param {?} viewContainerRef
106
+ */
97
107
  function RibbonCollectionDirective(viewContainerRef) {
98
108
  var _this = _super.call(this) || this;
99
109
  _this.viewContainerRef = viewContainerRef;
@@ -115,12 +125,16 @@ RibbonCollectionDirective.decorators = [
115
125
  }
116
126
  },] },
117
127
  ];
118
-
128
+ /**
129
+ * @nocollapse
130
+ */
119
131
  RibbonCollectionDirective.ctorParameters = function () { return [
120
132
  { type: core.ViewContainerRef, },
121
133
  ]; };
122
-
123
- var RibbonCollectionsDirective = (function (_super) {
134
+ /**
135
+ * RibbonCollection Array Directive
136
+ */
137
+ var RibbonCollectionsDirective = /** @class */ (function (_super) {
124
138
  __extends(RibbonCollectionsDirective, _super);
125
139
  function RibbonCollectionsDirective() {
126
140
  return _super.call(this, 'collections') || this;
@@ -135,13 +149,17 @@ RibbonCollectionsDirective.decorators = [
135
149
  },
136
150
  },] },
137
151
  ];
138
-
152
+ /**
153
+ * @nocollapse
154
+ */
139
155
  RibbonCollectionsDirective.ctorParameters = function () { return []; };
140
156
  var input$2 = ['collections', 'cssClass', 'enableGroupOverflow', 'groupIconCss', 'header', 'id', 'isCollapsed', 'isCollapsible', 'keyTip', 'launcherIconKeyTip', 'orientation', 'overflowHeader', 'priority', 'showLauncherIcon'];
141
157
  var outputs$2 = [];
142
- var RibbonGroupDirective = (function (_super) {
158
+ var RibbonGroupDirective = /** @class */ (function (_super) {
143
159
  __extends(RibbonGroupDirective, _super);
144
-
160
+ /**
161
+ * @param {?} viewContainerRef
162
+ */
145
163
  function RibbonGroupDirective(viewContainerRef) {
146
164
  var _this = _super.call(this) || this;
147
165
  _this.viewContainerRef = viewContainerRef;
@@ -163,12 +181,16 @@ RibbonGroupDirective.decorators = [
163
181
  }
164
182
  },] },
165
183
  ];
166
-
184
+ /**
185
+ * @nocollapse
186
+ */
167
187
  RibbonGroupDirective.ctorParameters = function () { return [
168
188
  { type: core.ViewContainerRef, },
169
189
  ]; };
170
-
171
- var RibbonGroupsDirective = (function (_super) {
190
+ /**
191
+ * RibbonGroup Array Directive
192
+ */
193
+ var RibbonGroupsDirective = /** @class */ (function (_super) {
172
194
  __extends(RibbonGroupsDirective, _super);
173
195
  function RibbonGroupsDirective() {
174
196
  return _super.call(this, 'groups') || this;
@@ -183,13 +205,17 @@ RibbonGroupsDirective.decorators = [
183
205
  },
184
206
  },] },
185
207
  ];
186
-
208
+ /**
209
+ * @nocollapse
210
+ */
187
211
  RibbonGroupsDirective.ctorParameters = function () { return []; };
188
212
  var input$3 = ['cssClass', 'groups', 'header', 'id', 'keyTip'];
189
213
  var outputs$3 = [];
190
- var RibbonTabDirective = (function (_super) {
214
+ var RibbonTabDirective = /** @class */ (function (_super) {
191
215
  __extends(RibbonTabDirective, _super);
192
-
216
+ /**
217
+ * @param {?} viewContainerRef
218
+ */
193
219
  function RibbonTabDirective(viewContainerRef) {
194
220
  var _this = _super.call(this) || this;
195
221
  _this.viewContainerRef = viewContainerRef;
@@ -211,12 +237,16 @@ RibbonTabDirective.decorators = [
211
237
  }
212
238
  },] },
213
239
  ];
214
-
240
+ /**
241
+ * @nocollapse
242
+ */
215
243
  RibbonTabDirective.ctorParameters = function () { return [
216
244
  { type: core.ViewContainerRef, },
217
245
  ]; };
218
-
219
- var RibbonTabsDirective = (function (_super) {
246
+ /**
247
+ * RibbonTab Array Directive
248
+ */
249
+ var RibbonTabsDirective = /** @class */ (function (_super) {
220
250
  __extends(RibbonTabsDirective, _super);
221
251
  function RibbonTabsDirective() {
222
252
  return _super.call(this, 'tabs') || this;
@@ -231,14 +261,29 @@ RibbonTabsDirective.decorators = [
231
261
  },
232
262
  },] },
233
263
  ];
234
-
264
+ /**
265
+ * @nocollapse
266
+ */
235
267
  RibbonTabsDirective.ctorParameters = function () { return []; };
236
268
  var input$4 = ['isSelected', 'tabs', 'visible'];
237
269
  var outputs$4 = [];
238
-
239
- var RibbonContextualTabDirective = (function (_super) {
270
+ /**
271
+ * `e-ribbon-contextual-tab` directive represent a contextual tab of the Angular Ribbon.
272
+ * It must be contained in a Ribbon component(`ejs-ribbon`).
273
+ * ```html
274
+ * <ejs-ribbon>
275
+ * <e-ribbon-contextual-tabs>
276
+ * <e-ribbon-contextual-tab>
277
+ * </e-ribbon-contextual-tab>
278
+ * </e-ribbon-contextual-tabs>
279
+ * </ejs-ribbon>
280
+ * ```
281
+ */
282
+ var RibbonContextualTabDirective = /** @class */ (function (_super) {
240
283
  __extends(RibbonContextualTabDirective, _super);
241
-
284
+ /**
285
+ * @param {?} viewContainerRef
286
+ */
242
287
  function RibbonContextualTabDirective(viewContainerRef) {
243
288
  var _this = _super.call(this) || this;
244
289
  _this.viewContainerRef = viewContainerRef;
@@ -260,12 +305,16 @@ RibbonContextualTabDirective.decorators = [
260
305
  }
261
306
  },] },
262
307
  ];
263
-
308
+ /**
309
+ * @nocollapse
310
+ */
264
311
  RibbonContextualTabDirective.ctorParameters = function () { return [
265
312
  { type: core.ViewContainerRef, },
266
313
  ]; };
267
-
268
- var RibbonContextualTabsDirective = (function (_super) {
314
+ /**
315
+ * RibbonContextualTab Array Directive
316
+ */
317
+ var RibbonContextualTabsDirective = /** @class */ (function (_super) {
269
318
  __extends(RibbonContextualTabsDirective, _super);
270
319
  function RibbonContextualTabsDirective() {
271
320
  return _super.call(this, 'contextualtabs') || this;
@@ -280,7 +329,9 @@ RibbonContextualTabsDirective.decorators = [
280
329
  },
281
330
  },] },
282
331
  ];
283
-
332
+ /**
333
+ * @nocollapse
334
+ */
284
335
  RibbonContextualTabsDirective.ctorParameters = function () { return []; };
285
336
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
286
337
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -299,10 +350,20 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
299
350
  var inputs = ['activeLayout', 'backStageMenu', 'contextualTabs', 'cssClass', 'enableKeyTips', 'enablePersistence', 'enableRtl', 'fileMenu', 'helpPaneTemplate', 'hideLayoutSwitcher', 'isMinimized', 'launcherIconCss', 'layoutSwitcherKeyTip', 'locale', 'selectedTab', 'tabAnimation', 'tabs', 'width'];
300
351
  var outputs$5 = ['created', 'launcherIconClick', 'overflowPopupClose', 'overflowPopupOpen', 'ribbonCollapsing', 'ribbonExpanding', 'tabSelected', 'tabSelecting'];
301
352
  var twoWays = [''];
302
-
303
- exports.RibbonComponent = (function (_super) {
353
+ /**
354
+ * Represents the Essential JS 2 Angular Ribbon Component.
355
+ * ```html
356
+ * <ejs-ribbon></ejs-ribbon>
357
+ * ```
358
+ */
359
+ exports.RibbonComponent = /** @class */ (function (_super) {
304
360
  __extends(RibbonComponent, _super);
305
-
361
+ /**
362
+ * @param {?} ngEle
363
+ * @param {?} srenderer
364
+ * @param {?} viewContainerRef
365
+ * @param {?} injector
366
+ */
306
367
  function RibbonComponent(ngEle, srenderer, viewContainerRef, injector) {
307
368
  var _this = _super.call(this) || this;
308
369
  _this.ngEle = ngEle;
@@ -402,23 +463,31 @@ exports.RibbonComponent = (function (_super) {
402
463
  _this.containerContext = new ej2AngularBase.ComponentBase();
403
464
  return _this;
404
465
  }
405
-
466
+ /**
467
+ * @return {?}
468
+ */
406
469
  RibbonComponent.prototype.ngOnInit = function () {
407
470
  this.containerContext.ngOnInit(this);
408
471
  };
409
-
472
+ /**
473
+ * @return {?}
474
+ */
410
475
  RibbonComponent.prototype.ngAfterViewInit = function () {
411
476
  this.containerContext.ngAfterViewInit(this);
412
477
  };
413
-
478
+ /**
479
+ * @return {?}
480
+ */
414
481
  RibbonComponent.prototype.ngOnDestroy = function () {
415
482
  this.containerContext.ngOnDestroy(this);
416
483
  };
417
-
484
+ /**
485
+ * @return {?}
486
+ */
418
487
  RibbonComponent.prototype.ngAfterContentChecked = function () {
419
488
  this.tagObjects[0].instance = this.childTabs;
420
489
  if (this.childContextualTabs) {
421
- this.tagObjects[1].instance = (this.childContextualTabs);
490
+ this.tagObjects[1].instance = /** @type {?} */ (this.childContextualTabs);
422
491
  }
423
492
  this.containerContext.ngAfterContentChecked(this);
424
493
  };
@@ -437,7 +506,9 @@ exports.RibbonComponent.decorators = [
437
506
  }
438
507
  },] },
439
508
  ];
440
-
509
+ /**
510
+ * @nocollapse
511
+ */
441
512
  exports.RibbonComponent.ctorParameters = function () { return [
442
513
  { type: core.ElementRef, },
443
514
  { type: core.Renderer2, },
@@ -458,8 +529,10 @@ exports.RibbonComponent = __decorate$1([
458
529
  core.ViewContainerRef,
459
530
  core.Injector])
460
531
  ], exports.RibbonComponent);
461
-
462
- var RibbonModule = (function () {
532
+ /**
533
+ * NgModule definition for the Ribbon component.
534
+ */
535
+ var RibbonModule = /** @class */ (function () {
463
536
  function RibbonModule() {
464
537
  }
465
538
  return RibbonModule;
@@ -495,7 +568,9 @@ RibbonModule.decorators = [
495
568
  ]
496
569
  },] },
497
570
  ];
498
-
571
+ /**
572
+ * @nocollapse
573
+ */
499
574
  RibbonModule.ctorParameters = function () { return []; };
500
575
  var RibbonButtonService = { provide: 'RibbonRibbonButton', useValue: ej2Ribbon.RibbonButton };
501
576
  var RibbonDropDownService = { provide: 'RibbonRibbonDropDown', useValue: ej2Ribbon.RibbonDropDown };
@@ -509,8 +584,10 @@ var RibbonBackstageService = { provide: 'RibbonRibbonBackstage', useValue: ej2Ri
509
584
  var RibbonKeyTipService = { provide: 'RibbonRibbonKeyTip', useValue: ej2Ribbon.RibbonKeyTip };
510
585
  var RibbonContextualTabService = { provide: 'RibbonRibbonContextualTab', useValue: ej2Ribbon.RibbonContextualTab };
511
586
  var RibbonGalleryService = { provide: 'RibbonRibbonGallery', useValue: ej2Ribbon.RibbonGallery };
512
-
513
- var RibbonAllModule = (function () {
587
+ /**
588
+ * NgModule definition for the Ribbon component with providers.
589
+ */
590
+ var RibbonAllModule = /** @class */ (function () {
514
591
  function RibbonAllModule() {
515
592
  }
516
593
  return RibbonAllModule;
@@ -537,7 +614,9 @@ RibbonAllModule.decorators = [
537
614
  ]
538
615
  },] },
539
616
  ];
540
-
617
+ /**
618
+ * @nocollapse
619
+ */
541
620
  RibbonAllModule.ctorParameters = function () { return []; };
542
621
 
543
622
  exports.RibbonItemDirective = RibbonItemDirective;
@@ -1,11 +1,11 @@
1
1
  /*!
2
2
  * filename: ej2-angular-ribbon.umd.min.js
3
- * version : 25.2.5
3
+ * version : 26.1.35
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
7
7
  * licensing@syncfusion.com. Any infringement will be prosecuted under
8
8
  * applicable laws.
9
9
  */
10
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-ribbon"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-ribbon","@angular/common"],t):t(e["ej2-angular-ribbon"]={},e.ng.core,e.ej2.angular.base,e.ej2.ribbon,e.ng.common)}(this,function(e,t,n,o,i){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),R=this&&this.__decorate||function(e,t,n,o){var i,r=arguments.length,R=r<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)R=Reflect.decorate(e,t,n,o);else for(var B=e.length-1;B>=0;B--)(i=e[B])&&(R=(r<3?i(R):r>3?i(t,n,R):i(t,n))||R);return r>3&&R&&Object.defineProperty(t,n,R),R},B=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},b=["activeSize","allowedSizes","buttonSettings","checkBoxSettings","colorPickerSettings","comboBoxSettings","cssClass","disabled","displayOptions","dropDownSettings","gallerySettings","groupButtonSettings","id","itemTemplate","keyTip","ribbonTooltipSettings","splitButtonSettings","type"],O=[],s=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,n.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(O),o.directivePropList=b,o}return r(t,e),t}(n.ComplexBase);s.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-item",inputs:b,outputs:O,queries:{}}]}],s.ctorParameters=function(){return[{type:t.ViewContainerRef}]},s.propDecorators={itemTemplate:[{type:t.ContentChild,args:["itemTemplate"]}]},R([n.Template(),B("design:type",Object)],s.prototype,"itemTemplate",void 0);var a=function(e){function t(){return e.call(this,"items")||this}return r(t,e),t}(n.ArrayBase);a.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-items",queries:{children:new t.ContentChildren(s)}}]}],a.ctorParameters=function(){return[]};var c=["cssClass","id","items"],_=[],u=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,o.tags=["items"],n.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(_),o.directivePropList=c,o}return r(t,e),t}(n.ComplexBase);u.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-collection",inputs:c,outputs:_,queries:{childItems:new t.ContentChild(a)}}]}],u.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var I=function(e){function t(){return e.call(this,"collections")||this}return r(t,e),t}(n.ArrayBase);I.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-collections",queries:{children:new t.ContentChildren(u)}}]}],I.ctorParameters=function(){return[]};var l=["collections","cssClass","enableGroupOverflow","groupIconCss","header","id","isCollapsed","isCollapsible","keyTip","launcherIconKeyTip","orientation","overflowHeader","priority","showLauncherIcon"],T=[],N=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,o.tags=["collections"],n.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(T),o.directivePropList=l,o}return r(t,e),t}(n.ComplexBase);N.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-group",inputs:l,outputs:T,queries:{childCollections:new t.ContentChild(I)}}]}],N.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var E=function(e){function t(){return e.call(this,"groups")||this}return r(t,e),t}(n.ArrayBase);E.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-groups",queries:{children:new t.ContentChildren(N)}}]}],E.ctorParameters=function(){return[]};var C=["cssClass","groups","header","id","keyTip"],p=[],d=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,o.tags=["groups"],n.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(p),o.directivePropList=C,o}return r(t,e),t}(n.ComplexBase);d.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-tab",inputs:C,outputs:p,queries:{childGroups:new t.ContentChild(E)}}]}],d.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var P=function(e){function t(){return e.call(this,"tabs")||this}return r(t,e),t}(n.ArrayBase);P.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-tabs",queries:{children:new t.ContentChildren(d)}}]}],P.ctorParameters=function(){return[]};var A=["isSelected","tabs","visible"],L=[],f=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,o.tags=["tabs"],n.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(L),o.directivePropList=A,o}return r(t,e),t}(n.ComplexBase);f.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-contextual-tab",inputs:A,outputs:L,queries:{childTabs:new t.ContentChild(P)}}]}],f.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var g=function(e){function t(){return e.call(this,"contextualtabs")||this}return r(t,e),t}(n.ArrayBase);g.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-contextual-tabs",queries:{children:new t.ContentChildren(f)}}]}],g.ctorParameters=function(){return[]};var D=this&&this.__decorate||function(e,t,n,o){var i,r=arguments.length,R=r<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)R=Reflect.decorate(e,t,n,o);else for(var B=e.length-1;B>=0;B--)(i=e[B])&&(R=(r<3?i(R):r>3?i(t,n,R):i(t,n))||R);return r>3&&R&&Object.defineProperty(t,n,R),R},S=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},h=["activeLayout","backStageMenu","contextualTabs","cssClass","enableKeyTips","enablePersistence","enableRtl","fileMenu","helpPaneTemplate","hideLayoutSwitcher","isMinimized","launcherIconCss","layoutSwitcherKeyTip","locale","selectedTab","tabAnimation","tabs","width"],y=["created","launcherIconClick","overflowPopupClose","overflowPopupOpen","ribbonCollapsing","ribbonExpanding","tabSelected","tabSelecting"],m=[""];e.RibbonComponent=function(e){function t(t,o,i,r){var R=e.call(this)||this;R.ngEle=t,R.srenderer=o,R.viewContainerRef=i,R.injector=r,R.tags=["tabs","contextualTabs"],R.element=R.ngEle.nativeElement,R.injectedModules=R.injectedModules||[];try{var B=R.injector.get("RibbonRibbonButton");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(b){}try{B=R.injector.get("RibbonRibbonDropDown");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(O){}try{B=R.injector.get("RibbonRibbonSplitButton");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(s){}try{B=R.injector.get("RibbonRibbonCheckBox");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(a){}try{B=R.injector.get("RibbonRibbonColorPicker");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(c){}try{B=R.injector.get("RibbonRibbonComboBox");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(_){}try{B=R.injector.get("RibbonRibbonGroupButton");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(u){}try{B=R.injector.get("RibbonRibbonFileMenu");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(I){}try{B=R.injector.get("RibbonRibbonBackstage");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(l){}try{B=R.injector.get("RibbonRibbonKeyTip");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(T){}try{B=R.injector.get("RibbonRibbonContextualTab");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(N){}try{B=R.injector.get("RibbonRibbonGallery");-1===R.injectedModules.indexOf(B)&&R.injectedModules.push(B)}catch(E){}return R.registerEvents(y),R.addTwoWay.call(R,m),n.setValue("currentInstance",R,R.viewContainerRef),R.containerContext=new n.ComponentBase,R}return r(t,e),t.prototype.ngOnInit=function(){this.containerContext.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.containerContext.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.containerContext.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.tagObjects[0].instance=this.childTabs,this.childContextualTabs&&(this.tagObjects[1].instance=this.childContextualTabs),this.containerContext.ngAfterContentChecked(this)},t}(o.Ribbon),e.RibbonComponent.decorators=[{type:t.Component,args:[{selector:"ejs-ribbon",inputs:h,outputs:y,template:"<ng-content select='div'></ng-content>",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{childTabs:new t.ContentChild(P),childContextualTabs:new t.ContentChild(g)}}]}],e.RibbonComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.RibbonComponent.propDecorators={helpPaneTemplate:[{type:t.ContentChild,args:["helpPaneTemplate"]}]},D([n.Template(),S("design:type",Object)],e.RibbonComponent.prototype,"helpPaneTemplate",void 0),e.RibbonComponent=D([n.ComponentMixins([n.ComponentBase]),S("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.RibbonComponent);var M=function(){return function(){}}();M.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule],declarations:[e.RibbonComponent,s,a,u,I,N,E,d,P,f,g],exports:[e.RibbonComponent,s,a,u,I,N,E,d,P,f,g]}]}],M.ctorParameters=function(){return[]};var v={provide:"RibbonRibbonButton",useValue:o.RibbonButton},U={provide:"RibbonRibbonDropDown",useValue:o.RibbonDropDown},G={provide:"RibbonRibbonSplitButton",useValue:o.RibbonSplitButton},x={provide:"RibbonRibbonCheckBox",useValue:o.RibbonCheckBox},j={provide:"RibbonRibbonColorPicker",useValue:o.RibbonColorPicker},w={provide:"RibbonRibbonComboBox",useValue:o.RibbonComboBox},V={provide:"RibbonRibbonGroupButton",useValue:o.RibbonGroupButton},F={provide:"RibbonRibbonFileMenu",useValue:o.RibbonFileMenu},k={provide:"RibbonRibbonBackstage",useValue:o.RibbonBackstage},H={provide:"RibbonRibbonKeyTip",useValue:o.RibbonKeyTip},K={provide:"RibbonRibbonContextualTab",useValue:o.RibbonContextualTab},W={provide:"RibbonRibbonGallery",useValue:o.RibbonGallery},q=function(){return function(){}}();q.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule,M],exports:[M],providers:[v,U,G,x,j,w,V,F,k,H,K,W]}]}],q.ctorParameters=function(){return[]},e.RibbonItemDirective=s,e.RibbonItemsDirective=a,e.RibbonCollectionDirective=u,e.RibbonCollectionsDirective=I,e.RibbonGroupDirective=N,e.RibbonGroupsDirective=E,e.RibbonTabDirective=d,e.RibbonTabsDirective=P,e.RibbonContextualTabDirective=f,e.RibbonContextualTabsDirective=g,e.RibbonModule=M,e.RibbonAllModule=q,e.RibbonButtonService=v,e.RibbonDropDownService=U,e.RibbonSplitButtonService=G,e.RibbonCheckBoxService=x,e.RibbonColorPickerService=j,e.RibbonComboBoxService=w,e.RibbonGroupButtonService=V,e.RibbonFileMenuService=F,e.RibbonBackstageService=k,e.RibbonKeyTipService=H,e.RibbonContextualTabService=K,e.RibbonGalleryService=W,e.ɵa=h,e.ɵb=y,e.Ribbon=o.Ribbon,e.RibbonLayout=o.RibbonLayout,e.ItemOrientation=o.ItemOrientation,e.RibbonItemSize=o.RibbonItemSize,e.DisplayMode=o.DisplayMode,e.RibbonItemType=o.RibbonItemType,e.RibbonGroupButtonSelection=o.RibbonGroupButtonSelection,e.ITEM_VERTICAL_CENTER=o.ITEM_VERTICAL_CENTER,e.EXPAND_COLLAPSE_ICON=o.EXPAND_COLLAPSE_ICON,e.BACKSTAGE_CLOSE_ICON=o.BACKSTAGE_CLOSE_ICON,e.OVERFLOW_ICON=o.OVERFLOW_ICON,e.VERTICAL_DDB=o.VERTICAL_DDB,e.DISABLED_CSS=o.DISABLED_CSS,e.RTL_CSS=o.RTL_CSS,e.RIBBON_HOVER=o.RIBBON_HOVER,e.RIBBON_CONTROL=o.RIBBON_CONTROL,e.RIBBON_POPUP_CONTROL=o.RIBBON_POPUP_CONTROL,e.RIBBON_POPUP_OPEN=o.RIBBON_POPUP_OPEN,e.RIBBON_KEYTIP=o.RIBBON_KEYTIP,e.SPACE=o.SPACE,e.HORIZONTAL_SCROLLBAR=o.HORIZONTAL_SCROLLBAR,e.HIDE_CSS=o.HIDE_CSS,e.RIBBON_TAB=o.RIBBON_TAB,e.RIBBON_CONTEXTUAL_TAB=o.RIBBON_CONTEXTUAL_TAB,e.RIBBON_TAB_ACTIVE=o.RIBBON_TAB_ACTIVE,e.RIBBON_TAB_ITEM=o.RIBBON_TAB_ITEM,e.RIBBON_COLLAPSE_BUTTON=o.RIBBON_COLLAPSE_BUTTON,e.RIBBON_EXPAND_BUTTON=o.RIBBON_EXPAND_BUTTON,e.RIBBON_COLLAPSIBLE=o.RIBBON_COLLAPSIBLE,e.RIBBON_OVERALL_OF_BUTTON=o.RIBBON_OVERALL_OF_BUTTON,e.RIBBON_GROUP_OF_BUTTON=o.RIBBON_GROUP_OF_BUTTON,e.RIBBON_OVERFLOW_TARGET=o.RIBBON_OVERFLOW_TARGET,e.RIBBON_OVERFLOW=o.RIBBON_OVERFLOW,e.TAB_CONTENT=o.TAB_CONTENT,e.RIBBON_MINIMIZE=o.RIBBON_MINIMIZE,e.RIBBON_GROUP=o.RIBBON_GROUP,e.RIBBON_SINGLE_BUTTON_SELECTION=o.RIBBON_SINGLE_BUTTON_SELECTION,e.RIBBON_MULTIPLE_BUTTON_SELECTION=o.RIBBON_MULTIPLE_BUTTON_SELECTION,e.RIBBON_GROUP_BUTTON=o.RIBBON_GROUP_BUTTON,e.RIBBON_GROUP_BUTTON_OVERFLOW_POPUP=o.RIBBON_GROUP_BUTTON_OVERFLOW_POPUP,e.RIBBON_GROUP_BUTTON_CONTENT=o.RIBBON_GROUP_BUTTON_CONTENT,e.RIBBON_GROUP_CONTAINER=o.RIBBON_GROUP_CONTAINER,e.RIBBON_OF_TAB_CONTAINER=o.RIBBON_OF_TAB_CONTAINER,e.RIBBON_OF_GROUP_CONTAINER=o.RIBBON_OF_GROUP_CONTAINER,e.RIBBON_GROUP_CONTENT=o.RIBBON_GROUP_CONTENT,e.RIBBON_GROUP_HEADER=o.RIBBON_GROUP_HEADER,e.RIBBON_OVERFLOW_HEADER=o.RIBBON_OVERFLOW_HEADER,e.RIBBON_GROUP_OVERFLOW=o.RIBBON_GROUP_OVERFLOW,e.RIBBON_GROUP_OVERFLOW_DDB=o.RIBBON_GROUP_OVERFLOW_DDB,e.RIBBON_LAUNCHER=o.RIBBON_LAUNCHER,e.RIBBON_LAUNCHER_ICON_ELE=o.RIBBON_LAUNCHER_ICON_ELE,e.RIBBON_LAUNCHER_ICON=o.RIBBON_LAUNCHER_ICON,e.RIBBON_COLLECTION=o.RIBBON_COLLECTION,e.RIBBON_ITEM=o.RIBBON_ITEM,e.RIBBON_ROW=o.RIBBON_ROW,e.RIBBON_COLUMN=o.RIBBON_COLUMN,e.RIBBON_LARGE_ITEM=o.RIBBON_LARGE_ITEM,e.RIBBON_MEDIUM_ITEM=o.RIBBON_MEDIUM_ITEM,e.RIBBON_SMALL_ITEM=o.RIBBON_SMALL_ITEM,e.RIBBON_CONTENT_HEIGHT=o.RIBBON_CONTENT_HEIGHT,e.DROPDOWNBUTTON=o.DROPDOWNBUTTON,e.DROPDOWNBUTTON_HIDE=o.DROPDOWNBUTTON_HIDE,e.RIBBON_TEMPLATE=o.RIBBON_TEMPLATE,e.RIBBON_HELP_TEMPLATE=o.RIBBON_HELP_TEMPLATE,e.RIBBON_TOOLTIP=o.RIBBON_TOOLTIP,e.RIBBON_TOOLTIP_TARGET=o.RIBBON_TOOLTIP_TARGET,e.RIBBON_TOOLTIP_TITLE=o.RIBBON_TOOLTIP_TITLE,e.RIBBON_TOOLTIP_CONTENT=o.RIBBON_TOOLTIP_CONTENT,e.RIBBON_TOOLTIP_ICON=o.RIBBON_TOOLTIP_ICON,e.RIBBON_TOOLTIP_CONTAINER=o.RIBBON_TOOLTIP_CONTAINER,e.RIBBON_TEXT_CONTAINER=o.RIBBON_TEXT_CONTAINER,e.RIBBON_SIMPLIFIED_MODE=o.RIBBON_SIMPLIFIED_MODE,e.RIBBON_BACKSTAGE_POPUP=o.RIBBON_BACKSTAGE_POPUP,e.RIBBON_BACKSTAGE_OPEN=o.RIBBON_BACKSTAGE_OPEN,e.RIBBON_BACKSTAGE_CONTENT=o.RIBBON_BACKSTAGE_CONTENT,e.RIBBON_SELECTED_CONTENT=o.RIBBON_SELECTED_CONTENT,e.RIBBON_BACKSTAGE=o.RIBBON_BACKSTAGE,e.RIBBON_BACKSTAGE_MENU=o.RIBBON_BACKSTAGE_MENU,e.RIBBON_BACKSTAGE_TEMPLATE=o.RIBBON_BACKSTAGE_TEMPLATE,e.RIBBON_BACKSTAGE_MENU_WRAPPER=o.RIBBON_BACKSTAGE_MENU_WRAPPER,e.RIBBON_BACKSTAGE_ITEMS_WRAPPER=o.RIBBON_BACKSTAGE_ITEMS_WRAPPER,e.RIBBON_BACKSTAGE_TEXT_MENU=o.RIBBON_BACKSTAGE_TEXT_MENU,e.TAB_ID=o.TAB_ID,e.GROUP_ID=o.GROUP_ID,e.COLLECTION_ID=o.COLLECTION_ID,e.ITEM_ID=o.ITEM_ID,e.COLLAPSE_BUTTON_ID=o.COLLAPSE_BUTTON_ID,e.OVRLOF_BUTTON_ID=o.OVRLOF_BUTTON_ID,e.GROUPOF_BUTTON_ID=o.GROUPOF_BUTTON_ID,e.HEADER_ID=o.HEADER_ID,e.LAUNCHER_ID=o.LAUNCHER_ID,e.CONTENT_ID=o.CONTENT_ID,e.CONTAINER_ID=o.CONTAINER_ID,e.OVERFLOW_ID=o.OVERFLOW_ID,e.DROPDOWN_ID=o.DROPDOWN_ID,e.RIBBON_FILE_MENU_ID=o.RIBBON_FILE_MENU_ID,e.RIBBON_BACKSTAGE_MENU_ID=o.RIBBON_BACKSTAGE_MENU_ID,e.RIBBON_BACKSTAGE_POPUP_ID=o.RIBBON_BACKSTAGE_POPUP_ID,e.RIBBON_FILE_MENU_LIST=o.RIBBON_FILE_MENU_LIST,e.RIBBON_MENU_LIST=o.RIBBON_MENU_LIST,e.RIBBON_FOOTER_MENU_LIST=o.RIBBON_FOOTER_MENU_LIST,e.RIBBON_HELP_PANE_TEMPLATE_ID=o.RIBBON_HELP_PANE_TEMPLATE_ID,e.RIBBON_GROUP_BUTTON_ID=o.RIBBON_GROUP_BUTTON_ID,e.RIBBON_KEYTIP_ID=o.RIBBON_KEYTIP_ID,e.RIBBON_FILE_MENU_WIDTH=o.RIBBON_FILE_MENU_WIDTH,e.RIBBON_HELP_PANE_TEMPLATE_WIDTH=o.RIBBON_HELP_PANE_TEMPLATE_WIDTH,e.getIndex=o.getIndex,e.getTemplateFunction=o.getTemplateFunction,e.getItem=o.getItem,e.getCollection=o.getCollection,e.getGroup=o.getGroup,e.destroyControl=o.destroyControl,e.updateCommonProperty=o.updateCommonProperty,e.updateControlDisabled=o.updateControlDisabled,e.getItemElement=o.getItemElement,e.isTooltipPresent=o.isTooltipPresent,e.setToolTipContent=o.setToolTipContent,e.createTooltip=o.createTooltip,e.destroyTooltip=o.destroyTooltip,e.updateTooltipProp=o.updateTooltipProp,e.setCustomAttributes=o.setCustomAttributes,e.RibbonTab=o.RibbonTab,e.RibbonGroup=o.RibbonGroup,e.RibbonCollection=o.RibbonCollection,e.RibbonItem=o.RibbonItem,e.RibbonButtonSettings=o.RibbonButtonSettings,e.RibbonCheckBoxSettings=o.RibbonCheckBoxSettings,e.RibbonColorPickerSettings=o.RibbonColorPickerSettings,e.RibbonComboBoxSettings=o.RibbonComboBoxSettings,e.RibbonDropDownSettings=o.RibbonDropDownSettings,e.RibbonSplitButtonSettings=o.RibbonSplitButtonSettings,e.FileMenuSettings=o.FileMenuSettings,e.BackStageMenu=o.BackStageMenu,e.BackstageBackButton=o.BackstageBackButton,e.BackstageItem=o.BackstageItem,e.RibbonTooltip=o.RibbonTooltip,e.RibbonGroupButtonSettings=o.RibbonGroupButtonSettings,e.RibbonGroupButtonItem=o.RibbonGroupButtonItem,e.RibbonContextualTabSettings=o.RibbonContextualTabSettings,e.RibbonGalleryGroup=o.RibbonGalleryGroup,e.RibbonGalleryItem=o.RibbonGalleryItem,e.RibbonGallerySettings=o.RibbonGallerySettings,e.RibbonButton=o.RibbonButton,e.RibbonCheckBox=o.RibbonCheckBox,e.RibbonColorPicker=o.RibbonColorPicker,e.RibbonComboBox=o.RibbonComboBox,e.RibbonDropDown=o.RibbonDropDown,e.RibbonSplitButton=o.RibbonSplitButton,e.RibbonGroupButton=o.RibbonGroupButton,e.RibbonGallery=o.RibbonGallery,e.RibbonFileMenu=o.RibbonFileMenu,e.RibbonBackstage=o.RibbonBackstage,e.RibbonContextualTab=o.RibbonContextualTab,e.RibbonKeyTip=o.RibbonKeyTip,Object.defineProperty(e,"__esModule",{value:!0})});
10
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-ribbon"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-ribbon","@angular/common"],t):t(e["ej2-angular-ribbon"]={},e.ng.core,e.ej2.angular.base,e.ej2.ribbon,e.ng.common)}(this,function(e,t,N,o,n){"use strict";var i,r,R=this&&this.__extends||(i=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(e,t){e.__proto__=t}:function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])}),function(e,t){function o(){this.constructor=e}i(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)}),B=this&&this.__decorate||function(e,t,o,n){var i,r=arguments.length,R=r<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)R=Reflect.decorate(e,t,o,n);else for(var B=e.length-1;0<=B;B--)(i=e[B])&&(R=(r<3?i(R):3<r?i(t,o,R):i(t,o))||R);return 3<r&&R&&Object.defineProperty(t,o,R),R},b=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},O=["activeSize","allowedSizes","buttonSettings","checkBoxSettings","colorPickerSettings","comboBoxSettings","cssClass","disabled","displayOptions","dropDownSettings","gallerySettings","groupButtonSettings","id","itemTemplate","keyTip","ribbonTooltipSettings","splitButtonSettings","type"],s=[],a=(r=N.ComplexBase,R(_,r),_);function _(e){var t=r.call(this)||this;return t.viewContainerRef=e,N.setValue("currentInstance",t,t.viewContainerRef),t.registerEvents(s),t.directivePropList=O,t}a.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-item",inputs:O,outputs:s,queries:{}}]}],a.ctorParameters=function(){return[{type:t.ViewContainerRef}]},a.propDecorators={itemTemplate:[{type:t.ContentChild,args:["itemTemplate"]}]},B([N.Template(),b("design:type",Object)],a.prototype,"itemTemplate",void 0);c=N.ArrayBase,R(G,c);var c,b=G;function G(){return c.call(this,"items")||this}b.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-items",queries:{children:new t.ContentChildren(a)}}]}],b.ctorParameters=function(){return[]};var I,x=["cssClass","id","items"],j=[],B=(I=N.ComplexBase,R(w,I),w);function w(e){var t=I.call(this)||this;return t.viewContainerRef=e,t.tags=["items"],N.setValue("currentInstance",t,t.viewContainerRef),t.registerEvents(j),t.directivePropList=x,t}B.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-collection",inputs:x,outputs:j,queries:{childItems:new t.ContentChild(b)}}]}],B.ctorParameters=function(){return[{type:t.ViewContainerRef}]};l=N.ArrayBase,R(V,l);var l,T=V;function V(){return l.call(this,"collections")||this}T.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-collections",queries:{children:new t.ContentChildren(B)}}]}],T.ctorParameters=function(){return[]};var u,F=["collections","cssClass","enableGroupOverflow","groupIconCss","header","id","isCollapsed","isCollapsible","keyTip","launcherIconKeyTip","orientation","overflowHeader","priority","showLauncherIcon"],k=[],E=(u=N.ComplexBase,R(H,u),H);function H(e){var t=u.call(this)||this;return t.viewContainerRef=e,t.tags=["collections"],N.setValue("currentInstance",t,t.viewContainerRef),t.registerEvents(k),t.directivePropList=F,t}E.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-group",inputs:F,outputs:k,queries:{childCollections:new t.ContentChild(T)}}]}],E.ctorParameters=function(){return[{type:t.ViewContainerRef}]};C=N.ArrayBase,R(K,C);var C,p=K;function K(){return C.call(this,"groups")||this}p.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-groups",queries:{children:new t.ContentChildren(E)}}]}],p.ctorParameters=function(){return[]};var d,W=["cssClass","groups","header","id","keyTip"],q=[],P=(d=N.ComplexBase,R(X,d),X);function X(e){var t=d.call(this)||this;return t.viewContainerRef=e,t.tags=["groups"],N.setValue("currentInstance",t,t.viewContainerRef),t.registerEvents(q),t.directivePropList=W,t}P.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-tab",inputs:W,outputs:q,queries:{childGroups:new t.ContentChild(p)}}]}],P.ctorParameters=function(){return[{type:t.ViewContainerRef}]};A=N.ArrayBase,R(z,A);var A,L=z;function z(){return A.call(this,"tabs")||this}L.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-tabs",queries:{children:new t.ContentChildren(P)}}]}],L.ctorParameters=function(){return[]};var g,Y=["isSelected","tabs","visible"],Z=[],D=(g=N.ComplexBase,R(J,g),J);function J(e){var t=g.call(this)||this;return t.viewContainerRef=e,t.tags=["tabs"],N.setValue("currentInstance",t,t.viewContainerRef),t.registerEvents(Z),t.directivePropList=Y,t}D.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-contextual-tab",inputs:Y,outputs:Z,queries:{childTabs:new t.ContentChild(L)}}]}],D.ctorParameters=function(){return[{type:t.ViewContainerRef}]};S=N.ArrayBase,R(Q,S);var S,h=Q;function Q(){return S.call(this,"contextualtabs")||this}h.decorators=[{type:t.Directive,args:[{selector:"e-ribbon-contextual-tabs",queries:{children:new t.ContentChildren(D)}}]}],h.ctorParameters=function(){return[]};var f,y=this&&this.__decorate||function(e,t,o,n){var i,r=arguments.length,R=r<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)R=Reflect.decorate(e,t,o,n);else for(var B=e.length-1;0<=B;B--)(i=e[B])&&(R=(r<3?i(R):3<r?i(t,o,R):i(t,o))||R);return 3<r&&R&&Object.defineProperty(t,o,R),R},m=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},$=["activeLayout","backStageMenu","contextualTabs","cssClass","enableKeyTips","enablePersistence","enableRtl","fileMenu","helpPaneTemplate","hideLayoutSwitcher","isMinimized","launcherIconCss","layoutSwitcherKeyTip","locale","selectedTab","tabAnimation","tabs","width"],M=["created","launcherIconClick","overflowPopupClose","overflowPopupOpen","ribbonCollapsing","ribbonExpanding","tabSelected","tabSelecting"],ee=[""];function v(e,t,o,n){var i=f.call(this)||this;i.ngEle=e,i.srenderer=t,i.viewContainerRef=o,i.injector=n,i.tags=["tabs","contextualTabs"],i.element=i.ngEle.nativeElement,i.injectedModules=i.injectedModules||[];try{var r=i.injector.get("RibbonRibbonButton");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(R){}try{r=i.injector.get("RibbonRibbonDropDown");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(B){}try{r=i.injector.get("RibbonRibbonSplitButton");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(b){}try{r=i.injector.get("RibbonRibbonCheckBox");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(O){}try{r=i.injector.get("RibbonRibbonColorPicker");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(s){}try{r=i.injector.get("RibbonRibbonComboBox");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(a){}try{r=i.injector.get("RibbonRibbonGroupButton");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(_){}try{r=i.injector.get("RibbonRibbonFileMenu");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(c){}try{r=i.injector.get("RibbonRibbonBackstage");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(I){}try{r=i.injector.get("RibbonRibbonKeyTip");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(l){}try{r=i.injector.get("RibbonRibbonContextualTab");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(T){}try{r=i.injector.get("RibbonRibbonGallery");-1===i.injectedModules.indexOf(r)&&i.injectedModules.push(r)}catch(u){}return i.registerEvents(M),i.addTwoWay.call(i,ee),N.setValue("currentInstance",i,i.viewContainerRef),i.containerContext=new N.ComponentBase,i}e.RibbonComponent=(f=o.Ribbon,R(v,f),v.prototype.ngOnInit=function(){this.containerContext.ngOnInit(this)},v.prototype.ngAfterViewInit=function(){this.containerContext.ngAfterViewInit(this)},v.prototype.ngOnDestroy=function(){this.containerContext.ngOnDestroy(this)},v.prototype.ngAfterContentChecked=function(){this.tagObjects[0].instance=this.childTabs,this.childContextualTabs&&(this.tagObjects[1].instance=this.childContextualTabs),this.containerContext.ngAfterContentChecked(this)},v),e.RibbonComponent.decorators=[{type:t.Component,args:[{selector:"ejs-ribbon",inputs:$,outputs:M,template:"<ng-content select='div'></ng-content>",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{childTabs:new t.ContentChild(L),childContextualTabs:new t.ContentChild(h)}}]}],e.RibbonComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.RibbonComponent.propDecorators={helpPaneTemplate:[{type:t.ContentChild,args:["helpPaneTemplate"]}]},y([N.Template(),m("design:type",Object)],e.RibbonComponent.prototype,"helpPaneTemplate",void 0),e.RibbonComponent=y([N.ComponentMixins([N.ComponentBase]),m("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.RibbonComponent);var R=function(){},m=(R.decorators=[{type:t.NgModule,args:[{imports:[n.CommonModule],declarations:[e.RibbonComponent,a,b,B,T,E,p,P,L,D,h],exports:[e.RibbonComponent,a,b,B,T,E,p,P,L,D,h]}]}],R.ctorParameters=function(){return[]},{provide:"RibbonRibbonButton",useValue:o.RibbonButton}),y={provide:"RibbonRibbonDropDown",useValue:o.RibbonDropDown},te={provide:"RibbonRibbonSplitButton",useValue:o.RibbonSplitButton},oe={provide:"RibbonRibbonCheckBox",useValue:o.RibbonCheckBox},ne={provide:"RibbonRibbonColorPicker",useValue:o.RibbonColorPicker},ie={provide:"RibbonRibbonComboBox",useValue:o.RibbonComboBox},re={provide:"RibbonRibbonGroupButton",useValue:o.RibbonGroupButton},Re={provide:"RibbonRibbonFileMenu",useValue:o.RibbonFileMenu},Be={provide:"RibbonRibbonBackstage",useValue:o.RibbonBackstage},be={provide:"RibbonRibbonKeyTip",useValue:o.RibbonKeyTip},Oe={provide:"RibbonRibbonContextualTab",useValue:o.RibbonContextualTab},se={provide:"RibbonRibbonGallery",useValue:o.RibbonGallery},U=function(){};U.decorators=[{type:t.NgModule,args:[{imports:[n.CommonModule,R],exports:[R],providers:[m,y,te,oe,ne,ie,re,Re,Be,be,Oe,se]}]}],U.ctorParameters=function(){return[]},e.RibbonItemDirective=a,e.RibbonItemsDirective=b,e.RibbonCollectionDirective=B,e.RibbonCollectionsDirective=T,e.RibbonGroupDirective=E,e.RibbonGroupsDirective=p,e.RibbonTabDirective=P,e.RibbonTabsDirective=L,e.RibbonContextualTabDirective=D,e.RibbonContextualTabsDirective=h,e.RibbonModule=R,e.RibbonAllModule=U,e.RibbonButtonService=m,e.RibbonDropDownService=y,e.RibbonSplitButtonService=te,e.RibbonCheckBoxService=oe,e.RibbonColorPickerService=ne,e.RibbonComboBoxService=ie,e.RibbonGroupButtonService=re,e.RibbonFileMenuService=Re,e.RibbonBackstageService=Be,e.RibbonKeyTipService=be,e.RibbonContextualTabService=Oe,e.RibbonGalleryService=se,e.ɵa=$,e.ɵb=M,e.Ribbon=o.Ribbon,e.RibbonLayout=o.RibbonLayout,e.ItemOrientation=o.ItemOrientation,e.RibbonItemSize=o.RibbonItemSize,e.DisplayMode=o.DisplayMode,e.RibbonItemType=o.RibbonItemType,e.RibbonGroupButtonSelection=o.RibbonGroupButtonSelection,e.ITEM_VERTICAL_CENTER=o.ITEM_VERTICAL_CENTER,e.EXPAND_COLLAPSE_ICON=o.EXPAND_COLLAPSE_ICON,e.BACKSTAGE_CLOSE_ICON=o.BACKSTAGE_CLOSE_ICON,e.OVERFLOW_ICON=o.OVERFLOW_ICON,e.VERTICAL_DDB=o.VERTICAL_DDB,e.DISABLED_CSS=o.DISABLED_CSS,e.RTL_CSS=o.RTL_CSS,e.RIBBON_HOVER=o.RIBBON_HOVER,e.RIBBON_CONTROL=o.RIBBON_CONTROL,e.RIBBON_POPUP_CONTROL=o.RIBBON_POPUP_CONTROL,e.RIBBON_POPUP_OPEN=o.RIBBON_POPUP_OPEN,e.RIBBON_KEYTIP=o.RIBBON_KEYTIP,e.SPACE=o.SPACE,e.HORIZONTAL_SCROLLBAR=o.HORIZONTAL_SCROLLBAR,e.HIDE_CSS=o.HIDE_CSS,e.RIBBON_TAB=o.RIBBON_TAB,e.RIBBON_CONTEXTUAL_TAB=o.RIBBON_CONTEXTUAL_TAB,e.RIBBON_TAB_ACTIVE=o.RIBBON_TAB_ACTIVE,e.RIBBON_TAB_ITEM=o.RIBBON_TAB_ITEM,e.RIBBON_COLLAPSE_BUTTON=o.RIBBON_COLLAPSE_BUTTON,e.RIBBON_EXPAND_BUTTON=o.RIBBON_EXPAND_BUTTON,e.RIBBON_COLLAPSIBLE=o.RIBBON_COLLAPSIBLE,e.RIBBON_OVERALL_OF_BUTTON=o.RIBBON_OVERALL_OF_BUTTON,e.RIBBON_GROUP_OF_BUTTON=o.RIBBON_GROUP_OF_BUTTON,e.RIBBON_OVERFLOW_TARGET=o.RIBBON_OVERFLOW_TARGET,e.RIBBON_OVERFLOW=o.RIBBON_OVERFLOW,e.TAB_CONTENT=o.TAB_CONTENT,e.RIBBON_MINIMIZE=o.RIBBON_MINIMIZE,e.RIBBON_GROUP=o.RIBBON_GROUP,e.RIBBON_SINGLE_BUTTON_SELECTION=o.RIBBON_SINGLE_BUTTON_SELECTION,e.RIBBON_MULTIPLE_BUTTON_SELECTION=o.RIBBON_MULTIPLE_BUTTON_SELECTION,e.RIBBON_GROUP_BUTTON=o.RIBBON_GROUP_BUTTON,e.RIBBON_GROUP_BUTTON_OVERFLOW_POPUP=o.RIBBON_GROUP_BUTTON_OVERFLOW_POPUP,e.RIBBON_GROUP_BUTTON_CONTENT=o.RIBBON_GROUP_BUTTON_CONTENT,e.RIBBON_GROUP_CONTAINER=o.RIBBON_GROUP_CONTAINER,e.RIBBON_OF_TAB_CONTAINER=o.RIBBON_OF_TAB_CONTAINER,e.RIBBON_OF_GROUP_CONTAINER=o.RIBBON_OF_GROUP_CONTAINER,e.RIBBON_GROUP_CONTENT=o.RIBBON_GROUP_CONTENT,e.RIBBON_GROUP_HEADER=o.RIBBON_GROUP_HEADER,e.RIBBON_OVERFLOW_HEADER=o.RIBBON_OVERFLOW_HEADER,e.RIBBON_GROUP_OVERFLOW=o.RIBBON_GROUP_OVERFLOW,e.RIBBON_GROUP_OVERFLOW_DDB=o.RIBBON_GROUP_OVERFLOW_DDB,e.RIBBON_LAUNCHER=o.RIBBON_LAUNCHER,e.RIBBON_LAUNCHER_ICON_ELE=o.RIBBON_LAUNCHER_ICON_ELE,e.RIBBON_LAUNCHER_ICON=o.RIBBON_LAUNCHER_ICON,e.RIBBON_COLLECTION=o.RIBBON_COLLECTION,e.RIBBON_ITEM=o.RIBBON_ITEM,e.RIBBON_ROW=o.RIBBON_ROW,e.RIBBON_COLUMN=o.RIBBON_COLUMN,e.RIBBON_LARGE_ITEM=o.RIBBON_LARGE_ITEM,e.RIBBON_MEDIUM_ITEM=o.RIBBON_MEDIUM_ITEM,e.RIBBON_SMALL_ITEM=o.RIBBON_SMALL_ITEM,e.RIBBON_CONTENT_HEIGHT=o.RIBBON_CONTENT_HEIGHT,e.DROPDOWNBUTTON=o.DROPDOWNBUTTON,e.DROPDOWNBUTTON_HIDE=o.DROPDOWNBUTTON_HIDE,e.RIBBON_TEMPLATE=o.RIBBON_TEMPLATE,e.RIBBON_HELP_TEMPLATE=o.RIBBON_HELP_TEMPLATE,e.RIBBON_TOOLTIP=o.RIBBON_TOOLTIP,e.RIBBON_TOOLTIP_TARGET=o.RIBBON_TOOLTIP_TARGET,e.RIBBON_TOOLTIP_TITLE=o.RIBBON_TOOLTIP_TITLE,e.RIBBON_TOOLTIP_CONTENT=o.RIBBON_TOOLTIP_CONTENT,e.RIBBON_TOOLTIP_ICON=o.RIBBON_TOOLTIP_ICON,e.RIBBON_TOOLTIP_CONTAINER=o.RIBBON_TOOLTIP_CONTAINER,e.RIBBON_TEXT_CONTAINER=o.RIBBON_TEXT_CONTAINER,e.RIBBON_SIMPLIFIED_MODE=o.RIBBON_SIMPLIFIED_MODE,e.RIBBON_BACKSTAGE_POPUP=o.RIBBON_BACKSTAGE_POPUP,e.RIBBON_BACKSTAGE_OPEN=o.RIBBON_BACKSTAGE_OPEN,e.RIBBON_BACKSTAGE_CONTENT=o.RIBBON_BACKSTAGE_CONTENT,e.RIBBON_SELECTED_CONTENT=o.RIBBON_SELECTED_CONTENT,e.RIBBON_BACKSTAGE=o.RIBBON_BACKSTAGE,e.RIBBON_BACKSTAGE_MENU=o.RIBBON_BACKSTAGE_MENU,e.RIBBON_BACKSTAGE_TEMPLATE=o.RIBBON_BACKSTAGE_TEMPLATE,e.RIBBON_BACKSTAGE_MENU_WRAPPER=o.RIBBON_BACKSTAGE_MENU_WRAPPER,e.RIBBON_BACKSTAGE_ITEMS_WRAPPER=o.RIBBON_BACKSTAGE_ITEMS_WRAPPER,e.RIBBON_BACKSTAGE_TEXT_MENU=o.RIBBON_BACKSTAGE_TEXT_MENU,e.TAB_ID=o.TAB_ID,e.GROUP_ID=o.GROUP_ID,e.COLLECTION_ID=o.COLLECTION_ID,e.ITEM_ID=o.ITEM_ID,e.COLLAPSE_BUTTON_ID=o.COLLAPSE_BUTTON_ID,e.OVRLOF_BUTTON_ID=o.OVRLOF_BUTTON_ID,e.GROUPOF_BUTTON_ID=o.GROUPOF_BUTTON_ID,e.HEADER_ID=o.HEADER_ID,e.LAUNCHER_ID=o.LAUNCHER_ID,e.CONTENT_ID=o.CONTENT_ID,e.CONTAINER_ID=o.CONTAINER_ID,e.OVERFLOW_ID=o.OVERFLOW_ID,e.DROPDOWN_ID=o.DROPDOWN_ID,e.RIBBON_FILE_MENU_ID=o.RIBBON_FILE_MENU_ID,e.RIBBON_BACKSTAGE_MENU_ID=o.RIBBON_BACKSTAGE_MENU_ID,e.RIBBON_BACKSTAGE_POPUP_ID=o.RIBBON_BACKSTAGE_POPUP_ID,e.RIBBON_FILE_MENU_LIST=o.RIBBON_FILE_MENU_LIST,e.RIBBON_MENU_LIST=o.RIBBON_MENU_LIST,e.RIBBON_FOOTER_MENU_LIST=o.RIBBON_FOOTER_MENU_LIST,e.RIBBON_HELP_PANE_TEMPLATE_ID=o.RIBBON_HELP_PANE_TEMPLATE_ID,e.RIBBON_GROUP_BUTTON_ID=o.RIBBON_GROUP_BUTTON_ID,e.RIBBON_KEYTIP_ID=o.RIBBON_KEYTIP_ID,e.RIBBON_FILE_MENU_WIDTH=o.RIBBON_FILE_MENU_WIDTH,e.RIBBON_HELP_PANE_TEMPLATE_WIDTH=o.RIBBON_HELP_PANE_TEMPLATE_WIDTH,e.getIndex=o.getIndex,e.getTemplateFunction=o.getTemplateFunction,e.getItem=o.getItem,e.getCollection=o.getCollection,e.getGroup=o.getGroup,e.destroyControl=o.destroyControl,e.updateCommonProperty=o.updateCommonProperty,e.updateControlDisabled=o.updateControlDisabled,e.getItemElement=o.getItemElement,e.isTooltipPresent=o.isTooltipPresent,e.setToolTipContent=o.setToolTipContent,e.createTooltip=o.createTooltip,e.destroyTooltip=o.destroyTooltip,e.updateTooltipProp=o.updateTooltipProp,e.setCustomAttributes=o.setCustomAttributes,e.RibbonTab=o.RibbonTab,e.RibbonGroup=o.RibbonGroup,e.RibbonCollection=o.RibbonCollection,e.RibbonItem=o.RibbonItem,e.RibbonButtonSettings=o.RibbonButtonSettings,e.RibbonCheckBoxSettings=o.RibbonCheckBoxSettings,e.RibbonColorPickerSettings=o.RibbonColorPickerSettings,e.RibbonComboBoxSettings=o.RibbonComboBoxSettings,e.RibbonDropDownSettings=o.RibbonDropDownSettings,e.RibbonSplitButtonSettings=o.RibbonSplitButtonSettings,e.FileMenuSettings=o.FileMenuSettings,e.BackStageMenu=o.BackStageMenu,e.BackstageBackButton=o.BackstageBackButton,e.BackstageItem=o.BackstageItem,e.RibbonTooltip=o.RibbonTooltip,e.RibbonGroupButtonSettings=o.RibbonGroupButtonSettings,e.RibbonGroupButtonItem=o.RibbonGroupButtonItem,e.RibbonContextualTabSettings=o.RibbonContextualTabSettings,e.RibbonGalleryGroup=o.RibbonGalleryGroup,e.RibbonGalleryItem=o.RibbonGalleryItem,e.RibbonGallerySettings=o.RibbonGallerySettings,e.RibbonButton=o.RibbonButton,e.RibbonCheckBox=o.RibbonCheckBox,e.RibbonColorPicker=o.RibbonColorPicker,e.RibbonComboBox=o.RibbonComboBox,e.RibbonDropDown=o.RibbonDropDown,e.RibbonSplitButton=o.RibbonSplitButton,e.RibbonGroupButton=o.RibbonGroupButton,e.RibbonGallery=o.RibbonGallery,e.RibbonFileMenu=o.RibbonFileMenu,e.RibbonBackstage=o.RibbonBackstage,e.RibbonContextualTab=o.RibbonContextualTab,e.RibbonKeyTip=o.RibbonKeyTip,Object.defineProperty(e,"__esModule",{value:!0})});
11
11
  //# sourceMappingURL=ej2-angular-ribbon.umd.min.js.map