@mevdragon/vidfarm-devcli 0.12.0 → 0.14.0
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/SKILL.director.md +29 -7
- package/SKILL.platform.md +4 -4
- package/demo/dist/app.css +1 -1
- package/demo/dist/app.js +254 -80
- package/dist/src/account-pages-legacy.js +9 -14
- package/dist/src/app.js +1081 -133
- package/dist/src/cli.js +107 -9
- package/dist/src/composition-runtime.js +88 -9
- package/dist/src/devcli/clips.js +5 -0
- package/dist/src/devcli/composition-edit.js +176 -8
- package/dist/src/devcli/transitions.js +205 -0
- package/dist/src/editor-chat.js +6 -5
- package/dist/src/frontend/homepage-view.js +1 -1
- package/dist/src/frontend/template-editor-chat.js +9 -6
- package/dist/src/homepage.js +9 -48
- package/dist/src/hyperframes/composition.js +183 -2
- package/dist/src/primitive-registry.js +237 -47
- package/dist/src/services/hyperframes.js +60 -15
- package/dist/src/services/providers.js +1 -0
- package/dist/src/services/serverless-records.js +19 -2
- package/dist/src/services/storage.js +12 -0
- package/dist/src/template-editor-shell.js +87 -48
- package/package.json +1 -1
- package/public/assets/homepage-client-app.js +23 -23
- package/public/assets/page-runtime-client-app.js +31 -31
|
@@ -6831,7 +6831,9 @@ export function renderLibraryPage(input) {
|
|
|
6831
6831
|
|
|
6832
6832
|
.library-frame { padding-left: 432px; }
|
|
6833
6833
|
.library-body, .library-shell, .library-list-shell { min-height: 0; }
|
|
6834
|
-
|
|
6834
|
+
/* minmax(0,1fr) column: without it the implicit track grows to the
|
|
6835
|
+
toolbar's min-content width and the whole page overflows on phones. */
|
|
6836
|
+
.library-shell { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto minmax(0, 1fr); gap: 12px; }
|
|
6835
6837
|
.library-toolbar {
|
|
6836
6838
|
display: grid;
|
|
6837
6839
|
grid-template-columns: auto minmax(200px, 1fr) auto auto;
|
|
@@ -7036,11 +7038,15 @@ export function renderLibraryPage(input) {
|
|
|
7036
7038
|
${renderReadyPostScheduleStyles()}
|
|
7037
7039
|
@media (max-width: 1180px) {
|
|
7038
7040
|
.library-frame { padding-left: 0; }
|
|
7039
|
-
.editor-right-rail { position: relative; width: 100%; height: 560px; margin-top: 14px; border-radius: 24px; overflow: hidden; }
|
|
7040
7041
|
.library-post { grid-template-columns: auto 248px minmax(0, 1fr); }
|
|
7041
7042
|
.library-post-actions { grid-column: 3; justify-content: flex-start; }
|
|
7042
7043
|
.library-post[data-collapsed="true"] .library-post-actions { grid-column: auto; }
|
|
7043
7044
|
}
|
|
7045
|
+
@media (min-width: 1025px) and (max-width: 1180px) {
|
|
7046
|
+
/* Rail stacks inline below the content in this band only; at ≤1024px
|
|
7047
|
+
the shared shell turns the rail into the FAB + popup overlay. */
|
|
7048
|
+
.editor-right-rail { position: relative; width: 100%; height: 560px; margin-top: 14px; border-radius: 24px; overflow: hidden; }
|
|
7049
|
+
}
|
|
7044
7050
|
@media (min-width: 1025px) and (max-width: 1180px) {
|
|
7045
7051
|
/* The chat rail stacks below the frame at 1180px but the shell only unlocks
|
|
7046
7052
|
document scroll at 1024px; unlock it here too so stacked content stays reachable. */
|
|
@@ -7129,18 +7135,7 @@ export function renderLibraryPage(input) {
|
|
|
7129
7135
|
grid-row: 2;
|
|
7130
7136
|
}
|
|
7131
7137
|
.library-frame { padding-left: 0; }
|
|
7132
|
-
.
|
|
7133
|
-
position: fixed !important;
|
|
7134
|
-
inset: 0;
|
|
7135
|
-
z-index: 110;
|
|
7136
|
-
width: 100%;
|
|
7137
|
-
height: 100svh;
|
|
7138
|
-
min-height: 0;
|
|
7139
|
-
margin: 0;
|
|
7140
|
-
border-radius: 0;
|
|
7141
|
-
overflow: visible;
|
|
7142
|
-
pointer-events: none;
|
|
7143
|
-
}
|
|
7138
|
+
/* Rail overlay + FAB + popup at ≤1024px come from the shared shell styles. */
|
|
7144
7139
|
.library-body { padding-top: 12px; }
|
|
7145
7140
|
.library-shell { min-width: 0; }
|
|
7146
7141
|
.library-list-shell { overflow: visible; padding-right: 0; }
|