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
|
@@ -29,6 +29,14 @@ declare abstract class BaseRow implements RowType {
|
|
|
29
29
|
* ```
|
|
30
30
|
*/
|
|
31
31
|
get key(): any;
|
|
32
|
+
/**
|
|
33
|
+
* Gets if this represents add row UI
|
|
34
|
+
*
|
|
35
|
+
* ```typescript
|
|
36
|
+
* let isAddRow = row.addRowUI;
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
get addRowUI(): boolean;
|
|
32
40
|
/**
|
|
33
41
|
* The data record that populates the row.
|
|
34
42
|
*
|
package/package.json
CHANGED