eru-grid 0.0.48 → 0.0.49
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/fesm2022/eru-grid.mjs +23 -6
- package/fesm2022/eru-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eru-grid.d.ts +6 -0
package/package.json
CHANGED
package/types/eru-grid.d.ts
CHANGED
|
@@ -1681,6 +1681,12 @@ declare class EruGridComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
1681
1681
|
isResizable: _angular_core.Signal<boolean>;
|
|
1682
1682
|
isEditable: _angular_core.Signal<boolean>;
|
|
1683
1683
|
gridHeight: _angular_core.Signal<number>;
|
|
1684
|
+
/**
|
|
1685
|
+
* gridHeight for viewport maths. 0 means "size to content" — it removes the
|
|
1686
|
+
* CSS cap and floor, but the table/pivot viewport sizing still needs a number
|
|
1687
|
+
* to work against, so it falls back to the same default an unset height uses.
|
|
1688
|
+
*/
|
|
1689
|
+
private layoutGridHeight;
|
|
1684
1690
|
showColumnLines: _angular_core.Signal<boolean>;
|
|
1685
1691
|
showRowLines: _angular_core.Signal<boolean>;
|
|
1686
1692
|
maxDepth: _angular_core.Signal<number>;
|