@qontinui/navigation 0.3.0 → 0.3.1

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/dist/index.cjs CHANGED
@@ -98,7 +98,16 @@ var WORKSPACE_ITEMS = [
98
98
  description: "Visual automation dashboard",
99
99
  route: "/tools/visual-automation",
100
100
  color: "#10B981",
101
- productMode: "visual"
101
+ productMode: "visual",
102
+ // Web-only: `/tools/visual-automation` is a Next.js route in qontinui-web.
103
+ // The runner has no tab for this id — it is in no `MainTabId` union member
104
+ // and `TabContent` has no case — so on the runner the item rendered and its
105
+ // click was REFUSED by the sidebar's id guard with a console error. Dead
106
+ // nav items are worse than absent ones: the user reads the refusal as the
107
+ // app being broken. (Latent since the item was added; surfaced when Visual
108
+ // mode became a deliberate opt-in and this became one of only four items
109
+ // in it.)
110
+ platforms: ["web"]
102
111
  },
103
112
  {
104
113
  id: "prompt-home",
@@ -485,11 +494,14 @@ var BUILD_ITEMS = [
485
494
  description: "Visual GUI automation \u2014 build state machines and inspect runs",
486
495
  route: "/vga",
487
496
  color: "var(--brand-secondary)",
488
- // Visual GUI automation belongs to Visual mode, not AI Dev (removed from
489
- // the AI Dev sidebar on both runner and web). Web demotes it outright; on
490
- // the runner it is reached through the Visual product mode, which is itself
491
- // behind the "Show visual GUI automation" disclosure.
497
+ // Visual GUI automation belongs to Visual mode, not AI Dev.
492
498
  productMode: "visual",
499
+ // Web-only for the same reason as `visual-dashboard`: `/vga` is a
500
+ // qontinui-web route and the runner has no `vga` tab, so the item was a
501
+ // dead click there. `hidden: ["web"]` additionally keeps it out of web's
502
+ // coord+sessions default menu — so it now appears in exactly one place:
503
+ // web, in Visual mode, with the advanced disclosure on.
504
+ platforms: ["web"],
493
505
  hidden: ["web"]
494
506
  },
495
507
  {
package/dist/index.js CHANGED
@@ -7,7 +7,16 @@ var WORKSPACE_ITEMS = [
7
7
  description: "Visual automation dashboard",
8
8
  route: "/tools/visual-automation",
9
9
  color: "#10B981",
10
- productMode: "visual"
10
+ productMode: "visual",
11
+ // Web-only: `/tools/visual-automation` is a Next.js route in qontinui-web.
12
+ // The runner has no tab for this id — it is in no `MainTabId` union member
13
+ // and `TabContent` has no case — so on the runner the item rendered and its
14
+ // click was REFUSED by the sidebar's id guard with a console error. Dead
15
+ // nav items are worse than absent ones: the user reads the refusal as the
16
+ // app being broken. (Latent since the item was added; surfaced when Visual
17
+ // mode became a deliberate opt-in and this became one of only four items
18
+ // in it.)
19
+ platforms: ["web"]
11
20
  },
12
21
  {
13
22
  id: "prompt-home",
@@ -394,11 +403,14 @@ var BUILD_ITEMS = [
394
403
  description: "Visual GUI automation \u2014 build state machines and inspect runs",
395
404
  route: "/vga",
396
405
  color: "var(--brand-secondary)",
397
- // Visual GUI automation belongs to Visual mode, not AI Dev (removed from
398
- // the AI Dev sidebar on both runner and web). Web demotes it outright; on
399
- // the runner it is reached through the Visual product mode, which is itself
400
- // behind the "Show visual GUI automation" disclosure.
406
+ // Visual GUI automation belongs to Visual mode, not AI Dev.
401
407
  productMode: "visual",
408
+ // Web-only for the same reason as `visual-dashboard`: `/vga` is a
409
+ // qontinui-web route and the runner has no `vga` tab, so the item was a
410
+ // dead click there. `hidden: ["web"]` additionally keeps it out of web's
411
+ // coord+sessions default menu — so it now appears in exactly one place:
412
+ // web, in Visual mode, with the advanced disclosure on.
413
+ platforms: ["web"],
402
414
  hidden: ["web"]
403
415
  },
404
416
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qontinui/navigation",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Shared navigation structure for Qontinui applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",