@one-grid-core/angular 0.5.0 → 0.5.1
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/README.md +3 -0
- package/esm2022/lib/core/instants/one-grid-api.class.mjs +60 -1
- package/esm2022/lib/core/models/one-grid-types.model.mjs +1 -1
- package/esm2022/lib/core/services/one-grid-row.service.mjs +10 -1
- package/fesm2022/one-grid-core-angular.mjs +68 -0
- package/fesm2022/one-grid-core-angular.mjs.map +1 -1
- package/lib/core/instants/one-grid-api.class.d.ts +13 -1
- package/lib/core/models/one-grid-types.model.d.ts +19 -0
- package/lib/core/services/one-grid-row.service.d.ts +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -205,6 +205,9 @@ A header is one cell for the whole column, so there is no row: `columnDef`,
|
|
|
205
205
|
- Quick filter and a programmatic column filter model with thirteen operators,
|
|
206
206
|
including negations, inclusive `inRange` and `blank` / `notBlank`
|
|
207
207
|
- Tree data with expand/collapse and auto group columns
|
|
208
|
+
- Row transactions (`api.applyTransaction({ add, addToParentId, update,
|
|
209
|
+
remove })`) — append, patch or drop rows by id without rebinding the
|
|
210
|
+
dataset; selection and expansion survive, tree-aware
|
|
208
211
|
- Row grouping (`columnDef.rowGroup`, nesting in column order) with
|
|
209
212
|
aggregation (`columnDef.aggFunc`: sum/min/max/avg/count/first/last or a
|
|
210
213
|
custom function over the leaves)
|