igniteui-angular 12.2.7 → 12.2.8

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.
@@ -16316,6 +16316,7 @@
16316
16316
  return null;
16317
16317
  }
16318
16318
  var hook = this._document.createElement('div');
16319
+ hook.style.display = 'none';
16319
16320
  element.parentElement.insertBefore(hook, element);
16320
16321
  return hook;
16321
16322
  };
@@ -61455,6 +61456,22 @@
61455
61456
  enumerable: false,
61456
61457
  configurable: true
61457
61458
  });
61459
+ Object.defineProperty(BaseRow.prototype, "addRowUI", {
61460
+ /**
61461
+ * Gets if this represents add row UI
61462
+ *
61463
+ * ```typescript
61464
+ * let isAddRow = row.addRowUI;
61465
+ * ```
61466
+ */
61467
+ get: function () {
61468
+ return !!this.grid.crudService.row &&
61469
+ this.grid.crudService.row.getClassName() === IgxAddRow.name &&
61470
+ this.grid.crudService.row.id === this.key;
61471
+ },
61472
+ enumerable: false,
61473
+ configurable: true
61474
+ });
61458
61475
  Object.defineProperty(BaseRow.prototype, "data", {
61459
61476
  /**
61460
61477
  * The data record that populates the row.