ngx-deebodata-community 0.0.2 → 0.0.4
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 +10 -8
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# NgxDeebodataCommunity
|
|
2
2
|
|
|
3
|
+
This is an open source data grid with virtual scroll, column resizing, cell editing,
|
|
4
|
+
tab accessibility, sorting, and filtering. It only uses core Angular modules.
|
|
5
|
+
|
|
3
6
|
## Usage
|
|
4
7
|
|
|
5
8
|
**In the .ts component you want to use the data grid in**
|
|
@@ -31,8 +34,9 @@ import { NgxDeebodataCommunity } from 'ngx-deebodata-community';
|
|
|
31
34
|
></ngx-deebodata-community>
|
|
32
35
|
```
|
|
33
36
|
|
|
34
|
-
**Pass valid CSS or hex colors to color1, color2, & altRowColor**
|
|
35
|
-
|
|
37
|
+
**Pass valid CSS or hex colors to color1, color2, & altRowColor**
|
|
38
|
+
|
|
39
|
+
**Always pass a px value to defRowHgt like '50px'**
|
|
36
40
|
|
|
37
41
|
|
|
38
42
|
**To pass Column Symbols (Numeric columns only)**
|
|
@@ -82,10 +86,8 @@ handleCellEdit(event: CellEdit) {//executes on cell edit if editable isn't false
|
|
|
82
86
|
- In the template of the component
|
|
83
87
|
|
|
84
88
|
```
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
></ngx-deebodata-community>
|
|
90
|
-
}
|
|
89
|
+
<ngx-deebodata-community
|
|
90
|
+
[data]="signalArrayOfObjects()"
|
|
91
|
+
(cellEdit)="handleCellEdit($event)"
|
|
92
|
+
></ngx-deebodata-community>
|
|
91
93
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-deebodata-community",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^21.2.0",
|
|
6
6
|
"@angular/core": "^21.2.0",
|
|
@@ -22,5 +22,6 @@
|
|
|
22
22
|
"default": "./fesm2022/ngx-deebodata-community.mjs"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
|
-
"type": "module"
|
|
25
|
+
"type": "module",
|
|
26
|
+
"keywords": ["data", "grid", "open-source", "datagrid"]
|
|
26
27
|
}
|