ngx-deebodata 0.0.7 → 0.0.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 +3 -3
- package/fesm2022/ngx-deebodata.mjs +0 -1
- package/package.json +2 -1
- package/types/ngx-deebodata.d.ts +1 -1
package/README.md
CHANGED
|
@@ -44,14 +44,14 @@ import { NgxDeebodata } from 'ngx-deebodata';
|
|
|
44
44
|
></ngx-deebodata>
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
It's best to pass hex colors to **color1, color2, pieGraphColors, & altRowColor,** but css colors work too
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
Always pass a **px** string value to defRowHgt like '50px'
|
|
50
50
|
|
|
51
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
52
|
depending on how many distinct values the column has and other criteria
|
|
53
53
|
|
|
54
|
-
**removePieCovers input can be a boolean or a string[] of column names where the pie graph should be uncovered
|
|
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
57
|
**To pass Column Symbols (Numeric columns only)**
|
|
@@ -6010,7 +6010,6 @@ class NgxDeebodata {
|
|
|
6010
6010
|
}
|
|
6011
6011
|
execValClear(e, clearDrag) {
|
|
6012
6012
|
this.blurContEd();
|
|
6013
|
-
console.log("Asdasdassa")
|
|
6014
6013
|
if (e && e.target && e.target.getAttribute("type") === "button") { //keep the cell
|
|
6015
6014
|
try {
|
|
6016
6015
|
this.fCellDragger.nativeElement.focus();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-deebodata",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^21.2.0",
|
|
6
6
|
"@angular/core": "^21.2.0",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"virtual-scroll",
|
|
21
21
|
"charts",
|
|
22
22
|
"graphs",
|
|
23
|
+
"accessibility",
|
|
23
24
|
"grouping",
|
|
24
25
|
"enterprise",
|
|
25
26
|
"commercial"
|
package/types/ngx-deebodata.d.ts
CHANGED
|
@@ -342,7 +342,7 @@ declare class NgxDeebodata {
|
|
|
342
342
|
execSetters(): void;
|
|
343
343
|
handleDataInput(): void;
|
|
344
344
|
getAllColsAtRuntime(excludeHidden: any): string[];
|
|
345
|
-
setMaxCols(): 5 |
|
|
345
|
+
setMaxCols(): 5 | 2 | 3;
|
|
346
346
|
getAllColWidth(colLen: any): number;
|
|
347
347
|
removeAllFreezeCols(): void;
|
|
348
348
|
setTableHeight(h: number): void;
|