@xh/hoist 79.0.0-SNAPSHOT.1766166832103 → 79.0.0-SNAPSHOT.1766170418182
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 +1 -0
- package/cmp/treemap/TreeMap.ts +4 -1
- package/cmp/zoneGrid/ZoneGridModel.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
* Fixed column chooser to display columns in the same order as they appear in the grid.
|
|
30
30
|
* Defaulted Highcharts font to Hoist default (--xh-font-family)
|
|
31
|
+
* Restore previous behavior of highcharts treemap labels with regard to visibilty and positioning.
|
|
31
32
|
* Tweaked `GridFindField` to forward a provided `ref` to its underlying `TextInput`.
|
|
32
33
|
* Fixed bug where `SelectEditor` with `queryFn` would not commit on enter keydown.
|
|
33
34
|
|
package/cmp/treemap/TreeMap.ts
CHANGED
|
@@ -335,12 +335,15 @@ class TreeMapLocalModel extends HoistModel {
|
|
|
335
335
|
allowOverlap: false,
|
|
336
336
|
align: 'left',
|
|
337
337
|
verticalAlign: 'top',
|
|
338
|
+
padding: 4,
|
|
338
339
|
// See stylesheet for additional label style overrides.
|
|
339
340
|
style: {
|
|
340
341
|
// Disable default outlining via HC pseudo-property.
|
|
341
342
|
textOutline: 'none',
|
|
342
343
|
// Default to hidden, updated selectively in updateLabelVisibility().
|
|
343
|
-
visibility: 'hidden'
|
|
344
|
+
visibility: 'hidden',
|
|
345
|
+
// Do not allow labels to elide, we want the full width for visibility calculation.
|
|
346
|
+
textOverflow: 'clip'
|
|
344
347
|
}
|
|
345
348
|
}
|
|
346
349
|
}
|
|
@@ -613,7 +613,7 @@ export class ZoneGridModel extends HoistModel {
|
|
|
613
613
|
|
|
614
614
|
return {
|
|
615
615
|
// Controlled properties
|
|
616
|
-
|
|
616
|
+
colId: isLeft ? 'left_column' : 'right_column',
|
|
617
617
|
align: isLeft ? 'left' : 'right',
|
|
618
618
|
isTreeColumn: gridModel?.treeMode && isLeft,
|
|
619
619
|
flex: overrideSpec.width ? null : isLeft ? 2 : 1,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "79.0.0-SNAPSHOT.
|
|
3
|
+
"version": "79.0.0-SNAPSHOT.1766170418182",
|
|
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",
|