ngx-deebodata 0.1.9 → 0.2.0
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 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,8 +110,9 @@ handleCellEdit(event: CellEdit) {//executes on cell edit if editable isn't false
|
|
|
110
110
|
/*CellEdit interface -> { value: any; row: any; column: string; idType: string; valueChanged: boolean; }
|
|
111
111
|
row will either be the 0-based index of the edited cell's parent row in the initial data set
|
|
112
112
|
or, if a primaryKey is passed or detected, it will be the value of that primaryKey for the edited
|
|
113
|
-
row. Use idType (will be either "key" or "rowId") to know which one is emitting.
|
|
114
|
-
|
|
113
|
+
row. Use idType (will be either "key" or "rowId") to know which one is emitting. column is
|
|
114
|
+
the column/attribute and value is the real value of the edit, which can be a string, number
|
|
115
|
+
or Date. Use valueChanged to know if an edit actually changed the value*/
|
|
115
116
|
// console.log(event)
|
|
116
117
|
}
|
|
117
118
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-deebodata",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Angular data grid and charts solution that solves big data analysis with virtual scroll, row grouping, column resizing, re-ordering, column hiding, cell editing, tab accessibility, sorting with priority, and advanced filtering.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.2.0",
|