ngx-deebodata 0.0.4 → 0.0.6
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/LICENSE +2 -1
- package/README.md +5 -3
- package/fesm2022/ngx-deebodata.mjs +2 -2
- package/fesm2022/ngx-deebodata.mjs.map +1 -1
- package/package.json +7 -4
package/LICENSE
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
By entering into this agreement with Cedar Technologies LLC, you agree that before deploying to any live url (anything besides http://localhost:4200/), you will obtain 1 deployment license PER DEVELOPER, PER APPLICATION by visiting https://deebodata.com/data-grid-checkout/angular. You will receive 1 key that can be shared by each developer a license was obtained for. The data grid module will work without restriction during development on http://localhost:4200/. Unless you opt out, the licensor - Cedar Technologies LLC, is responsible for bug fixes and adequate support for 1 Yr. upon purchase.
|
|
1
|
+
By entering into this agreement with Cedar Technologies LLC, you agree that before deploying to any live url (anything besides http://localhost:4200/), you will obtain 1 deployment license PER DEVELOPER, PER APPLICATION by visiting https://deebodata.com/data-grid-checkout/angular. You will receive 1 key that can be shared by each developer a license was obtained for. The data grid module will work without restriction during development on http://localhost:4200/. Unless you opt out, the licensor - Cedar Technologies LLC, is responsible for bug fixes and adequate support for 1 Yr. upon purchase.
|
|
2
|
+
(c) Copyright 2026 Cedar Technologies LLC. All rights reserved.
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# NgxDeebodata
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
column resizing, toggle column visibility, cell editing, tab accessibility,
|
|
5
|
-
priority, and advanced filtering.
|
|
3
|
+
Commercial data grid with virtual scroll, integrated charts, row grouping,
|
|
4
|
+
column resizing, toggle column visibility, cell editing, tab accessibility,
|
|
5
|
+
sorting with priority, and advanced filtering.
|
|
6
6
|
|
|
7
7
|
# Licensing
|
|
8
8
|
|
|
@@ -52,6 +52,8 @@ import { NgxDeebodata } from 'ngx-deebodata';
|
|
|
52
52
|
|
|
53
53
|
**Always pass a px value to defRowHgt like '50px'**
|
|
54
54
|
|
|
55
|
+
**removePieCovers input can be a boolean or a string[] of column names where the pie graph should be uncovered**
|
|
56
|
+
|
|
55
57
|
|
|
56
58
|
**To pass Column Symbols (Numeric columns only)**
|
|
57
59
|
|
|
@@ -651,7 +651,7 @@ class DataTableService {
|
|
|
651
651
|
return sortData;
|
|
652
652
|
}
|
|
653
653
|
doSortOnField(field) {
|
|
654
|
-
const k = this.common.goodLs;
|
|
654
|
+
const k = this.common.goodLs();
|
|
655
655
|
if (!this.sortOrder.length || this.sortOrder.indexOf(field) < 0) {
|
|
656
656
|
this.sortOrder.push(field);
|
|
657
657
|
this.dataFilSrtTracker[field]["sort"] = "asc";
|
|
@@ -3411,7 +3411,7 @@ class BarGraphComponent {
|
|
|
3411
3411
|
if (bv) {
|
|
3412
3412
|
setTimeout(() => {
|
|
3413
3413
|
bv.height = (Math.ceil(bv.heightVal * maxHgt) + "px");
|
|
3414
|
-
},
|
|
3414
|
+
}, 250);
|
|
3415
3415
|
}
|
|
3416
3416
|
}
|
|
3417
3417
|
}
|