ngx-deebodata 0.0.5 → 0.0.7

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 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,17 +1,12 @@
1
1
  # NgxDeebodata
2
2
 
3
- DeeboData for Angular - a commercial data grid with virtual scroll, integrated charts,
4
- column resizing, toggle column visibility, cell editing, tab accessibility, sorting with
5
- priority, and advanced filtering.
3
+ Commercial data grid with virtual scroll, integrated charts, row grouping, column resizing, toggle column visibility, cell editing, tab accessibility, sorting with priority, and advanced filtering.
6
4
 
7
5
  # Licensing
8
6
 
9
- Commercial license - However, you can install this module and test
10
- the full functionality when developing locally at **http://localhost:4200/**
11
-
7
+ Commercial license - However, you can install this module and test the full functionality when developing locally at **http://localhost:4200/**
12
8
 
13
- To deploy to any live url, you need to obtain a deployment license for each developer
14
- on the project from https://deebodata.com/data-grid-checkout/angular
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
15
10
 
16
11
  ## Usage
17
12
 
@@ -45,6 +40,7 @@ import { NgxDeebodata } from 'ngx-deebodata';
45
40
  [removePieCovers]="false"
46
41
  [altRowColor]="'#ececec'"
47
42
  [myColumnStyles]="[]"
43
+ [forceGrouping]="['column_needs_grouping']"
48
44
  ></ngx-deebodata>
49
45
  ```
50
46
 
@@ -52,6 +48,11 @@ import { NgxDeebodata } from 'ngx-deebodata';
52
48
 
53
49
  **Always pass a px value to defRowHgt like '50px'**
54
50
 
51
+ **forceGrouping** - if a column you want grouping/dropdown filters for isn't getting that treatment automatically, try to force it with this - may or may not work
52
+ depending on how many distinct values the column has and other criteria
53
+
54
+ **removePieCovers input can be a boolean or a string[] of column names where the pie graph should be uncovered**
55
+
55
56
 
56
57
  **To pass Column Symbols (Numeric columns only)**
57
58
 
@@ -89,10 +90,11 @@ import { CellEdit, NgxDeebodata } from 'ngx-deebodata';
89
90
 
90
91
  ```
91
92
  handleCellEdit(event: CellEdit) {//executes on cell edit if editable isn't false
92
- /*CellEdit interface -> { value: any; row: any; column: string; }
93
- row will either be the index of the edited cell in the initial data set
94
- or, if a primaryKey is passed or detected, it will be the value of that
95
- primaryKey for the edited row*/
93
+ /*CellEdit interface -> { value: any; row: any; column: string; idType: string; valueChanged: boolean; }
94
+ row will either be the 0-based index of the edited cell's parent row in the initial data set
95
+ or, if a primaryKey is passed or detected, it will be the value of that primaryKey for the edited
96
+ row. Use idType (will be either "key" or "rowId") to know which one is emitting. Use valueChanged
97
+ to know if an edit actually changed the value*/
96
98
  // console.log(event)
97
99
  }
98
100
  ```