handler-playable-sdk 1.0.89 → 1.0.90
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/{chunk-M4LZRZ6U.js → chunk-NHIKK74M.js} +76 -54
- package/dist/cli/brand-dna.mjs +1 -1
- package/dist/cli/canva-import.mjs +1 -1
- package/dist/cli/cleanup-assets.mjs +1 -1
- package/dist/cli/fix-scales.mjs +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/cli/screen-helper.mjs +1 -1
- package/dist/cli/setup-library.mjs +1 -1
- package/dist/cli/student-helper/add-logic.mjs +1 -1
- package/dist/cli/student-helper/add-object.mjs +1 -1
- package/dist/cli/student-helper/arg-parsing.mjs +1 -1
- package/dist/cli/student-helper/asset-registry.mjs +1 -1
- package/dist/cli/student-helper/bullet-system.mjs +1 -1
- package/dist/cli/student-helper/collectable-system.mjs +1 -1
- package/dist/cli/student-helper/constants.mjs +1 -1
- package/dist/cli/student-helper/drag-snap-couples.mjs +1 -1
- package/dist/cli/student-helper/endgame-screen.mjs +1 -1
- package/dist/cli/student-helper/fs-io.mjs +1 -1
- package/dist/cli/student-helper/logic-defaults.mjs +1 -1
- package/dist/cli/student-helper/print-help.mjs +1 -1
- package/dist/cli/student-helper/prompts.mjs +1 -1
- package/dist/cli/student-helper/scratch-card.mjs +1 -1
- package/dist/cli/student-helper/screen-utils.mjs +1 -1
- package/dist/cli/student-helper/snippets.mjs +1 -1
- package/dist/cli/student-helper/start-screen.mjs +1 -1
- package/dist/cli/student-helper/swerve-collect.mjs +1 -1
- package/dist/cli/student-helper/tap-destroy.mjs +1 -1
- package/dist/cli/student-helper/template-packs.mjs +1 -1
- package/dist/cli/student-helper.mjs +1 -1
- package/dist/cli/sync-screens.mjs +1 -1
- package/dist/cli/validate-assets.mjs +1 -1
- package/dist/cli/validate.mjs +1 -1
- package/dist/index.cjs +141 -119
- package/dist/index.css +9 -2
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/pixi/index.cjs +37 -17
- package/dist/pixi/index.css +9 -2
- package/dist/pixi/index.js +1 -1
- package/dist/three/index.cjs +46 -26
- package/dist/three/index.css +9 -2
- package/dist/three/index.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -3331,10 +3331,14 @@
|
|
|
3331
3331
|
display: flex;
|
|
3332
3332
|
flex-direction: column;
|
|
3333
3333
|
height: 250px;
|
|
3334
|
+
min-height: 100px;
|
|
3335
|
+
max-height: 50vh;
|
|
3334
3336
|
grid-column: 1 / span 3;
|
|
3335
3337
|
grid-row: 2;
|
|
3336
3338
|
overflow: hidden;
|
|
3337
3339
|
z-index: 100;
|
|
3340
|
+
/* Allow height to be adjusted by resize handle */
|
|
3341
|
+
resize: none;
|
|
3338
3342
|
}
|
|
3339
3343
|
|
|
3340
3344
|
/* Hide library header inside dock */
|
|
@@ -6476,6 +6480,10 @@
|
|
|
6476
6480
|
margin: 4px 0;
|
|
6477
6481
|
}
|
|
6478
6482
|
|
|
6483
|
+
.context-menu-item-wrapper {
|
|
6484
|
+
position: relative;
|
|
6485
|
+
}
|
|
6486
|
+
|
|
6479
6487
|
.context-menu-item.has-submenu {
|
|
6480
6488
|
justify-content: space-between;
|
|
6481
6489
|
}
|
|
@@ -6493,9 +6501,8 @@
|
|
|
6493
6501
|
.context-menu-submenu[data-submenu] {
|
|
6494
6502
|
display: none;
|
|
6495
6503
|
position: absolute;
|
|
6496
|
-
left: 100
|
|
6504
|
+
left: calc(100% + 4px);
|
|
6497
6505
|
top: 0;
|
|
6498
|
-
margin-left: 4px;
|
|
6499
6506
|
background: var(--ui-surface);
|
|
6500
6507
|
border: 1px solid var(--ui-border);
|
|
6501
6508
|
border-radius: 8px;
|
package/dist/index.d.cts
CHANGED
|
@@ -147,6 +147,7 @@ declare class PreviewShell {
|
|
|
147
147
|
setLayoutMode(mode: LayoutMode): void;
|
|
148
148
|
private updateDockState;
|
|
149
149
|
private makeBottomDockResizable;
|
|
150
|
+
private updateBottomDockHeight;
|
|
150
151
|
private makeSidebarResizable;
|
|
151
152
|
private getSceneVisibilityStorageKey;
|
|
152
153
|
private getSceneWidthStorageKey;
|
package/dist/index.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ declare class PreviewShell {
|
|
|
147
147
|
setLayoutMode(mode: LayoutMode): void;
|
|
148
148
|
private updateDockState;
|
|
149
149
|
private makeBottomDockResizable;
|
|
150
|
+
private updateBottomDockHeight;
|
|
150
151
|
private makeSidebarResizable;
|
|
151
152
|
private getSceneVisibilityStorageKey;
|
|
152
153
|
private getSceneWidthStorageKey;
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{E as J,F as K,G as L,H as M,I as N,J as O,K as P,L as Q,M as R,N as S,O as T,P as U,Q as V,R as W,S as X,T as Y,U as Z,a}from"./chunk-
|
|
1
|
+
import{E as J,F as K,G as L,H as M,I as N,J as O,K as P,L as Q,M as R,N as S,O as T,P as U,Q as V,R as W,S as X,T as Y,U as Z,a}from"./chunk-NHIKK74M.js";import"./chunk-JYGZ4R4K.js";import"./chunk-I5OOVR5U.js";import{a as u,b as v,c as w,d as x,e as y,f as z,g as A,h as B,i as C,j as D,k as E,l as F,m as G,n as H,o as I}from"./chunk-GVZ2445E.js";import{a as b,b as c,c as d,d as e,e as f,f as g,g as h,h as i,i as j,j as k,k as l,l as m,m as n,n as o,o as p,p as q,q as r,r as s,s as t}from"./chunk-EFRB44UC.js";import"./chunk-E6WJCS24.js";import"./chunk-JXBG6UFL.js";export{U as COLORS,F as ConfigWatcher,O as DebugPanel,E as DefaultReloadStrategy,Y as Handler,X as PlayableLoadingScreen,P as PreviewShell,V as STROKE_WIDTH,W as THEME,d as applyConfigOverride,e as applyConfigOverrides,r as applyConfigsToDisk,B as applyDefaults,a as baseLottie,T as bootstrap,f as clearConfigOverrides,g as clearConfigOverridesForObject,j as configOverrideManager,Q as createPreviewShell,o as deepClone,Z as default,L as defaultPreset,K as deviceGroups,J as devicePresets,G as diffConfigs,p as exportConfigsAsJSON,i as getConfigOverrides,q as getConfigStateSummary,b as getOverrideMode,M as getPresetById,N as getPresetsByCategory,w as loadAllObjectConfigs,u as loadComponentSchemas,x as loadEngineConfig,y as loadGamePromptConfig,C as loadObjectCentricConfig,v as loadObjectConfig,z as loadSceneConfig,l as redoLastConfigChange,H as rehydrateObject,h as removeConfigOverride,s as resetToApplied,t as resetToOriginal,S as setBootstrapDependencies,c as setOverrideMode,I as setupHotReload,R as setupLiveEditBridge,D as toLegacyFormat,m as trackObjectCreation,n as trackObjectDeletion,k as undoLastConfigChange,A as validateObjectConfig};
|