@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.
@@ -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) return null;
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 (view.query.lockFn?.(this as any)) {
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.1754920978016",
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",