handler-playable-sdk 1.0.85 → 1.0.89
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/AssetCropModal-5GIDIW5V.js +1 -0
- package/dist/chunk-JYGZ4R4K.js +52 -0
- package/dist/{chunk-U7V7A4FA.js → chunk-M4LZRZ6U.js} +148 -164
- 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 +174 -139
- package/dist/index.css +40 -0
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/pixi/index.cjs +59 -59
- package/dist/pixi/index.css +40 -0
- package/dist/pixi/index.js +1 -1
- package/dist/three/index.cjs +94 -94
- package/dist/three/index.css +40 -0
- package/dist/three/index.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -5288,6 +5288,17 @@
|
|
|
5288
5288
|
background: var(--ui-surface-2);
|
|
5289
5289
|
}
|
|
5290
5290
|
|
|
5291
|
+
.library-slot.current-object {
|
|
5292
|
+
border-color: #3b82f6;
|
|
5293
|
+
border-width: 2px;
|
|
5294
|
+
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
.library-slot.current-object.expanded {
|
|
5298
|
+
border-color: #3b82f6;
|
|
5299
|
+
background: rgba(59, 130, 246, 0.05);
|
|
5300
|
+
}
|
|
5301
|
+
|
|
5291
5302
|
/* Library Items Grid */
|
|
5292
5303
|
.slot-library {
|
|
5293
5304
|
display: grid;
|
|
@@ -6465,6 +6476,35 @@
|
|
|
6465
6476
|
margin: 4px 0;
|
|
6466
6477
|
}
|
|
6467
6478
|
|
|
6479
|
+
.context-menu-item.has-submenu {
|
|
6480
|
+
justify-content: space-between;
|
|
6481
|
+
}
|
|
6482
|
+
|
|
6483
|
+
.context-menu-arrow {
|
|
6484
|
+
opacity: 0.6;
|
|
6485
|
+
font-size: 10px;
|
|
6486
|
+
margin-left: auto;
|
|
6487
|
+
}
|
|
6488
|
+
|
|
6489
|
+
.context-menu-item.has-submenu:hover .context-menu-arrow {
|
|
6490
|
+
opacity: 1;
|
|
6491
|
+
}
|
|
6492
|
+
|
|
6493
|
+
.context-menu-submenu[data-submenu] {
|
|
6494
|
+
display: none;
|
|
6495
|
+
position: absolute;
|
|
6496
|
+
left: 100%;
|
|
6497
|
+
top: 0;
|
|
6498
|
+
margin-left: 4px;
|
|
6499
|
+
background: var(--ui-surface);
|
|
6500
|
+
border: 1px solid var(--ui-border);
|
|
6501
|
+
border-radius: 8px;
|
|
6502
|
+
box-shadow: var(--ui-shadow-strong);
|
|
6503
|
+
min-width: 200px;
|
|
6504
|
+
padding: 4px;
|
|
6505
|
+
z-index: 10002;
|
|
6506
|
+
}
|
|
6507
|
+
|
|
6468
6508
|
/* Responsive Design */
|
|
6469
6509
|
@media (max-width: 768px) {
|
|
6470
6510
|
.wizard-card {
|
package/dist/index.d.cts
CHANGED
|
@@ -342,6 +342,7 @@ declare class LibraryPanel {
|
|
|
342
342
|
*/
|
|
343
343
|
render(): string;
|
|
344
344
|
initialize(container: HTMLElement, options: LibraryPanelOptions): void;
|
|
345
|
+
private highlightCurrentObject;
|
|
345
346
|
/**
|
|
346
347
|
* Re-renders the slots using the current in-memory registry.
|
|
347
348
|
* Useful when registry is updated locally (e.g. after conversion)
|
|
@@ -464,9 +465,11 @@ declare class BrandVisionPanel {
|
|
|
464
465
|
private attachEventListeners;
|
|
465
466
|
private switchTab;
|
|
466
467
|
private switchUploadMethod;
|
|
468
|
+
private handleBatchPNGUpload;
|
|
469
|
+
private inferCategoryFromFilename;
|
|
470
|
+
private fileToDataUrl;
|
|
467
471
|
private handleZipUpload;
|
|
468
472
|
private processZipFile;
|
|
469
|
-
private fileToDataUrl;
|
|
470
473
|
private showCanvaZipWizard;
|
|
471
474
|
private blobToDataUrl;
|
|
472
475
|
private inferAssetCategory;
|
package/dist/index.d.ts
CHANGED
|
@@ -342,6 +342,7 @@ declare class LibraryPanel {
|
|
|
342
342
|
*/
|
|
343
343
|
render(): string;
|
|
344
344
|
initialize(container: HTMLElement, options: LibraryPanelOptions): void;
|
|
345
|
+
private highlightCurrentObject;
|
|
345
346
|
/**
|
|
346
347
|
* Re-renders the slots using the current in-memory registry.
|
|
347
348
|
* Useful when registry is updated locally (e.g. after conversion)
|
|
@@ -464,9 +465,11 @@ declare class BrandVisionPanel {
|
|
|
464
465
|
private attachEventListeners;
|
|
465
466
|
private switchTab;
|
|
466
467
|
private switchUploadMethod;
|
|
468
|
+
private handleBatchPNGUpload;
|
|
469
|
+
private inferCategoryFromFilename;
|
|
470
|
+
private fileToDataUrl;
|
|
467
471
|
private handleZipUpload;
|
|
468
472
|
private processZipFile;
|
|
469
|
-
private fileToDataUrl;
|
|
470
473
|
private showCanvaZipWizard;
|
|
471
474
|
private blobToDataUrl;
|
|
472
475
|
private inferAssetCategory;
|
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-M4LZRZ6U.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};
|