@xh/hoist 76.0.0-SNAPSHOT.1755181987538 → 76.0.0-SNAPSHOT.1755187001333
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/data/cube/row/BaseRow.ts +5 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/data/cube/row/BaseRow.ts
CHANGED
|
@@ -99,8 +99,12 @@ export abstract class BaseRow {
|
|
|
99
99
|
let {children, view} = this,
|
|
100
100
|
{query} = view;
|
|
101
101
|
|
|
102
|
-
if (
|
|
102
|
+
if (
|
|
103
|
+
isEmpty(children) ||
|
|
104
|
+
(children[0].isLeaf && !query.includeLeaves && !query.provideLeaves)
|
|
105
|
+
) {
|
|
103
106
|
return null;
|
|
107
|
+
}
|
|
104
108
|
|
|
105
109
|
// Skip all children in a locked node
|
|
106
110
|
if (query.lockFn?.(this as any)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "76.0.0-SNAPSHOT.
|
|
3
|
+
"version": "76.0.0-SNAPSHOT.1755187001333",
|
|
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",
|