@dfosco/storyboard 0.6.0-beta.0 → 0.6.0-beta.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/storyboard-ui.js +2 -0
- package/dist/storyboard-ui.js.map +1 -1
- package/package.json +1 -1
- package/scaffold/codex/config.toml +0 -1
- package/scaffold/skills/migrate/SKILL.md +6 -4
- package/scaffold/terminal-agent.agent.md +0 -1
- package/src/core/canvas/agent-session.js +198 -0
- package/src/core/canvas/agent-session.test.js +112 -0
- package/src/core/canvas/hot-pool.js +38 -2
- package/src/core/canvas/terminal-config.js +43 -2
- package/src/core/canvas/terminal-config.test.js +59 -0
- package/src/core/canvas/terminal-server.js +137 -30
- package/src/core/cli/dev.js +31 -2
- package/src/core/cli/terminal-welcome.js +16 -4
- package/src/core/mountStoryboardCore.js +67 -0
- package/src/core/stores/configSchema.js +4 -3
- package/src/core/stores/configSchema.test.js +2 -2
- package/src/core/ui/CoreUIBar.jsx +4 -0
- package/src/core/vite/server-plugin.js +5 -5
- package/src/internals/CommandPalette/CommandPalette.jsx +25 -1
- package/src/internals/Viewfinder.jsx +14 -2
- package/src/internals/canvas/componentSetIsolate.jsx +23 -5
- package/src/internals/canvas/widgets/StorySetWidget.jsx +17 -10
package/dist/storyboard-ui.js
CHANGED
|
@@ -12113,6 +12113,8 @@ function bp({ basePath: e = "/", toolbarConfig: t, customHandlers: a = {} }) {
|
|
|
12113
12113
|
k0();
|
|
12114
12114
|
}, [S, k0]), u1(() => {
|
|
12115
12115
|
function E(X) {
|
|
12116
|
+
if (document.documentElement.classList.contains("storyboard-customer-hide-chrome"))
|
|
12117
|
+
return;
|
|
12116
12118
|
const R1 = I1.hideChrome?.key || ".";
|
|
12117
12119
|
if ((X.metaKey || X.ctrlKey) && !X.shiftKey) {
|
|
12118
12120
|
if (X.altKey && X.code === "Period") {
|