igniteui-angular 12.2.5 → 12.2.6

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.
Files changed (41) hide show
  1. package/bundles/igniteui-angular.umd.js +259 -474
  2. package/bundles/igniteui-angular.umd.js.map +1 -1
  3. package/esm2015/igniteui-angular.js +106 -107
  4. package/esm2015/lib/action-strip/grid-actions/grid-editing-actions.component.js +2 -2
  5. package/esm2015/lib/banner/banner.component.js +1 -1
  6. package/esm2015/lib/core/utils.js +11 -1
  7. package/esm2015/lib/directives/radio/radio-group.directive.js +5 -13
  8. package/esm2015/lib/drop-down/drop-down-item.base.js +1 -5
  9. package/esm2015/lib/grids/cell.component.js +1 -17
  10. package/esm2015/lib/grids/column-actions/column-actions.component.js +3 -7
  11. package/esm2015/lib/grids/grid/grid.component.js +3 -7
  12. package/esm2015/lib/grids/grid-base.directive.js +55 -118
  13. package/esm2015/lib/grids/grid-public-row.js +3 -12
  14. package/esm2015/lib/grids/headers/grid-header-row.component.js +2 -2
  15. package/esm2015/lib/grids/hierarchical-grid/hierarchical-grid.component.js +3 -7
  16. package/esm2015/lib/grids/tree-grid/tree-grid.component.js +3 -7
  17. package/esm2015/lib/icon/icon.component.js +1 -6
  18. package/esm2015/lib/services/overlay/utilities.js +1 -1
  19. package/esm2015/lib/toast/toast.component.js +3 -6
  20. package/fesm2015/igniteui-angular.js +84 -278
  21. package/fesm2015/igniteui-angular.js.map +1 -1
  22. package/igniteui-angular.d.ts +105 -106
  23. package/igniteui-angular.metadata.json +1 -1
  24. package/lib/banner/banner.component.d.ts +1 -2
  25. package/lib/core/utils.d.ts +4 -0
  26. package/lib/directives/radio/radio-group.directive.d.ts +4 -4
  27. package/lib/grids/cell.component.d.ts +0 -9
  28. package/lib/grids/column-actions/column-actions.component.d.ts +2 -1
  29. package/lib/grids/grid/grid.component.d.ts +2 -1
  30. package/lib/grids/grid-base.directive.d.ts +54 -37
  31. package/lib/grids/grid-public-row.d.ts +2 -3
  32. package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +2 -1
  33. package/lib/grids/tree-grid/tree-grid.component.d.ts +2 -1
  34. package/lib/icon/icon.component.d.ts +2 -2
  35. package/lib/services/overlay/utilities.d.ts +2 -1
  36. package/lib/toast/toast.component.d.ts +2 -0
  37. package/migrations/common/filterSourceDirs.d.ts +2 -2
  38. package/migrations/common/filterSourceDirs.js +2 -2
  39. package/package.json +1 -1
  40. package/esm2015/lib/core/deprecateDecorators.js +0 -101
  41. package/lib/core/deprecateDecorators.d.ts +0 -20
@@ -1244,7 +1244,7 @@
1244
1244
  fn();
1245
1245
  }
1246
1246
  };
1247
- var ɵ0$5 = run;
1247
+ var ɵ0$4 = run;
1248
1248
  var listener = function (event) { return run(event.data); };
1249
1249
  var ɵ1$1 = listener;
1250
1250
  // Use function instead of arrow function to workaround an issue in codesandbox
@@ -1276,6 +1276,15 @@
1276
1276
  delete queue[id];
1277
1277
  }
1278
1278
 
1279
+ /**
1280
+ * @hidden
1281
+ */
1282
+ var showMessage = function (message, isMessageShown) {
1283
+ if (!isMessageShown && i0.isDevMode()) {
1284
+ console.warn(message);
1285
+ }
1286
+ return true;
1287
+ };
1279
1288
  var mkenum = function (x) { return x; };
1280
1289
  /**
1281
1290
  * Returns the ResizeObserver type or the polyfilled version if not available.
@@ -9139,7 +9148,7 @@
9139
9148
  };
9140
9149
 
9141
9150
  var clear = function (el) { return el === 0 || Boolean(el); };
9142
- var ɵ0$4 = clear;
9151
+ var ɵ0$3 = clear;
9143
9152
  var first = function (arr) { return arr[0]; };
9144
9153
  var ɵ1 = first;
9145
9154
  var last = function (arr) { return arr[arr.length - 1]; };
@@ -18299,124 +18308,6 @@
18299
18308
  },] }
18300
18309
  ];
18301
18310
 
18302
- /**
18303
- * @hidden
18304
- */
18305
- var DeprecateClass = function (message) {
18306
- var isMessageShown = false;
18307
- return function (originalClass) { return /** @class */ (function (_super) {
18308
- __extends(class_1, _super);
18309
- function class_1() {
18310
- var args = [];
18311
- for (var _i = 0; _i < arguments.length; _i++) {
18312
- args[_i] = arguments[_i];
18313
- }
18314
- var _this = this;
18315
- var target = originalClass;
18316
- var targetName = typeof target === 'function' ? target.name : target.constructor.name;
18317
- isMessageShown = showMessage(targetName + ": " + message, isMessageShown);
18318
- _this = _super.apply(this, __spreadArray([], __read(args))) || this;
18319
- return _this;
18320
- }
18321
- return class_1;
18322
- }(originalClass)); };
18323
- };
18324
- /**
18325
- * @hidden
18326
- */
18327
- function DeprecateMethod(message) {
18328
- var isMessageShown = false;
18329
- return function (target, key, descriptor) {
18330
- if (descriptor && descriptor.value) {
18331
- var originalMethod_1 = descriptor.value;
18332
- descriptor.value = function () {
18333
- var e_1, _a;
18334
- var targetName = typeof target === 'function' ? target.name : target.constructor.name;
18335
- isMessageShown = showMessage(targetName + "." + key + ": " + message, isMessageShown);
18336
- var args = [];
18337
- try {
18338
- for (var arguments_1 = __values(arguments), arguments_1_1 = arguments_1.next(); !arguments_1_1.done; arguments_1_1 = arguments_1.next()) {
18339
- var x = arguments_1_1.value;
18340
- args.push(x);
18341
- }
18342
- }
18343
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
18344
- finally {
18345
- try {
18346
- if (arguments_1_1 && !arguments_1_1.done && (_a = arguments_1.return)) _a.call(arguments_1);
18347
- }
18348
- finally { if (e_1) throw e_1.error; }
18349
- }
18350
- return originalMethod_1.call.apply(originalMethod_1, __spreadArray([this], __read(args)));
18351
- };
18352
- return descriptor;
18353
- }
18354
- };
18355
- }
18356
- /**
18357
- * @hidden
18358
- */
18359
- function DeprecateProperty(message) {
18360
- return function (target, key) {
18361
- var isMessageShown = false;
18362
- var messageToDisplay = target.constructor.name + "." + key + ": " + message;
18363
- // if the target already has the property defined
18364
- var originalDescriptor = Object.getOwnPropertyDescriptor(target, key);
18365
- if (originalDescriptor) {
18366
- var getter_1 = originalDescriptor.get;
18367
- var setter_1 = originalDescriptor.set;
18368
- if (getter_1) {
18369
- originalDescriptor.get = function () {
18370
- isMessageShown = showMessage(messageToDisplay, isMessageShown);
18371
- return getter_1.call(this);
18372
- };
18373
- }
18374
- if (setter_1) {
18375
- originalDescriptor.set = function (value) {
18376
- isMessageShown = showMessage(messageToDisplay, isMessageShown);
18377
- setter_1.call(this, value);
18378
- };
18379
- }
18380
- return originalDescriptor;
18381
- }
18382
- // the target doesn't contain a descriptor for that property, so create one
18383
- // use backing field to set/get the value of the property to ensure there won't be infinite recursive calls
18384
- var newKey = generateUniqueKey(target, key);
18385
- Object.defineProperty(target, key, {
18386
- configurable: true,
18387
- enumerable: true,
18388
- set: function (value) {
18389
- isMessageShown = showMessage(messageToDisplay, isMessageShown);
18390
- this[newKey] = value;
18391
- },
18392
- get: function () {
18393
- isMessageShown = showMessage(messageToDisplay, isMessageShown);
18394
- return this[newKey];
18395
- }
18396
- });
18397
- };
18398
- }
18399
- /**
18400
- * @hidden
18401
- */
18402
- var generateUniqueKey = function (target, key) {
18403
- var newKey = '_' + key;
18404
- while (target.hasOwnProperty(newKey)) {
18405
- newKey = '_' + newKey;
18406
- }
18407
- return newKey;
18408
- };
18409
- var ɵ0$3 = generateUniqueKey;
18410
- /**
18411
- * @hidden
18412
- */
18413
- var showMessage = function (message, isMessageShown) {
18414
- if (!isMessageShown && i0.isDevMode()) {
18415
- console.warn(message);
18416
- }
18417
- return true;
18418
- };
18419
-
18420
18311
  var NEXT_ID$t = 0;
18421
18312
  /**
18422
18313
  * The `<igx-drop-down-item>` is a container intended for row items in
@@ -18492,7 +18383,6 @@
18492
18383
  };
18493
18384
 
18494
18385
  var NEXT_ID$s = 0;
18495
- var warningShown = false;
18496
18386
  /**
18497
18387
  * An abstract class defining a drop-down item:
18498
18388
  * With properties / styles for selection, highlight, height
@@ -18566,8 +18456,6 @@
18566
18456
  */
18567
18457
  get: function () {
18568
18458
  if (this._index === null) {
18569
- warningShown = showMessage('IgxDropDownItemBaseDirective: Automatic index is deprecated.' +
18570
- 'Bind in the template instead using `<igx-drop-down-item [index]="i"` instead.`', warningShown);
18571
18459
  return this.itemIndex;
18572
18460
  }
18573
18461
  return this._index;
@@ -21420,9 +21308,6 @@
21420
21308
  getInactive: [{ type: i0.HostBinding, args: ['class.igx-icon--inactive',] }],
21421
21309
  getColor: [{ type: i0.HostBinding, args: ['style.color',] }]
21422
21310
  };
21423
- __decorate([
21424
- DeprecateProperty('`color` is deprecated.')
21425
- ], IgxIconComponent.prototype, "color", void 0);
21426
21311
 
21427
21312
  /**
21428
21313
  * @hidden
@@ -26116,10 +26001,10 @@
26116
26001
  });
26117
26002
  Object.defineProperty(IgxRadioGroupDirective.prototype, "disabled", {
26118
26003
  /**
26119
- * An @Input property that allows you to disable the radio group. By default it's false.
26120
- *
26121
26004
  * @deprecated in version 12.2.0
26122
26005
  *
26006
+ * An input property that allows you to disable the radio group. By default it's false.
26007
+ *
26123
26008
  * @example
26124
26009
  * ```html
26125
26010
  * <igx-radio-group disabled></igx-radio-group>
@@ -26137,10 +26022,10 @@
26137
26022
  });
26138
26023
  Object.defineProperty(IgxRadioGroupDirective.prototype, "labelPosition", {
26139
26024
  /**
26140
- * Sets/gets the position of the `label` in the child radio buttons.
26141
- *
26142
26025
  * @deprecated in version 12.2.0
26143
26026
  *
26027
+ * Sets/gets the position of the `label` in the child radio buttons.
26028
+ *
26144
26029
  * @remarks
26145
26030
  * If not set, `labelPosition` will have value `"after"`.
26146
26031
  *
@@ -26408,12 +26293,6 @@
26408
26293
  vertical: [{ type: i0.HostBinding, args: ['class.igx-radio-group--vertical',] }],
26409
26294
  alignment: [{ type: i0.Input }]
26410
26295
  };
26411
- __decorate([
26412
- DeprecateProperty('`disabled` is deprecated.')
26413
- ], IgxRadioGroupDirective.prototype, "disabled", null);
26414
- __decorate([
26415
- DeprecateProperty('`labelPosition` is deprecated.')
26416
- ], IgxRadioGroupDirective.prototype, "labelPosition", null);
26417
26296
  /**
26418
26297
  * @hidden
26419
26298
  */
@@ -54206,7 +54085,7 @@
54206
54085
  { type: i0.Component, args: [{
54207
54086
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
54208
54087
  selector: 'igx-grid-header-row',
54209
- template: "<div role=\"rowgroup\" class=\"igx-grid-thead__wrapper\" [style.width.px]=\"width\"\n [attr.aria-activedescendant]=\"activeDescendant\" [class.igx-grid__tr--mrl]=\"hasMRL\">\n\n <!-- Column headers area -->\n <div class=\"igx-grid__tr\" role=\"row\" [style.width.px]=\"width\">\n\n <!-- Left column moving area -->\n <ng-container *ngIf=\"grid.hasMovableColumns && grid.columnInDrag && pinnedColumnCollection.length <= 0\">\n <span id=\"left\" class=\"igx-grid__scroll-on-drag-left\" droppable=\"true\" [style.left.px]=\"grid.pinnedWidth\"\n [igxColumnMovingDrop]=\"headerContainer\"></span>\n </ng-container>\n <ng-container *ngIf=\"grid.hasMovableColumns && grid.columnInDrag && pinnedColumnCollection.length > 0\">\n <span id=\"left\" class=\"igx-grid__scroll-on-drag-pinned\" droppable=\"true\" [style.left.px]=\"grid.pinnedWidth\"\n [igxColumnMovingDrop]=\"headerContainer\"></span>\n </ng-container>\n\n <!-- Row dragging area -->\n <ng-container *ngIf=\"grid.rowDraggable\">\n <div #headerDragContainer class=\"igx-grid__drag-indicator igx-grid__tr-action\" (pointerdown)=\"$event.preventDefault()\" [class.igx-grid__drag-indicator--header]=\"!grid.isRowSelectable\">\n <div style=\"visibility: hidden;\">\n <ng-container *ngTemplateOutlet=\"grid.dragIndicatorIconTemplate || grid.dragIndicatorIconBase\"></ng-container>\n </div>\n </div>\n </ng-container>\n\n <!-- Row selectors area -->\n <ng-container *ngIf=\"grid.showRowSelectors\">\n <div #headerSelectorContainer class=\"igx-grid__cbx-selection igx-grid__tr-action\"\n [class.igx-grid__cbx-selection--push]=\"grid.filteringService.isFilterRowVisible\"\n (click)=\"headerRowSelection($event)\"\n (pointerdown)=\"$event.preventDefault()\">\n <ng-container #headSelector\n *ngTemplateOutlet=\"grid.headSelectorTemplate || headSelectorBaseTemplate; context: rowSelectorsContext\">\n </ng-container>\n </div>\n </ng-container>\n\n <!-- Hierarchical grids expand all area -->\n <ng-container *ngIf=\"isHierarchicalGrid\">\n <div #headerHierarchyExpander\n (click)=\"grid.toggleAll()\"\n (pointerdown)=\"$event.preventDefault()\"\n [hidden]=\"!grid.hasExpandableChildren || !grid.hasVisibleColumns\"\n [ngClass]=\"{\n 'igx-grid__hierarchical-expander igx-grid__hierarchical-expander--header igx-grid__tr-action': grid.hasExpandableChildren,\n 'igx-grid__hierarchical-expander--push': grid.filteringService.isFilterRowVisible,\n 'igx-grid__hierarchical-expander--no-border': grid.isRowSelectable || grid.rowDraggable\n }\">\n <ng-container *ngTemplateOutlet=\"grid.iconTemplate; context: { $implicit: grid }\"></ng-container>\n </div>\n </ng-container>\n\n\n <!-- Grouping icon toggle area -->\n <ng-container *ngIf=\"grid?.groupingExpressions?.length\">\n <div #headerGroupContainer class=\"{{ indentationCSSClasses }}\"\n (click)=\"grid.toggleAllGroupRows()\"\n (pointerdown)=\"$event.preventDefault()\">\n <ng-container *ngTemplateOutlet=\"grid.iconTemplate\"></ng-container>\n </div>\n </ng-container>\n\n <!-- Pinned columns collection from the start -->\n <ng-container *ngIf=\"pinnedColumnCollection.length && grid.isPinningToStart\">\n <ng-container *ngFor=\"let column of pinnedColumnCollection | igxTopLevel\">\n <igx-grid-header-group\n [ngClass]=\"column.headerGroupClasses\"\n [ngStyle]=\"column.headerGroupStyles | igxHeaderGroupStyle:column:grid.pipeTrigger\"\n [column]=\"column\"\n [style.min-width]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\"\n [style.flex-basis]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\">\n </igx-grid-header-group>\n </ng-container>\n </ng-container>\n\n <!-- Unpinned columns collection -->\n <ng-template igxGridFor #headerVirtualContainer let-column\n [igxGridForOf]=\"unpinnedColumnCollection | igxTopLevel\"\n [igxForScrollContainer]=\"grid.parentVirtDir\"\n [igxForContainerSize]=\"grid.unpinnedWidth\"\n [igxForTrackBy]=\"grid.trackColumnChanges\"\n [igxForSizePropName]=\"'calcPixelWidth'\"\n [igxForScrollOrientation]=\"'horizontal'\"\n >\n <igx-grid-header-group\n [ngClass]=\"column.headerGroupClasses\"\n [ngStyle]=\"column.headerGroupStyles |igxHeaderGroupStyle:column:grid.pipeTrigger\"\n [column]=\"column\"\n [style.min-width]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\"\n [style.flex-basis]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\">\n </igx-grid-header-group>\n </ng-template>\n\n <!-- Pinned columns collection at the end -->\n <ng-container *ngIf=\"pinnedColumnCollection.length && !grid.isPinningToStart\">\n <ng-container *ngFor=\"let column of pinnedColumnCollection | igxTopLevel\">\n <igx-grid-header-group\n [ngClass]=\"column.headerGroupClasses\"\n [ngStyle]=\"column.headerGroupStyles |igxHeaderGroupStyle:column:grid.pipeTrigger\"\n [column]=\"column\"\n [style.min-width]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\"\n [style.flex-basis]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\"\n [style.left]=\"column.rightPinnedOffset\">\n </igx-grid-header-group>\n </ng-container>\n </ng-container>\n </div>\n\n <!-- Filter row area -->\n <ng-container *ngIf=\"grid.filteringService.isFilterRowVisible\">\n <igx-grid-filtering-row #filteringRow\n [column]=\"grid.filteringService.filteredColumn\"\n [style.width.px]=\"width\">\n </igx-grid-filtering-row>\n </ng-container>\n\n <!-- Right column moving area -->\n <ng-container *ngIf=\"grid.hasMovableColumns && grid.columnInDrag\">\n <span id=\"right\" class=\"igx-grid__scroll-on-drag-right\" droppable=\"true\" [igxColumnMovingDrop]=\"headerContainer\"></span>\n </ng-container>\n</div>\n\n<!-- Header thumb area -->\n<div class=\"igx-grid-thead__thumb\" [hidden]=\"!grid.hasVerticalScroll()\" [style.width.px]=\"grid.scrollSize\"></div>\n\n<!-- Default row selection header checkbox template -->\n<ng-template #headSelectorBaseTemplate igxHeadSelector let-context>\n <div class=\"igx-grid__cbx-padding\">\n <igx-checkbox\n [tabindex]=\"-1\"\n [readonly]=\"true\"\n [checked]=\"context.selectedCount > 0 && context.totalCount === context.selectedCount\"\n [disableRipple]=\"true\"\n [ngStyle]=\"{'visibility': grid.isMultiRowSelectionEnabled? 'visible' : 'hidden' }\"\n [indeterminate]=\"context.selectedCount > 0 && context.selectedCount !== context.totalCount\"\n [aria-label]=\"grid.headSelectorBaseAriaLabel\"\n #headerCheckbox>\n </igx-checkbox>\n </div>\n</ng-template>\n"
54088
+ template: "<div role=\"rowgroup\" class=\"igx-grid-thead__wrapper\" [style.width.px]=\"width\"\n [class.igx-grid__tr--mrl]=\"hasMRL\">\n\n <!-- Column headers area -->\n <div class=\"igx-grid__tr\" role=\"row\" [style.width.px]=\"width\">\n\n <!-- Left column moving area -->\n <ng-container *ngIf=\"grid.hasMovableColumns && grid.columnInDrag && pinnedColumnCollection.length <= 0\">\n <span id=\"left\" class=\"igx-grid__scroll-on-drag-left\" droppable=\"true\" [style.left.px]=\"grid.pinnedWidth\"\n [igxColumnMovingDrop]=\"headerContainer\"></span>\n </ng-container>\n <ng-container *ngIf=\"grid.hasMovableColumns && grid.columnInDrag && pinnedColumnCollection.length > 0\">\n <span id=\"left\" class=\"igx-grid__scroll-on-drag-pinned\" droppable=\"true\" [style.left.px]=\"grid.pinnedWidth\"\n [igxColumnMovingDrop]=\"headerContainer\"></span>\n </ng-container>\n\n <!-- Row dragging area -->\n <ng-container *ngIf=\"grid.rowDraggable\">\n <div #headerDragContainer class=\"igx-grid__drag-indicator igx-grid__tr-action\" (pointerdown)=\"$event.preventDefault()\" [class.igx-grid__drag-indicator--header]=\"!grid.isRowSelectable\">\n <div style=\"visibility: hidden;\">\n <ng-container *ngTemplateOutlet=\"grid.dragIndicatorIconTemplate || grid.dragIndicatorIconBase\"></ng-container>\n </div>\n </div>\n </ng-container>\n\n <!-- Row selectors area -->\n <ng-container *ngIf=\"grid.showRowSelectors\">\n <div #headerSelectorContainer class=\"igx-grid__cbx-selection igx-grid__tr-action\"\n [class.igx-grid__cbx-selection--push]=\"grid.filteringService.isFilterRowVisible\"\n (click)=\"headerRowSelection($event)\"\n (pointerdown)=\"$event.preventDefault()\">\n <ng-container #headSelector\n *ngTemplateOutlet=\"grid.headSelectorTemplate || headSelectorBaseTemplate; context: rowSelectorsContext\">\n </ng-container>\n </div>\n </ng-container>\n\n <!-- Hierarchical grids expand all area -->\n <ng-container *ngIf=\"isHierarchicalGrid\">\n <div #headerHierarchyExpander\n (click)=\"grid.toggleAll()\"\n (pointerdown)=\"$event.preventDefault()\"\n [hidden]=\"!grid.hasExpandableChildren || !grid.hasVisibleColumns\"\n [ngClass]=\"{\n 'igx-grid__hierarchical-expander igx-grid__hierarchical-expander--header igx-grid__tr-action': grid.hasExpandableChildren,\n 'igx-grid__hierarchical-expander--push': grid.filteringService.isFilterRowVisible,\n 'igx-grid__hierarchical-expander--no-border': grid.isRowSelectable || grid.rowDraggable\n }\">\n <ng-container *ngTemplateOutlet=\"grid.iconTemplate; context: { $implicit: grid }\"></ng-container>\n </div>\n </ng-container>\n\n\n <!-- Grouping icon toggle area -->\n <ng-container *ngIf=\"grid?.groupingExpressions?.length\">\n <div #headerGroupContainer class=\"{{ indentationCSSClasses }}\"\n (click)=\"grid.toggleAllGroupRows()\"\n (pointerdown)=\"$event.preventDefault()\">\n <ng-container *ngTemplateOutlet=\"grid.iconTemplate\"></ng-container>\n </div>\n </ng-container>\n\n <!-- Pinned columns collection from the start -->\n <ng-container *ngIf=\"pinnedColumnCollection.length && grid.isPinningToStart\">\n <ng-container *ngFor=\"let column of pinnedColumnCollection | igxTopLevel\">\n <igx-grid-header-group\n [ngClass]=\"column.headerGroupClasses\"\n [ngStyle]=\"column.headerGroupStyles | igxHeaderGroupStyle:column:grid.pipeTrigger\"\n [column]=\"column\"\n [style.min-width]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\"\n [style.flex-basis]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\">\n </igx-grid-header-group>\n </ng-container>\n </ng-container>\n\n <!-- Unpinned columns collection -->\n <ng-template igxGridFor #headerVirtualContainer let-column\n [igxGridForOf]=\"unpinnedColumnCollection | igxTopLevel\"\n [igxForScrollContainer]=\"grid.parentVirtDir\"\n [igxForContainerSize]=\"grid.unpinnedWidth\"\n [igxForTrackBy]=\"grid.trackColumnChanges\"\n [igxForSizePropName]=\"'calcPixelWidth'\"\n [igxForScrollOrientation]=\"'horizontal'\"\n >\n <igx-grid-header-group\n [ngClass]=\"column.headerGroupClasses\"\n [ngStyle]=\"column.headerGroupStyles |igxHeaderGroupStyle:column:grid.pipeTrigger\"\n [column]=\"column\"\n [style.min-width]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\"\n [style.flex-basis]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\">\n </igx-grid-header-group>\n </ng-template>\n\n <!-- Pinned columns collection at the end -->\n <ng-container *ngIf=\"pinnedColumnCollection.length && !grid.isPinningToStart\">\n <ng-container *ngFor=\"let column of pinnedColumnCollection | igxTopLevel\">\n <igx-grid-header-group\n [ngClass]=\"column.headerGroupClasses\"\n [ngStyle]=\"column.headerGroupStyles |igxHeaderGroupStyle:column:grid.pipeTrigger\"\n [column]=\"column\"\n [style.min-width]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\"\n [style.flex-basis]=\"column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL\"\n [style.left]=\"column.rightPinnedOffset\">\n </igx-grid-header-group>\n </ng-container>\n </ng-container>\n </div>\n\n <!-- Filter row area -->\n <ng-container *ngIf=\"grid.filteringService.isFilterRowVisible\">\n <igx-grid-filtering-row #filteringRow\n [column]=\"grid.filteringService.filteredColumn\"\n [style.width.px]=\"width\">\n </igx-grid-filtering-row>\n </ng-container>\n\n <!-- Right column moving area -->\n <ng-container *ngIf=\"grid.hasMovableColumns && grid.columnInDrag\">\n <span id=\"right\" class=\"igx-grid__scroll-on-drag-right\" droppable=\"true\" [igxColumnMovingDrop]=\"headerContainer\"></span>\n </ng-container>\n</div>\n\n<!-- Header thumb area -->\n<div class=\"igx-grid-thead__thumb\" [hidden]=\"!grid.hasVerticalScroll()\" [style.width.px]=\"grid.scrollSize\"></div>\n\n<!-- Default row selection header checkbox template -->\n<ng-template #headSelectorBaseTemplate igxHeadSelector let-context>\n <div class=\"igx-grid__cbx-padding\">\n <igx-checkbox\n [tabindex]=\"-1\"\n [readonly]=\"true\"\n [checked]=\"context.selectedCount > 0 && context.totalCount === context.selectedCount\"\n [disableRipple]=\"true\"\n [ngStyle]=\"{'visibility': grid.isMultiRowSelectionEnabled? 'visible' : 'hidden' }\"\n [indeterminate]=\"context.selectedCount > 0 && context.selectedCount !== context.totalCount\"\n [aria-label]=\"grid.headSelectorBaseAriaLabel\"\n #headerCheckbox>\n </igx-checkbox>\n </div>\n</ng-template>\n"
54210
54089
  },] }
54211
54090
  ];
54212
54091
  IgxGridHeaderRowComponent.ctorParameters = function () { return [
@@ -54390,9 +54269,10 @@
54390
54269
  */
54391
54270
  _this.gridScroll = new i0.EventEmitter();
54392
54271
  /**
54272
+ * @deprecated in version 12.1.0. Use the corresponding output exposed by the `igx-paginator` component instead
54273
+ *
54393
54274
  * Emitted after the current page is changed.
54394
54275
  *
54395
- * @deprecated in version 12.1.0
54396
54276
  * @example
54397
54277
  * ```html
54398
54278
  * <igx-grid (pageChange)="onPageChange($event)"></igx-grid>
@@ -54405,10 +54285,10 @@
54405
54285
  */
54406
54286
  _this.pageChange = new i0.EventEmitter();
54407
54287
  /**
54288
+ * @deprecated in version 12.1.0. Use the corresponding output exposed by the `igx-paginator` component instead
54289
+ *
54408
54290
  * Emitted when `perPage` property value of the grid is changed.
54409
54291
  *
54410
- * @deprecated in version 12.1.0
54411
- * @example
54412
54292
  * ```html
54413
54293
  * <igx-grid #grid (perPageChange)="onPerPageChange($event)" [autoGenerate]="true"></igx-grid>
54414
54294
  * ```
@@ -54425,6 +54305,8 @@
54425
54305
  */
54426
54306
  _this.class = '';
54427
54307
  /**
54308
+ * @deprecated in version 12.2.0. We suggest using `rowClasses` property instead
54309
+ *
54428
54310
  * Gets/Sets the styling classes applied to all even `IgxGridRowComponent`s in the grid.
54429
54311
  *
54430
54312
  * @example
@@ -54434,6 +54316,8 @@
54434
54316
  */
54435
54317
  _this.evenRowCSS = 'igx-grid__tr--even';
54436
54318
  /**
54319
+ * @deprecated in version 12.2.0. We suggest using `rowClasses` property instead
54320
+ *
54437
54321
  * Gets/Sets the styling classes applied to all odd `IgxGridRowComponent`s in the grid.
54438
54322
  *
54439
54323
  * @example
@@ -54688,9 +54572,10 @@
54688
54572
  */
54689
54573
  _this.filteringDone = new i0.EventEmitter();
54690
54574
  /**
54575
+ * @deprecated in version 12.1.0. Use the corresponding output exposed by the `igx-paginator` component instead
54576
+ *
54691
54577
  * Emitted after paging is performed.
54692
54578
  *
54693
- * @deprecated in version 12.1.x
54694
54579
  * @remarks
54695
54580
  * Returns an object consisting of the previous and next pages.
54696
54581
  * @example
@@ -55394,9 +55279,10 @@
55394
55279
  });
55395
55280
  Object.defineProperty(IgxGridBaseDirective.prototype, "paging", {
55396
55281
  /**
55282
+ * @deprecated in version 12.1.0. Use the corresponding method exposed by the `igx-paginator`
55283
+ *
55397
55284
  * Gets/Sets whether the paging feature is enabled.
55398
55285
  *
55399
- * @deprecated in version 12.1.x
55400
55286
  * @remarks
55401
55287
  * The default state is disabled (false).
55402
55288
  * @example
@@ -55418,9 +55304,10 @@
55418
55304
  });
55419
55305
  Object.defineProperty(IgxGridBaseDirective.prototype, "page", {
55420
55306
  /**
55307
+ * @deprecated in version 12.1.0. Use `page` property form `paginator` component instead
55308
+ *
55421
55309
  * Gets/Sets the current page index.
55422
55310
  *
55423
- * @deprecated in version 12.1.x
55424
55311
  * @example
55425
55312
  * ```html
55426
55313
  * <igx-grid #grid [data]="Data" [autoGenerate]="true">
@@ -55444,9 +55331,10 @@
55444
55331
  });
55445
55332
  Object.defineProperty(IgxGridBaseDirective.prototype, "perPage", {
55446
55333
  /**
55334
+ * @deprecated in version 12.1.0. Use `perPage` property from `paginator` component instead
55335
+ *
55447
55336
  * Gets/Sets the number of visible items per page.
55448
55337
  *
55449
- * @deprecated in version 12.1.x
55450
55338
  * @remarks
55451
55339
  * The default is 15.
55452
55340
  * @example
@@ -55471,9 +55359,10 @@
55471
55359
  });
55472
55360
  Object.defineProperty(IgxGridBaseDirective.prototype, "columnHiding", {
55473
55361
  /**
55362
+ * @deprecated in version 10.1.0
55363
+ *
55474
55364
  * Gets/Sets whether the column hiding UI is enabled.
55475
55365
  *
55476
- * @deprecated
55477
55366
  * @remarks
55478
55367
  * By default it is disabled (false). In order for the UI to work, you need to enable the toolbar as shown in the example below.
55479
55368
  * @example
@@ -55724,9 +55613,9 @@
55724
55613
  });
55725
55614
  Object.defineProperty(IgxGridBaseDirective.prototype, "columnHidingTitle", {
55726
55615
  /**
55727
- * Gets/Sets the title to be displayed in the built-in column hiding UI.
55616
+ * @deprecated in version 10.1.0
55728
55617
  *
55729
- * @deprecated
55618
+ * Gets/Sets the title to be displayed in the built-in column hiding UI.
55730
55619
  *
55731
55620
  * @example
55732
55621
  * ```html
@@ -55776,9 +55665,9 @@
55776
55665
  });
55777
55666
  Object.defineProperty(IgxGridBaseDirective.prototype, "columnPinning", {
55778
55667
  /**
55779
- * Gets/Sets if the built-in column pinning UI should be shown in the toolbar.
55668
+ * @deprecated in version 10.1.0
55780
55669
  *
55781
- * @deprecated
55670
+ * Gets/Sets if the built-in column pinning UI should be shown in the toolbar.
55782
55671
  *
55783
55672
  * @example
55784
55673
  * ```html
@@ -55797,9 +55686,9 @@
55797
55686
  });
55798
55687
  Object.defineProperty(IgxGridBaseDirective.prototype, "columnPinningTitle", {
55799
55688
  /**
55800
- * Gets/Sets the title to be displayed in the UI of the column pinning.
55689
+ * @deprecated in version 10.1.0
55801
55690
  *
55802
- * @deprecated
55691
+ * Gets/Sets the title to be displayed in the UI of the column pinning.
55803
55692
  *
55804
55693
  * @example
55805
55694
  * ```html
@@ -56402,9 +56291,9 @@
56402
56291
  });
56403
56292
  Object.defineProperty(IgxGridBaseDirective.prototype, "hiddenColumnsText", {
56404
56293
  /**
56405
- * Gets/Sets the text to be displayed inside the toggle button.
56294
+ * @deprecated in version 10.1.0
56406
56295
  *
56407
- * @deprecated
56296
+ * Gets/Sets the text to be displayed inside the toggle button.
56408
56297
  *
56409
56298
  * @remarks
56410
56299
  * Used for the built-in column hiding UI of the`IgxColumnComponent`.
@@ -56413,7 +56302,6 @@
56413
56302
  * <igx-grid [columnHiding]="true" [showToolbar]="true" [hiddenColumnsText]="'Hidden Columns'"></igx-grid>
56414
56303
  * ```
56415
56304
  */
56416
- // @DeprecateProperty('`hiddenColumnsText` is deprecated')
56417
56305
  get: function () {
56418
56306
  return this._hiddenColumnsText;
56419
56307
  },
@@ -56426,9 +56314,9 @@
56426
56314
  });
56427
56315
  Object.defineProperty(IgxGridBaseDirective.prototype, "pinnedColumnsText", {
56428
56316
  /**
56429
- * Gets/Sets the text to be displayed inside the toggle button.
56317
+ * @deprecated in version 10.1.0
56430
56318
  *
56431
- * @deprecated
56319
+ * Gets/Sets the text to be displayed inside the toggle button.
56432
56320
  *
56433
56321
  * @remarks
56434
56322
  * Used for the built-in column pinning UI of the`IgxColumnComponent`.
@@ -56522,9 +56410,9 @@
56522
56410
  });
56523
56411
  Object.defineProperty(IgxGridBaseDirective.prototype, "showToolbar", {
56524
56412
  /**
56525
- * Gets/Sets whether the toolbar is shown.
56413
+ * @deprecated in version 11.0.0
56526
56414
  *
56527
- * @deprecated
56415
+ * Gets/Sets whether the toolbar is shown.
56528
56416
  *
56529
56417
  * @example
56530
56418
  * ```html
@@ -56542,9 +56430,9 @@
56542
56430
  });
56543
56431
  Object.defineProperty(IgxGridBaseDirective.prototype, "toolbarTitle", {
56544
56432
  /**
56545
- * Gets/Sets the toolbar's title.
56433
+ * @deprecated in version 11.0.0
56546
56434
  *
56547
- * @deprecated
56435
+ * Gets/Sets the toolbar's title.
56548
56436
  *
56549
56437
  * @example
56550
56438
  * ```html
@@ -56563,9 +56451,9 @@
56563
56451
  });
56564
56452
  Object.defineProperty(IgxGridBaseDirective.prototype, "exportExcel", {
56565
56453
  /**
56566
- * Gets/Sets whether exporting to MS Excel is enabled or disabled.
56454
+ * @deprecated `exportExcel` is deprecated
56567
56455
  *
56568
- * @deprecated
56456
+ * Gets/Sets whether exporting to MS Excel is enabled or disabled.
56569
56457
  *
56570
56458
  * @example
56571
56459
  * ```html
@@ -56584,9 +56472,9 @@
56584
56472
  });
56585
56473
  Object.defineProperty(IgxGridBaseDirective.prototype, "exportCsv", {
56586
56474
  /**
56587
- * Gets/Sets whether the option for exporting to CSV is enabled or disabled.
56475
+ * @deprecated `exportCsv` is deprecated
56588
56476
  *
56589
- * @deprecated
56477
+ * Gets/Sets whether the option for exporting to CSV is enabled or disabled.
56590
56478
  *
56591
56479
  * ```html
56592
56480
  * <igx-grid [data]="localData" [showToolbar]="true" [autoGenerate]="true" [exportCsv]="true"></igx-grid>
@@ -56604,9 +56492,9 @@
56604
56492
  });
56605
56493
  Object.defineProperty(IgxGridBaseDirective.prototype, "exportText", {
56606
56494
  /**
56607
- * Gets/Sets the textual content for the main export button.
56495
+ * @deprecated `exportText` is deprecated
56608
56496
  *
56609
- * @deprecated
56497
+ * Gets/Sets the textual content for the main export button.
56610
56498
  *
56611
56499
  * @example
56612
56500
  * ```html
@@ -56625,9 +56513,9 @@
56625
56513
  });
56626
56514
  Object.defineProperty(IgxGridBaseDirective.prototype, "exportExcelText", {
56627
56515
  /**
56628
- * Gets/Sets the textual content for the MS Excel export button.
56516
+ * @deprecated `exportExcelText` is deprecated
56629
56517
  *
56630
- * @deprecated
56518
+ * Gets/Sets the textual content for the MS Excel export button.
56631
56519
  *
56632
56520
  * ```html
56633
56521
  * <igx-grid [exportExcelText]="'My Excel Exporter" [showToolbar]="true" [exportText]="'My Exporter'" [exportCsv]="true"></igx-grid>
@@ -56645,9 +56533,9 @@
56645
56533
  });
56646
56534
  Object.defineProperty(IgxGridBaseDirective.prototype, "exportCsvText", {
56647
56535
  /**
56648
- * Gets/Sets the textual content for the CSV export button.
56536
+ * @deprecated `exportCsvText` is deprecated
56649
56537
  *
56650
- * @deprecated
56538
+ * Gets/Sets the textual content for the CSV export button.
56651
56539
  *
56652
56540
  * @example
56653
56541
  * ```html
@@ -57913,9 +57801,10 @@
57913
57801
  });
57914
57802
  Object.defineProperty(IgxGridBaseDirective.prototype, "totalPages", {
57915
57803
  /**
57804
+ * @deprecated in version 12.1.0. Use the corresponding property exposed by the `igx-paginator`
57805
+ *
57916
57806
  * Gets the total number of pages.
57917
57807
  *
57918
- * @deprecated in version 12.1.0
57919
57808
  * @example
57920
57809
  * ```typescript
57921
57810
  * const totalPages = this.grid.totalPages;
@@ -57930,9 +57819,10 @@
57930
57819
  });
57931
57820
  Object.defineProperty(IgxGridBaseDirective.prototype, "isFirstPage", {
57932
57821
  /**
57822
+ * @deprecated in version 12.1.0. Use the corresponding property exposed by the `igx-paginator`
57823
+ *
57933
57824
  * Gets if the current page is the first page.
57934
57825
  *
57935
- * @deprecated in version 12.1.0
57936
57826
  * @example
57937
57827
  * ```typescript
57938
57828
  * const firstPage = this.grid.isFirstPage;
@@ -57945,9 +57835,10 @@
57945
57835
  configurable: true
57946
57836
  });
57947
57837
  /**
57838
+ * @deprecated in version 12.1.0. Use the corresponding method exposed by the `igx-paginator`
57839
+ *
57948
57840
  * Goes to the next page, if the grid is not already at the last page.
57949
57841
  *
57950
- * @deprecated in version 12.1.0
57951
57842
  * @example
57952
57843
  * ```typescript
57953
57844
  * this.grid1.nextPage();
@@ -57959,9 +57850,10 @@
57959
57850
  (_a = this.paginator) === null || _a === void 0 ? void 0 : _a.nextPage();
57960
57851
  };
57961
57852
  /**
57853
+ * @deprecated in version 12.1.0. Use the corresponding method exposed by the `igx-paginator`
57854
+ *
57962
57855
  * Goes to the previous page, if the grid is not already at the first page.
57963
57856
  *
57964
- * @deprecated in version 12.1.0
57965
57857
  * @example
57966
57858
  * ```typescript
57967
57859
  * this.grid1.previousPage();
@@ -58002,9 +57894,10 @@
58002
57894
  });
58003
57895
  Object.defineProperty(IgxGridBaseDirective.prototype, "isLastPage", {
58004
57896
  /**
57897
+ * @deprecated in version 12.1.0. Use the corresponding property exposed by the `igx-paginator`
57898
+ *
58005
57899
  * Returns if the current page is the last page.
58006
57900
  *
58007
- * @deprecated in version 12.1.0
58008
57901
  * @example
58009
57902
  * ```typescript
58010
57903
  * const lastPage = this.grid.isLastPage;
@@ -58121,6 +58014,8 @@
58121
58014
  this._columnsReordered(column);
58122
58015
  };
58123
58016
  /**
58017
+ * @deprecated in version 12.1.0. Use the corresponding method exposed by the `igx-paginator`
58018
+ *
58124
58019
  * Goes to the desired page index.
58125
58020
  *
58126
58021
  * @example
@@ -61411,24 +61306,9 @@
61411
61306
  totalRecords: [{ type: i0.Input }],
61412
61307
  selectRowOnClick: [{ type: i0.Input }]
61413
61308
  };
61414
- __decorate([
61415
- DeprecateProperty('`pageChange` is deprecated. Use the corresponding output exposed by the `igx-paginator` component instead.')
61416
- ], IgxGridBaseDirective.prototype, "pageChange", void 0);
61417
- __decorate([
61418
- DeprecateProperty('`perPageChange` is deprecated. Use the corresponding output exposed by the `igx-paginator` component instead.')
61419
- ], IgxGridBaseDirective.prototype, "perPageChange", void 0);
61420
- __decorate([
61421
- DeprecateProperty('`evenRowCSS` is deprecated. We suggest using `rowClasses` property instead.')
61422
- ], IgxGridBaseDirective.prototype, "evenRowCSS", void 0);
61423
- __decorate([
61424
- DeprecateProperty('`oddRowCSS` is deprecated. We suggest using `rowClasses` property instead.')
61425
- ], IgxGridBaseDirective.prototype, "oddRowCSS", void 0);
61426
61309
  __decorate([
61427
61310
  WatchChanges()
61428
61311
  ], IgxGridBaseDirective.prototype, "primaryKey", void 0);
61429
- __decorate([
61430
- DeprecateProperty('`pagingDone` is deprecated. Use the corresponding output exposed by the `igx-paginator` component instead.')
61431
- ], IgxGridBaseDirective.prototype, "pagingDone", void 0);
61432
61312
  __decorate([
61433
61313
  WatchChanges()
61434
61314
  ], IgxGridBaseDirective.prototype, "filteringLogic", null);
@@ -61438,18 +61318,6 @@
61438
61318
  __decorate([
61439
61319
  WatchChanges()
61440
61320
  ], IgxGridBaseDirective.prototype, "advancedFilteringExpressionsTree", null);
61441
- __decorate([
61442
- DeprecateProperty('`paging` is deprecated')
61443
- ], IgxGridBaseDirective.prototype, "paging", null);
61444
- __decorate([
61445
- DeprecateProperty('`page` is deprecated. Use `page` property form `paginator` component instead.')
61446
- ], IgxGridBaseDirective.prototype, "page", null);
61447
- __decorate([
61448
- DeprecateProperty('`perPage` is deprecated. Use `perPage` property from `paginator` component instead.')
61449
- ], IgxGridBaseDirective.prototype, "perPage", null);
61450
- __decorate([
61451
- DeprecateProperty('`columnHiding` is deprecated.')
61452
- ], IgxGridBaseDirective.prototype, "columnHiding", null);
61453
61321
  __decorate([
61454
61322
  WatchChanges()
61455
61323
  ], IgxGridBaseDirective.prototype, "hideRowSelectors", null);
@@ -61471,42 +61339,9 @@
61471
61339
  __decorate([
61472
61340
  WatchChanges()
61473
61341
  ], IgxGridBaseDirective.prototype, "isLoading", null);
61474
- __decorate([
61475
- DeprecateProperty('`columnHidingTitle` is deprecated')
61476
- ], IgxGridBaseDirective.prototype, "columnHidingTitle", null);
61477
- __decorate([
61478
- DeprecateProperty('`columnPinning` is deprecated')
61479
- ], IgxGridBaseDirective.prototype, "columnPinning", null);
61480
- __decorate([
61481
- DeprecateProperty('`columnPinningTitle` is deprecated')
61482
- ], IgxGridBaseDirective.prototype, "columnPinningTitle", null);
61483
61342
  __decorate([
61484
61343
  WatchChanges()
61485
61344
  ], IgxGridBaseDirective.prototype, "sortingExpressions", null);
61486
- __decorate([
61487
- DeprecateProperty('`pinnedColumnsText` is deprecated')
61488
- ], IgxGridBaseDirective.prototype, "pinnedColumnsText", null);
61489
- __decorate([
61490
- DeprecateProperty('`showToolbar` is deprecated')
61491
- ], IgxGridBaseDirective.prototype, "showToolbar", null);
61492
- __decorate([
61493
- DeprecateProperty('`toolbarTitle` is deprecated')
61494
- ], IgxGridBaseDirective.prototype, "toolbarTitle", null);
61495
- __decorate([
61496
- DeprecateProperty('`exportExcel` is deprecated')
61497
- ], IgxGridBaseDirective.prototype, "exportExcel", null);
61498
- __decorate([
61499
- DeprecateProperty('`exportCsv` is deprecated')
61500
- ], IgxGridBaseDirective.prototype, "exportCsv", null);
61501
- __decorate([
61502
- DeprecateProperty('`exportText` is deprecated')
61503
- ], IgxGridBaseDirective.prototype, "exportText", null);
61504
- __decorate([
61505
- DeprecateProperty('`exportExcelText` is deprecated')
61506
- ], IgxGridBaseDirective.prototype, "exportExcelText", null);
61507
- __decorate([
61508
- DeprecateProperty('`exportCsvText` is deprecated')
61509
- ], IgxGridBaseDirective.prototype, "exportCsvText", null);
61510
61345
  __decorate([
61511
61346
  WatchChanges()
61512
61347
  ], IgxGridBaseDirective.prototype, "cellSelection", null);
@@ -61516,24 +61351,6 @@
61516
61351
  __decorate([
61517
61352
  WatchChanges()
61518
61353
  ], IgxGridBaseDirective.prototype, "columnSelection", null);
61519
- __decorate([
61520
- DeprecateProperty('`totalPages` is deprecated. Use the corresponding property exposed by the `igx-paginator`.')
61521
- ], IgxGridBaseDirective.prototype, "totalPages", null);
61522
- __decorate([
61523
- DeprecateProperty('`isFirstPage` is deprecated. Use the corresponding property exposed by the `igx-paginator`.')
61524
- ], IgxGridBaseDirective.prototype, "isFirstPage", null);
61525
- __decorate([
61526
- DeprecateMethod('Use the corresponding method exposed by the `igx-paginator`.')
61527
- ], IgxGridBaseDirective.prototype, "nextPage", null);
61528
- __decorate([
61529
- DeprecateMethod('Use the corresponding method exposed by the `igx-paginator`.')
61530
- ], IgxGridBaseDirective.prototype, "previousPage", null);
61531
- __decorate([
61532
- DeprecateProperty('`isLastPage` is deprecated. Use the corresponding property exposed by the `igx-paginator`.')
61533
- ], IgxGridBaseDirective.prototype, "isLastPage", null);
61534
- __decorate([
61535
- DeprecateMethod('Use the corresponding method exposed by the `igx-paginator`.')
61536
- ], IgxGridBaseDirective.prototype, "paginate", null);
61537
61354
  __decorate([
61538
61355
  WatchChanges()
61539
61356
  ], IgxGridBaseDirective.prototype, "selectRowOnClick", null);
@@ -61596,7 +61413,7 @@
61596
61413
  });
61597
61414
  Object.defineProperty(BaseRow.prototype, "rowData", {
61598
61415
  /**
61599
- * @deprecated Use 'data' instead.
61416
+ * @deprecated Use 'data' instead
61600
61417
  *
61601
61418
  * The data record that populates the row
61602
61419
  */
@@ -61608,8 +61425,7 @@
61608
61425
  });
61609
61426
  Object.defineProperty(BaseRow.prototype, "rowID", {
61610
61427
  /**
61611
- * @deprecated Use 'key' instead.
61612
- *
61428
+ * @deprecated Use 'key' instead
61613
61429
  */
61614
61430
  get: function () {
61615
61431
  return this.key;
@@ -61815,12 +61631,6 @@
61815
61631
  };
61816
61632
  return BaseRow;
61817
61633
  }());
61818
- __decorate([
61819
- DeprecateProperty("'rowData' property is deprecated. Use 'data' instead.")
61820
- ], BaseRow.prototype, "rowData", null);
61821
- __decorate([
61822
- DeprecateProperty("'rowID' property is deprecated. Use 'key' instead.")
61823
- ], BaseRow.prototype, "rowID", null);
61824
61634
  var IgxGridRow = /** @class */ (function (_super) {
61825
61635
  __extends(IgxGridRow, _super);
61826
61636
  /**
@@ -63063,17 +62873,6 @@
63063
62873
  enumerable: false,
63064
62874
  configurable: true
63065
62875
  });
63066
- /**
63067
- * @deprecated
63068
- * Gets whether the cell is selected.
63069
- * ```typescript
63070
- * let isCellSelected = thid.cell.isCellSelected();
63071
- * ```
63072
- * @memberof IgxGridCellComponent
63073
- */
63074
- IgxGridCellComponent.prototype.isCellSelected = function () {
63075
- return this.selectionService.selected(this.selectionNode);
63076
- };
63077
62876
  /**
63078
62877
  * @hidden
63079
62878
  * @internal
@@ -63385,9 +63184,6 @@
63385
63184
  onClick: [{ type: i0.HostListener, args: ['click', ['$event'],] }],
63386
63185
  onContextMenu: [{ type: i0.HostListener, args: ['contextmenu', ['$event'],] }]
63387
63186
  };
63388
- __decorate([
63389
- DeprecateMethod("'isCellSelected' is deprecated. Use 'selected' property instead.")
63390
- ], IgxGridCellComponent.prototype, "isCellSelected", null);
63391
63187
 
63392
63188
  var IgxGridFooterComponent = /** @class */ (function () {
63393
63189
  function IgxGridFooterComponent() {
@@ -63790,9 +63586,10 @@
63790
63586
  }
63791
63587
  Object.defineProperty(IgxColumnActionsComponent.prototype, "columns", {
63792
63588
  /**
63589
+ * @deprecated Use grid input instead.
63590
+ *
63793
63591
  * Gets the grid columns to provide an action for.
63794
63592
  *
63795
- * @deprecated
63796
63593
  * @example
63797
63594
  * ```typescript
63798
63595
  * let gridColumns = this.columnActions.columns;
@@ -64072,9 +63869,6 @@
64072
63869
  checkAllText: [{ type: i0.Input }],
64073
63870
  id: [{ type: i0.HostBinding, args: ['attr.id',] }, { type: i0.Input }]
64074
63871
  };
64075
- __decorate([
64076
- DeprecateProperty("Deprecated. Use 'grid' input instead.")
64077
- ], IgxColumnActionsComponent.prototype, "columns", null);
64078
63872
 
64079
63873
  /**
64080
63874
  * @hidden
@@ -68946,7 +68740,8 @@
68946
68740
  configurable: true
68947
68741
  });
68948
68742
  /**
68949
- * @deprecated
68743
+ * @deprecated in version 12.1.0. Use `getCellByColumn` or `getCellByKey` instead
68744
+ *
68950
68745
  * Returns a `CellType` object that matches the conditions.
68951
68746
  *
68952
68747
  * @example
@@ -69773,9 +69568,6 @@
69773
69568
  dropAreaMessage: [{ type: i0.Input }],
69774
69569
  showGroupArea: [{ type: i0.Input }]
69775
69570
  };
69776
- __decorate([
69777
- DeprecateMethod('`getCellByColumnVisibleIndex` is deprecated. Use `getCellByColumn` or `getCellByKey` instead')
69778
- ], IgxGridComponent.prototype, "getCellByColumnVisibleIndex", null);
69779
69571
 
69780
69572
  var IgxGridStateDirective = /** @class */ (function () {
69781
69573
  /**
@@ -72951,7 +72743,8 @@
72951
72743
  configurable: true
72952
72744
  });
72953
72745
  /**
72954
- * @deprecated
72746
+ * @deprecated in version 12.1.0. Use `getCellByColumn` or `getCellByKey` instead
72747
+ *
72955
72748
  * Returns a `CellType` object that matches the conditions.
72956
72749
  *
72957
72750
  * @example
@@ -73663,9 +73456,6 @@
73663
73456
  expansionDepth: [{ type: i0.Input }],
73664
73457
  rowLoadingIndicatorTemplate: [{ type: i0.Input }]
73665
73458
  };
73666
- __decorate([
73667
- DeprecateMethod('`getCellByColumnVisibleIndex` is deprecated. Use `getCellByColumn` or `getCellByKey` instead')
73668
- ], IgxTreeGridComponent.prototype, "getCellByColumnVisibleIndex", null);
73669
73459
 
73670
73460
  var IgxTreeGridRowComponent = /** @class */ (function (_super) {
73671
73461
  __extends(IgxTreeGridRowComponent, _super);
@@ -76163,7 +75953,8 @@
76163
75953
  configurable: true
76164
75954
  });
76165
75955
  /**
76166
- * @deprecated
75956
+ * @deprecated in version 12.1.0. Use `getCellByColumn` or `getCellByKey` instead
75957
+ *
76167
75958
  * Returns a `CellType` object that matches the conditions.
76168
75959
  *
76169
75960
  * @example
@@ -76859,9 +76650,6 @@
76859
76650
  data: [{ type: i0.Input }],
76860
76651
  expandChildren: [{ type: i0.Input }]
76861
76652
  };
76862
- __decorate([
76863
- DeprecateMethod('`getCellByColumnVisibleIndex` is deprecated. Use `getCellByColumn` or `getCellByKey` instead')
76864
- ], IgxHierarchicalGridComponent.prototype, "getCellByColumnVisibleIndex", null);
76865
76653
 
76866
76654
  var IgxHierarchicalGridCellComponent = /** @class */ (function (_super) {
76867
76655
  __extends(IgxHierarchicalGridCellComponent, _super);
@@ -81859,6 +81647,8 @@
81859
81647
  }
81860
81648
  Object.defineProperty(IgxToastComponent.prototype, "position", {
81861
81649
  /**
81650
+ * @deprecated in version 12.2.3. We suggest using `positionSettings` property instead
81651
+ *
81862
81652
  * Sets/gets the position of the toast.
81863
81653
  * If not set, the `position` attribute will have value `IgxToastPosition.Bottom`.
81864
81654
  * ```html
@@ -82015,9 +81805,6 @@
82015
81805
  position: [{ type: i0.Input }],
82016
81806
  positionSettings: [{ type: i0.Input }]
82017
81807
  };
82018
- __decorate([
82019
- DeprecateProperty('`position` is deprecated. We suggest using `positionSettings` property instead.')
82020
- ], IgxToastComponent.prototype, "position", null);
82021
81808
  /**
82022
81809
  * @hidden
82023
81810
  */
@@ -86274,185 +86061,183 @@
86274
86061
  exports.ɵ2 = ɵ2;
86275
86062
  exports.ɵa = IgxActionStripMenuItemDirective;
86276
86063
  exports.ɵb = IGX_DROPDOWN_BASE;
86277
- exports.ɵba = IgxGridActionButtonComponent;
86278
- exports.ɵbb = ToggleAnimationPlayer;
86279
- exports.ɵbc = IgxExpansionPanelTitleDirective;
86280
- exports.ɵbd = IgxExpansionPanelDescriptionDirective;
86281
- exports.ɵbe = IgxExpansionPanelIconDirective;
86282
- exports.ɵbf = IgxBannerActionsDirective;
86283
- exports.ɵbg = IgxDaysViewNavigationService;
86284
- exports.ɵbh = IgxDayItemComponent;
86285
- exports.ɵbi = IgxMonthViewSlotsCalendar;
86286
- exports.ɵbj = IgxGetViewDateCalendar;
86287
- exports.ɵbk = IgxCarouselIndicatorDirective;
86288
- exports.ɵbl = IgxCarouselNextButtonDirective;
86289
- exports.ɵbm = IgxCarouselPrevButtonDirective;
86290
- exports.ɵbn = IgxComboAPIService;
86291
- exports.ɵbo = IGX_COMBO_COMPONENT;
86292
- exports.ɵbq = IgxComboDropDownComponent;
86293
- exports.ɵbr = IgxComboItemComponent;
86294
- exports.ɵbs = IgxComboHeaderDirective;
86295
- exports.ɵbt = IgxComboFooterDirective;
86296
- exports.ɵbu = IgxComboItemDirective;
86297
- exports.ɵbv = IgxComboEmptyDirective;
86298
- exports.ɵbw = IgxComboHeaderItemDirective;
86299
- exports.ɵbx = IgxComboAddItemDirective;
86300
- exports.ɵby = IgxComboToggleIconDirective;
86301
- exports.ɵbz = IgxComboClearIconDirective;
86302
- exports.ɵca = IgxComboFilteringPipe;
86303
- exports.ɵcb = IgxComboGroupingPipe;
86304
- exports.ɵcc = IgxComboAddItemComponent;
86305
- exports.ɵcd = PickerBaseDirective;
86306
- exports.ɵce = IgxCalendarContainerComponent;
86307
- exports.ɵcf = IgxCalendarContainerModule;
86308
- exports.ɵcg = IgxDialogTitleDirective;
86309
- exports.ɵch = IgxDialogActionsDirective;
86310
- exports.ɵci = IgxCellCrudState;
86311
- exports.ɵcj = IgxRowCrudState;
86312
- exports.ɵck = IgxRowAddCrudState;
86313
- exports.ɵcl = IgxGridCRUDService;
86314
- exports.ɵcm = IgxColumnMovingService;
86315
- exports.ɵcn = IgxExcelStyleCustomDialogComponent;
86316
- exports.ɵco = IgxExcelStyleDefaultExpressionComponent;
86317
- exports.ɵcp = IgxExcelStyleDateExpressionComponent;
86318
- exports.ɵcq = HammerGesturesManager;
86319
- exports.ɵcr = WatchChanges;
86320
- exports.ɵcs = WatchColumnChanges;
86321
- exports.ɵct = notifyChanges;
86322
- exports.ɵcu = IgxNotificationsDirective;
86323
- exports.ɵcv = IgxGridColumnResizerComponent;
86324
- exports.ɵcw = IgxColumnResizerDirective;
86325
- exports.ɵcx = IgxColumnResizingService;
86326
- exports.ɵcy = IgxRowSelectorDirective;
86327
- exports.ɵcz = IgxGroupByRowSelectorDirective;
86064
+ exports.ɵba = IgxExpansionPanelTitleDirective;
86065
+ exports.ɵbb = IgxExpansionPanelDescriptionDirective;
86066
+ exports.ɵbc = IgxExpansionPanelIconDirective;
86067
+ exports.ɵbd = IgxBannerActionsDirective;
86068
+ exports.ɵbe = IgxDaysViewNavigationService;
86069
+ exports.ɵbf = IgxDayItemComponent;
86070
+ exports.ɵbg = IgxMonthViewSlotsCalendar;
86071
+ exports.ɵbh = IgxGetViewDateCalendar;
86072
+ exports.ɵbi = IgxCarouselIndicatorDirective;
86073
+ exports.ɵbj = IgxCarouselNextButtonDirective;
86074
+ exports.ɵbk = IgxCarouselPrevButtonDirective;
86075
+ exports.ɵbl = IgxComboAPIService;
86076
+ exports.ɵbm = IGX_COMBO_COMPONENT;
86077
+ exports.ɵbo = IgxComboDropDownComponent;
86078
+ exports.ɵbp = IgxComboItemComponent;
86079
+ exports.ɵbq = IgxComboHeaderDirective;
86080
+ exports.ɵbr = IgxComboFooterDirective;
86081
+ exports.ɵbs = IgxComboItemDirective;
86082
+ exports.ɵbt = IgxComboEmptyDirective;
86083
+ exports.ɵbu = IgxComboHeaderItemDirective;
86084
+ exports.ɵbv = IgxComboAddItemDirective;
86085
+ exports.ɵbw = IgxComboToggleIconDirective;
86086
+ exports.ɵbx = IgxComboClearIconDirective;
86087
+ exports.ɵby = IgxComboFilteringPipe;
86088
+ exports.ɵbz = IgxComboGroupingPipe;
86089
+ exports.ɵca = IgxComboAddItemComponent;
86090
+ exports.ɵcb = PickerBaseDirective;
86091
+ exports.ɵcc = IgxCalendarContainerComponent;
86092
+ exports.ɵcd = IgxCalendarContainerModule;
86093
+ exports.ɵce = IgxDialogTitleDirective;
86094
+ exports.ɵcf = IgxDialogActionsDirective;
86095
+ exports.ɵcg = IgxCellCrudState;
86096
+ exports.ɵch = IgxRowCrudState;
86097
+ exports.ɵci = IgxRowAddCrudState;
86098
+ exports.ɵcj = IgxGridCRUDService;
86099
+ exports.ɵck = IgxColumnMovingService;
86100
+ exports.ɵcl = IgxExcelStyleCustomDialogComponent;
86101
+ exports.ɵcm = IgxExcelStyleDefaultExpressionComponent;
86102
+ exports.ɵcn = IgxExcelStyleDateExpressionComponent;
86103
+ exports.ɵco = HammerGesturesManager;
86104
+ exports.ɵcp = WatchChanges;
86105
+ exports.ɵcq = WatchColumnChanges;
86106
+ exports.ɵcr = notifyChanges;
86107
+ exports.ɵcs = IgxNotificationsDirective;
86108
+ exports.ɵct = IgxGridColumnResizerComponent;
86109
+ exports.ɵcu = IgxColumnResizerDirective;
86110
+ exports.ɵcv = IgxColumnResizingService;
86111
+ exports.ɵcw = IgxRowSelectorDirective;
86112
+ exports.ɵcx = IgxGroupByRowSelectorDirective;
86113
+ exports.ɵcy = IgxHeadSelectorDirective;
86114
+ exports.ɵcz = IgxRowDragDirective;
86328
86115
  exports.ɵd = IgxGridSelectionService;
86329
- exports.ɵda = IgxHeadSelectorDirective;
86330
- exports.ɵdb = IgxRowDragDirective;
86331
- exports.ɵdc = IgxDragIndicatorIconDirective;
86332
- exports.ɵdd = IgxRowDragGhostDirective;
86333
- exports.ɵde = IgxRowDragModule;
86334
- exports.ɵdf = IgxGridHeaderRowComponent;
86335
- exports.ɵdg = IgxGridHeaderGroupComponent;
86336
- exports.ɵdh = IgxGridHeaderComponent;
86337
- exports.ɵdi = IgxGridFilteringCellComponent;
86338
- exports.ɵdj = IgxFilteringService;
86339
- exports.ɵdk = IgxGridFilteringRowComponent;
86340
- exports.ɵdl = IgxGridGroupByAreaComponent;
86341
- exports.ɵdm = IgxGroupByAreaDirective;
86342
- exports.ɵdn = IgxGroupByMetaPipe;
86343
- exports.ɵdo = IgxTemplateOutletDirective;
86344
- exports.ɵdp = IgxTemplateOutletModule;
86345
- exports.ɵdq = IgxRowEditTemplateDirective;
86346
- exports.ɵdr = IgxRowEditTextDirective;
86347
- exports.ɵds = IgxRowAddTextDirective;
86348
- exports.ɵdt = IgxRowEditActionsDirective;
86349
- exports.ɵdu = IgxRowEditTabStopDirective;
86350
- exports.ɵdv = IgxSummaryRowComponent;
86351
- exports.ɵdw = IgxSummaryCellComponent;
86352
- exports.ɵdx = IgxRowDirective;
86353
- exports.ɵdy = IgxGridNavigationService;
86354
- exports.ɵdz = IgxGridSummaryService;
86355
- exports.ɵea = ConnectedPositioningStrategy;
86356
- exports.ɵeb = IgxGridGroupByRowComponent;
86357
- exports.ɵec = IgxTreeGridSelectionService;
86358
- exports.ɵed = IgxTreeGridGroupByAreaComponent;
86359
- exports.ɵee = IgxRowLoadingIndicatorTemplateDirective;
86360
- exports.ɵef = IgxHierarchicalGridNavigationService;
86361
- exports.ɵeg = IgxChildGridRowComponent;
86362
- exports.ɵeh = IgxGridCellComponent;
86363
- exports.ɵei = IgxGridFooterComponent;
86364
- exports.ɵej = IgxAdvancedFilteringDialogComponent;
86365
- exports.ɵek = IgxColumnHidingDirective;
86366
- exports.ɵel = IgxColumnPinningDirective;
86367
- exports.ɵem = IgxGridSharedModules;
86368
- exports.ɵen = IgxProcessBarTextTemplateDirective;
86369
- exports.ɵeo = IgxProgressBarGradientDirective;
86370
- exports.ɵep = DIR_DOCUMENT_FACTORY;
86371
- exports.ɵeq = DIR_DOCUMENT;
86372
- exports.ɵer = IgxDirectionality;
86373
- exports.ɵes = IgxSelectItemNavigationDirective;
86374
- exports.ɵet = IGX_TIME_PICKER_COMPONENT;
86375
- exports.ɵev = IgxItemListDirective;
86376
- exports.ɵew = IgxTimeItemDirective;
86377
- exports.ɵex = IgxTimePickerTemplateDirective;
86378
- exports.ɵey = IgxTimePickerActionsDirective;
86379
- exports.ɵez = TimeFormatPipe;
86116
+ exports.ɵda = IgxDragIndicatorIconDirective;
86117
+ exports.ɵdb = IgxRowDragGhostDirective;
86118
+ exports.ɵdc = IgxRowDragModule;
86119
+ exports.ɵdd = IgxGridHeaderRowComponent;
86120
+ exports.ɵde = IgxGridHeaderGroupComponent;
86121
+ exports.ɵdf = IgxGridHeaderComponent;
86122
+ exports.ɵdg = IgxGridFilteringCellComponent;
86123
+ exports.ɵdh = IgxFilteringService;
86124
+ exports.ɵdi = IgxGridFilteringRowComponent;
86125
+ exports.ɵdj = IgxGridGroupByAreaComponent;
86126
+ exports.ɵdk = IgxGroupByAreaDirective;
86127
+ exports.ɵdl = IgxGroupByMetaPipe;
86128
+ exports.ɵdm = IgxTemplateOutletDirective;
86129
+ exports.ɵdn = IgxTemplateOutletModule;
86130
+ exports.ɵdo = IgxRowEditTemplateDirective;
86131
+ exports.ɵdp = IgxRowEditTextDirective;
86132
+ exports.ɵdq = IgxRowAddTextDirective;
86133
+ exports.ɵdr = IgxRowEditActionsDirective;
86134
+ exports.ɵds = IgxRowEditTabStopDirective;
86135
+ exports.ɵdt = IgxSummaryRowComponent;
86136
+ exports.ɵdu = IgxSummaryCellComponent;
86137
+ exports.ɵdv = IgxRowDirective;
86138
+ exports.ɵdw = IgxGridNavigationService;
86139
+ exports.ɵdx = IgxGridSummaryService;
86140
+ exports.ɵdy = ConnectedPositioningStrategy;
86141
+ exports.ɵdz = IgxGridGroupByRowComponent;
86142
+ exports.ɵea = IgxTreeGridSelectionService;
86143
+ exports.ɵeb = IgxTreeGridGroupByAreaComponent;
86144
+ exports.ɵec = IgxRowLoadingIndicatorTemplateDirective;
86145
+ exports.ɵed = IgxHierarchicalGridNavigationService;
86146
+ exports.ɵee = IgxChildGridRowComponent;
86147
+ exports.ɵef = IgxGridCellComponent;
86148
+ exports.ɵeg = IgxGridFooterComponent;
86149
+ exports.ɵeh = IgxAdvancedFilteringDialogComponent;
86150
+ exports.ɵei = IgxColumnHidingDirective;
86151
+ exports.ɵej = IgxColumnPinningDirective;
86152
+ exports.ɵek = IgxGridSharedModules;
86153
+ exports.ɵel = IgxProcessBarTextTemplateDirective;
86154
+ exports.ɵem = IgxProgressBarGradientDirective;
86155
+ exports.ɵen = DIR_DOCUMENT_FACTORY;
86156
+ exports.ɵeo = DIR_DOCUMENT;
86157
+ exports.ɵep = IgxDirectionality;
86158
+ exports.ɵeq = IgxSelectItemNavigationDirective;
86159
+ exports.ɵer = IGX_TIME_PICKER_COMPONENT;
86160
+ exports.ɵet = IgxItemListDirective;
86161
+ exports.ɵeu = IgxTimeItemDirective;
86162
+ exports.ɵev = IgxTimePickerTemplateDirective;
86163
+ exports.ɵew = IgxTimePickerActionsDirective;
86164
+ exports.ɵex = TimeFormatPipe;
86165
+ exports.ɵey = TimeItemPipe;
86166
+ exports.ɵez = IgxGridPipesModule;
86380
86167
  exports.ɵf = IGX_EXPANSION_PANEL_COMPONENT;
86381
- exports.ɵfa = TimeItemPipe;
86382
- exports.ɵfb = IgxGridPipesModule;
86383
- exports.ɵfc = IgxGridCellStyleClassesPipe;
86384
- exports.ɵfd = IgxGridCellStylesPipe;
86385
- exports.ɵfe = IgxGridRowClassesPipe;
86386
- exports.ɵff = IgxGridRowStylesPipe;
86387
- exports.ɵfg = IgxGridNotGroupedPipe;
86388
- exports.ɵfh = IgxGridTopLevelColumns;
86389
- exports.ɵfi = IgxGridFilterConditionPipe;
86390
- exports.ɵfj = IgxGridTransactionPipe;
86391
- exports.ɵfk = IgxGridPaginatorOptionsPipe;
86392
- exports.ɵfl = IgxHasVisibleColumnsPipe;
86393
- exports.ɵfm = IgxGridRowPinningPipe;
86394
- exports.ɵfn = IgxColumnActionEnabledPipe;
86395
- exports.ɵfo = IgxFilterActionColumnsPipe;
86396
- exports.ɵfp = IgxSortActionColumnsPipe;
86397
- exports.ɵfq = IgxGridDataMapperPipe;
86398
- exports.ɵfr = IgxStringReplacePipe;
86399
- exports.ɵfs = IgxGridTransactionStatePipe;
86400
- exports.ɵft = IgxColumnFormatterPipe;
86401
- exports.ɵfu = IgxSummaryFormatterPipe;
86402
- exports.ɵfv = IgxGridAddRowPipe;
86403
- exports.ɵfw = IgxHeaderGroupWidthPipe;
86404
- exports.ɵfx = IgxHeaderGroupStylePipe;
86405
- exports.ɵfy = IgxGridColumnModule;
86406
- exports.ɵfz = IgxGridHeadersModule;
86168
+ exports.ɵfa = IgxGridCellStyleClassesPipe;
86169
+ exports.ɵfb = IgxGridCellStylesPipe;
86170
+ exports.ɵfc = IgxGridRowClassesPipe;
86171
+ exports.ɵfd = IgxGridRowStylesPipe;
86172
+ exports.ɵfe = IgxGridNotGroupedPipe;
86173
+ exports.ɵff = IgxGridTopLevelColumns;
86174
+ exports.ɵfg = IgxGridFilterConditionPipe;
86175
+ exports.ɵfh = IgxGridTransactionPipe;
86176
+ exports.ɵfi = IgxGridPaginatorOptionsPipe;
86177
+ exports.ɵfj = IgxHasVisibleColumnsPipe;
86178
+ exports.ɵfk = IgxGridRowPinningPipe;
86179
+ exports.ɵfl = IgxColumnActionEnabledPipe;
86180
+ exports.ɵfm = IgxFilterActionColumnsPipe;
86181
+ exports.ɵfn = IgxSortActionColumnsPipe;
86182
+ exports.ɵfo = IgxGridDataMapperPipe;
86183
+ exports.ɵfp = IgxStringReplacePipe;
86184
+ exports.ɵfq = IgxGridTransactionStatePipe;
86185
+ exports.ɵfr = IgxColumnFormatterPipe;
86186
+ exports.ɵfs = IgxSummaryFormatterPipe;
86187
+ exports.ɵft = IgxGridAddRowPipe;
86188
+ exports.ɵfu = IgxHeaderGroupWidthPipe;
86189
+ exports.ɵfv = IgxHeaderGroupStylePipe;
86190
+ exports.ɵfw = IgxGridColumnModule;
86191
+ exports.ɵfx = IgxGridHeadersModule;
86192
+ exports.ɵfy = SortingIndexPipe;
86193
+ exports.ɵfz = IgxGridFilteringModule;
86407
86194
  exports.ɵg = IGX_TREE_COMPONENT;
86408
- exports.ɵga = SortingIndexPipe;
86409
- exports.ɵgb = IgxGridFilteringModule;
86410
- exports.ɵgc = IgxColumnMovingModule;
86411
- exports.ɵgd = IgxColumnMovingDropDirective;
86412
- exports.ɵge = IgxColumnMovingDragDirective;
86413
- exports.ɵgf = IgxGridResizingModule;
86414
- exports.ɵgg = IgxResizeHandleDirective;
86415
- exports.ɵgh = IgxGridExcelStyleFilteringModule;
86416
- exports.ɵgi = IgxGridSelectionModule;
86417
- exports.ɵgj = IgxGridDragSelectDirective;
86418
- exports.ɵgk = IgxGridSummaryModule;
86419
- exports.ɵgl = IgxSummaryDataPipe;
86420
- exports.ɵgm = IgxGridToolbarModule;
86421
- exports.ɵgn = BaseToolbarDirective;
86422
- exports.ɵgo = BaseToolbarColumnActionsDirective;
86423
- exports.ɵgp = IgxGridRowComponent;
86424
- exports.ɵgq = IgxGridSortingPipe;
86425
- exports.ɵgr = IgxGridGroupingPipe;
86426
- exports.ɵgs = IgxGridPagingPipe;
86427
- exports.ɵgt = IgxGridFilteringPipe;
86428
- exports.ɵgu = IgxGridSummaryPipe;
86429
- exports.ɵgv = IgxGridDetailsPipe;
86430
- exports.ɵgw = IgxGridExpandableCellComponent;
86431
- exports.ɵgx = IgxTreeGridRowComponent;
86432
- exports.ɵgy = IgxTreeGridCellComponent;
86433
- exports.ɵgz = IgxTreeGridHierarchizingPipe;
86195
+ exports.ɵga = IgxColumnMovingModule;
86196
+ exports.ɵgb = IgxColumnMovingDropDirective;
86197
+ exports.ɵgc = IgxColumnMovingDragDirective;
86198
+ exports.ɵgd = IgxGridResizingModule;
86199
+ exports.ɵge = IgxResizeHandleDirective;
86200
+ exports.ɵgf = IgxGridExcelStyleFilteringModule;
86201
+ exports.ɵgg = IgxGridSelectionModule;
86202
+ exports.ɵgh = IgxGridDragSelectDirective;
86203
+ exports.ɵgi = IgxGridSummaryModule;
86204
+ exports.ɵgj = IgxSummaryDataPipe;
86205
+ exports.ɵgk = IgxGridToolbarModule;
86206
+ exports.ɵgl = BaseToolbarDirective;
86207
+ exports.ɵgm = BaseToolbarColumnActionsDirective;
86208
+ exports.ɵgn = IgxGridRowComponent;
86209
+ exports.ɵgo = IgxGridSortingPipe;
86210
+ exports.ɵgp = IgxGridGroupingPipe;
86211
+ exports.ɵgq = IgxGridPagingPipe;
86212
+ exports.ɵgr = IgxGridFilteringPipe;
86213
+ exports.ɵgs = IgxGridSummaryPipe;
86214
+ exports.ɵgt = IgxGridDetailsPipe;
86215
+ exports.ɵgu = IgxGridExpandableCellComponent;
86216
+ exports.ɵgv = IgxTreeGridRowComponent;
86217
+ exports.ɵgw = IgxTreeGridCellComponent;
86218
+ exports.ɵgx = IgxTreeGridHierarchizingPipe;
86219
+ exports.ɵgy = IgxTreeGridFlatteningPipe;
86220
+ exports.ɵgz = IgxTreeGridSortingPipe;
86434
86221
  exports.ɵh = IGX_TREE_NODE_COMPONENT;
86435
- exports.ɵha = IgxTreeGridFlatteningPipe;
86436
- exports.ɵhb = IgxTreeGridSortingPipe;
86437
- exports.ɵhc = IgxTreeGridPagingPipe;
86438
- exports.ɵhd = IgxTreeGridTransactionPipe;
86439
- exports.ɵhe = IgxTreeGridNormalizeRecordsPipe;
86440
- exports.ɵhf = IgxTreeGridAddRowPipe;
86441
- exports.ɵhg = IgxTreeGridFilteringPipe;
86442
- exports.ɵhh = IgxTreeGridSummaryPipe;
86443
- exports.ɵhi = IgxHierarchicalRowComponent;
86444
- exports.ɵhj = IgxHierarchicalGridCellComponent;
86445
- exports.ɵhk = IgxSliderThumbComponent;
86446
- exports.ɵhl = IgxThumbLabelComponent;
86447
- exports.ɵhm = IgxTicksComponent;
86448
- exports.ɵhn = IgxTickLabelsPipe;
86449
- exports.ɵho = IgxTabsBase;
86450
- exports.ɵhp = IgxTabHeaderBase;
86451
- exports.ɵhq = IgxTabContentBase;
86452
- exports.ɵhr = IgxSplitBarComponent;
86453
- exports.ɵhs = IgxTreeService;
86454
- exports.ɵht = IgxTreeSelectionService;
86455
- exports.ɵhu = IgxTreeNavigationService;
86222
+ exports.ɵha = IgxTreeGridPagingPipe;
86223
+ exports.ɵhb = IgxTreeGridTransactionPipe;
86224
+ exports.ɵhc = IgxTreeGridNormalizeRecordsPipe;
86225
+ exports.ɵhd = IgxTreeGridAddRowPipe;
86226
+ exports.ɵhe = IgxTreeGridFilteringPipe;
86227
+ exports.ɵhf = IgxTreeGridSummaryPipe;
86228
+ exports.ɵhg = IgxHierarchicalRowComponent;
86229
+ exports.ɵhh = IgxHierarchicalGridCellComponent;
86230
+ exports.ɵhi = IgxSliderThumbComponent;
86231
+ exports.ɵhj = IgxThumbLabelComponent;
86232
+ exports.ɵhk = IgxTicksComponent;
86233
+ exports.ɵhl = IgxTickLabelsPipe;
86234
+ exports.ɵhm = IgxTabsBase;
86235
+ exports.ɵhn = IgxTabHeaderBase;
86236
+ exports.ɵho = IgxTabContentBase;
86237
+ exports.ɵhp = IgxSplitBarComponent;
86238
+ exports.ɵhq = IgxTreeService;
86239
+ exports.ɵhr = IgxTreeSelectionService;
86240
+ exports.ɵhs = IgxTreeNavigationService;
86456
86241
  exports.ɵi = PlatformUtil;
86457
86242
  exports.ɵl = IgxInputGroupBase;
86458
86243
  exports.ɵm = IgxSelectionAPIService;
@@ -86465,10 +86250,10 @@
86465
86250
  exports.ɵt = VirtualHelperBaseDirective;
86466
86251
  exports.ɵu = HVirtualHelperComponent;
86467
86252
  exports.ɵv = MaskParsingService;
86468
- exports.ɵw = DeprecateMethod;
86469
- exports.ɵx = DeprecateProperty;
86470
- exports.ɵy = isHierarchyMatch;
86471
- exports.ɵz = getHierarchy;
86253
+ exports.ɵw = isHierarchyMatch;
86254
+ exports.ɵx = getHierarchy;
86255
+ exports.ɵy = IgxGridActionButtonComponent;
86256
+ exports.ɵz = ToggleAnimationPlayer;
86472
86257
 
86473
86258
  Object.defineProperty(exports, '__esModule', { value: true });
86474
86259