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.
- package/bundles/igniteui-angular.umd.js +17 -0
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/grids/common/row.interface.js +1 -1
- package/esm2015/lib/grids/grid-public-row.js +14 -2
- package/esm2015/lib/services/overlay/overlay.js +2 -1
- package/fesm2015/igniteui-angular.js +13 -0
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/lib/grids/common/row.interface.d.ts +1 -0
- package/lib/grids/grid-public-row.d.ts +8 -0
- package/package.json +1 -1
|
@@ -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.
|