@acorex/components 22.1.0-next.23 → 22.1.0-next.24

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "22.1.0-next.23",
3
+ "version": "22.1.0-next.24",
4
4
  "peerDependencies": {
5
- "@acorex/core": "22.1.0-next.23",
6
- "@acorex/cdk": "22.1.0-next.23",
5
+ "@acorex/core": "22.1.0-next.24",
6
+ "@acorex/cdk": "22.1.0-next.24",
7
7
  "@angular/aria": ">=22.1.0",
8
8
  "polytype": ">=0.17.0",
9
9
  "angular-imask": ">=7.6.1",
@@ -853,6 +853,11 @@ declare class AXDataTableComponent extends AXBaseDataTable implements OnInit, Af
853
853
  * @ignore
854
854
  */
855
855
  protected normalColumnsList: Signal<any[]>;
856
+ /**
857
+ * True when a text column owns the tree expander. That column stays `width: auto`
858
+ * so leftover table space is used for nested indent instead of the empty spacer.
859
+ */
860
+ protected hasTreeFillColumn: Signal<boolean>;
856
861
  /**
857
862
  * @ignore
858
863
  */
@@ -1057,6 +1062,10 @@ declare class AXDataTableComponent extends AXBaseDataTable implements OnInit, Af
1057
1062
  */
1058
1063
  ngAfterViewInit(): void;
1059
1064
  private captureAutoFitIntentColumns;
1065
+ /**
1066
+ * Tree expand columns must keep `width: auto` so nested indent can use leftover table space.
1067
+ */
1068
+ private isTreeFillColumn;
1060
1069
  /**
1061
1070
  * Returns the display text for a cell. Used for the cell tooltip when the column has `hasTitle`.
1062
1071
  */