@qontinui/navigation 0.1.3 → 0.1.4
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 +12 -4
- package/dist/index.js +12 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -316,14 +316,18 @@ var AUTOMATE_ITEMS = [
|
|
|
316
316
|
label: "Scheduled Tasks",
|
|
317
317
|
icon: "Calendar",
|
|
318
318
|
description: "Manage scheduled automation",
|
|
319
|
-
productMode: "ai"
|
|
319
|
+
productMode: "ai",
|
|
320
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
321
|
+
platforms: ["runner"]
|
|
320
322
|
},
|
|
321
323
|
{
|
|
322
324
|
id: "triggers",
|
|
323
325
|
label: "Triggers",
|
|
324
326
|
icon: "Zap",
|
|
325
327
|
description: "Event-driven workflow automation",
|
|
326
|
-
productMode: "ai"
|
|
328
|
+
productMode: "ai",
|
|
329
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
330
|
+
platforms: ["runner"]
|
|
327
331
|
},
|
|
328
332
|
{
|
|
329
333
|
id: "watchers",
|
|
@@ -419,7 +423,9 @@ var BUILD_ITEMS = [
|
|
|
419
423
|
description: "Visual GUI automation \u2014 build state machines and inspect runs",
|
|
420
424
|
route: "/vga",
|
|
421
425
|
color: "var(--brand-secondary)",
|
|
422
|
-
|
|
426
|
+
// Visual GUI automation belongs to Visual mode, not AI Dev (removed from
|
|
427
|
+
// the AI Dev sidebar on both runner and web).
|
|
428
|
+
productMode: "visual"
|
|
423
429
|
},
|
|
424
430
|
{
|
|
425
431
|
id: "orchestration-loop",
|
|
@@ -508,7 +514,9 @@ var INSIGHTS_ITEMS = [
|
|
|
508
514
|
label: "Reflection",
|
|
509
515
|
icon: "RotateCcw",
|
|
510
516
|
description: "Reflection fix effectiveness and history",
|
|
511
|
-
productMode: "ai"
|
|
517
|
+
productMode: "ai",
|
|
518
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
519
|
+
platforms: ["runner"]
|
|
512
520
|
},
|
|
513
521
|
{
|
|
514
522
|
id: "architecture",
|
package/dist/index.js
CHANGED
|
@@ -226,14 +226,18 @@ var AUTOMATE_ITEMS = [
|
|
|
226
226
|
label: "Scheduled Tasks",
|
|
227
227
|
icon: "Calendar",
|
|
228
228
|
description: "Manage scheduled automation",
|
|
229
|
-
productMode: "ai"
|
|
229
|
+
productMode: "ai",
|
|
230
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
231
|
+
platforms: ["runner"]
|
|
230
232
|
},
|
|
231
233
|
{
|
|
232
234
|
id: "triggers",
|
|
233
235
|
label: "Triggers",
|
|
234
236
|
icon: "Zap",
|
|
235
237
|
description: "Event-driven workflow automation",
|
|
236
|
-
productMode: "ai"
|
|
238
|
+
productMode: "ai",
|
|
239
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
240
|
+
platforms: ["runner"]
|
|
237
241
|
},
|
|
238
242
|
{
|
|
239
243
|
id: "watchers",
|
|
@@ -329,7 +333,9 @@ var BUILD_ITEMS = [
|
|
|
329
333
|
description: "Visual GUI automation \u2014 build state machines and inspect runs",
|
|
330
334
|
route: "/vga",
|
|
331
335
|
color: "var(--brand-secondary)",
|
|
332
|
-
|
|
336
|
+
// Visual GUI automation belongs to Visual mode, not AI Dev (removed from
|
|
337
|
+
// the AI Dev sidebar on both runner and web).
|
|
338
|
+
productMode: "visual"
|
|
333
339
|
},
|
|
334
340
|
{
|
|
335
341
|
id: "orchestration-loop",
|
|
@@ -418,7 +424,9 @@ var INSIGHTS_ITEMS = [
|
|
|
418
424
|
label: "Reflection",
|
|
419
425
|
icon: "RotateCcw",
|
|
420
426
|
description: "Reflection fix effectiveness and history",
|
|
421
|
-
productMode: "ai"
|
|
427
|
+
productMode: "ai",
|
|
428
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
429
|
+
platforms: ["runner"]
|
|
422
430
|
},
|
|
423
431
|
{
|
|
424
432
|
id: "architecture",
|