@xh/hoist 75.0.0-SNAPSHOT.1751825501955 → 75.0.0-SNAPSHOT.1752499376565

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
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 75.0-SNAPSHOT - NOT YET RELEASED
4
+
5
+ ### 🐞 Bug Fixes
6
+
7
+ * DashCanvas: ensure `allowAdd=false` is not enforced if loadingState
8
+ and hide `Add` context menu item in views in if `allowAdd=false`
9
+ * DashCanvas: style with `position: relative;` to ensure that the empty state overlay is positioned
10
+ within the canvas, not the next parent container up that has `position: relative;`.
11
+
3
12
  ## v74.1.2 - 2025-07-03
4
13
 
5
14
  ### 🐞 Bug Fixes
@@ -28,6 +28,7 @@
28
28
  }
29
29
 
30
30
  .xh-dash-canvas {
31
+ position: relative;
31
32
  width: 100%;
32
33
  height: 100%;
33
34
  overflow-x: hidden;
@@ -357,7 +357,7 @@ export class DashCanvasModel
357
357
  `Trying to add non-existent or omitted DashCanvasViewSpec. id=${specId}`
358
358
  );
359
359
  throwIf(
360
- !viewSpec.allowAdd,
360
+ !this.isLoadingState && !viewSpec.allowAdd,
361
361
  `Trying to add DashCanvasViewSpec with allowAdd=false. id=${specId}`
362
362
  );
363
363
  throwIf(
@@ -4,6 +4,8 @@
4
4
  *
5
5
  * Copyright © 2025 Extremely Heavy Industries Inc.
6
6
  */
7
+ import {isEmpty} from 'lodash';
8
+ import {ReactElement} from 'react';
7
9
  import {box} from '@xh/hoist/cmp/layout';
8
10
  import {hoistCmp, uses} from '@xh/hoist/core';
9
11
  import {ContextMenu} from '@xh/hoist/desktop/cmp/contextmenu';
@@ -15,7 +17,6 @@ import {button} from '../../../button';
15
17
  import {panel} from '../../../panel';
16
18
  import {DashCanvasViewModel} from '../DashCanvasViewModel';
17
19
  import {errorBoundary} from '@xh/hoist/cmp/error/ErrorBoundary';
18
- import {ReactElement} from 'react';
19
20
 
20
21
  /**
21
22
  * Implementation component to show an item within a DashCanvas. This component
@@ -77,7 +78,7 @@ const headerMenu = hoistCmp.factory<DashCanvasViewModel>(({model}) => {
77
78
  text: 'Add',
78
79
  icon: Icon.add(),
79
80
  items: addMenuItems,
80
- hidden: contentLocked
81
+ hidden: contentLocked || isEmpty(addMenuItems)
81
82
  },
82
83
  {
83
84
  text: 'Remove',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "75.0.0-SNAPSHOT.1751825501955",
3
+ "version": "75.0.0-SNAPSHOT.1752499376565",
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",