@xh/hoist 73.0.0-SNAPSHOT.1744141996401 → 73.0.0-SNAPSHOT.1744142206373

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.
@@ -178,13 +178,13 @@ function viewMenuItem(view: ViewInfo, model: ViewManagerModel): ReactNode {
178
178
  icon,
179
179
  href,
180
180
  onClick: e => {
181
- if (!usingRouting || (e.button === 0 && !e.ctrlKey && !e.metaKey)) {
181
+ if (!usingRouting) {
182
182
  consumeEvent(e);
183
183
  model.selectViewAsync(view).catchDefault();
184
184
  return false;
185
185
  }
186
186
 
187
- if (e.button === 0) {
187
+ if (e.button === 0 && !e.ctrlKey && !e.metaKey) {
188
188
  consumeEvent(e);
189
189
  XH.navigate(href);
190
190
  return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "73.0.0-SNAPSHOT.1744141996401",
3
+ "version": "73.0.0-SNAPSHOT.1744142206373",
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",