@syncfusion/ej2-angular-ribbon 25.2.3-ngcc → 25.2.5-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.
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I585010` - Now setting the ribbon ID dynamically using `htmlAttributes` breaks the UI with ribbon mode switching has been resolved.
|
|
10
|
+
|
|
11
|
+
## 25.1.41 (2024-04-23)
|
|
12
|
+
|
|
13
|
+
### Ribbon
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
9
17
|
- `#F575011` - Now the script issue raised while interacting a non-active Ribbon items using `updateItem` method has been resolved.
|
|
10
18
|
|
|
11
19
|
## 25.1.35 (2024-03-15)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-ribbon.umd.js
|
|
3
|
-
* version : 25.2.
|
|
3
|
+
* version : 25.2.5
|
|
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,11 +39,9 @@ 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 =
|
|
42
|
+
var RibbonItemDirective = (function (_super) {
|
|
43
43
|
__extends(RibbonItemDirective, _super);
|
|
44
|
-
|
|
45
|
-
* @param {?} viewContainerRef
|
|
46
|
-
*/
|
|
44
|
+
|
|
47
45
|
function RibbonItemDirective(viewContainerRef) {
|
|
48
46
|
var _this = _super.call(this) || this;
|
|
49
47
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -62,9 +60,7 @@ RibbonItemDirective.decorators = [
|
|
|
62
60
|
queries: {}
|
|
63
61
|
},] },
|
|
64
62
|
];
|
|
65
|
-
|
|
66
|
-
* @nocollapse
|
|
67
|
-
*/
|
|
63
|
+
|
|
68
64
|
RibbonItemDirective.ctorParameters = function () { return [
|
|
69
65
|
{ type: core.ViewContainerRef, },
|
|
70
66
|
]; };
|
|
@@ -75,10 +71,8 @@ __decorate([
|
|
|
75
71
|
ej2AngularBase.Template(),
|
|
76
72
|
__metadata("design:type", Object)
|
|
77
73
|
], RibbonItemDirective.prototype, "itemTemplate", void 0);
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
*/
|
|
81
|
-
var RibbonItemsDirective = /** @class */ (function (_super) {
|
|
74
|
+
|
|
75
|
+
var RibbonItemsDirective = (function (_super) {
|
|
82
76
|
__extends(RibbonItemsDirective, _super);
|
|
83
77
|
function RibbonItemsDirective() {
|
|
84
78
|
return _super.call(this, 'items') || this;
|
|
@@ -93,17 +87,13 @@ RibbonItemsDirective.decorators = [
|
|
|
93
87
|
},
|
|
94
88
|
},] },
|
|
95
89
|
];
|
|
96
|
-
|
|
97
|
-
* @nocollapse
|
|
98
|
-
*/
|
|
90
|
+
|
|
99
91
|
RibbonItemsDirective.ctorParameters = function () { return []; };
|
|
100
92
|
var input$1 = ['cssClass', 'id', 'items'];
|
|
101
93
|
var outputs$1 = [];
|
|
102
|
-
var RibbonCollectionDirective =
|
|
94
|
+
var RibbonCollectionDirective = (function (_super) {
|
|
103
95
|
__extends(RibbonCollectionDirective, _super);
|
|
104
|
-
|
|
105
|
-
* @param {?} viewContainerRef
|
|
106
|
-
*/
|
|
96
|
+
|
|
107
97
|
function RibbonCollectionDirective(viewContainerRef) {
|
|
108
98
|
var _this = _super.call(this) || this;
|
|
109
99
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -125,16 +115,12 @@ RibbonCollectionDirective.decorators = [
|
|
|
125
115
|
}
|
|
126
116
|
},] },
|
|
127
117
|
];
|
|
128
|
-
|
|
129
|
-
* @nocollapse
|
|
130
|
-
*/
|
|
118
|
+
|
|
131
119
|
RibbonCollectionDirective.ctorParameters = function () { return [
|
|
132
120
|
{ type: core.ViewContainerRef, },
|
|
133
121
|
]; };
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
*/
|
|
137
|
-
var RibbonCollectionsDirective = /** @class */ (function (_super) {
|
|
122
|
+
|
|
123
|
+
var RibbonCollectionsDirective = (function (_super) {
|
|
138
124
|
__extends(RibbonCollectionsDirective, _super);
|
|
139
125
|
function RibbonCollectionsDirective() {
|
|
140
126
|
return _super.call(this, 'collections') || this;
|
|
@@ -149,17 +135,13 @@ RibbonCollectionsDirective.decorators = [
|
|
|
149
135
|
},
|
|
150
136
|
},] },
|
|
151
137
|
];
|
|
152
|
-
|
|
153
|
-
* @nocollapse
|
|
154
|
-
*/
|
|
138
|
+
|
|
155
139
|
RibbonCollectionsDirective.ctorParameters = function () { return []; };
|
|
156
140
|
var input$2 = ['collections', 'cssClass', 'enableGroupOverflow', 'groupIconCss', 'header', 'id', 'isCollapsed', 'isCollapsible', 'keyTip', 'launcherIconKeyTip', 'orientation', 'overflowHeader', 'priority', 'showLauncherIcon'];
|
|
157
141
|
var outputs$2 = [];
|
|
158
|
-
var RibbonGroupDirective =
|
|
142
|
+
var RibbonGroupDirective = (function (_super) {
|
|
159
143
|
__extends(RibbonGroupDirective, _super);
|
|
160
|
-
|
|
161
|
-
* @param {?} viewContainerRef
|
|
162
|
-
*/
|
|
144
|
+
|
|
163
145
|
function RibbonGroupDirective(viewContainerRef) {
|
|
164
146
|
var _this = _super.call(this) || this;
|
|
165
147
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -181,16 +163,12 @@ RibbonGroupDirective.decorators = [
|
|
|
181
163
|
}
|
|
182
164
|
},] },
|
|
183
165
|
];
|
|
184
|
-
|
|
185
|
-
* @nocollapse
|
|
186
|
-
*/
|
|
166
|
+
|
|
187
167
|
RibbonGroupDirective.ctorParameters = function () { return [
|
|
188
168
|
{ type: core.ViewContainerRef, },
|
|
189
169
|
]; };
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
*/
|
|
193
|
-
var RibbonGroupsDirective = /** @class */ (function (_super) {
|
|
170
|
+
|
|
171
|
+
var RibbonGroupsDirective = (function (_super) {
|
|
194
172
|
__extends(RibbonGroupsDirective, _super);
|
|
195
173
|
function RibbonGroupsDirective() {
|
|
196
174
|
return _super.call(this, 'groups') || this;
|
|
@@ -205,17 +183,13 @@ RibbonGroupsDirective.decorators = [
|
|
|
205
183
|
},
|
|
206
184
|
},] },
|
|
207
185
|
];
|
|
208
|
-
|
|
209
|
-
* @nocollapse
|
|
210
|
-
*/
|
|
186
|
+
|
|
211
187
|
RibbonGroupsDirective.ctorParameters = function () { return []; };
|
|
212
188
|
var input$3 = ['cssClass', 'groups', 'header', 'id', 'keyTip'];
|
|
213
189
|
var outputs$3 = [];
|
|
214
|
-
var RibbonTabDirective =
|
|
190
|
+
var RibbonTabDirective = (function (_super) {
|
|
215
191
|
__extends(RibbonTabDirective, _super);
|
|
216
|
-
|
|
217
|
-
* @param {?} viewContainerRef
|
|
218
|
-
*/
|
|
192
|
+
|
|
219
193
|
function RibbonTabDirective(viewContainerRef) {
|
|
220
194
|
var _this = _super.call(this) || this;
|
|
221
195
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -237,16 +211,12 @@ RibbonTabDirective.decorators = [
|
|
|
237
211
|
}
|
|
238
212
|
},] },
|
|
239
213
|
];
|
|
240
|
-
|
|
241
|
-
* @nocollapse
|
|
242
|
-
*/
|
|
214
|
+
|
|
243
215
|
RibbonTabDirective.ctorParameters = function () { return [
|
|
244
216
|
{ type: core.ViewContainerRef, },
|
|
245
217
|
]; };
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
*/
|
|
249
|
-
var RibbonTabsDirective = /** @class */ (function (_super) {
|
|
218
|
+
|
|
219
|
+
var RibbonTabsDirective = (function (_super) {
|
|
250
220
|
__extends(RibbonTabsDirective, _super);
|
|
251
221
|
function RibbonTabsDirective() {
|
|
252
222
|
return _super.call(this, 'tabs') || this;
|
|
@@ -261,29 +231,14 @@ RibbonTabsDirective.decorators = [
|
|
|
261
231
|
},
|
|
262
232
|
},] },
|
|
263
233
|
];
|
|
264
|
-
|
|
265
|
-
* @nocollapse
|
|
266
|
-
*/
|
|
234
|
+
|
|
267
235
|
RibbonTabsDirective.ctorParameters = function () { return []; };
|
|
268
236
|
var input$4 = ['isSelected', 'tabs', 'visible'];
|
|
269
237
|
var outputs$4 = [];
|
|
270
|
-
|
|
271
|
-
|
|
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) {
|
|
238
|
+
|
|
239
|
+
var RibbonContextualTabDirective = (function (_super) {
|
|
283
240
|
__extends(RibbonContextualTabDirective, _super);
|
|
284
|
-
|
|
285
|
-
* @param {?} viewContainerRef
|
|
286
|
-
*/
|
|
241
|
+
|
|
287
242
|
function RibbonContextualTabDirective(viewContainerRef) {
|
|
288
243
|
var _this = _super.call(this) || this;
|
|
289
244
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -305,16 +260,12 @@ RibbonContextualTabDirective.decorators = [
|
|
|
305
260
|
}
|
|
306
261
|
},] },
|
|
307
262
|
];
|
|
308
|
-
|
|
309
|
-
* @nocollapse
|
|
310
|
-
*/
|
|
263
|
+
|
|
311
264
|
RibbonContextualTabDirective.ctorParameters = function () { return [
|
|
312
265
|
{ type: core.ViewContainerRef, },
|
|
313
266
|
]; };
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
*/
|
|
317
|
-
var RibbonContextualTabsDirective = /** @class */ (function (_super) {
|
|
267
|
+
|
|
268
|
+
var RibbonContextualTabsDirective = (function (_super) {
|
|
318
269
|
__extends(RibbonContextualTabsDirective, _super);
|
|
319
270
|
function RibbonContextualTabsDirective() {
|
|
320
271
|
return _super.call(this, 'contextualtabs') || this;
|
|
@@ -329,9 +280,7 @@ RibbonContextualTabsDirective.decorators = [
|
|
|
329
280
|
},
|
|
330
281
|
},] },
|
|
331
282
|
];
|
|
332
|
-
|
|
333
|
-
* @nocollapse
|
|
334
|
-
*/
|
|
283
|
+
|
|
335
284
|
RibbonContextualTabsDirective.ctorParameters = function () { return []; };
|
|
336
285
|
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
337
286
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -350,20 +299,10 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
|
350
299
|
var inputs = ['activeLayout', 'backStageMenu', 'contextualTabs', 'cssClass', 'enableKeyTips', 'enablePersistence', 'enableRtl', 'fileMenu', 'helpPaneTemplate', 'hideLayoutSwitcher', 'isMinimized', 'launcherIconCss', 'layoutSwitcherKeyTip', 'locale', 'selectedTab', 'tabAnimation', 'tabs', 'width'];
|
|
351
300
|
var outputs$5 = ['created', 'launcherIconClick', 'overflowPopupClose', 'overflowPopupOpen', 'ribbonCollapsing', 'ribbonExpanding', 'tabSelected', 'tabSelecting'];
|
|
352
301
|
var twoWays = [''];
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
* ```html
|
|
356
|
-
* <ejs-ribbon></ejs-ribbon>
|
|
357
|
-
* ```
|
|
358
|
-
*/
|
|
359
|
-
exports.RibbonComponent = /** @class */ (function (_super) {
|
|
302
|
+
|
|
303
|
+
exports.RibbonComponent = (function (_super) {
|
|
360
304
|
__extends(RibbonComponent, _super);
|
|
361
|
-
|
|
362
|
-
* @param {?} ngEle
|
|
363
|
-
* @param {?} srenderer
|
|
364
|
-
* @param {?} viewContainerRef
|
|
365
|
-
* @param {?} injector
|
|
366
|
-
*/
|
|
305
|
+
|
|
367
306
|
function RibbonComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
368
307
|
var _this = _super.call(this) || this;
|
|
369
308
|
_this.ngEle = ngEle;
|
|
@@ -463,31 +402,23 @@ exports.RibbonComponent = /** @class */ (function (_super) {
|
|
|
463
402
|
_this.containerContext = new ej2AngularBase.ComponentBase();
|
|
464
403
|
return _this;
|
|
465
404
|
}
|
|
466
|
-
|
|
467
|
-
* @return {?}
|
|
468
|
-
*/
|
|
405
|
+
|
|
469
406
|
RibbonComponent.prototype.ngOnInit = function () {
|
|
470
407
|
this.containerContext.ngOnInit(this);
|
|
471
408
|
};
|
|
472
|
-
|
|
473
|
-
* @return {?}
|
|
474
|
-
*/
|
|
409
|
+
|
|
475
410
|
RibbonComponent.prototype.ngAfterViewInit = function () {
|
|
476
411
|
this.containerContext.ngAfterViewInit(this);
|
|
477
412
|
};
|
|
478
|
-
|
|
479
|
-
* @return {?}
|
|
480
|
-
*/
|
|
413
|
+
|
|
481
414
|
RibbonComponent.prototype.ngOnDestroy = function () {
|
|
482
415
|
this.containerContext.ngOnDestroy(this);
|
|
483
416
|
};
|
|
484
|
-
|
|
485
|
-
* @return {?}
|
|
486
|
-
*/
|
|
417
|
+
|
|
487
418
|
RibbonComponent.prototype.ngAfterContentChecked = function () {
|
|
488
419
|
this.tagObjects[0].instance = this.childTabs;
|
|
489
420
|
if (this.childContextualTabs) {
|
|
490
|
-
this.tagObjects[1].instance =
|
|
421
|
+
this.tagObjects[1].instance = (this.childContextualTabs);
|
|
491
422
|
}
|
|
492
423
|
this.containerContext.ngAfterContentChecked(this);
|
|
493
424
|
};
|
|
@@ -506,9 +437,7 @@ exports.RibbonComponent.decorators = [
|
|
|
506
437
|
}
|
|
507
438
|
},] },
|
|
508
439
|
];
|
|
509
|
-
|
|
510
|
-
* @nocollapse
|
|
511
|
-
*/
|
|
440
|
+
|
|
512
441
|
exports.RibbonComponent.ctorParameters = function () { return [
|
|
513
442
|
{ type: core.ElementRef, },
|
|
514
443
|
{ type: core.Renderer2, },
|
|
@@ -529,10 +458,8 @@ exports.RibbonComponent = __decorate$1([
|
|
|
529
458
|
core.ViewContainerRef,
|
|
530
459
|
core.Injector])
|
|
531
460
|
], exports.RibbonComponent);
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
*/
|
|
535
|
-
var RibbonModule = /** @class */ (function () {
|
|
461
|
+
|
|
462
|
+
var RibbonModule = (function () {
|
|
536
463
|
function RibbonModule() {
|
|
537
464
|
}
|
|
538
465
|
return RibbonModule;
|
|
@@ -568,9 +495,7 @@ RibbonModule.decorators = [
|
|
|
568
495
|
]
|
|
569
496
|
},] },
|
|
570
497
|
];
|
|
571
|
-
|
|
572
|
-
* @nocollapse
|
|
573
|
-
*/
|
|
498
|
+
|
|
574
499
|
RibbonModule.ctorParameters = function () { return []; };
|
|
575
500
|
var RibbonButtonService = { provide: 'RibbonRibbonButton', useValue: ej2Ribbon.RibbonButton };
|
|
576
501
|
var RibbonDropDownService = { provide: 'RibbonRibbonDropDown', useValue: ej2Ribbon.RibbonDropDown };
|
|
@@ -584,10 +509,8 @@ var RibbonBackstageService = { provide: 'RibbonRibbonBackstage', useValue: ej2Ri
|
|
|
584
509
|
var RibbonKeyTipService = { provide: 'RibbonRibbonKeyTip', useValue: ej2Ribbon.RibbonKeyTip };
|
|
585
510
|
var RibbonContextualTabService = { provide: 'RibbonRibbonContextualTab', useValue: ej2Ribbon.RibbonContextualTab };
|
|
586
511
|
var RibbonGalleryService = { provide: 'RibbonRibbonGallery', useValue: ej2Ribbon.RibbonGallery };
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
*/
|
|
590
|
-
var RibbonAllModule = /** @class */ (function () {
|
|
512
|
+
|
|
513
|
+
var RibbonAllModule = (function () {
|
|
591
514
|
function RibbonAllModule() {
|
|
592
515
|
}
|
|
593
516
|
return RibbonAllModule;
|
|
@@ -614,9 +537,7 @@ RibbonAllModule.decorators = [
|
|
|
614
537
|
]
|
|
615
538
|
},] },
|
|
616
539
|
];
|
|
617
|
-
|
|
618
|
-
* @nocollapse
|
|
619
|
-
*/
|
|
540
|
+
|
|
620
541
|
RibbonAllModule.ctorParameters = function () { return []; };
|
|
621
542
|
|
|
622
543
|
exports.RibbonItemDirective = RibbonItemDirective;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-ribbon.umd.min.js
|
|
3
|
-
* version : 25.2.
|
|
3
|
+
* version : 25.2.5
|
|
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
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-ribbon@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-ribbon@25.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-ribbon@25.2.3",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-ptaPCtMe+tztw25rPTxp7qojBKvIswLxbWP2ZVyYSjr+yMRMUTK01FqTqdjOGN553HkWb6RjLfX/FSkEY5vUJA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-ribbon",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-ribbon/-/ej2-angular-ribbon-25.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-ribbon/-/ej2-angular-ribbon-25.2.3.tgz",
|
|
23
|
+
"_shasum": "9349cc81abbee2d4aa7338c5d2f223a5193b41c6",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-ribbon@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~25.2.
|
|
35
|
-
"@syncfusion/ej2-base": "~25.2.
|
|
36
|
-
"@syncfusion/ej2-ribbon": "25.2.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~25.2.4",
|
|
35
|
+
"@syncfusion/ej2-base": "~25.2.5",
|
|
36
|
+
"@syncfusion/ej2-ribbon": "25.2.5"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 Component for Angular",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"schematics": "./schematics/collection.json",
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"typings": "ej2-angular-ribbon.d.ts",
|
|
61
|
-
"version": "25.2.
|
|
61
|
+
"version": "25.2.5-ngcc"
|
|
62
62
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-ribbon";
|
|
2
|
-
export declare const pkgVer = "^25.
|
|
2
|
+
export declare const pkgVer = "^25.2.3";
|
|
3
3
|
export declare const moduleName = "RibbonModule";
|
|
4
|
-
export declare const themeVer = "~25.
|
|
4
|
+
export declare const themeVer = "~25.2.3";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-ribbon';
|
|
4
|
-
exports.pkgVer = '^25.2.
|
|
4
|
+
exports.pkgVer = '^25.2.5';
|
|
5
5
|
exports.moduleName = 'RibbonModule';
|
|
6
|
-
exports.themeVer = '~25.2.
|
|
6
|
+
exports.themeVer = '~25.2.5';
|