@syncfusion/ej2-angular-grids 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,18 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug fixes
|
|
8
8
|
|
|
9
|
+
- `#I582334` - Resolved the issue where the page orientation Landscape throws script error while pdf export.
|
|
10
|
+
- `#I584344` - Localization not applied on grid's group expand icons issue was resolved.
|
|
11
|
+
- `#I586600` - Resolved the issue where the Interface `BeforeDataBoundArgs` mismatches the actual event arguments.
|
|
12
|
+
- `#I587235` - Resolved the issue where the `INVALID FORMAT` console warning documentation reference link not found issue.
|
|
13
|
+
- `#I587421` - Resolved the duplicate ID accessibility issue occurring when using multiple data grids with column chooser on the same page.
|
|
14
|
+
|
|
15
|
+
## 25.2.3 (2024-05-08)
|
|
16
|
+
|
|
17
|
+
### Grid
|
|
18
|
+
|
|
19
|
+
#### Bug fixes
|
|
20
|
+
|
|
9
21
|
- `#I581295`- Resolved the warning message that was thrown when using the Freeze property with `virtualization` in grid.
|
|
10
22
|
- `#I578930` - The focus issue related to Excel Filter has been fixed. As of now, when you cancel the custom filter option in Excel filter, the focus stays on the current column.
|
|
11
23
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.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,27 +39,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
39
39
|
};
|
|
40
40
|
var input = ['allowEditing', 'allowFiltering', 'allowGrouping', 'allowReordering', 'allowResizing', 'allowSearching', 'allowSorting', 'autoFit', 'clipMode', 'columns', 'commands', 'customAttributes', 'dataSource', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'enableGroupByFormat', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'foreignKeyField', 'foreignKeyValue', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'headerValueAccessor', 'hideAtMedia', 'index', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];
|
|
41
41
|
var outputs = [];
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
* It must be contained in a StackedColumns component(`e-stacked-columns`).
|
|
45
|
-
* ```html
|
|
46
|
-
* <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
|
47
|
-
* <e-columns>
|
|
48
|
-
* <e-column field='ID' width='100'></e-column>
|
|
49
|
-
* <e-column headerText='Details' width='100'>
|
|
50
|
-
* <e-stacked-columns>
|
|
51
|
-
* <e-stacked-column field='Name' width='140'></e-stacked-column>
|
|
52
|
-
* </e-stacked-columns>
|
|
53
|
-
* </e-column>
|
|
54
|
-
* </e-columns>
|
|
55
|
-
* </ejs-grid>
|
|
56
|
-
* ```
|
|
57
|
-
*/
|
|
58
|
-
var StackedColumnDirective = /** @class */ (function (_super) {
|
|
42
|
+
|
|
43
|
+
var StackedColumnDirective = (function (_super) {
|
|
59
44
|
__extends(StackedColumnDirective, _super);
|
|
60
|
-
|
|
61
|
-
* @param {?} viewContainerRef
|
|
62
|
-
*/
|
|
45
|
+
|
|
63
46
|
function StackedColumnDirective(viewContainerRef) {
|
|
64
47
|
var _this = _super.call(this) || this;
|
|
65
48
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -78,9 +61,7 @@ StackedColumnDirective.decorators = [
|
|
|
78
61
|
queries: {}
|
|
79
62
|
},] },
|
|
80
63
|
];
|
|
81
|
-
|
|
82
|
-
* @nocollapse
|
|
83
|
-
*/
|
|
64
|
+
|
|
84
65
|
StackedColumnDirective.ctorParameters = function () { return [
|
|
85
66
|
{ type: core.ViewContainerRef, },
|
|
86
67
|
]; };
|
|
@@ -116,10 +97,8 @@ __decorate([
|
|
|
116
97
|
ej2AngularBase.Template(),
|
|
117
98
|
__metadata("design:type", Object)
|
|
118
99
|
], StackedColumnDirective.prototype, "filterTemplate", void 0);
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
*/
|
|
122
|
-
var StackedColumnsDirective = /** @class */ (function (_super) {
|
|
100
|
+
|
|
101
|
+
var StackedColumnsDirective = (function (_super) {
|
|
123
102
|
__extends(StackedColumnsDirective, _super);
|
|
124
103
|
function StackedColumnsDirective() {
|
|
125
104
|
return _super.call(this, 'columns') || this;
|
|
@@ -134,9 +113,7 @@ StackedColumnsDirective.decorators = [
|
|
|
134
113
|
},
|
|
135
114
|
},] },
|
|
136
115
|
];
|
|
137
|
-
|
|
138
|
-
* @nocollapse
|
|
139
|
-
*/
|
|
116
|
+
|
|
140
117
|
StackedColumnsDirective.ctorParameters = function () { return []; };
|
|
141
118
|
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
142
119
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -154,23 +131,10 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
|
154
131
|
};
|
|
155
132
|
var input$1 = ['allowEditing', 'allowFiltering', 'allowGrouping', 'allowReordering', 'allowResizing', 'allowSearching', 'allowSorting', 'autoFit', 'clipMode', 'columns', 'commands', 'customAttributes', 'dataSource', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'enableGroupByFormat', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'foreignKeyField', 'foreignKeyValue', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'headerValueAccessor', 'hideAtMedia', 'index', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];
|
|
156
133
|
var outputs$1 = [];
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
* It must be contained in a Grid component(`ejs-grid`).
|
|
160
|
-
* ```html
|
|
161
|
-
* <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
|
162
|
-
* <e-columns>
|
|
163
|
-
* <e-column field='ID' width='100'></e-column>
|
|
164
|
-
* <e-column field='name' headerText='Name' width='100'></e-column>
|
|
165
|
-
* </e-columns>
|
|
166
|
-
* </ejs-grid>
|
|
167
|
-
* ```
|
|
168
|
-
*/
|
|
169
|
-
var ColumnDirective = /** @class */ (function (_super) {
|
|
134
|
+
|
|
135
|
+
var ColumnDirective = (function (_super) {
|
|
170
136
|
__extends(ColumnDirective, _super);
|
|
171
|
-
|
|
172
|
-
* @param {?} viewContainerRef
|
|
173
|
-
*/
|
|
137
|
+
|
|
174
138
|
function ColumnDirective(viewContainerRef) {
|
|
175
139
|
var _this = _super.call(this) || this;
|
|
176
140
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -192,9 +156,7 @@ ColumnDirective.decorators = [
|
|
|
192
156
|
}
|
|
193
157
|
},] },
|
|
194
158
|
];
|
|
195
|
-
|
|
196
|
-
* @nocollapse
|
|
197
|
-
*/
|
|
159
|
+
|
|
198
160
|
ColumnDirective.ctorParameters = function () { return [
|
|
199
161
|
{ type: core.ViewContainerRef, },
|
|
200
162
|
]; };
|
|
@@ -230,10 +192,8 @@ __decorate$1([
|
|
|
230
192
|
ej2AngularBase.Template(),
|
|
231
193
|
__metadata$1("design:type", Object)
|
|
232
194
|
], ColumnDirective.prototype, "filterTemplate", void 0);
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
*/
|
|
236
|
-
var ColumnsDirective = /** @class */ (function (_super) {
|
|
195
|
+
|
|
196
|
+
var ColumnsDirective = (function (_super) {
|
|
237
197
|
__extends(ColumnsDirective, _super);
|
|
238
198
|
function ColumnsDirective() {
|
|
239
199
|
return _super.call(this, 'columns') || this;
|
|
@@ -248,9 +208,7 @@ ColumnsDirective.decorators = [
|
|
|
248
208
|
},
|
|
249
209
|
},] },
|
|
250
210
|
];
|
|
251
|
-
|
|
252
|
-
* @nocollapse
|
|
253
|
-
*/
|
|
211
|
+
|
|
254
212
|
ColumnsDirective.ctorParameters = function () { return []; };
|
|
255
213
|
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
256
214
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -268,29 +226,10 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
|
|
|
268
226
|
};
|
|
269
227
|
var input$2 = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'groupCaptionTemplate', 'groupFooterTemplate', 'type'];
|
|
270
228
|
var outputs$2 = [];
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
* ```html
|
|
274
|
-
* <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
|
275
|
-
* <e-columns>
|
|
276
|
-
* <e-column field='ID' width='100'></e-column>
|
|
277
|
-
* <e-column field='name' headerText='Name' width='100'></e-column>
|
|
278
|
-
* </e-columns>
|
|
279
|
-
* <e-aggregates>
|
|
280
|
-
* <e-aggregate>
|
|
281
|
-
* <e-columns>
|
|
282
|
-
* <e-column field='ID' type='Min'></e-column>
|
|
283
|
-
* </e-columns>
|
|
284
|
-
* </e-aggregate>
|
|
285
|
-
* </e-aggregates>
|
|
286
|
-
* </ejs-grid>
|
|
287
|
-
* ```
|
|
288
|
-
*/
|
|
289
|
-
var AggregateColumnDirective = /** @class */ (function (_super) {
|
|
229
|
+
|
|
230
|
+
var AggregateColumnDirective = (function (_super) {
|
|
290
231
|
__extends(AggregateColumnDirective, _super);
|
|
291
|
-
|
|
292
|
-
* @param {?} viewContainerRef
|
|
293
|
-
*/
|
|
232
|
+
|
|
294
233
|
function AggregateColumnDirective(viewContainerRef) {
|
|
295
234
|
var _this = _super.call(this) || this;
|
|
296
235
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -309,9 +248,7 @@ AggregateColumnDirective.decorators = [
|
|
|
309
248
|
queries: {}
|
|
310
249
|
},] },
|
|
311
250
|
];
|
|
312
|
-
|
|
313
|
-
* @nocollapse
|
|
314
|
-
*/
|
|
251
|
+
|
|
315
252
|
AggregateColumnDirective.ctorParameters = function () { return [
|
|
316
253
|
{ type: core.ViewContainerRef, },
|
|
317
254
|
]; };
|
|
@@ -332,10 +269,8 @@ __decorate$2([
|
|
|
332
269
|
ej2AngularBase.Template(),
|
|
333
270
|
__metadata$2("design:type", Object)
|
|
334
271
|
], AggregateColumnDirective.prototype, "groupCaptionTemplate", void 0);
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
*/
|
|
338
|
-
var AggregateColumnsDirective = /** @class */ (function (_super) {
|
|
272
|
+
|
|
273
|
+
var AggregateColumnsDirective = (function (_super) {
|
|
339
274
|
__extends(AggregateColumnsDirective, _super);
|
|
340
275
|
function AggregateColumnsDirective() {
|
|
341
276
|
return _super.call(this, 'columns') || this;
|
|
@@ -350,36 +285,14 @@ AggregateColumnsDirective.decorators = [
|
|
|
350
285
|
},
|
|
351
286
|
},] },
|
|
352
287
|
];
|
|
353
|
-
|
|
354
|
-
* @nocollapse
|
|
355
|
-
*/
|
|
288
|
+
|
|
356
289
|
AggregateColumnsDirective.ctorParameters = function () { return []; };
|
|
357
290
|
var input$3 = ['columns'];
|
|
358
291
|
var outputs$3 = [];
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
* It must be contained in a Grid component(`ejs-grid`).
|
|
362
|
-
* ```html
|
|
363
|
-
* <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
|
364
|
-
* <e-columns>
|
|
365
|
-
* <e-column field='ID' width='100'></e-column>
|
|
366
|
-
* <e-column field='name' headerText='Name' width='100'></e-column>
|
|
367
|
-
* </e-columns>
|
|
368
|
-
* <e-aggregates>
|
|
369
|
-
* <e-aggregate>
|
|
370
|
-
* <e-columns>
|
|
371
|
-
* <e-column field='ID' type='Min'></e-column>
|
|
372
|
-
* </e-columns>
|
|
373
|
-
* </e-aggregate>
|
|
374
|
-
* </e-aggregates>
|
|
375
|
-
* </ejs-grid>
|
|
376
|
-
* ```
|
|
377
|
-
*/
|
|
378
|
-
var AggregateDirective = /** @class */ (function (_super) {
|
|
292
|
+
|
|
293
|
+
var AggregateDirective = (function (_super) {
|
|
379
294
|
__extends(AggregateDirective, _super);
|
|
380
|
-
|
|
381
|
-
* @param {?} viewContainerRef
|
|
382
|
-
*/
|
|
295
|
+
|
|
383
296
|
function AggregateDirective(viewContainerRef) {
|
|
384
297
|
var _this = _super.call(this) || this;
|
|
385
298
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -401,16 +314,12 @@ AggregateDirective.decorators = [
|
|
|
401
314
|
}
|
|
402
315
|
},] },
|
|
403
316
|
];
|
|
404
|
-
|
|
405
|
-
* @nocollapse
|
|
406
|
-
*/
|
|
317
|
+
|
|
407
318
|
AggregateDirective.ctorParameters = function () { return [
|
|
408
319
|
{ type: core.ViewContainerRef, },
|
|
409
320
|
]; };
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
*/
|
|
413
|
-
var AggregatesDirective = /** @class */ (function (_super) {
|
|
321
|
+
|
|
322
|
+
var AggregatesDirective = (function (_super) {
|
|
414
323
|
__extends(AggregatesDirective, _super);
|
|
415
324
|
function AggregatesDirective() {
|
|
416
325
|
return _super.call(this, 'aggregates') || this;
|
|
@@ -425,9 +334,7 @@ AggregatesDirective.decorators = [
|
|
|
425
334
|
},
|
|
426
335
|
},] },
|
|
427
336
|
];
|
|
428
|
-
|
|
429
|
-
* @nocollapse
|
|
430
|
-
*/
|
|
337
|
+
|
|
431
338
|
AggregatesDirective.ctorParameters = function () { return []; };
|
|
432
339
|
var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
433
340
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -446,20 +353,10 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
|
|
|
446
353
|
var inputs = ['aggregates', 'allowExcelExport', 'allowFiltering', 'allowGrouping', 'allowKeyboard', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'autoFit', 'childGrid', 'clipMode', 'columnChooserSettings', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'cssClass', 'currencyCode', 'currentAction', 'currentViewData', 'dataSource', 'detailTemplate', 'editSettings', 'ej2StatePersistenceVersion', 'emptyRecordTemplate', 'enableAdaptiveUI', 'enableAltRow', 'enableAutoFill', 'enableColumnVirtualization', 'enableHeaderFocus', 'enableHover', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableInfiniteScrolling', 'enablePersistence', 'enableRtl', 'enableStickyHeader', 'enableVirtualMaskRow', 'enableVirtualization', 'exportGrids', 'filterSettings', 'frozenColumns', 'frozenRows', 'gridLines', 'groupSettings', 'height', 'hierarchyPrintMode', 'infiniteScrollSettings', 'loadingIndicator', 'locale', 'pageSettings', 'pagerTemplate', 'parentDetails', 'printMode', 'query', 'queryString', 'resizeSettings', 'rowDropSettings', 'rowHeight', 'rowRenderingMode', 'rowTemplate', 'searchSettings', 'selectedRowIndex', 'selectionSettings', 'showColumnChooser', 'showColumnMenu', 'showHider', 'sortSettings', 'textWrapSettings', 'toolbar', 'toolbarTemplate', 'width'];
|
|
447
354
|
var outputs$4 = ['actionBegin', 'actionComplete', 'actionFailure', 'batchAdd', 'batchCancel', 'batchDelete', 'beforeAutoFill', 'beforeBatchAdd', 'beforeBatchDelete', 'beforeBatchSave', 'beforeCopy', 'beforeDataBound', 'beforeExcelExport', 'beforeOpenAdaptiveDialog', 'beforeOpenColumnChooser', 'beforePaste', 'beforePdfExport', 'beforePrint', 'beginEdit', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSave', 'cellSaved', 'cellSelected', 'cellSelecting', 'checkBoxChange', 'columnDataStateChange', 'columnDeselected', 'columnDeselecting', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'columnSelected', 'columnSelecting', 'commandClick', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataSourceChanged', 'dataStateChange', 'destroyed', 'detailDataBound', 'excelAggregateQueryCellInfo', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'exportDetailDataBound', 'exportDetailTemplate', 'exportGroupCaption', 'headerCellInfo', 'keyPressed', 'lazyLoadGroupCollapse', 'lazyLoadGroupExpand', 'load', 'pdfAggregateQueryCellInfo', 'pdfExportComplete', 'pdfHeaderQueryCellInfo', 'pdfQueryCellInfo', 'printComplete', 'queryCellInfo', 'recordClick', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'toolbarClick', 'dataSourceChange'];
|
|
448
355
|
var twoWays = ['dataSource'];
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
* ```html
|
|
452
|
-
* <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-grid>
|
|
453
|
-
* ```
|
|
454
|
-
*/
|
|
455
|
-
exports.GridComponent = /** @class */ (function (_super) {
|
|
356
|
+
|
|
357
|
+
exports.GridComponent = (function (_super) {
|
|
456
358
|
__extends(GridComponent, _super);
|
|
457
|
-
|
|
458
|
-
* @param {?} ngEle
|
|
459
|
-
* @param {?} srenderer
|
|
460
|
-
* @param {?} viewContainerRef
|
|
461
|
-
* @param {?} injector
|
|
462
|
-
*/
|
|
359
|
+
|
|
463
360
|
function GridComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
464
361
|
var _this = _super.call(this) || this;
|
|
465
362
|
_this.ngEle = ngEle;
|
|
@@ -643,31 +540,23 @@ exports.GridComponent = /** @class */ (function (_super) {
|
|
|
643
540
|
_this.context = new ej2AngularBase.ComponentBase();
|
|
644
541
|
return _this;
|
|
645
542
|
}
|
|
646
|
-
|
|
647
|
-
* @return {?}
|
|
648
|
-
*/
|
|
543
|
+
|
|
649
544
|
GridComponent.prototype.ngOnInit = function () {
|
|
650
545
|
this.context.ngOnInit(this);
|
|
651
546
|
};
|
|
652
|
-
|
|
653
|
-
* @return {?}
|
|
654
|
-
*/
|
|
547
|
+
|
|
655
548
|
GridComponent.prototype.ngAfterViewInit = function () {
|
|
656
549
|
this.context.ngAfterViewInit(this);
|
|
657
550
|
};
|
|
658
|
-
|
|
659
|
-
* @return {?}
|
|
660
|
-
*/
|
|
551
|
+
|
|
661
552
|
GridComponent.prototype.ngOnDestroy = function () {
|
|
662
553
|
this.context.ngOnDestroy(this);
|
|
663
554
|
};
|
|
664
|
-
|
|
665
|
-
* @return {?}
|
|
666
|
-
*/
|
|
555
|
+
|
|
667
556
|
GridComponent.prototype.ngAfterContentChecked = function () {
|
|
668
557
|
this.tagObjects[0].instance = this.childColumns;
|
|
669
558
|
if (this.childAggregates) {
|
|
670
|
-
this.tagObjects[1].instance =
|
|
559
|
+
this.tagObjects[1].instance = (this.childAggregates);
|
|
671
560
|
}
|
|
672
561
|
this.context.ngAfterContentChecked(this);
|
|
673
562
|
};
|
|
@@ -686,9 +575,7 @@ exports.GridComponent.decorators = [
|
|
|
686
575
|
}
|
|
687
576
|
},] },
|
|
688
577
|
];
|
|
689
|
-
|
|
690
|
-
* @nocollapse
|
|
691
|
-
*/
|
|
578
|
+
|
|
692
579
|
exports.GridComponent.ctorParameters = function () { return [
|
|
693
580
|
{ type: core.ElementRef, },
|
|
694
581
|
{ type: core.Renderer2, },
|
|
@@ -739,10 +626,8 @@ exports.GridComponent = __decorate$3([
|
|
|
739
626
|
core.ViewContainerRef,
|
|
740
627
|
core.Injector])
|
|
741
628
|
], exports.GridComponent);
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
*/
|
|
745
|
-
var GridModule = /** @class */ (function () {
|
|
629
|
+
|
|
630
|
+
var GridModule = (function () {
|
|
746
631
|
function GridModule() {
|
|
747
632
|
}
|
|
748
633
|
return GridModule;
|
|
@@ -774,9 +659,7 @@ GridModule.decorators = [
|
|
|
774
659
|
]
|
|
775
660
|
},] },
|
|
776
661
|
];
|
|
777
|
-
|
|
778
|
-
* @nocollapse
|
|
779
|
-
*/
|
|
662
|
+
|
|
780
663
|
GridModule.ctorParameters = function () { return []; };
|
|
781
664
|
var FilterService = { provide: 'GridsFilter', useValue: ej2Grids.Filter };
|
|
782
665
|
var PageService = { provide: 'GridsPage', useValue: ej2Grids.Page };
|
|
@@ -802,10 +685,8 @@ var ColumnChooserService = { provide: 'GridsColumnChooser', useValue: ej2Grids.C
|
|
|
802
685
|
var ForeignKeyService = { provide: 'GridsForeignKey', useValue: ej2Grids.ForeignKey };
|
|
803
686
|
var InfiniteScrollService = { provide: 'GridsInfiniteScroll', useValue: ej2Grids.InfiniteScroll };
|
|
804
687
|
var LazyLoadGroupService = { provide: 'GridsLazyLoadGroup', useValue: ej2Grids.LazyLoadGroup };
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
*/
|
|
808
|
-
var GridAllModule = /** @class */ (function () {
|
|
688
|
+
|
|
689
|
+
var GridAllModule = (function () {
|
|
809
690
|
function GridAllModule() {
|
|
810
691
|
}
|
|
811
692
|
return GridAllModule;
|
|
@@ -844,9 +725,7 @@ GridAllModule.decorators = [
|
|
|
844
725
|
]
|
|
845
726
|
},] },
|
|
846
727
|
];
|
|
847
|
-
|
|
848
|
-
* @nocollapse
|
|
849
|
-
*/
|
|
728
|
+
|
|
850
729
|
GridAllModule.ctorParameters = function () { return []; };
|
|
851
730
|
var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
852
731
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -865,20 +744,10 @@ var __metadata$4 = (this && this.__metadata) || function (k, v) {
|
|
|
865
744
|
var inputs$1 = ['cssClass', 'currentPage', 'customText', 'enableExternalMessage', 'enablePagerMessage', 'enablePersistence', 'enableQueryString', 'enableRtl', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizes', 'template', 'totalRecordsCount'];
|
|
866
745
|
var outputs$5 = ['click', 'created', 'dropDownChanged', 'currentPageChange', 'pageSizeChange', 'pageCountChange', 'pageSizesChange'];
|
|
867
746
|
var twoWays$1 = ['currentPage', 'pageSize', 'pageCount', 'pageSizes'];
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
* ```html
|
|
871
|
-
* <ejs-pager></ejs-pager>
|
|
872
|
-
* ```
|
|
873
|
-
*/
|
|
874
|
-
exports.PagerComponent = /** @class */ (function (_super) {
|
|
747
|
+
|
|
748
|
+
exports.PagerComponent = (function (_super) {
|
|
875
749
|
__extends(PagerComponent, _super);
|
|
876
|
-
|
|
877
|
-
* @param {?} ngEle
|
|
878
|
-
* @param {?} srenderer
|
|
879
|
-
* @param {?} viewContainerRef
|
|
880
|
-
* @param {?} injector
|
|
881
|
-
*/
|
|
750
|
+
|
|
882
751
|
function PagerComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
883
752
|
var _this = _super.call(this) || this;
|
|
884
753
|
_this.ngEle = ngEle;
|
|
@@ -893,27 +762,19 @@ exports.PagerComponent = /** @class */ (function (_super) {
|
|
|
893
762
|
_this.context = new ej2AngularBase.ComponentBase();
|
|
894
763
|
return _this;
|
|
895
764
|
}
|
|
896
|
-
|
|
897
|
-
* @return {?}
|
|
898
|
-
*/
|
|
765
|
+
|
|
899
766
|
PagerComponent.prototype.ngOnInit = function () {
|
|
900
767
|
this.context.ngOnInit(this);
|
|
901
768
|
};
|
|
902
|
-
|
|
903
|
-
* @return {?}
|
|
904
|
-
*/
|
|
769
|
+
|
|
905
770
|
PagerComponent.prototype.ngAfterViewInit = function () {
|
|
906
771
|
this.context.ngAfterViewInit(this);
|
|
907
772
|
};
|
|
908
|
-
|
|
909
|
-
* @return {?}
|
|
910
|
-
*/
|
|
773
|
+
|
|
911
774
|
PagerComponent.prototype.ngOnDestroy = function () {
|
|
912
775
|
this.context.ngOnDestroy(this);
|
|
913
776
|
};
|
|
914
|
-
|
|
915
|
-
* @return {?}
|
|
916
|
-
*/
|
|
777
|
+
|
|
917
778
|
PagerComponent.prototype.ngAfterContentChecked = function () {
|
|
918
779
|
this.context.ngAfterContentChecked(this);
|
|
919
780
|
};
|
|
@@ -929,9 +790,7 @@ exports.PagerComponent.decorators = [
|
|
|
929
790
|
queries: {}
|
|
930
791
|
},] },
|
|
931
792
|
];
|
|
932
|
-
|
|
933
|
-
* @nocollapse
|
|
934
|
-
*/
|
|
793
|
+
|
|
935
794
|
exports.PagerComponent.ctorParameters = function () { return [
|
|
936
795
|
{ type: core.ElementRef, },
|
|
937
796
|
{ type: core.Renderer2, },
|
|
@@ -952,10 +811,8 @@ exports.PagerComponent = __decorate$4([
|
|
|
952
811
|
core.ViewContainerRef,
|
|
953
812
|
core.Injector])
|
|
954
813
|
], exports.PagerComponent);
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
*/
|
|
958
|
-
var PagerModule = /** @class */ (function () {
|
|
814
|
+
|
|
815
|
+
var PagerModule = (function () {
|
|
959
816
|
function PagerModule() {
|
|
960
817
|
}
|
|
961
818
|
return PagerModule;
|
|
@@ -971,14 +828,10 @@ PagerModule.decorators = [
|
|
|
971
828
|
]
|
|
972
829
|
},] },
|
|
973
830
|
];
|
|
974
|
-
|
|
975
|
-
* @nocollapse
|
|
976
|
-
*/
|
|
831
|
+
|
|
977
832
|
PagerModule.ctorParameters = function () { return []; };
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
*/
|
|
981
|
-
var PagerAllModule = /** @class */ (function () {
|
|
833
|
+
|
|
834
|
+
var PagerAllModule = (function () {
|
|
982
835
|
function PagerAllModule() {
|
|
983
836
|
}
|
|
984
837
|
return PagerAllModule;
|
|
@@ -992,9 +845,7 @@ PagerAllModule.decorators = [
|
|
|
992
845
|
providers: []
|
|
993
846
|
},] },
|
|
994
847
|
];
|
|
995
|
-
|
|
996
|
-
* @nocollapse
|
|
997
|
-
*/
|
|
848
|
+
|
|
998
849
|
PagerAllModule.ctorParameters = function () { return []; };
|
|
999
850
|
|
|
1000
851
|
exports.StackedColumnDirective = StackedColumnDirective;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.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-grids@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-grids@25.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-grids@25.2.3",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-WK/E/Sicn8i9zqZ2pFxY7nQkPN9svUVzNGBKdgaA3E3vCqT7Mkz1WO0Ucq6Ev4NHKSxFAEUjWDImBXMNZ0MgAA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-grids",
|
|
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-grids/-/ej2-angular-grids-25.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-grids/-/ej2-angular-grids-25.2.3.tgz",
|
|
23
|
+
"_shasum": "a38ba715c20ecafd2172582238e289d05d969e1f",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-grids@*",
|
|
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-grids": "25.2.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~25.2.4",
|
|
35
|
+
"@syncfusion/ej2-base": "~25.2.5",
|
|
36
|
+
"@syncfusion/ej2-grids": "25.2.5"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"schematics": "./schematics/collection.json",
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"typings": "ej2-angular-grids.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-grids";
|
|
2
|
-
export declare const pkgVer = "^25.
|
|
2
|
+
export declare const pkgVer = "^25.2.3";
|
|
3
3
|
export declare const moduleName = "GridModule, PagerModule";
|
|
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-grids';
|
|
4
|
-
exports.pkgVer = '^25.2.
|
|
4
|
+
exports.pkgVer = '^25.2.5';
|
|
5
5
|
exports.moduleName = 'GridModule, PagerModule';
|
|
6
|
-
exports.themeVer = '~25.2.
|
|
6
|
+
exports.themeVer = '~25.2.5';
|