@syncfusion/ej2-angular-grids 25.2.5-ngcc → 25.2.6-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
|
+
- `#I584245` - The problem of deselecting a row programmatically with toggle set to true, without triggering the `rowDeselecting` and `rowDeselected` events, and without deselecting the row when there are existing selected rows has been successfully resolved.
|
|
10
|
+
- `#I580119` - Resolved the issue where the `Tooltip` element is not shown in context menu text overflow element.
|
|
11
|
+
- `#I571259` - Resolved the issue with the `selectRow` method when both `virtualization` and `grouping` are enabled.
|
|
12
|
+
- `#I587208` - The issue with misalignment of icons when the `headerText` field is empty has been resolved.
|
|
13
|
+
- `#I591601` - Resolved the issue where continuous spinner loading when opening the Excel filter dialog after performing the grid's search operation.
|
|
14
|
+
|
|
15
|
+
## 25.2.5 (2024-05-21)
|
|
16
|
+
|
|
17
|
+
### Grid
|
|
18
|
+
|
|
19
|
+
#### Bug fixes
|
|
20
|
+
|
|
9
21
|
- `#I582334` - Resolved the issue where the page orientation Landscape throws script error while pdf export.
|
|
10
22
|
- `#I584344` - Localization not applied on grid's group expand icons issue was resolved.
|
|
11
23
|
- `#I586600` - Resolved the issue where the Interface `BeforeDataBoundArgs` mismatches the actual event arguments.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.umd.js
|
|
3
|
-
* version : 25.2.
|
|
3
|
+
* version : 25.2.6
|
|
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,10 +39,27 @@ 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
|
-
|
|
42
|
+
/**
|
|
43
|
+
* `e-stacked-column` directive represent the stacked column of the Angular Grid.
|
|
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) {
|
|
44
59
|
__extends(StackedColumnDirective, _super);
|
|
45
|
-
|
|
60
|
+
/**
|
|
61
|
+
* @param {?} viewContainerRef
|
|
62
|
+
*/
|
|
46
63
|
function StackedColumnDirective(viewContainerRef) {
|
|
47
64
|
var _this = _super.call(this) || this;
|
|
48
65
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -61,7 +78,9 @@ StackedColumnDirective.decorators = [
|
|
|
61
78
|
queries: {}
|
|
62
79
|
},] },
|
|
63
80
|
];
|
|
64
|
-
|
|
81
|
+
/**
|
|
82
|
+
* @nocollapse
|
|
83
|
+
*/
|
|
65
84
|
StackedColumnDirective.ctorParameters = function () { return [
|
|
66
85
|
{ type: core.ViewContainerRef, },
|
|
67
86
|
]; };
|
|
@@ -97,8 +116,10 @@ __decorate([
|
|
|
97
116
|
ej2AngularBase.Template(),
|
|
98
117
|
__metadata("design:type", Object)
|
|
99
118
|
], StackedColumnDirective.prototype, "filterTemplate", void 0);
|
|
100
|
-
|
|
101
|
-
|
|
119
|
+
/**
|
|
120
|
+
* StackedColumn Array Directive
|
|
121
|
+
*/
|
|
122
|
+
var StackedColumnsDirective = /** @class */ (function (_super) {
|
|
102
123
|
__extends(StackedColumnsDirective, _super);
|
|
103
124
|
function StackedColumnsDirective() {
|
|
104
125
|
return _super.call(this, 'columns') || this;
|
|
@@ -113,7 +134,9 @@ StackedColumnsDirective.decorators = [
|
|
|
113
134
|
},
|
|
114
135
|
},] },
|
|
115
136
|
];
|
|
116
|
-
|
|
137
|
+
/**
|
|
138
|
+
* @nocollapse
|
|
139
|
+
*/
|
|
117
140
|
StackedColumnsDirective.ctorParameters = function () { return []; };
|
|
118
141
|
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
119
142
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -131,10 +154,23 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
|
131
154
|
};
|
|
132
155
|
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'];
|
|
133
156
|
var outputs$1 = [];
|
|
134
|
-
|
|
135
|
-
|
|
157
|
+
/**
|
|
158
|
+
* `e-column` directive represent a column of the Angular Grid.
|
|
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) {
|
|
136
170
|
__extends(ColumnDirective, _super);
|
|
137
|
-
|
|
171
|
+
/**
|
|
172
|
+
* @param {?} viewContainerRef
|
|
173
|
+
*/
|
|
138
174
|
function ColumnDirective(viewContainerRef) {
|
|
139
175
|
var _this = _super.call(this) || this;
|
|
140
176
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -156,7 +192,9 @@ ColumnDirective.decorators = [
|
|
|
156
192
|
}
|
|
157
193
|
},] },
|
|
158
194
|
];
|
|
159
|
-
|
|
195
|
+
/**
|
|
196
|
+
* @nocollapse
|
|
197
|
+
*/
|
|
160
198
|
ColumnDirective.ctorParameters = function () { return [
|
|
161
199
|
{ type: core.ViewContainerRef, },
|
|
162
200
|
]; };
|
|
@@ -192,8 +230,10 @@ __decorate$1([
|
|
|
192
230
|
ej2AngularBase.Template(),
|
|
193
231
|
__metadata$1("design:type", Object)
|
|
194
232
|
], ColumnDirective.prototype, "filterTemplate", void 0);
|
|
195
|
-
|
|
196
|
-
|
|
233
|
+
/**
|
|
234
|
+
* Column Array Directive
|
|
235
|
+
*/
|
|
236
|
+
var ColumnsDirective = /** @class */ (function (_super) {
|
|
197
237
|
__extends(ColumnsDirective, _super);
|
|
198
238
|
function ColumnsDirective() {
|
|
199
239
|
return _super.call(this, 'columns') || this;
|
|
@@ -208,7 +248,9 @@ ColumnsDirective.decorators = [
|
|
|
208
248
|
},
|
|
209
249
|
},] },
|
|
210
250
|
];
|
|
211
|
-
|
|
251
|
+
/**
|
|
252
|
+
* @nocollapse
|
|
253
|
+
*/
|
|
212
254
|
ColumnsDirective.ctorParameters = function () { return []; };
|
|
213
255
|
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
214
256
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -226,10 +268,29 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
|
|
|
226
268
|
};
|
|
227
269
|
var input$2 = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'groupCaptionTemplate', 'groupFooterTemplate', 'type'];
|
|
228
270
|
var outputs$2 = [];
|
|
229
|
-
|
|
230
|
-
|
|
271
|
+
/**
|
|
272
|
+
* `e-aggregate->e-column` directive represent a aggregate column of the Angular Grid.
|
|
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) {
|
|
231
290
|
__extends(AggregateColumnDirective, _super);
|
|
232
|
-
|
|
291
|
+
/**
|
|
292
|
+
* @param {?} viewContainerRef
|
|
293
|
+
*/
|
|
233
294
|
function AggregateColumnDirective(viewContainerRef) {
|
|
234
295
|
var _this = _super.call(this) || this;
|
|
235
296
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -248,7 +309,9 @@ AggregateColumnDirective.decorators = [
|
|
|
248
309
|
queries: {}
|
|
249
310
|
},] },
|
|
250
311
|
];
|
|
251
|
-
|
|
312
|
+
/**
|
|
313
|
+
* @nocollapse
|
|
314
|
+
*/
|
|
252
315
|
AggregateColumnDirective.ctorParameters = function () { return [
|
|
253
316
|
{ type: core.ViewContainerRef, },
|
|
254
317
|
]; };
|
|
@@ -269,8 +332,10 @@ __decorate$2([
|
|
|
269
332
|
ej2AngularBase.Template(),
|
|
270
333
|
__metadata$2("design:type", Object)
|
|
271
334
|
], AggregateColumnDirective.prototype, "groupCaptionTemplate", void 0);
|
|
272
|
-
|
|
273
|
-
|
|
335
|
+
/**
|
|
336
|
+
* AggregateColumn Array Directive
|
|
337
|
+
*/
|
|
338
|
+
var AggregateColumnsDirective = /** @class */ (function (_super) {
|
|
274
339
|
__extends(AggregateColumnsDirective, _super);
|
|
275
340
|
function AggregateColumnsDirective() {
|
|
276
341
|
return _super.call(this, 'columns') || this;
|
|
@@ -285,14 +350,36 @@ AggregateColumnsDirective.decorators = [
|
|
|
285
350
|
},
|
|
286
351
|
},] },
|
|
287
352
|
];
|
|
288
|
-
|
|
353
|
+
/**
|
|
354
|
+
* @nocollapse
|
|
355
|
+
*/
|
|
289
356
|
AggregateColumnsDirective.ctorParameters = function () { return []; };
|
|
290
357
|
var input$3 = ['columns'];
|
|
291
358
|
var outputs$3 = [];
|
|
292
|
-
|
|
293
|
-
|
|
359
|
+
/**
|
|
360
|
+
* `e-aggregate` directive represent a aggregate row of the Angular Grid.
|
|
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) {
|
|
294
379
|
__extends(AggregateDirective, _super);
|
|
295
|
-
|
|
380
|
+
/**
|
|
381
|
+
* @param {?} viewContainerRef
|
|
382
|
+
*/
|
|
296
383
|
function AggregateDirective(viewContainerRef) {
|
|
297
384
|
var _this = _super.call(this) || this;
|
|
298
385
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -314,12 +401,16 @@ AggregateDirective.decorators = [
|
|
|
314
401
|
}
|
|
315
402
|
},] },
|
|
316
403
|
];
|
|
317
|
-
|
|
404
|
+
/**
|
|
405
|
+
* @nocollapse
|
|
406
|
+
*/
|
|
318
407
|
AggregateDirective.ctorParameters = function () { return [
|
|
319
408
|
{ type: core.ViewContainerRef, },
|
|
320
409
|
]; };
|
|
321
|
-
|
|
322
|
-
|
|
410
|
+
/**
|
|
411
|
+
* Aggregate Array Directive
|
|
412
|
+
*/
|
|
413
|
+
var AggregatesDirective = /** @class */ (function (_super) {
|
|
323
414
|
__extends(AggregatesDirective, _super);
|
|
324
415
|
function AggregatesDirective() {
|
|
325
416
|
return _super.call(this, 'aggregates') || this;
|
|
@@ -334,7 +425,9 @@ AggregatesDirective.decorators = [
|
|
|
334
425
|
},
|
|
335
426
|
},] },
|
|
336
427
|
];
|
|
337
|
-
|
|
428
|
+
/**
|
|
429
|
+
* @nocollapse
|
|
430
|
+
*/
|
|
338
431
|
AggregatesDirective.ctorParameters = function () { return []; };
|
|
339
432
|
var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
340
433
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -353,10 +446,20 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
|
|
|
353
446
|
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'];
|
|
354
447
|
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'];
|
|
355
448
|
var twoWays = ['dataSource'];
|
|
356
|
-
|
|
357
|
-
|
|
449
|
+
/**
|
|
450
|
+
* `ejs-grid` represents the Angular Grid Component.
|
|
451
|
+
* ```html
|
|
452
|
+
* <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-grid>
|
|
453
|
+
* ```
|
|
454
|
+
*/
|
|
455
|
+
exports.GridComponent = /** @class */ (function (_super) {
|
|
358
456
|
__extends(GridComponent, _super);
|
|
359
|
-
|
|
457
|
+
/**
|
|
458
|
+
* @param {?} ngEle
|
|
459
|
+
* @param {?} srenderer
|
|
460
|
+
* @param {?} viewContainerRef
|
|
461
|
+
* @param {?} injector
|
|
462
|
+
*/
|
|
360
463
|
function GridComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
361
464
|
var _this = _super.call(this) || this;
|
|
362
465
|
_this.ngEle = ngEle;
|
|
@@ -540,23 +643,31 @@ exports.GridComponent = (function (_super) {
|
|
|
540
643
|
_this.context = new ej2AngularBase.ComponentBase();
|
|
541
644
|
return _this;
|
|
542
645
|
}
|
|
543
|
-
|
|
646
|
+
/**
|
|
647
|
+
* @return {?}
|
|
648
|
+
*/
|
|
544
649
|
GridComponent.prototype.ngOnInit = function () {
|
|
545
650
|
this.context.ngOnInit(this);
|
|
546
651
|
};
|
|
547
|
-
|
|
652
|
+
/**
|
|
653
|
+
* @return {?}
|
|
654
|
+
*/
|
|
548
655
|
GridComponent.prototype.ngAfterViewInit = function () {
|
|
549
656
|
this.context.ngAfterViewInit(this);
|
|
550
657
|
};
|
|
551
|
-
|
|
658
|
+
/**
|
|
659
|
+
* @return {?}
|
|
660
|
+
*/
|
|
552
661
|
GridComponent.prototype.ngOnDestroy = function () {
|
|
553
662
|
this.context.ngOnDestroy(this);
|
|
554
663
|
};
|
|
555
|
-
|
|
664
|
+
/**
|
|
665
|
+
* @return {?}
|
|
666
|
+
*/
|
|
556
667
|
GridComponent.prototype.ngAfterContentChecked = function () {
|
|
557
668
|
this.tagObjects[0].instance = this.childColumns;
|
|
558
669
|
if (this.childAggregates) {
|
|
559
|
-
this.tagObjects[1].instance =
|
|
670
|
+
this.tagObjects[1].instance = /** @type {?} */ (this.childAggregates);
|
|
560
671
|
}
|
|
561
672
|
this.context.ngAfterContentChecked(this);
|
|
562
673
|
};
|
|
@@ -575,7 +686,9 @@ exports.GridComponent.decorators = [
|
|
|
575
686
|
}
|
|
576
687
|
},] },
|
|
577
688
|
];
|
|
578
|
-
|
|
689
|
+
/**
|
|
690
|
+
* @nocollapse
|
|
691
|
+
*/
|
|
579
692
|
exports.GridComponent.ctorParameters = function () { return [
|
|
580
693
|
{ type: core.ElementRef, },
|
|
581
694
|
{ type: core.Renderer2, },
|
|
@@ -626,8 +739,10 @@ exports.GridComponent = __decorate$3([
|
|
|
626
739
|
core.ViewContainerRef,
|
|
627
740
|
core.Injector])
|
|
628
741
|
], exports.GridComponent);
|
|
629
|
-
|
|
630
|
-
|
|
742
|
+
/**
|
|
743
|
+
* NgModule definition for the Grid component.
|
|
744
|
+
*/
|
|
745
|
+
var GridModule = /** @class */ (function () {
|
|
631
746
|
function GridModule() {
|
|
632
747
|
}
|
|
633
748
|
return GridModule;
|
|
@@ -659,7 +774,9 @@ GridModule.decorators = [
|
|
|
659
774
|
]
|
|
660
775
|
},] },
|
|
661
776
|
];
|
|
662
|
-
|
|
777
|
+
/**
|
|
778
|
+
* @nocollapse
|
|
779
|
+
*/
|
|
663
780
|
GridModule.ctorParameters = function () { return []; };
|
|
664
781
|
var FilterService = { provide: 'GridsFilter', useValue: ej2Grids.Filter };
|
|
665
782
|
var PageService = { provide: 'GridsPage', useValue: ej2Grids.Page };
|
|
@@ -685,8 +802,10 @@ var ColumnChooserService = { provide: 'GridsColumnChooser', useValue: ej2Grids.C
|
|
|
685
802
|
var ForeignKeyService = { provide: 'GridsForeignKey', useValue: ej2Grids.ForeignKey };
|
|
686
803
|
var InfiniteScrollService = { provide: 'GridsInfiniteScroll', useValue: ej2Grids.InfiniteScroll };
|
|
687
804
|
var LazyLoadGroupService = { provide: 'GridsLazyLoadGroup', useValue: ej2Grids.LazyLoadGroup };
|
|
688
|
-
|
|
689
|
-
|
|
805
|
+
/**
|
|
806
|
+
* NgModule definition for the Grid component with providers.
|
|
807
|
+
*/
|
|
808
|
+
var GridAllModule = /** @class */ (function () {
|
|
690
809
|
function GridAllModule() {
|
|
691
810
|
}
|
|
692
811
|
return GridAllModule;
|
|
@@ -725,7 +844,9 @@ GridAllModule.decorators = [
|
|
|
725
844
|
]
|
|
726
845
|
},] },
|
|
727
846
|
];
|
|
728
|
-
|
|
847
|
+
/**
|
|
848
|
+
* @nocollapse
|
|
849
|
+
*/
|
|
729
850
|
GridAllModule.ctorParameters = function () { return []; };
|
|
730
851
|
var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
731
852
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -744,10 +865,20 @@ var __metadata$4 = (this && this.__metadata) || function (k, v) {
|
|
|
744
865
|
var inputs$1 = ['cssClass', 'currentPage', 'customText', 'enableExternalMessage', 'enablePagerMessage', 'enablePersistence', 'enableQueryString', 'enableRtl', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizes', 'template', 'totalRecordsCount'];
|
|
745
866
|
var outputs$5 = ['click', 'created', 'dropDownChanged', 'currentPageChange', 'pageSizeChange', 'pageCountChange', 'pageSizesChange'];
|
|
746
867
|
var twoWays$1 = ['currentPage', 'pageSize', 'pageCount', 'pageSizes'];
|
|
747
|
-
|
|
748
|
-
|
|
868
|
+
/**
|
|
869
|
+
* `ejs-pager` represents the Angular Pager Component.
|
|
870
|
+
* ```html
|
|
871
|
+
* <ejs-pager></ejs-pager>
|
|
872
|
+
* ```
|
|
873
|
+
*/
|
|
874
|
+
exports.PagerComponent = /** @class */ (function (_super) {
|
|
749
875
|
__extends(PagerComponent, _super);
|
|
750
|
-
|
|
876
|
+
/**
|
|
877
|
+
* @param {?} ngEle
|
|
878
|
+
* @param {?} srenderer
|
|
879
|
+
* @param {?} viewContainerRef
|
|
880
|
+
* @param {?} injector
|
|
881
|
+
*/
|
|
751
882
|
function PagerComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
752
883
|
var _this = _super.call(this) || this;
|
|
753
884
|
_this.ngEle = ngEle;
|
|
@@ -762,19 +893,27 @@ exports.PagerComponent = (function (_super) {
|
|
|
762
893
|
_this.context = new ej2AngularBase.ComponentBase();
|
|
763
894
|
return _this;
|
|
764
895
|
}
|
|
765
|
-
|
|
896
|
+
/**
|
|
897
|
+
* @return {?}
|
|
898
|
+
*/
|
|
766
899
|
PagerComponent.prototype.ngOnInit = function () {
|
|
767
900
|
this.context.ngOnInit(this);
|
|
768
901
|
};
|
|
769
|
-
|
|
902
|
+
/**
|
|
903
|
+
* @return {?}
|
|
904
|
+
*/
|
|
770
905
|
PagerComponent.prototype.ngAfterViewInit = function () {
|
|
771
906
|
this.context.ngAfterViewInit(this);
|
|
772
907
|
};
|
|
773
|
-
|
|
908
|
+
/**
|
|
909
|
+
* @return {?}
|
|
910
|
+
*/
|
|
774
911
|
PagerComponent.prototype.ngOnDestroy = function () {
|
|
775
912
|
this.context.ngOnDestroy(this);
|
|
776
913
|
};
|
|
777
|
-
|
|
914
|
+
/**
|
|
915
|
+
* @return {?}
|
|
916
|
+
*/
|
|
778
917
|
PagerComponent.prototype.ngAfterContentChecked = function () {
|
|
779
918
|
this.context.ngAfterContentChecked(this);
|
|
780
919
|
};
|
|
@@ -790,7 +929,9 @@ exports.PagerComponent.decorators = [
|
|
|
790
929
|
queries: {}
|
|
791
930
|
},] },
|
|
792
931
|
];
|
|
793
|
-
|
|
932
|
+
/**
|
|
933
|
+
* @nocollapse
|
|
934
|
+
*/
|
|
794
935
|
exports.PagerComponent.ctorParameters = function () { return [
|
|
795
936
|
{ type: core.ElementRef, },
|
|
796
937
|
{ type: core.Renderer2, },
|
|
@@ -811,8 +952,10 @@ exports.PagerComponent = __decorate$4([
|
|
|
811
952
|
core.ViewContainerRef,
|
|
812
953
|
core.Injector])
|
|
813
954
|
], exports.PagerComponent);
|
|
814
|
-
|
|
815
|
-
|
|
955
|
+
/**
|
|
956
|
+
* NgModule definition for the Pager component.
|
|
957
|
+
*/
|
|
958
|
+
var PagerModule = /** @class */ (function () {
|
|
816
959
|
function PagerModule() {
|
|
817
960
|
}
|
|
818
961
|
return PagerModule;
|
|
@@ -828,10 +971,14 @@ PagerModule.decorators = [
|
|
|
828
971
|
]
|
|
829
972
|
},] },
|
|
830
973
|
];
|
|
831
|
-
|
|
974
|
+
/**
|
|
975
|
+
* @nocollapse
|
|
976
|
+
*/
|
|
832
977
|
PagerModule.ctorParameters = function () { return []; };
|
|
833
|
-
|
|
834
|
-
|
|
978
|
+
/**
|
|
979
|
+
* NgModule definition for the Pager component with providers.
|
|
980
|
+
*/
|
|
981
|
+
var PagerAllModule = /** @class */ (function () {
|
|
835
982
|
function PagerAllModule() {
|
|
836
983
|
}
|
|
837
984
|
return PagerAllModule;
|
|
@@ -845,7 +992,9 @@ PagerAllModule.decorators = [
|
|
|
845
992
|
providers: []
|
|
846
993
|
},] },
|
|
847
994
|
];
|
|
848
|
-
|
|
995
|
+
/**
|
|
996
|
+
* @nocollapse
|
|
997
|
+
*/
|
|
849
998
|
PagerAllModule.ctorParameters = function () { return []; };
|
|
850
999
|
|
|
851
1000
|
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.6
|
|
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.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-grids@25.2.5",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-WeWQBP+PHKuCzOffx8QnBX+e/swimTdZxZmqHzSyfvdQQCSNfNEHQ0XiYFV801NPx0VhU2m/Ka6Mref4QXAJrA==",
|
|
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.2.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-grids/-/ej2-angular-grids-25.2.5.tgz",
|
|
23
|
+
"_shasum": "bb3a560a54f1d913d96ddfdeb603df629479d737",
|
|
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.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~25.2.6",
|
|
35
35
|
"@syncfusion/ej2-base": "~25.2.5",
|
|
36
|
-
"@syncfusion/ej2-grids": "25.2.
|
|
36
|
+
"@syncfusion/ej2-grids": "25.2.6"
|
|
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.6-ngcc"
|
|
62
62
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-grids";
|
|
2
|
-
export declare const pkgVer = "^25.2.
|
|
2
|
+
export declare const pkgVer = "^25.2.5";
|
|
3
3
|
export declare const moduleName = "GridModule, PagerModule";
|
|
4
|
-
export declare const themeVer = "~25.2.
|
|
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-grids';
|
|
4
|
-
exports.pkgVer = '^25.2.
|
|
4
|
+
exports.pkgVer = '^25.2.6';
|
|
5
5
|
exports.moduleName = 'GridModule, PagerModule';
|
|
6
|
-
exports.themeVer = '~25.2.
|
|
6
|
+
exports.themeVer = '~25.2.6';
|