ngx-deebodata 0.1.9 → 0.2.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 +9 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Angular data grid with virtual scroll, integrated charts, row grouping, column resizing, toggle column visibility, cell editing, tab accessibility, sorting with priority, and advanced filtering. This package uses only basic @angular packages and rxjs as peer dependencies.
|
|
4
4
|
|
|
5
|
+
# Demos
|
|
6
|
+
|
|
7
|
+
- 40+ columns - https://deebodata.com/angular-data-grid
|
|
8
|
+
- 50k rows - https://deebodata.com/angular-data-grid?data=images
|
|
9
|
+
- 100k rows - https://deebodata.com/angular-data-grid?data=sales
|
|
10
|
+
|
|
5
11
|
|
|
6
12
|
# Licensing
|
|
7
13
|
|
|
@@ -110,8 +116,9 @@ handleCellEdit(event: CellEdit) {//executes on cell edit if editable isn't false
|
|
|
110
116
|
/*CellEdit interface -> { value: any; row: any; column: string; idType: string; valueChanged: boolean; }
|
|
111
117
|
row will either be the 0-based index of the edited cell's parent row in the initial data set
|
|
112
118
|
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
|
-
|
|
119
|
+
row. Use idType (will be either "key" or "rowId") to know which one is emitting. column is
|
|
120
|
+
the column/attribute and value is the real value of the edit, which can be a string, number
|
|
121
|
+
or Date. Use valueChanged to know if an edit actually changed the value*/
|
|
115
122
|
// console.log(event)
|
|
116
123
|
}
|
|
117
124
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-deebodata",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
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",
|