@azure-id/orc 1.2.1 → 1.4.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/CHANGELOG.md +2907 -2663
- package/README-id.md +44 -0
- package/README.md +631 -665
- package/bin/cli.js +36866 -34355
- package/bin/verify-contracts.js +35 -1
- package/bin/verify-package.js +15 -0
- package/bin/webui/api.js +1283 -1201
- package/bin/webui/app.html +213 -210
- package/bin/webui/css/04-motion.css +43 -0
- package/bin/webui/css/06-responsive.css +42 -0
- package/bin/webui/css/panels/hookui.css +595 -0
- package/bin/webui/fixtures/hookui.js +431 -0
- package/bin/webui/fixtures/index.js +17 -0
- package/bin/webui/i18n/en/hookui.json +180 -0
- package/bin/webui/i18n/en/nav.json +22 -21
- package/bin/webui/i18n/en/overview.json +4 -1
- package/bin/webui/i18n/en/tour.json +3 -1
- package/bin/webui/i18n/id/hookui.json +180 -0
- package/bin/webui/i18n/id/nav.json +22 -21
- package/bin/webui/i18n/id/overview.json +4 -1
- package/bin/webui/i18n/id/tour.json +3 -1
- package/bin/webui/js/01-i18n.js +152 -151
- package/bin/webui/js/90-tour.js +6 -0
- package/bin/webui/js/panels/hookui.js +1313 -0
- package/bin/webui/js/panels/overview.js +7 -0
- package/package.json +1 -1
- package/templates/hooks/README.md +80 -2
- package/templates/hooks/orc-statusline-render.js +921 -0
- package/templates/hooks/orc-statusline.js +715 -68
- package/templates/hooks/orc-subagent-line.js +219 -0
package/bin/webui/js/90-tour.js
CHANGED
|
@@ -419,6 +419,12 @@ const TOUR_STEPS = [
|
|
|
419
419
|
unconditionally; the header strip sits outside the tabs entirely and is the
|
|
420
420
|
fallback. Same rule a fourth time: point at something with a SIZE. */
|
|
421
421
|
{ panel: "extra", selector: ".ex-boundary, .ex-strip", title: "tour.14.title", text: "tour.14.text" },
|
|
422
|
+
/* v1.3.0 — the board. Same rule a fifth time: it must point at something with
|
|
423
|
+
a SIZE. `.hk-zone` is the one element on this panel that renders in EVERY
|
|
424
|
+
state, including the first run — an empty line 1 still draws its zone,
|
|
425
|
+
because a drop target that only appears once something is in it is a drop
|
|
426
|
+
target nobody finds. The gate card is the fallback. */
|
|
427
|
+
{ panel: "hookui", selector: ".hk-zone, .card", title: "tour.15.title", text: "tour.15.text" },
|
|
422
428
|
];
|
|
423
429
|
|
|
424
430
|
function startFirstRunTour(root) {
|