handler-playable-sdk 0.3.67 → 0.3.71

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/index.css CHANGED
@@ -874,7 +874,7 @@
874
874
  /* Fixed Layout Container */
875
875
  .preview-shell.layout-fixed .preview-main {
876
876
  display: grid;
877
- grid-template-columns: 300px 1fr 350px;
877
+ grid-template-columns: auto 1fr auto;
878
878
  grid-template-rows: 1fr auto;
879
879
  gap: 0;
880
880
  overflow: hidden;
@@ -2040,7 +2040,7 @@
2040
2040
  .asset-editor-card {
2041
2041
  width: min(680px, 90vw);
2042
2042
  max-height: 85vh;
2043
- background: var(--ui-dark-panel);
2043
+ background: var(--ui-surface);
2044
2044
  border: 1px solid var(--ui-border);
2045
2045
  border-radius: 16px;
2046
2046
  box-shadow: var(--ui-shadow-strong);
@@ -2162,7 +2162,7 @@
2162
2162
  .asset-preview-card {
2163
2163
  width: min(720px, 92vw);
2164
2164
  max-height: 82vh;
2165
- background: var(--ui-dark-panel);
2165
+ background: var(--ui-surface);
2166
2166
  border: 1px solid var(--ui-border);
2167
2167
  border-radius: 14px;
2168
2168
  box-shadow: var(--ui-shadow);
@@ -2291,7 +2291,7 @@
2291
2291
 
2292
2292
  .asset-crop-card {
2293
2293
  width: min(860px, 96vw);
2294
- background: var(--ui-dark-panel);
2294
+ background: var(--ui-surface);
2295
2295
  border: 1px solid var(--ui-border);
2296
2296
  border-radius: 14px;
2297
2297
  box-shadow: var(--ui-shadow);
@@ -2440,12 +2440,12 @@
2440
2440
  justify-content: space-between;
2441
2441
  gap: 12px;
2442
2442
  padding: 10px 14px;
2443
- background-color: var(--ui-dark-panel);
2443
+ background-color: var(--ui-bg-2);
2444
2444
  color: var(--ui-text);
2445
2445
  font-size: 12px;
2446
2446
  user-select: none;
2447
2447
  cursor: move;
2448
- border-bottom: 1px solid var(--ui-overlay-light-1);
2448
+ border-bottom: 1px solid var(--ui-border);
2449
2449
  }
2450
2450
 
2451
2451
  .scene-panel-actions {
@@ -2776,6 +2776,10 @@
2776
2776
  border-right: none;
2777
2777
  border-bottom: none;
2778
2778
  box-shadow: none;
2779
+ top: 0 !important;
2780
+ left: 0 !important;
2781
+ right: 0 !important;
2782
+ bottom: 0 !important;
2779
2783
  }
2780
2784
 
2781
2785
  .preview-shell.layout-fixed .scene-panel.scene-objects {
@@ -2791,6 +2795,10 @@
2791
2795
  border-bottom: none;
2792
2796
  box-shadow: none;
2793
2797
  position: relative;
2798
+ top: 0 !important;
2799
+ left: 0 !important;
2800
+ right: 0 !important;
2801
+ bottom: 0 !important;
2794
2802
  }
2795
2803
 
2796
2804
  .panel-resize-handle-v,
@@ -2821,8 +2829,13 @@
2821
2829
  }
2822
2830
 
2823
2831
  .preview-shell.layout-fixed .workbench-header,
2824
- .preview-shell.layout-fixed .scene-panel-header {
2825
- cursor: default;
2832
+ .preview-shell.layout-fixed .console-header,
2833
+ .preview-shell.layout-fixed .workbench-tab[data-tab="library"],
2834
+ .preview-shell.layout-fixed .workbench-tab-panel[data-tab-panel="library"],
2835
+ .preview-shell.layout-fixed .console-panel.docked-hidden,
2836
+ .preview-shell.layout-fixed #debug-close,
2837
+ .preview-shell.layout-fixed .scene-panel-toggle {
2838
+ display: none !important;
2826
2839
  }
2827
2840
 
2828
2841
  /* Bottom Dock Styles */
@@ -4264,8 +4277,8 @@
4264
4277
  border-radius: 10px;
4265
4278
  padding: 12px;
4266
4279
  margin-top: 8px;
4267
- background-color: var(--ui-dark-panel);
4268
- color: var(--ui-dark-text);
4280
+ background-color: var(--ui-surface-2);
4281
+ color: var(--ui-text);
4269
4282
  }
4270
4283
 
4271
4284
  .debug-select {
@@ -4285,8 +4298,8 @@
4285
4298
  }
4286
4299
 
4287
4300
  .debug-select option {
4288
- background-color: var(--ui-dark-panel);
4289
- color: var(--ui-dark-text);
4301
+ background-color: var(--ui-surface);
4302
+ color: var(--ui-text);
4290
4303
  }
4291
4304
 
4292
4305
  /* Simple subsection with title and inline row of children */
@@ -4306,8 +4319,17 @@
4306
4319
 
4307
4320
  .inspector-subsection-content {
4308
4321
  display: flex;
4309
- gap: 4px;
4322
+ gap: 8px;
4310
4323
  flex: 1;
4324
+ align-items: center;
4325
+ }
4326
+
4327
+ .inspector-subsection-content .inspector-property-label {
4328
+ width: auto;
4329
+ min-width: 14px;
4330
+ margin-right: 0px;
4331
+ font-size: 9px;
4332
+ opacity: 0.8;
4311
4333
  }
4312
4334
 
4313
4335
  .inspector-footer {
@@ -4357,7 +4379,7 @@
4357
4379
 
4358
4380
  .inspector-input {
4359
4381
  flex: 1;
4360
- min-width: 80px;
4382
+ min-width: 40px;
4361
4383
  background: var(--ui-surface-2);
4362
4384
  color: var(--ui-text);
4363
4385
  border: 1px solid var(--ui-border);
package/dist/index.d.cts CHANGED
@@ -654,6 +654,7 @@ declare class DebugPanel implements DebugPanelContext {
654
654
  private loadWorkbenchState;
655
655
  initialize(container: HTMLElement): void;
656
656
  selectObject(objectId: string): void;
657
+ setActiveTab(tab: WorkbenchTab): void;
657
658
  private highlightChangesTab;
658
659
  getDebugOverlayHTML(): string;
659
660
  refresh(): void;
package/dist/index.d.ts CHANGED
@@ -654,6 +654,7 @@ declare class DebugPanel implements DebugPanelContext {
654
654
  private loadWorkbenchState;
655
655
  initialize(container: HTMLElement): void;
656
656
  selectObject(objectId: string): void;
657
+ setActiveTab(tab: WorkbenchTab): void;
657
658
  private highlightChangesTab;
658
659
  getDebugOverlayHTML(): string;
659
660
  refresh(): void;
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import{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,T as U,U as V,a}from"./chunk-RTAWRSMM.js";import"./chunk-I5OOVR5U.js";import{a as q,b as r,c as s,d as t,e as u,f as v,g as w,h as x,i as y,j as z,k as A,l as B,m as C,n as D,o as E}from"./chunk-LV4HGC5G.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}from"./chunk-ZLL42OOV.js";import"./chunk-E6WJCS24.js";import"./chunk-JXBG6UFL.js";export{Q as COLORS,B as ConfigWatcher,K as DebugPanel,A as DefaultReloadStrategy,U as Handler,T as PlayableLoadingScreen,L as PreviewShell,R as STROKE_WIDTH,S as THEME,d as applyConfigOverride,e as applyConfigOverrides,n as applyConfigsToDisk,x as applyDefaults,a as baseLottie,P as bootstrap,f as clearConfigOverrides,g as clearConfigOverridesForObject,j as configOverrideManager,M as createPreviewShell,k as deepClone,V as default,H as defaultPreset,G as deviceGroups,F as devicePresets,C as diffConfigs,l as exportConfigsAsJSON,i as getConfigOverrides,m as getConfigStateSummary,b as getOverrideMode,I as getPresetById,J as getPresetsByCategory,s as loadAllObjectConfigs,q as loadComponentSchemas,t as loadEngineConfig,u as loadGamePromptConfig,y as loadObjectCentricConfig,r as loadObjectConfig,v as loadSceneConfig,D as rehydrateObject,h as removeConfigOverride,o as resetToApplied,p as resetToOriginal,O as setBootstrapDependencies,c as setOverrideMode,E as setupHotReload,N as setupLiveEditBridge,z as toLegacyFormat,w as validateObjectConfig};
1
+ import{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,T as U,U as V,a}from"./chunk-IJGJ4BZK.js";import"./chunk-I5OOVR5U.js";import{a as q,b as r,c as s,d as t,e as u,f as v,g as w,h as x,i as y,j as z,k as A,l as B,m as C,n as D,o as E}from"./chunk-LV4HGC5G.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}from"./chunk-ZLL42OOV.js";import"./chunk-E6WJCS24.js";import"./chunk-JXBG6UFL.js";export{Q as COLORS,B as ConfigWatcher,K as DebugPanel,A as DefaultReloadStrategy,U as Handler,T as PlayableLoadingScreen,L as PreviewShell,R as STROKE_WIDTH,S as THEME,d as applyConfigOverride,e as applyConfigOverrides,n as applyConfigsToDisk,x as applyDefaults,a as baseLottie,P as bootstrap,f as clearConfigOverrides,g as clearConfigOverridesForObject,j as configOverrideManager,M as createPreviewShell,k as deepClone,V as default,H as defaultPreset,G as deviceGroups,F as devicePresets,C as diffConfigs,l as exportConfigsAsJSON,i as getConfigOverrides,m as getConfigStateSummary,b as getOverrideMode,I as getPresetById,J as getPresetsByCategory,s as loadAllObjectConfigs,q as loadComponentSchemas,t as loadEngineConfig,u as loadGamePromptConfig,y as loadObjectCentricConfig,r as loadObjectConfig,v as loadSceneConfig,D as rehydrateObject,h as removeConfigOverride,o as resetToApplied,p as resetToOriginal,O as setBootstrapDependencies,c as setOverrideMode,E as setupHotReload,N as setupLiveEditBridge,z as toLegacyFormat,w as validateObjectConfig};