@syncfusion/ej2-angular-spreadsheet 25.2.5-ngcc → 25.2.7-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
@@ -1341,6 +1341,14 @@ The Spreadsheet is an user interactive component to organize and analyze data in
1341
1341
  - **Accessibility:** Provides with built-in accessibility support which helps to access all the spreadsheet component features using the keyboard, screen readers, or other assistive technology devices.
1342
1342
 
1343
1343
 
1344
+ ## 25.2.5 (2024-05-21)
1345
+
1346
+ ### Spreadsheet
1347
+
1348
+ #### Bug fixes
1349
+
1350
+ - `#I583824` - Issue with "custom number format is not working properly like as MS Excel when a format contains a character identical to date and time format characters" has been resolved.
1351
+
1344
1352
  ## 25.2.4 (2024-05-14)
1345
1353
 
1346
1354
  ### Spreadsheet
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-spreadsheet.umd.js
3
- * version : 25.2.5
3
+ * version : 25.2.7
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,9 +25,11 @@ var __extends = (this && this.__extends) || (function () {
25
25
  })();
26
26
  var input = ['height', 'id', 'left', 'src', 'top', 'width'];
27
27
  var outputs = [];
28
- var ImageDirective = (function (_super) {
28
+ var ImageDirective = /** @class */ (function (_super) {
29
29
  __extends(ImageDirective, _super);
30
-
30
+ /**
31
+ * @param {?} viewContainerRef
32
+ */
31
33
  function ImageDirective(viewContainerRef) {
32
34
  var _this = _super.call(this) || this;
33
35
  _this.viewContainerRef = viewContainerRef;
@@ -46,12 +48,16 @@ ImageDirective.decorators = [
46
48
  queries: {}
47
49
  },] },
48
50
  ];
49
-
51
+ /**
52
+ * @nocollapse
53
+ */
50
54
  ImageDirective.ctorParameters = function () { return [
51
55
  { type: core.ViewContainerRef, },
52
56
  ]; };
53
-
54
- var ImagesDirective = (function (_super) {
57
+ /**
58
+ * Image Array Directive
59
+ */
60
+ var ImagesDirective = /** @class */ (function (_super) {
55
61
  __extends(ImagesDirective, _super);
56
62
  function ImagesDirective() {
57
63
  return _super.call(this, 'image') || this;
@@ -66,13 +72,17 @@ ImagesDirective.decorators = [
66
72
  },
67
73
  },] },
68
74
  ];
69
-
75
+ /**
76
+ * @nocollapse
77
+ */
70
78
  ImagesDirective.ctorParameters = function () { return []; };
71
79
  var input$1 = ['dataLabelSettings', 'height', 'id', 'isSeriesInRows', 'legendSettings', 'markerSettings', 'primaryXAxis', 'primaryYAxis', 'range', 'theme', 'title', 'type', 'width'];
72
80
  var outputs$1 = [];
73
- var ChartDirective = (function (_super) {
81
+ var ChartDirective = /** @class */ (function (_super) {
74
82
  __extends(ChartDirective, _super);
75
-
83
+ /**
84
+ * @param {?} viewContainerRef
85
+ */
76
86
  function ChartDirective(viewContainerRef) {
77
87
  var _this = _super.call(this) || this;
78
88
  _this.viewContainerRef = viewContainerRef;
@@ -91,12 +101,16 @@ ChartDirective.decorators = [
91
101
  queries: {}
92
102
  },] },
93
103
  ];
94
-
104
+ /**
105
+ * @nocollapse
106
+ */
95
107
  ChartDirective.ctorParameters = function () { return [
96
108
  { type: core.ViewContainerRef, },
97
109
  ]; };
98
-
99
- var ChartsDirective = (function (_super) {
110
+ /**
111
+ * Chart Array Directive
112
+ */
113
+ var ChartsDirective = /** @class */ (function (_super) {
100
114
  __extends(ChartsDirective, _super);
101
115
  function ChartsDirective() {
102
116
  return _super.call(this, 'chart') || this;
@@ -111,14 +125,36 @@ ChartsDirective.decorators = [
111
125
  },
112
126
  },] },
113
127
  ];
114
-
128
+ /**
129
+ * @nocollapse
130
+ */
115
131
  ChartsDirective.ctorParameters = function () { return []; };
116
132
  var input$2 = ['chart', 'colSpan', 'format', 'formula', 'hyperlink', 'image', 'index', 'isLocked', 'rowSpan', 'style', 'validation', 'value', 'wrap'];
117
133
  var outputs$2 = [];
118
-
119
- var CellDirective = (function (_super) {
134
+ /**
135
+ * `e-cell` directive represent a cell of the Angular Spreadsheet.
136
+ * It must be contained in a `e-row` directive.
137
+ * ```html
138
+ * <ejs-spreadsheet>
139
+ * <e-sheets>
140
+ * <e-sheet>
141
+ * <e-rows>
142
+ * <e-row>
143
+ * <e-cells>
144
+ * <e-cell value='A1'></e-cell>
145
+ * </e-cells>
146
+ * </e-row>
147
+ * </e-rows>
148
+ * </e-sheet>
149
+ * </e-sheets>
150
+ * </ejs-spreadsheet>
151
+ * ```
152
+ */
153
+ var CellDirective = /** @class */ (function (_super) {
120
154
  __extends(CellDirective, _super);
121
-
155
+ /**
156
+ * @param {?} viewContainerRef
157
+ */
122
158
  function CellDirective(viewContainerRef) {
123
159
  var _this = _super.call(this) || this;
124
160
  _this.viewContainerRef = viewContainerRef;
@@ -141,12 +177,16 @@ CellDirective.decorators = [
141
177
  }
142
178
  },] },
143
179
  ];
144
-
180
+ /**
181
+ * @nocollapse
182
+ */
145
183
  CellDirective.ctorParameters = function () { return [
146
184
  { type: core.ViewContainerRef, },
147
185
  ]; };
148
-
149
- var CellsDirective = (function (_super) {
186
+ /**
187
+ * Cell Array Directive
188
+ */
189
+ var CellsDirective = /** @class */ (function (_super) {
150
190
  __extends(CellsDirective, _super);
151
191
  function CellsDirective() {
152
192
  return _super.call(this, 'cells') || this;
@@ -161,14 +201,32 @@ CellsDirective.decorators = [
161
201
  },
162
202
  },] },
163
203
  ];
164
-
204
+ /**
205
+ * @nocollapse
206
+ */
165
207
  CellsDirective.ctorParameters = function () { return []; };
166
208
  var input$3 = ['cells', 'customHeight', 'format', 'height', 'hidden', 'index'];
167
209
  var outputs$3 = [];
168
-
169
- var RowDirective = (function (_super) {
210
+ /**
211
+ * `e-row` directive represent a row of the Angular Spreadsheet.
212
+ * It must be contained in a `e-sheet` directive.
213
+ * ```html
214
+ * <ejs-spreadsheet>
215
+ * <e-sheets>
216
+ * <e-sheet>
217
+ * <e-rows>
218
+ * <e-row></e-row>
219
+ * </e-rows>
220
+ * </e-sheet>
221
+ * </e-sheets>
222
+ * </ejs-spreadsheet>
223
+ * ```
224
+ */
225
+ var RowDirective = /** @class */ (function (_super) {
170
226
  __extends(RowDirective, _super);
171
-
227
+ /**
228
+ * @param {?} viewContainerRef
229
+ */
172
230
  function RowDirective(viewContainerRef) {
173
231
  var _this = _super.call(this) || this;
174
232
  _this.viewContainerRef = viewContainerRef;
@@ -190,12 +248,16 @@ RowDirective.decorators = [
190
248
  }
191
249
  },] },
192
250
  ];
193
-
251
+ /**
252
+ * @nocollapse
253
+ */
194
254
  RowDirective.ctorParameters = function () { return [
195
255
  { type: core.ViewContainerRef, },
196
256
  ]; };
197
-
198
- var RowsDirective = (function (_super) {
257
+ /**
258
+ * Row Array Directive
259
+ */
260
+ var RowsDirective = /** @class */ (function (_super) {
199
261
  __extends(RowsDirective, _super);
200
262
  function RowsDirective() {
201
263
  return _super.call(this, 'rows') || this;
@@ -210,14 +272,32 @@ RowsDirective.decorators = [
210
272
  },
211
273
  },] },
212
274
  ];
213
-
275
+ /**
276
+ * @nocollapse
277
+ */
214
278
  RowsDirective.ctorParameters = function () { return []; };
215
279
  var input$4 = ['customWidth', 'format', 'hidden', 'index', 'isLocked', 'validation', 'width'];
216
280
  var outputs$4 = [];
217
-
218
- var ColumnDirective = (function (_super) {
281
+ /**
282
+ * `e-column` directive represent a column of the Angular Spreadsheet.
283
+ * It must be contained in a `e-sheet` directive.
284
+ * ```html
285
+ * <ejs-spreadsheet>
286
+ * <e-sheets>
287
+ * <e-sheet>
288
+ * <e-columns>
289
+ * <e-column width='100'></e-column>
290
+ * </e-columns>
291
+ * </e-sheet>
292
+ * </e-sheets>
293
+ * </ejs-spreadsheet>
294
+ * ```
295
+ */
296
+ var ColumnDirective = /** @class */ (function (_super) {
219
297
  __extends(ColumnDirective, _super);
220
-
298
+ /**
299
+ * @param {?} viewContainerRef
300
+ */
221
301
  function ColumnDirective(viewContainerRef) {
222
302
  var _this = _super.call(this) || this;
223
303
  _this.viewContainerRef = viewContainerRef;
@@ -236,12 +316,16 @@ ColumnDirective.decorators = [
236
316
  queries: {}
237
317
  },] },
238
318
  ];
239
-
319
+ /**
320
+ * @nocollapse
321
+ */
240
322
  ColumnDirective.ctorParameters = function () { return [
241
323
  { type: core.ViewContainerRef, },
242
324
  ]; };
243
-
244
- var ColumnsDirective = (function (_super) {
325
+ /**
326
+ * Column Array Directive
327
+ */
328
+ var ColumnsDirective = /** @class */ (function (_super) {
245
329
  __extends(ColumnsDirective, _super);
246
330
  function ColumnsDirective() {
247
331
  return _super.call(this, 'columns') || this;
@@ -256,7 +340,9 @@ ColumnsDirective.decorators = [
256
340
  },
257
341
  },] },
258
342
  ];
259
-
343
+ /**
344
+ * @nocollapse
345
+ */
260
346
  ColumnsDirective.ctorParameters = function () { return []; };
261
347
  var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
262
348
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -274,10 +360,26 @@ var __metadata = (this && this.__metadata) || function (k, v) {
274
360
  };
275
361
  var input$5 = ['address', 'dataSource', 'query', 'showFieldAsHeader', 'startCell', 'template'];
276
362
  var outputs$5 = [];
277
-
278
- var RangeDirective = (function (_super) {
363
+ /**
364
+ * `e-range` directive represent a range of the Angular Spreadsheet.
365
+ * It must be contained in a `e-sheet` directive.
366
+ * ```html
367
+ * <ejs-spreadsheet>
368
+ * <e-sheets>
369
+ * <e-sheet>
370
+ * <e-ranges>
371
+ * <e-range [dataSource]='data'></e-range>
372
+ * </e-ranges>
373
+ * </e-sheet>
374
+ * </e-sheets>
375
+ * </ejs-spreadsheet>
376
+ * ```
377
+ */
378
+ var RangeDirective = /** @class */ (function (_super) {
279
379
  __extends(RangeDirective, _super);
280
-
380
+ /**
381
+ * @param {?} viewContainerRef
382
+ */
281
383
  function RangeDirective(viewContainerRef) {
282
384
  var _this = _super.call(this) || this;
283
385
  _this.viewContainerRef = viewContainerRef;
@@ -296,7 +398,9 @@ RangeDirective.decorators = [
296
398
  queries: {}
297
399
  },] },
298
400
  ];
299
-
401
+ /**
402
+ * @nocollapse
403
+ */
300
404
  RangeDirective.ctorParameters = function () { return [
301
405
  { type: core.ViewContainerRef, },
302
406
  ]; };
@@ -307,8 +411,10 @@ __decorate([
307
411
  ej2AngularBase.Template(),
308
412
  __metadata("design:type", Object)
309
413
  ], RangeDirective.prototype, "template", void 0);
310
-
311
- var RangesDirective = (function (_super) {
414
+ /**
415
+ * Range Array Directive
416
+ */
417
+ var RangesDirective = /** @class */ (function (_super) {
312
418
  __extends(RangesDirective, _super);
313
419
  function RangesDirective() {
314
420
  return _super.call(this, 'ranges') || this;
@@ -323,14 +429,32 @@ RangesDirective.decorators = [
323
429
  },
324
430
  },] },
325
431
  ];
326
-
432
+ /**
433
+ * @nocollapse
434
+ */
327
435
  RangesDirective.ctorParameters = function () { return []; };
328
436
  var input$6 = ['cFColor', 'format', 'range', 'type', 'value'];
329
437
  var outputs$6 = [];
330
-
331
- var ConditionalFormatDirective = (function (_super) {
438
+ /**
439
+ * `e-conditionalformat` directive represent a conditionalformat of the Angular Spreadsheet.
440
+ * It must be contained in a `e-sheet` directive.
441
+ * ```html
442
+ * <ejs-spreadsheet>
443
+ * <e-sheets>
444
+ * <e-sheet>
445
+ * <e-conditionalformats>
446
+ * <e-conditionalformat></e-conditionalformat>
447
+ * </e-conditionalformats>
448
+ * </e-sheet>
449
+ * </e-sheets>
450
+ * </ejs-spreadsheet>
451
+ * ```
452
+ */
453
+ var ConditionalFormatDirective = /** @class */ (function (_super) {
332
454
  __extends(ConditionalFormatDirective, _super);
333
-
455
+ /**
456
+ * @param {?} viewContainerRef
457
+ */
334
458
  function ConditionalFormatDirective(viewContainerRef) {
335
459
  var _this = _super.call(this) || this;
336
460
  _this.viewContainerRef = viewContainerRef;
@@ -349,12 +473,16 @@ ConditionalFormatDirective.decorators = [
349
473
  queries: {}
350
474
  },] },
351
475
  ];
352
-
476
+ /**
477
+ * @nocollapse
478
+ */
353
479
  ConditionalFormatDirective.ctorParameters = function () { return [
354
480
  { type: core.ViewContainerRef, },
355
481
  ]; };
356
-
357
- var ConditionalFormatsDirective = (function (_super) {
482
+ /**
483
+ * ConditionalFormat Array Directive
484
+ */
485
+ var ConditionalFormatsDirective = /** @class */ (function (_super) {
358
486
  __extends(ConditionalFormatsDirective, _super);
359
487
  function ConditionalFormatsDirective() {
360
488
  return _super.call(this, 'conditionalformats') || this;
@@ -369,14 +497,29 @@ ConditionalFormatsDirective.decorators = [
369
497
  },
370
498
  },] },
371
499
  ];
372
-
500
+ /**
501
+ * @nocollapse
502
+ */
373
503
  ConditionalFormatsDirective.ctorParameters = function () { return []; };
374
504
  var input$7 = ['activeCell', 'colCount', 'columns', 'conditionalFormats', 'frozenColumns', 'frozenRows', 'index', 'isProtected', 'name', 'paneTopLeftCell', 'password', 'protectSettings', 'ranges', 'rowCount', 'rows', 'selectedRange', 'showGridLines', 'showHeaders', 'state', 'topLeftCell', 'usedRange'];
375
505
  var outputs$7 = [];
376
-
377
- var SheetDirective = (function (_super) {
506
+ /**
507
+ * `e-sheet` directive represent a sheet of the Angular Spreadsheet.
508
+ * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
509
+ * ```html
510
+ * <ejs-spreadsheet>
511
+ * <e-sheets>
512
+ * <e-sheet></e-sheet>
513
+ * <e-sheet></e-sheet>
514
+ * </e-sheets>
515
+ * </ejs-spreadsheet>
516
+ * ```
517
+ */
518
+ var SheetDirective = /** @class */ (function (_super) {
378
519
  __extends(SheetDirective, _super);
379
-
520
+ /**
521
+ * @param {?} viewContainerRef
522
+ */
380
523
  function SheetDirective(viewContainerRef) {
381
524
  var _this = _super.call(this) || this;
382
525
  _this.viewContainerRef = viewContainerRef;
@@ -401,12 +544,16 @@ SheetDirective.decorators = [
401
544
  }
402
545
  },] },
403
546
  ];
404
-
547
+ /**
548
+ * @nocollapse
549
+ */
405
550
  SheetDirective.ctorParameters = function () { return [
406
551
  { type: core.ViewContainerRef, },
407
552
  ]; };
408
-
409
- var SheetsDirective = (function (_super) {
553
+ /**
554
+ * Sheet Array Directive
555
+ */
556
+ var SheetsDirective = /** @class */ (function (_super) {
410
557
  __extends(SheetsDirective, _super);
411
558
  function SheetsDirective() {
412
559
  return _super.call(this, 'sheets') || this;
@@ -421,14 +568,29 @@ SheetsDirective.decorators = [
421
568
  },
422
569
  },] },
423
570
  ];
424
-
571
+ /**
572
+ * @nocollapse
573
+ */
425
574
  SheetsDirective.ctorParameters = function () { return []; };
426
575
  var input$8 = ['comment', 'name', 'refersTo', 'scope'];
427
576
  var outputs$8 = [];
428
-
429
- var DefinedNameDirective = (function (_super) {
577
+ /**
578
+ * `e-definedname` directive represent a defined name of the Angular Spreadsheet.
579
+ * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
580
+ * ```html
581
+ * <ejs-spreadsheet>
582
+ * <e-definednames>
583
+ * <e-definedname></e-definedname>
584
+ * <e-definedname></e-definedname>
585
+ * </e-definednames>
586
+ * </ejs-spreadsheet>
587
+ * ```
588
+ */
589
+ var DefinedNameDirective = /** @class */ (function (_super) {
430
590
  __extends(DefinedNameDirective, _super);
431
-
591
+ /**
592
+ * @param {?} viewContainerRef
593
+ */
432
594
  function DefinedNameDirective(viewContainerRef) {
433
595
  var _this = _super.call(this) || this;
434
596
  _this.viewContainerRef = viewContainerRef;
@@ -447,12 +609,16 @@ DefinedNameDirective.decorators = [
447
609
  queries: {}
448
610
  },] },
449
611
  ];
450
-
612
+ /**
613
+ * @nocollapse
614
+ */
451
615
  DefinedNameDirective.ctorParameters = function () { return [
452
616
  { type: core.ViewContainerRef, },
453
617
  ]; };
454
-
455
- var DefinedNamesDirective = (function (_super) {
618
+ /**
619
+ * DefinedName Array Directive
620
+ */
621
+ var DefinedNamesDirective = /** @class */ (function (_super) {
456
622
  __extends(DefinedNamesDirective, _super);
457
623
  function DefinedNamesDirective() {
458
624
  return _super.call(this, 'definednames') || this;
@@ -467,7 +633,9 @@ DefinedNamesDirective.decorators = [
467
633
  },
468
634
  },] },
469
635
  ];
470
-
636
+ /**
637
+ * @nocollapse
638
+ */
471
639
  DefinedNamesDirective.ctorParameters = function () { return []; };
472
640
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
473
641
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -486,10 +654,20 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
486
654
  var inputs = ['activeSheetIndex', 'allowAutoFill', 'allowCellFormatting', 'allowChart', 'allowConditionalFormat', 'allowDataValidation', 'allowDelete', 'allowEditing', 'allowFiltering', 'allowFindAndReplace', 'allowFreezePane', 'allowHyperlink', 'allowImage', 'allowInsert', 'allowMerge', 'allowNumberFormatting', 'allowOpen', 'allowResizing', 'allowSave', 'allowScrolling', 'allowSorting', 'allowUndoRedo', 'allowWrap', 'autoFillSettings', 'cellStyle', 'cssClass', 'currencyCode', 'definedNames', 'enableClipboard', 'enableContextMenu', 'enableKeyboardNavigation', 'enableKeyboardShortcut', 'enablePersistence', 'enableRtl', 'height', 'isProtected', 'listSeparator', 'locale', 'openUrl', 'password', 'saveUrl', 'scrollSettings', 'selectionSettings', 'sheets', 'showAggregate', 'showFormulaBar', 'showRibbon', 'showSheetTabs', 'width'];
487
655
  var outputs$9 = ['actionBegin', 'actionComplete', 'afterHyperlinkClick', 'afterHyperlinkCreate', 'beforeCellFormat', 'beforeCellRender', 'beforeCellSave', 'beforeCellUpdate', 'beforeConditionalFormat', 'beforeDataBound', 'beforeHyperlinkClick', 'beforeHyperlinkCreate', 'beforeOpen', 'beforeSave', 'beforeSelect', 'beforeSort', 'cellEdit', 'cellEdited', 'cellEditing', 'cellSave', 'contextMenuBeforeClose', 'contextMenuBeforeOpen', 'contextMenuItemSelect', 'created', 'dataBound', 'dataSourceChanged', 'dialogBeforeOpen', 'fileMenuBeforeClose', 'fileMenuBeforeOpen', 'fileMenuItemSelect', 'openComplete', 'openFailure', 'queryCellInfo', 'saveComplete', 'select', 'sortComplete'];
488
656
  var twoWays = [''];
489
-
490
- exports.SpreadsheetComponent = (function (_super) {
657
+ /**
658
+ * `ejs-spreadsheet` represents the Angular Spreadsheet Component.
659
+ * ```html
660
+ * <ejs-spreadsheet></ejs-spreadsheet>
661
+ * ```
662
+ */
663
+ exports.SpreadsheetComponent = /** @class */ (function (_super) {
491
664
  __extends(SpreadsheetComponent, _super);
492
-
665
+ /**
666
+ * @param {?} ngEle
667
+ * @param {?} srenderer
668
+ * @param {?} viewContainerRef
669
+ * @param {?} injector
670
+ */
493
671
  function SpreadsheetComponent(ngEle, srenderer, viewContainerRef, injector) {
494
672
  var _this = _super.call(this) || this;
495
673
  _this.ngEle = ngEle;
@@ -610,23 +788,31 @@ exports.SpreadsheetComponent = (function (_super) {
610
788
  _this.context = new ej2AngularBase.ComponentBase();
611
789
  return _this;
612
790
  }
613
-
791
+ /**
792
+ * @return {?}
793
+ */
614
794
  SpreadsheetComponent.prototype.ngOnInit = function () {
615
795
  this.context.ngOnInit(this);
616
796
  };
617
-
797
+ /**
798
+ * @return {?}
799
+ */
618
800
  SpreadsheetComponent.prototype.ngAfterViewInit = function () {
619
801
  this.context.ngAfterViewInit(this);
620
802
  };
621
-
803
+ /**
804
+ * @return {?}
805
+ */
622
806
  SpreadsheetComponent.prototype.ngOnDestroy = function () {
623
807
  this.context.ngOnDestroy(this);
624
808
  };
625
-
809
+ /**
810
+ * @return {?}
811
+ */
626
812
  SpreadsheetComponent.prototype.ngAfterContentChecked = function () {
627
813
  this.tagObjects[0].instance = this.childSheets;
628
814
  if (this.childDefinedNames) {
629
- this.tagObjects[1].instance = (this.childDefinedNames);
815
+ this.tagObjects[1].instance = /** @type {?} */ (this.childDefinedNames);
630
816
  }
631
817
  this.context.ngAfterContentChecked(this);
632
818
  };
@@ -645,7 +831,9 @@ exports.SpreadsheetComponent.decorators = [
645
831
  }
646
832
  },] },
647
833
  ];
648
-
834
+ /**
835
+ * @nocollapse
836
+ */
649
837
  exports.SpreadsheetComponent.ctorParameters = function () { return [
650
838
  { type: core.ElementRef, },
651
839
  { type: core.Renderer2, },
@@ -666,8 +854,10 @@ exports.SpreadsheetComponent = __decorate$1([
666
854
  core.ViewContainerRef,
667
855
  core.Injector])
668
856
  ], exports.SpreadsheetComponent);
669
-
670
- var SpreadsheetModule = (function () {
857
+ /**
858
+ * NgModule definition for the Spreadsheet component.
859
+ */
860
+ var SpreadsheetModule = /** @class */ (function () {
671
861
  function SpreadsheetModule() {
672
862
  }
673
863
  return SpreadsheetModule;
@@ -719,7 +909,9 @@ SpreadsheetModule.decorators = [
719
909
  ]
720
910
  },] },
721
911
  ];
722
-
912
+ /**
913
+ * @nocollapse
914
+ */
723
915
  SpreadsheetModule.ctorParameters = function () { return []; };
724
916
  var ClipboardService = { provide: 'SpreadsheetClipboard', useValue: ej2Spreadsheet.Clipboard };
725
917
  var EditService = { provide: 'SpreadsheetEdit', useValue: ej2Spreadsheet.Edit };
@@ -736,8 +928,10 @@ var DataBindService = { provide: 'SpreadsheetDataBind', useValue: ej2Spreadsheet
736
928
  var CellFormatService = { provide: 'SpreadsheetCellFormat', useValue: ej2Spreadsheet.CellFormat };
737
929
  var NumberFormatService = { provide: 'SpreadsheetNumberFormat', useValue: ej2Spreadsheet.NumberFormat };
738
930
  var FormulaService = { provide: 'SpreadsheetFormula', useValue: ej2Spreadsheet.Formula };
739
-
740
- var SpreadsheetAllModule = (function () {
931
+ /**
932
+ * NgModule definition for the Spreadsheet component with providers.
933
+ */
934
+ var SpreadsheetAllModule = /** @class */ (function () {
741
935
  function SpreadsheetAllModule() {
742
936
  }
743
937
  return SpreadsheetAllModule;
@@ -767,7 +961,9 @@ SpreadsheetAllModule.decorators = [
767
961
  ]
768
962
  },] },
769
963
  ];
770
-
964
+ /**
965
+ * @nocollapse
966
+ */
771
967
  SpreadsheetAllModule.ctorParameters = function () { return []; };
772
968
 
773
969
  exports.ImageDirective = ImageDirective;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-spreadsheet.umd.min.js
3
- * version : 25.2.5
3
+ * version : 25.2.7
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-spreadsheet@*",
3
- "_id": "@syncfusion/ej2-angular-spreadsheet@25.2.4",
3
+ "_id": "@syncfusion/ej2-angular-spreadsheet@25.2.5",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-oliYqo8p6Not9UIPaOy4rj+X3sGhYjcWedDBVjG4fVqAy9TsHWHzspayWqH9u0ATxSJ+gIDdOltdgp/+s9Byiw==",
5
+ "_integrity": "sha512-B5tlEilUFIwARUUu6uWg72qsHZkfbst8nI0fAdbVFqCotPf0HxmWW7GGATZGZ+80ietmVW0cN71oSGfhwzF/Bw==",
6
6
  "_location": "/@syncfusion/ej2-angular-spreadsheet",
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-spreadsheet/-/ej2-angular-spreadsheet-25.2.4.tgz",
23
- "_shasum": "72d5a59d0651b21a9b8edf9123d3fd6f204009cf",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-spreadsheet/-/ej2-angular-spreadsheet-25.2.5.tgz",
23
+ "_shasum": "b66c99829aaa0398c2c776a9bd43e9ad403c0f81",
24
24
  "_spec": "@syncfusion/ej2-angular-spreadsheet@*",
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.4",
35
- "@syncfusion/ej2-base": "~25.2.5",
36
- "@syncfusion/ej2-spreadsheet": "25.2.5"
34
+ "@syncfusion/ej2-angular-base": "~25.2.6",
35
+ "@syncfusion/ej2-base": "~25.2.7",
36
+ "@syncfusion/ej2-spreadsheet": "25.2.7"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Angular",
@@ -56,5 +56,5 @@
56
56
  "schematics": "./schematics/collection.json",
57
57
  "sideEffects": false,
58
58
  "typings": "ej2-angular-spreadsheet.d.ts",
59
- "version": "25.2.5-ngcc"
59
+ "version": "25.2.7-ngcc"
60
60
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-spreadsheet";
2
- export declare const pkgVer = "^25.2.4";
2
+ export declare const pkgVer = "^25.2.5";
3
3
  export declare const moduleName = "SpreadsheetModule";
4
- export declare const themeVer = "~25.2.4";
4
+ export declare const themeVer = "~25.2.5";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-spreadsheet';
4
- exports.pkgVer = '^25.2.5';
4
+ exports.pkgVer = '^25.2.7';
5
5
  exports.moduleName = 'SpreadsheetModule';
6
- exports.themeVer = '~25.2.5';
6
+ exports.themeVer = '~25.2.7';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-spreadsheet';
2
- export const pkgVer = '^25.2.5';
2
+ export const pkgVer = '^25.2.7';
3
3
  export const moduleName = 'SpreadsheetModule';
4
- export const themeVer = '~25.2.5';
4
+ export const themeVer = '~25.2.7';