@syncfusion/ej2-angular-splitbuttons 25.2.3-ngcc → 25.2.4-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
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ### ButtonGroup
6
+
7
+ #### Bug Fixes
8
+
9
+ - Issue in "box shadow correction while clicking single or multiple selection mode buttons" has been resolved.
10
+
5
11
  ## 25.1.38 (2024-04-02)
6
12
 
7
13
  ### DropDownButton
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-splitbuttons.umd.js
3
- * version : 25.2.3
3
+ * version : 25.2.4
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
@@ -25,11 +25,9 @@ var __extends = (this && this.__extends) || (function () {
25
25
  })();
26
26
  var input = ['disabled', 'iconCss', 'id', 'separator', 'text', 'url'];
27
27
  var outputs = [];
28
- var DropDownButtonItemDirective = /** @class */ (function (_super) {
28
+ var DropDownButtonItemDirective = (function (_super) {
29
29
  __extends(DropDownButtonItemDirective, _super);
30
- /**
31
- * @param {?} viewContainerRef
32
- */
30
+
33
31
  function DropDownButtonItemDirective(viewContainerRef) {
34
32
  var _this = _super.call(this) || this;
35
33
  _this.viewContainerRef = viewContainerRef;
@@ -48,16 +46,12 @@ DropDownButtonItemDirective.decorators = [
48
46
  queries: {}
49
47
  },] },
50
48
  ];
51
- /**
52
- * @nocollapse
53
- */
49
+
54
50
  DropDownButtonItemDirective.ctorParameters = function () { return [
55
51
  { type: core.ViewContainerRef, },
56
52
  ]; };
57
- /**
58
- * DropDownButtonItem Array Directive
59
- */
60
- var DropDownButtonItemsDirective = /** @class */ (function (_super) {
53
+
54
+ var DropDownButtonItemsDirective = (function (_super) {
61
55
  __extends(DropDownButtonItemsDirective, _super);
62
56
  function DropDownButtonItemsDirective() {
63
57
  return _super.call(this, 'items') || this;
@@ -72,9 +66,7 @@ DropDownButtonItemsDirective.decorators = [
72
66
  },
73
67
  },] },
74
68
  ];
75
- /**
76
- * @nocollapse
77
- */
69
+
78
70
  DropDownButtonItemsDirective.ctorParameters = function () { return []; };
79
71
  var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
80
72
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -93,20 +85,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
93
85
  var inputs = ['closeActionEvents', 'content', 'createPopupOnClick', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'items', 'locale', 'target'];
94
86
  var outputs$1 = ['beforeClose', 'beforeItemRender', 'beforeOpen', 'close', 'created', 'open', 'select'];
95
87
  var twoWays = [];
96
- /**
97
- * Represents the Angular DropDownButton Component.
98
- * ```html
99
- * <button ejs-dropdownbutton>DropDownButton</button>
100
- * ```
101
- */
102
- exports.DropDownButtonComponent = /** @class */ (function (_super) {
88
+
89
+ exports.DropDownButtonComponent = (function (_super) {
103
90
  __extends(DropDownButtonComponent, _super);
104
- /**
105
- * @param {?} ngEle
106
- * @param {?} srenderer
107
- * @param {?} viewContainerRef
108
- * @param {?} injector
109
- */
91
+
110
92
  function DropDownButtonComponent(ngEle, srenderer, viewContainerRef, injector) {
111
93
  var _this = _super.call(this) || this;
112
94
  _this.ngEle = ngEle;
@@ -122,27 +104,19 @@ exports.DropDownButtonComponent = /** @class */ (function (_super) {
122
104
  _this.containerContext = new ej2AngularBase.ComponentBase();
123
105
  return _this;
124
106
  }
125
- /**
126
- * @return {?}
127
- */
107
+
128
108
  DropDownButtonComponent.prototype.ngOnInit = function () {
129
109
  this.containerContext.ngOnInit(this);
130
110
  };
131
- /**
132
- * @return {?}
133
- */
111
+
134
112
  DropDownButtonComponent.prototype.ngAfterViewInit = function () {
135
113
  this.containerContext.ngAfterViewInit(this);
136
114
  };
137
- /**
138
- * @return {?}
139
- */
115
+
140
116
  DropDownButtonComponent.prototype.ngOnDestroy = function () {
141
117
  this.containerContext.ngOnDestroy(this);
142
118
  };
143
- /**
144
- * @return {?}
145
- */
119
+
146
120
  DropDownButtonComponent.prototype.ngAfterContentChecked = function () {
147
121
  this.tagObjects[0].instance = this.childItems;
148
122
  this.containerContext.ngAfterContentChecked(this);
@@ -161,9 +135,7 @@ exports.DropDownButtonComponent.decorators = [
161
135
  }
162
136
  },] },
163
137
  ];
164
- /**
165
- * @nocollapse
166
- */
138
+
167
139
  exports.DropDownButtonComponent.ctorParameters = function () { return [
168
140
  { type: core.ElementRef, },
169
141
  { type: core.Renderer2, },
@@ -177,10 +149,8 @@ exports.DropDownButtonComponent = __decorate([
177
149
  core.ViewContainerRef,
178
150
  core.Injector])
179
151
  ], exports.DropDownButtonComponent);
180
- /**
181
- * NgModule definition for the DropDownButton component.
182
- */
183
- var DropDownButtonModule = /** @class */ (function () {
152
+
153
+ var DropDownButtonModule = (function () {
184
154
  function DropDownButtonModule() {
185
155
  }
186
156
  return DropDownButtonModule;
@@ -200,14 +170,10 @@ DropDownButtonModule.decorators = [
200
170
  ]
201
171
  },] },
202
172
  ];
203
- /**
204
- * @nocollapse
205
- */
173
+
206
174
  DropDownButtonModule.ctorParameters = function () { return []; };
207
- /**
208
- * NgModule definition for the DropDownButton component with providers.
209
- */
210
- var DropDownButtonAllModule = /** @class */ (function () {
175
+
176
+ var DropDownButtonAllModule = (function () {
211
177
  function DropDownButtonAllModule() {
212
178
  }
213
179
  return DropDownButtonAllModule;
@@ -221,17 +187,13 @@ DropDownButtonAllModule.decorators = [
221
187
  providers: []
222
188
  },] },
223
189
  ];
224
- /**
225
- * @nocollapse
226
- */
190
+
227
191
  DropDownButtonAllModule.ctorParameters = function () { return []; };
228
192
  var input$1 = ['disabled', 'iconCss', 'id', 'separator', 'text', 'url'];
229
193
  var outputs$2 = [];
230
- var SplitButtonItemDirective = /** @class */ (function (_super) {
194
+ var SplitButtonItemDirective = (function (_super) {
231
195
  __extends(SplitButtonItemDirective, _super);
232
- /**
233
- * @param {?} viewContainerRef
234
- */
196
+
235
197
  function SplitButtonItemDirective(viewContainerRef) {
236
198
  var _this = _super.call(this) || this;
237
199
  _this.viewContainerRef = viewContainerRef;
@@ -250,16 +212,12 @@ SplitButtonItemDirective.decorators = [
250
212
  queries: {}
251
213
  },] },
252
214
  ];
253
- /**
254
- * @nocollapse
255
- */
215
+
256
216
  SplitButtonItemDirective.ctorParameters = function () { return [
257
217
  { type: core.ViewContainerRef, },
258
218
  ]; };
259
- /**
260
- * SplitButtonItem Array Directive
261
- */
262
- var SplitButtonItemsDirective = /** @class */ (function (_super) {
219
+
220
+ var SplitButtonItemsDirective = (function (_super) {
263
221
  __extends(SplitButtonItemsDirective, _super);
264
222
  function SplitButtonItemsDirective() {
265
223
  return _super.call(this, 'items') || this;
@@ -274,9 +232,7 @@ SplitButtonItemsDirective.decorators = [
274
232
  },
275
233
  },] },
276
234
  ];
277
- /**
278
- * @nocollapse
279
- */
235
+
280
236
  SplitButtonItemsDirective.ctorParameters = function () { return []; };
281
237
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
282
238
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -295,20 +251,10 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
295
251
  var inputs$1 = ['closeActionEvents', 'content', 'createPopupOnClick', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'items', 'locale', 'target'];
296
252
  var outputs$3 = ['beforeClose', 'beforeItemRender', 'beforeOpen', 'click', 'close', 'created', 'open', 'select'];
297
253
  var twoWays$1 = [];
298
- /**
299
- * Represents the Angular SplitButton Component.
300
- * ```html
301
- * <ejs-splitbutton content='Split Button'></ejs-splitbutton>
302
- * ```
303
- */
304
- exports.SplitButtonComponent = /** @class */ (function (_super) {
254
+
255
+ exports.SplitButtonComponent = (function (_super) {
305
256
  __extends(SplitButtonComponent, _super);
306
- /**
307
- * @param {?} ngEle
308
- * @param {?} srenderer
309
- * @param {?} viewContainerRef
310
- * @param {?} injector
311
- */
257
+
312
258
  function SplitButtonComponent(ngEle, srenderer, viewContainerRef, injector) {
313
259
  var _this = _super.call(this) || this;
314
260
  _this.ngEle = ngEle;
@@ -324,27 +270,19 @@ exports.SplitButtonComponent = /** @class */ (function (_super) {
324
270
  _this.containerContext = new ej2AngularBase.ComponentBase();
325
271
  return _this;
326
272
  }
327
- /**
328
- * @return {?}
329
- */
273
+
330
274
  SplitButtonComponent.prototype.ngOnInit = function () {
331
275
  this.containerContext.ngOnInit(this);
332
276
  };
333
- /**
334
- * @return {?}
335
- */
277
+
336
278
  SplitButtonComponent.prototype.ngAfterViewInit = function () {
337
279
  this.containerContext.ngAfterViewInit(this);
338
280
  };
339
- /**
340
- * @return {?}
341
- */
281
+
342
282
  SplitButtonComponent.prototype.ngOnDestroy = function () {
343
283
  this.containerContext.ngOnDestroy(this);
344
284
  };
345
- /**
346
- * @return {?}
347
- */
285
+
348
286
  SplitButtonComponent.prototype.ngAfterContentChecked = function () {
349
287
  this.tagObjects[0].instance = this.childItems;
350
288
  this.containerContext.ngAfterContentChecked(this);
@@ -363,9 +301,7 @@ exports.SplitButtonComponent.decorators = [
363
301
  }
364
302
  },] },
365
303
  ];
366
- /**
367
- * @nocollapse
368
- */
304
+
369
305
  exports.SplitButtonComponent.ctorParameters = function () { return [
370
306
  { type: core.ElementRef, },
371
307
  { type: core.Renderer2, },
@@ -379,10 +315,8 @@ exports.SplitButtonComponent = __decorate$1([
379
315
  core.ViewContainerRef,
380
316
  core.Injector])
381
317
  ], exports.SplitButtonComponent);
382
- /**
383
- * NgModule definition for the SplitButton component.
384
- */
385
- var SplitButtonModule = /** @class */ (function () {
318
+
319
+ var SplitButtonModule = (function () {
386
320
  function SplitButtonModule() {
387
321
  }
388
322
  return SplitButtonModule;
@@ -402,14 +336,10 @@ SplitButtonModule.decorators = [
402
336
  ]
403
337
  },] },
404
338
  ];
405
- /**
406
- * @nocollapse
407
- */
339
+
408
340
  SplitButtonModule.ctorParameters = function () { return []; };
409
- /**
410
- * NgModule definition for the SplitButton component with providers.
411
- */
412
- var SplitButtonAllModule = /** @class */ (function () {
341
+
342
+ var SplitButtonAllModule = (function () {
413
343
  function SplitButtonAllModule() {
414
344
  }
415
345
  return SplitButtonAllModule;
@@ -423,9 +353,7 @@ SplitButtonAllModule.decorators = [
423
353
  providers: []
424
354
  },] },
425
355
  ];
426
- /**
427
- * @nocollapse
428
- */
356
+
429
357
  SplitButtonAllModule.ctorParameters = function () { return []; };
430
358
  var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
431
359
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -444,20 +372,10 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
444
372
  var inputs$2 = ['animationSettings', 'content', 'cssClass', 'disabled', 'duration', 'enableHtmlSanitizer', 'enableProgress', 'iconCss', 'iconPosition', 'isPrimary', 'isToggle', 'spinSettings'];
445
373
  var outputs$4 = ['begin', 'created', 'end', 'fail', 'progress'];
446
374
  var twoWays$2 = [];
447
- /**
448
- * Represents the Angular ProgressButton Component.
449
- * ```html
450
- * <button ejs-progressbutton content='Progress Button'></button>
451
- * ```
452
- */
453
- exports.ProgressButtonComponent = /** @class */ (function (_super) {
375
+
376
+ exports.ProgressButtonComponent = (function (_super) {
454
377
  __extends(ProgressButtonComponent, _super);
455
- /**
456
- * @param {?} ngEle
457
- * @param {?} srenderer
458
- * @param {?} viewContainerRef
459
- * @param {?} injector
460
- */
378
+
461
379
  function ProgressButtonComponent(ngEle, srenderer, viewContainerRef, injector) {
462
380
  var _this = _super.call(this) || this;
463
381
  _this.ngEle = ngEle;
@@ -472,27 +390,19 @@ exports.ProgressButtonComponent = /** @class */ (function (_super) {
472
390
  _this.containerContext = new ej2AngularBase.ComponentBase();
473
391
  return _this;
474
392
  }
475
- /**
476
- * @return {?}
477
- */
393
+
478
394
  ProgressButtonComponent.prototype.ngOnInit = function () {
479
395
  this.containerContext.ngOnInit(this);
480
396
  };
481
- /**
482
- * @return {?}
483
- */
397
+
484
398
  ProgressButtonComponent.prototype.ngAfterViewInit = function () {
485
399
  this.containerContext.ngAfterViewInit(this);
486
400
  };
487
- /**
488
- * @return {?}
489
- */
401
+
490
402
  ProgressButtonComponent.prototype.ngOnDestroy = function () {
491
403
  this.containerContext.ngOnDestroy(this);
492
404
  };
493
- /**
494
- * @return {?}
495
- */
405
+
496
406
  ProgressButtonComponent.prototype.ngAfterContentChecked = function () {
497
407
  this.containerContext.ngAfterContentChecked(this);
498
408
  };
@@ -508,9 +418,7 @@ exports.ProgressButtonComponent.decorators = [
508
418
  queries: {}
509
419
  },] },
510
420
  ];
511
- /**
512
- * @nocollapse
513
- */
421
+
514
422
  exports.ProgressButtonComponent.ctorParameters = function () { return [
515
423
  { type: core.ElementRef, },
516
424
  { type: core.Renderer2, },
@@ -524,10 +432,8 @@ exports.ProgressButtonComponent = __decorate$2([
524
432
  core.ViewContainerRef,
525
433
  core.Injector])
526
434
  ], exports.ProgressButtonComponent);
527
- /**
528
- * NgModule definition for the ProgressButton component.
529
- */
530
- var ProgressButtonModule = /** @class */ (function () {
435
+
436
+ var ProgressButtonModule = (function () {
531
437
  function ProgressButtonModule() {
532
438
  }
533
439
  return ProgressButtonModule;
@@ -543,14 +449,10 @@ ProgressButtonModule.decorators = [
543
449
  ]
544
450
  },] },
545
451
  ];
546
- /**
547
- * @nocollapse
548
- */
452
+
549
453
  ProgressButtonModule.ctorParameters = function () { return []; };
550
- /**
551
- * NgModule definition for the ProgressButton component with providers.
552
- */
553
- var ProgressButtonAllModule = /** @class */ (function () {
454
+
455
+ var ProgressButtonAllModule = (function () {
554
456
  function ProgressButtonAllModule() {
555
457
  }
556
458
  return ProgressButtonAllModule;
@@ -564,9 +466,7 @@ ProgressButtonAllModule.decorators = [
564
466
  providers: []
565
467
  },] },
566
468
  ];
567
- /**
568
- * @nocollapse
569
- */
469
+
570
470
  ProgressButtonAllModule.ctorParameters = function () { return []; };
571
471
 
572
472
  exports.DropDownButtonItemDirective = DropDownButtonItemDirective;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-splitbuttons.umd.min.js
3
- * version : 25.2.3
3
+ * version : 25.2.4
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-splitbuttons@*",
3
- "_id": "@syncfusion/ej2-angular-splitbuttons@25.1.38",
3
+ "_id": "@syncfusion/ej2-angular-splitbuttons@25.2.3",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-6q8ZxK9ZF73tsRTOGXZaUTbVSmmG2xT3kZFeqKObkyB3q+Oj9fMAQXLFOtrcAOgVM2Um/2cGnIfindnJRHWphg==",
5
+ "_integrity": "sha512-x2FsVJ8sDod91sF0PtyEY3TMpIFCbybnpgJqVrwU9QublUsl2Cm1oBfFrR2wdkSypP84rWamFzVr06cVbUIHjw==",
6
6
  "_location": "/@syncfusion/ej2-angular-splitbuttons",
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-splitbuttons/-/ej2-angular-splitbuttons-25.1.38.tgz",
23
- "_shasum": "49f7ba727f930cb487c14302c18fbb375af85186",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-splitbuttons/-/ej2-angular-splitbuttons-25.2.3.tgz",
23
+ "_shasum": "78002cec2966c95a9f3883877bdd8f1a9fa66107",
24
24
  "_spec": "@syncfusion/ej2-angular-splitbuttons@*",
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.3",
34
+ "@syncfusion/ej2-angular-base": "~25.2.4",
35
35
  "@syncfusion/ej2-base": "~25.2.3",
36
- "@syncfusion/ej2-splitbuttons": "25.2.3"
36
+ "@syncfusion/ej2-splitbuttons": "25.2.4"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup. for Angular",
@@ -69,5 +69,5 @@
69
69
  "schematics": "./schematics/collection.json",
70
70
  "sideEffects": false,
71
71
  "typings": "ej2-angular-splitbuttons.d.ts",
72
- "version": "25.2.3-ngcc"
72
+ "version": "25.2.4-ngcc"
73
73
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-splitbuttons";
2
- export declare const pkgVer = "^25.1.38";
2
+ export declare const pkgVer = "^25.2.3";
3
3
  export declare const moduleName = "DropDownButtonModule, SplitButtonModule, ProgressButtonModule";
4
- export declare const themeVer = "~25.1.38";
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-splitbuttons';
4
- exports.pkgVer = '^25.2.3';
4
+ exports.pkgVer = '^25.2.4';
5
5
  exports.moduleName = 'DropDownButtonModule, SplitButtonModule, ProgressButtonModule';
6
- exports.themeVer = '~25.2.3';
6
+ exports.themeVer = '~25.2.4';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-splitbuttons';
2
- export const pkgVer = '^25.2.3';
2
+ export const pkgVer = '^25.2.4';
3
3
  export const moduleName = 'DropDownButtonModule, SplitButtonModule, ProgressButtonModule';
4
- export const themeVer = '~25.2.3';
4
+ export const themeVer = '~25.2.4';