handler-playable-sdk 0.5.47 → 0.5.54
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-RLJOGLPW.js → chunk-UXMZHMPZ.js} +147 -96
- 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/index.cjs +138 -87
- package/dist/index.css +86 -0
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -1
- package/dist/pixi/index.cjs +5 -5
- package/dist/pixi/index.css +86 -0
- package/dist/pixi/index.js +1 -1
- package/dist/three/index.cjs +12 -12
- package/dist/three/index.css +86 -0
- package/dist/three/index.js +1 -1
- package/package.json +1 -1
package/dist/three/index.css
CHANGED
|
@@ -1156,6 +1156,44 @@
|
|
|
1156
1156
|
margin-bottom: 16px;
|
|
1157
1157
|
}
|
|
1158
1158
|
|
|
1159
|
+
.scene-object-group-bundle {
|
|
1160
|
+
border-left: 3px solid var(--ui-terracotta);
|
|
1161
|
+
padding-left: 8px;
|
|
1162
|
+
margin-bottom: 10px;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.scene-object-group-actions {
|
|
1166
|
+
display: inline-flex;
|
|
1167
|
+
align-items: center;
|
|
1168
|
+
gap: 4px;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.scene-object-group-action {
|
|
1172
|
+
background: none;
|
|
1173
|
+
border: none;
|
|
1174
|
+
font-size: 14px;
|
|
1175
|
+
cursor: pointer;
|
|
1176
|
+
padding: 4px 6px;
|
|
1177
|
+
border-radius: 4px;
|
|
1178
|
+
color: var(--ui-text-secondary);
|
|
1179
|
+
transition: all var(--ui-duration-fast) var(--ui-ease);
|
|
1180
|
+
display: flex;
|
|
1181
|
+
align-items: center;
|
|
1182
|
+
justify-content: center;
|
|
1183
|
+
opacity: 0.6;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.scene-object-group-action:hover {
|
|
1187
|
+
background: var(--ui-overlay-light-4);
|
|
1188
|
+
color: var(--ui-text);
|
|
1189
|
+
opacity: 1;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.scene-object-group-visibility.is-hidden {
|
|
1193
|
+
color: var(--ui-terracotta);
|
|
1194
|
+
opacity: 1;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1159
1197
|
.scene-object-group-delete {
|
|
1160
1198
|
background: none;
|
|
1161
1199
|
border: none;
|
|
@@ -5962,6 +6000,44 @@
|
|
|
5962
6000
|
}
|
|
5963
6001
|
}
|
|
5964
6002
|
|
|
6003
|
+
.context-menu-section-title {
|
|
6004
|
+
margin: 6px 8px 4px;
|
|
6005
|
+
font-size: 11px;
|
|
6006
|
+
font-weight: var(--font-weight-semibold);
|
|
6007
|
+
color: var(--ui-muted);
|
|
6008
|
+
letter-spacing: 0.6px;
|
|
6009
|
+
text-transform: uppercase;
|
|
6010
|
+
}
|
|
6011
|
+
|
|
6012
|
+
.context-menu-screen-grid {
|
|
6013
|
+
display: flex;
|
|
6014
|
+
flex-wrap: wrap;
|
|
6015
|
+
gap: 6px;
|
|
6016
|
+
padding: 6px 6px 2px;
|
|
6017
|
+
}
|
|
6018
|
+
|
|
6019
|
+
.context-menu-screen-chip {
|
|
6020
|
+
border: 1px solid var(--ui-border);
|
|
6021
|
+
background: var(--ui-surface-2);
|
|
6022
|
+
color: var(--ui-text);
|
|
6023
|
+
font-size: 12px;
|
|
6024
|
+
padding: 6px 10px;
|
|
6025
|
+
border-radius: 999px;
|
|
6026
|
+
cursor: pointer;
|
|
6027
|
+
transition: all 0.15s var(--ui-ease);
|
|
6028
|
+
}
|
|
6029
|
+
|
|
6030
|
+
.context-menu-screen-chip:hover {
|
|
6031
|
+
border-color: var(--ui-terracotta);
|
|
6032
|
+
background: var(--ui-accent-overlay-1);
|
|
6033
|
+
}
|
|
6034
|
+
|
|
6035
|
+
.context-menu-screen-chip.active {
|
|
6036
|
+
border-color: var(--ui-terracotta);
|
|
6037
|
+
background: var(--ui-accent-overlay-2);
|
|
6038
|
+
color: var(--ui-terracotta);
|
|
6039
|
+
}
|
|
6040
|
+
|
|
5965
6041
|
.context-menu-item {
|
|
5966
6042
|
display: flex;
|
|
5967
6043
|
align-items: center;
|
|
@@ -5974,6 +6050,16 @@
|
|
|
5974
6050
|
transition: all 0.15s var(--ui-ease);
|
|
5975
6051
|
}
|
|
5976
6052
|
|
|
6053
|
+
.context-menu-item.disabled {
|
|
6054
|
+
opacity: 0.5;
|
|
6055
|
+
cursor: default;
|
|
6056
|
+
}
|
|
6057
|
+
|
|
6058
|
+
.context-menu-item.disabled:hover {
|
|
6059
|
+
background: transparent;
|
|
6060
|
+
color: var(--ui-text);
|
|
6061
|
+
}
|
|
6062
|
+
|
|
5977
6063
|
.context-menu-item:hover {
|
|
5978
6064
|
background: var(--ui-accent-overlay-1);
|
|
5979
6065
|
color: var(--ui-accent);
|