@xh/hoist 78.0.0-SNAPSHOT.1762906076020 → 78.0.0-SNAPSHOT.1762906173996
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/tab/TabModel.ts +2 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
### 🐞 Bug Fixes
|
|
9
9
|
* StoreRecord will no longer report `isModified` as `true` if a field has been edited and
|
|
10
10
|
then returned to its original value in a subsequent edit.
|
|
11
|
+
* Restore support for `TabModel.content` being nullable to support dynamic tab content.
|
|
11
12
|
|
|
12
13
|
* Remove stray context menu from appearing when clicking on column group headers and other grid
|
|
13
14
|
empty space.
|
package/cmp/tab/TabModel.ts
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "78.0.0-SNAPSHOT.1762906173996",
|
|
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",
|