handler-playable-sdk 0.5.32 → 0.5.36
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/ConfigOverride-X57ZHK2W.js +1 -0
- package/dist/chunk-C4GAOSNW.js +1 -0
- package/dist/{chunk-LV4HGC5G.js → chunk-NHKCXBUZ.js} +1 -1
- package/dist/{chunk-H4VZRV3N.js → chunk-ROFM4I6A.js} +218 -154
- 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.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/{config-VESWPZAY.js → config-OH6SMCBB.js} +1 -1
- package/dist/index.cjs +207 -143
- package/dist/index.css +36 -0
- package/dist/index.d.cts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +1 -1
- package/dist/pixi/index.cjs +8 -8
- package/dist/pixi/index.css +36 -0
- package/dist/pixi/index.js +1 -1
- package/dist/three/index.cjs +47 -47
- package/dist/three/index.css +36 -0
- package/dist/three/index.js +1 -1
- package/package.json +1 -1
- package/dist/ConfigOverride-JLWPHR4L.js +0 -1
- package/dist/chunk-ZLL42OOV.js +0 -1
package/dist/three/index.css
CHANGED
|
@@ -981,6 +981,10 @@
|
|
|
981
981
|
text-transform: uppercase;
|
|
982
982
|
letter-spacing: 0.6px;
|
|
983
983
|
margin-bottom: 6px;
|
|
984
|
+
display: flex;
|
|
985
|
+
align-items: center;
|
|
986
|
+
justify-content: space-between;
|
|
987
|
+
gap: 8px;
|
|
984
988
|
}
|
|
985
989
|
|
|
986
990
|
.scene-object-count {
|
|
@@ -1044,6 +1048,38 @@
|
|
|
1044
1048
|
color: var(--ui-accent-2);
|
|
1045
1049
|
}
|
|
1046
1050
|
|
|
1051
|
+
.scene-object-badge.system {
|
|
1052
|
+
background: rgba(255, 165, 0, 0.2);
|
|
1053
|
+
color: #ff9500;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.scene-object-group-system {
|
|
1057
|
+
border-left: 3px solid #ff9500;
|
|
1058
|
+
padding-left: 8px;
|
|
1059
|
+
margin-bottom: 16px;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.scene-object-group-delete {
|
|
1063
|
+
background: none;
|
|
1064
|
+
border: none;
|
|
1065
|
+
font-size: 14px;
|
|
1066
|
+
cursor: pointer;
|
|
1067
|
+
padding: 4px 6px;
|
|
1068
|
+
border-radius: 4px;
|
|
1069
|
+
color: var(--ui-text-secondary);
|
|
1070
|
+
transition: all var(--ui-duration-fast) var(--ui-ease);
|
|
1071
|
+
display: flex;
|
|
1072
|
+
align-items: center;
|
|
1073
|
+
justify-content: center;
|
|
1074
|
+
opacity: 0.6;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.scene-object-group-delete:hover {
|
|
1078
|
+
background: var(--ui-danger-overlay-1);
|
|
1079
|
+
color: var(--ui-danger);
|
|
1080
|
+
opacity: 1;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1047
1083
|
.scene-object-item:hover {
|
|
1048
1084
|
border-color: var(--ui-terracotta);
|
|
1049
1085
|
background: var(--ui-accent-overlay-1);
|