ngx-deebodata 0.1.7 → 0.1.8
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 +5 -1
- package/package.json +9 -2
- package/types/ngx-deebodata.d.ts +1 -1
package/README.md
CHANGED
|
@@ -4,10 +4,14 @@ Angular data grid with virtual scroll, integrated charts, row grouping, column r
|
|
|
4
4
|
|
|
5
5
|
# Licensing
|
|
6
6
|
|
|
7
|
-
Install this package and use the full functionality when developing locally at
|
|
7
|
+
Install this package and use the full functionality when developing locally at http://localhost:4200
|
|
8
8
|
|
|
9
9
|
To deploy to any live url, you need to obtain a **deployment license** for each developer on the project from https://deebodata.com/data-grid-checkout/angular
|
|
10
10
|
|
|
11
|
+
## Report Issues
|
|
12
|
+
|
|
13
|
+
You can report an issue at https://deebodata.com/contact-us
|
|
14
|
+
|
|
11
15
|
## Usage
|
|
12
16
|
|
|
13
17
|
**In the .ts component you want to use the data grid in**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-deebodata",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
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",
|
|
@@ -21,12 +21,19 @@
|
|
|
21
21
|
"angular",
|
|
22
22
|
"data",
|
|
23
23
|
"datagrid",
|
|
24
|
+
"angular-grid",
|
|
25
|
+
"data-table",
|
|
26
|
+
"datatable",
|
|
27
|
+
"sorting",
|
|
28
|
+
"angular-table",
|
|
24
29
|
"virtual-scroll",
|
|
25
30
|
"charts",
|
|
26
31
|
"graphs",
|
|
32
|
+
"bar-graph",
|
|
33
|
+
"line-graph",
|
|
34
|
+
"row-grouping",
|
|
27
35
|
"accessibility",
|
|
28
36
|
"grouping",
|
|
29
|
-
"enterprise",
|
|
30
37
|
"customizable",
|
|
31
38
|
"feature-rich",
|
|
32
39
|
"high-performance"
|
package/types/ngx-deebodata.d.ts
CHANGED
|
@@ -359,7 +359,7 @@ declare class NgxDeebodata {
|
|
|
359
359
|
execSetters(): void;
|
|
360
360
|
handleDataInput(): void;
|
|
361
361
|
getAllColsAtRuntime(excludeHidden: any): string[];
|
|
362
|
-
setMaxCols():
|
|
362
|
+
setMaxCols(): 5 | 2 | 3;
|
|
363
363
|
getAllColWidth(colLen: any): number;
|
|
364
364
|
removeAllFreezeCols(): void;
|
|
365
365
|
setTableHeight(h: number): void;
|