@xh/hoist 68.0.0-SNAPSHOT.1726615045723 → 68.0.0-SNAPSHOT.1726665376598
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/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
* Requires `hoist-core >= 21.1` for consolidated polling of Alert Banner updates (see below).
|
|
8
8
|
|
|
9
|
+
### 🎁 New Features
|
|
10
|
+
|
|
11
|
+
* Added expand/collapse affordance in the left column header of ZoneGrids in tree mode.
|
|
12
|
+
|
|
9
13
|
### ⚙️ Technical
|
|
10
14
|
|
|
11
15
|
* Updated Admin Console's Cluster tab to refresh more frequently.
|
|
@@ -583,7 +583,7 @@ export class ZoneGridModel extends HoistModel {
|
|
|
583
583
|
const colId = it.field;
|
|
584
584
|
subFields.push({
|
|
585
585
|
colId,
|
|
586
|
-
label: it.showLabel ? labelRenderers[colId] ?? true : false,
|
|
586
|
+
label: it.showLabel ? (labelRenderers[colId] ?? true) : false,
|
|
587
587
|
position: 'top'
|
|
588
588
|
});
|
|
589
589
|
});
|
|
@@ -591,7 +591,7 @@ export class ZoneGridModel extends HoistModel {
|
|
|
591
591
|
const colId = it.field;
|
|
592
592
|
subFields.push({
|
|
593
593
|
colId,
|
|
594
|
-
label: it.showLabel ? labelRenderers[colId] ?? true : false,
|
|
594
|
+
label: it.showLabel ? (labelRenderers[colId] ?? true) : false,
|
|
595
595
|
position: 'bottom'
|
|
596
596
|
});
|
|
597
597
|
});
|
|
@@ -608,6 +608,7 @@ export class ZoneGridModel extends HoistModel {
|
|
|
608
608
|
// Controlled properties
|
|
609
609
|
field: isLeft ? 'left_column' : 'right_column',
|
|
610
610
|
align: isLeft ? 'left' : 'right',
|
|
611
|
+
isTreeColumn: gridModel?.treeMode && isLeft,
|
|
611
612
|
flex: overrideSpec.width ? null : isLeft ? 2 : 1,
|
|
612
613
|
renderer: (value, context) => zoneGridRenderer(value, context, isLeft),
|
|
613
614
|
rendererIsComplex: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "68.0.0-SNAPSHOT.
|
|
3
|
+
"version": "68.0.0-SNAPSHOT.1726665376598",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|