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/three/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 {
|