@xh/hoist 78.0.0-SNAPSHOT.1762906076020 → 78.0.0-SNAPSHOT.1762979452848

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
@@ -2,13 +2,15 @@
2
2
 
3
3
  ## 78.0.0-SNAPSHOT - unreleased
4
4
 
5
+ ## 77.1.1 - 2025-11-12
6
+
5
7
  ### 🎁 New Features
6
8
  * New method `StoreRecord.getModifiedValues()` to gather edited data from a store record.
7
9
 
8
10
  ### 🐞 Bug Fixes
9
11
  * StoreRecord will no longer report `isModified` as `true` if a field has been edited and
10
12
  then returned to its original value in a subsequent edit.
11
-
13
+ * Restore support for `TabModel.content` being nullable to support dynamic tab content.
12
14
  * Remove stray context menu from appearing when clicking on column group headers and other grid
13
15
  empty space.
14
16
 
@@ -174,6 +174,8 @@ export class TabModel extends HoistModel {
174
174
  // Implementation
175
175
  //------------------
176
176
  private parseContent(content: Content | TabContainerConfig | TabConfig[]): Content {
177
+ if (!content) return null;
178
+
177
179
  // Recognize if content is a child container spec.
178
180
  let childConfig: TabContainerConfig = null;
179
181
  if (isArray(content)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "78.0.0-SNAPSHOT.1762906076020",
3
+ "version": "78.0.0-SNAPSHOT.1762979452848",
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",