@xh/hoist 76.0.0-SNAPSHOT.1754920978016 → 76.0.0-SNAPSHOT.1755027138892
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 -3
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/data/cube/row/BaseRow.ts
CHANGED
|
@@ -96,12 +96,14 @@ export abstract class BaseRow {
|
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
private getChildrenDatas(): ViewRowData[] {
|
|
99
|
-
let {children, view} = this
|
|
99
|
+
let {children, view} = this,
|
|
100
|
+
{query} = view;
|
|
100
101
|
|
|
101
|
-
if (!children
|
|
102
|
+
if (!children || (children[0].isLeaf && !query.includeLeaves && !query.provideLeaves))
|
|
103
|
+
return null;
|
|
102
104
|
|
|
103
105
|
// Skip all children in a locked node
|
|
104
|
-
if (
|
|
106
|
+
if (query.lockFn?.(this as any)) {
|
|
105
107
|
this.locked = true;
|
|
106
108
|
return null;
|
|
107
109
|
}
|
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.1755027138892",
|
|
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",
|