handler-playable-sdk 0.4.71 → 0.5.2
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-PPPD3Q3N.js → chunk-4EJGJBZO.js} +171 -75
- 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 +158 -62
- package/dist/index.css +488 -0
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -1
- package/dist/pixi/index.cjs +6 -6
- package/dist/pixi/index.css +488 -0
- package/dist/pixi/index.js +1 -1
- package/dist/three/index.cjs +25 -25
- package/dist/three/index.css +488 -0
- package/dist/three/index.js +1 -1
- package/package.json +1 -1
package/dist/three/index.css
CHANGED
|
@@ -5177,6 +5177,494 @@
|
|
|
5177
5177
|
word-wrap: break-word;
|
|
5178
5178
|
}
|
|
5179
5179
|
|
|
5180
|
+
/* ========== 11-wizard.css ========== */
|
|
5181
|
+
/* Wizard Modal Overlay */
|
|
5182
|
+
.wizard-modal {
|
|
5183
|
+
position: fixed;
|
|
5184
|
+
top: 0;
|
|
5185
|
+
left: 0;
|
|
5186
|
+
width: 100%;
|
|
5187
|
+
height: 100%;
|
|
5188
|
+
background-color: var(--ui-overlay-dark-3);
|
|
5189
|
+
backdrop-filter: blur(4px);
|
|
5190
|
+
z-index: 10000;
|
|
5191
|
+
display: flex;
|
|
5192
|
+
align-items: center;
|
|
5193
|
+
justify-content: center;
|
|
5194
|
+
animation: wizard-fade-in 0.2s var(--ui-ease);
|
|
5195
|
+
}
|
|
5196
|
+
|
|
5197
|
+
@keyframes wizard-fade-in {
|
|
5198
|
+
from { opacity: 0; }
|
|
5199
|
+
to { opacity: 1; }
|
|
5200
|
+
}
|
|
5201
|
+
|
|
5202
|
+
/* Wizard Card Container */
|
|
5203
|
+
.wizard-card {
|
|
5204
|
+
background: var(--ui-surface);
|
|
5205
|
+
border: 1px solid var(--ui-border);
|
|
5206
|
+
border-radius: 14px;
|
|
5207
|
+
box-shadow: var(--ui-shadow-strong);
|
|
5208
|
+
width: 90%;
|
|
5209
|
+
max-width: 800px;
|
|
5210
|
+
max-height: 90vh;
|
|
5211
|
+
display: flex;
|
|
5212
|
+
flex-direction: column;
|
|
5213
|
+
overflow: hidden;
|
|
5214
|
+
animation: wizard-slide-up 0.3s var(--ui-ease);
|
|
5215
|
+
}
|
|
5216
|
+
|
|
5217
|
+
@keyframes wizard-slide-up {
|
|
5218
|
+
from {
|
|
5219
|
+
opacity: 0;
|
|
5220
|
+
transform: translateY(20px);
|
|
5221
|
+
}
|
|
5222
|
+
to {
|
|
5223
|
+
opacity: 1;
|
|
5224
|
+
transform: translateY(0);
|
|
5225
|
+
}
|
|
5226
|
+
}
|
|
5227
|
+
|
|
5228
|
+
/* Wizard Header */
|
|
5229
|
+
.wizard-header {
|
|
5230
|
+
display: flex;
|
|
5231
|
+
align-items: center;
|
|
5232
|
+
justify-content: space-between;
|
|
5233
|
+
padding: 20px 24px;
|
|
5234
|
+
border-bottom: 1px solid var(--ui-border);
|
|
5235
|
+
background: var(--ui-bg-2);
|
|
5236
|
+
}
|
|
5237
|
+
|
|
5238
|
+
.wizard-title {
|
|
5239
|
+
display: flex;
|
|
5240
|
+
flex-direction: column;
|
|
5241
|
+
gap: 4px;
|
|
5242
|
+
}
|
|
5243
|
+
|
|
5244
|
+
.wizard-title-text {
|
|
5245
|
+
font-size: 18px;
|
|
5246
|
+
font-weight: 700;
|
|
5247
|
+
color: var(--ui-text);
|
|
5248
|
+
letter-spacing: 0.5px;
|
|
5249
|
+
}
|
|
5250
|
+
|
|
5251
|
+
.wizard-subtitle {
|
|
5252
|
+
font-size: 12px;
|
|
5253
|
+
color: var(--ui-muted);
|
|
5254
|
+
text-transform: uppercase;
|
|
5255
|
+
letter-spacing: 0.8px;
|
|
5256
|
+
}
|
|
5257
|
+
|
|
5258
|
+
.wizard-close {
|
|
5259
|
+
width: 32px;
|
|
5260
|
+
height: 32px;
|
|
5261
|
+
border: none;
|
|
5262
|
+
background: transparent;
|
|
5263
|
+
color: var(--ui-muted);
|
|
5264
|
+
font-size: 24px;
|
|
5265
|
+
cursor: pointer;
|
|
5266
|
+
border-radius: 6px;
|
|
5267
|
+
display: flex;
|
|
5268
|
+
align-items: center;
|
|
5269
|
+
justify-content: center;
|
|
5270
|
+
transition: all 0.2s var(--ui-ease);
|
|
5271
|
+
}
|
|
5272
|
+
|
|
5273
|
+
.wizard-close:hover {
|
|
5274
|
+
background: var(--ui-surface-2);
|
|
5275
|
+
color: var(--ui-text);
|
|
5276
|
+
}
|
|
5277
|
+
|
|
5278
|
+
/* Step Progress Indicator */
|
|
5279
|
+
.wizard-progress {
|
|
5280
|
+
display: flex;
|
|
5281
|
+
align-items: center;
|
|
5282
|
+
justify-content: center;
|
|
5283
|
+
gap: 8px;
|
|
5284
|
+
padding: 16px 24px;
|
|
5285
|
+
background: var(--ui-surface-2);
|
|
5286
|
+
border-bottom: 1px solid var(--ui-border);
|
|
5287
|
+
flex-wrap: wrap;
|
|
5288
|
+
}
|
|
5289
|
+
|
|
5290
|
+
.wizard-step-indicator {
|
|
5291
|
+
display: flex;
|
|
5292
|
+
align-items: center;
|
|
5293
|
+
gap: 8px;
|
|
5294
|
+
}
|
|
5295
|
+
|
|
5296
|
+
.wizard-step-dot {
|
|
5297
|
+
width: 8px;
|
|
5298
|
+
height: 8px;
|
|
5299
|
+
border-radius: 50%;
|
|
5300
|
+
background: var(--ui-border);
|
|
5301
|
+
transition: all 0.3s var(--ui-ease);
|
|
5302
|
+
}
|
|
5303
|
+
|
|
5304
|
+
.wizard-step-dot.active {
|
|
5305
|
+
background: var(--ui-accent);
|
|
5306
|
+
width: 24px;
|
|
5307
|
+
border-radius: 4px;
|
|
5308
|
+
}
|
|
5309
|
+
|
|
5310
|
+
.wizard-step-dot.completed {
|
|
5311
|
+
background: var(--ui-success);
|
|
5312
|
+
}
|
|
5313
|
+
|
|
5314
|
+
.wizard-step-label {
|
|
5315
|
+
font-size: 11px;
|
|
5316
|
+
color: var(--ui-muted);
|
|
5317
|
+
text-transform: uppercase;
|
|
5318
|
+
letter-spacing: 0.5px;
|
|
5319
|
+
margin-left: 4px;
|
|
5320
|
+
}
|
|
5321
|
+
|
|
5322
|
+
/* Wizard Body */
|
|
5323
|
+
.wizard-body {
|
|
5324
|
+
flex: 1;
|
|
5325
|
+
padding: 24px;
|
|
5326
|
+
overflow-y: auto;
|
|
5327
|
+
background: var(--ui-surface);
|
|
5328
|
+
}
|
|
5329
|
+
|
|
5330
|
+
.wizard-step {
|
|
5331
|
+
display: none;
|
|
5332
|
+
}
|
|
5333
|
+
|
|
5334
|
+
.wizard-step.active {
|
|
5335
|
+
display: block;
|
|
5336
|
+
animation: wizard-step-fade 0.3s var(--ui-ease);
|
|
5337
|
+
}
|
|
5338
|
+
|
|
5339
|
+
@keyframes wizard-step-fade {
|
|
5340
|
+
from {
|
|
5341
|
+
opacity: 0;
|
|
5342
|
+
transform: translateX(10px);
|
|
5343
|
+
}
|
|
5344
|
+
to {
|
|
5345
|
+
opacity: 1;
|
|
5346
|
+
transform: translateX(0);
|
|
5347
|
+
}
|
|
5348
|
+
}
|
|
5349
|
+
|
|
5350
|
+
/* Form Sections */
|
|
5351
|
+
.wizard-section {
|
|
5352
|
+
margin-bottom: 24px;
|
|
5353
|
+
}
|
|
5354
|
+
|
|
5355
|
+
.wizard-section-title {
|
|
5356
|
+
font-size: 14px;
|
|
5357
|
+
font-weight: 600;
|
|
5358
|
+
color: var(--ui-text);
|
|
5359
|
+
margin-bottom: 12px;
|
|
5360
|
+
text-transform: uppercase;
|
|
5361
|
+
letter-spacing: 0.5px;
|
|
5362
|
+
}
|
|
5363
|
+
|
|
5364
|
+
.wizard-field-group {
|
|
5365
|
+
display: flex;
|
|
5366
|
+
flex-direction: column;
|
|
5367
|
+
gap: 8px;
|
|
5368
|
+
margin-bottom: 16px;
|
|
5369
|
+
}
|
|
5370
|
+
|
|
5371
|
+
.wizard-label {
|
|
5372
|
+
font-size: 12px;
|
|
5373
|
+
font-weight: 600;
|
|
5374
|
+
color: var(--ui-text);
|
|
5375
|
+
text-transform: uppercase;
|
|
5376
|
+
letter-spacing: 0.3px;
|
|
5377
|
+
}
|
|
5378
|
+
|
|
5379
|
+
.wizard-label.required::after {
|
|
5380
|
+
content: " *";
|
|
5381
|
+
color: var(--ui-danger);
|
|
5382
|
+
}
|
|
5383
|
+
|
|
5384
|
+
.wizard-input,
|
|
5385
|
+
.wizard-select,
|
|
5386
|
+
.wizard-textarea {
|
|
5387
|
+
width: 100%;
|
|
5388
|
+
padding: 10px 12px;
|
|
5389
|
+
border: 1px solid var(--ui-border);
|
|
5390
|
+
border-radius: 8px;
|
|
5391
|
+
background: var(--ui-surface);
|
|
5392
|
+
color: var(--ui-text);
|
|
5393
|
+
font-size: 13px;
|
|
5394
|
+
font-family: inherit;
|
|
5395
|
+
transition: all 0.2s var(--ui-ease);
|
|
5396
|
+
}
|
|
5397
|
+
|
|
5398
|
+
.wizard-input:focus,
|
|
5399
|
+
.wizard-select:focus,
|
|
5400
|
+
.wizard-textarea:focus {
|
|
5401
|
+
outline: none;
|
|
5402
|
+
border-color: var(--ui-accent);
|
|
5403
|
+
box-shadow: 0 0 0 3px var(--ui-accent-overlay-1);
|
|
5404
|
+
}
|
|
5405
|
+
|
|
5406
|
+
.wizard-input:invalid,
|
|
5407
|
+
.wizard-select:invalid {
|
|
5408
|
+
border-color: var(--ui-danger);
|
|
5409
|
+
}
|
|
5410
|
+
|
|
5411
|
+
.wizard-help-text {
|
|
5412
|
+
font-size: 11px;
|
|
5413
|
+
color: var(--ui-muted);
|
|
5414
|
+
margin-top: 4px;
|
|
5415
|
+
}
|
|
5416
|
+
|
|
5417
|
+
.wizard-asset-actions {
|
|
5418
|
+
display: flex;
|
|
5419
|
+
flex-wrap: wrap;
|
|
5420
|
+
gap: 8px;
|
|
5421
|
+
}
|
|
5422
|
+
|
|
5423
|
+
.wizard-asset-actions .wizard-btn {
|
|
5424
|
+
padding: 6px 10px;
|
|
5425
|
+
font-size: 11px;
|
|
5426
|
+
letter-spacing: 0.3px;
|
|
5427
|
+
}
|
|
5428
|
+
|
|
5429
|
+
.wizard-error {
|
|
5430
|
+
font-size: 11px;
|
|
5431
|
+
color: var(--ui-danger);
|
|
5432
|
+
margin-top: 4px;
|
|
5433
|
+
display: flex;
|
|
5434
|
+
align-items: center;
|
|
5435
|
+
gap: 4px;
|
|
5436
|
+
white-space: pre-line;
|
|
5437
|
+
}
|
|
5438
|
+
|
|
5439
|
+
/* Type Selection Cards */
|
|
5440
|
+
.wizard-type-grid {
|
|
5441
|
+
display: grid;
|
|
5442
|
+
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
|
|
5443
|
+
gap: 12px;
|
|
5444
|
+
margin-bottom: 24px;
|
|
5445
|
+
}
|
|
5446
|
+
|
|
5447
|
+
.wizard-type-card {
|
|
5448
|
+
padding: 16px;
|
|
5449
|
+
border: 2px solid var(--ui-border);
|
|
5450
|
+
border-radius: 10px;
|
|
5451
|
+
background: var(--ui-surface);
|
|
5452
|
+
cursor: pointer;
|
|
5453
|
+
transition: all 0.2s var(--ui-ease);
|
|
5454
|
+
text-align: center;
|
|
5455
|
+
}
|
|
5456
|
+
|
|
5457
|
+
.wizard-type-card:hover {
|
|
5458
|
+
border-color: var(--ui-accent);
|
|
5459
|
+
background: var(--ui-accent-overlay-1);
|
|
5460
|
+
transform: translateY(-2px);
|
|
5461
|
+
box-shadow: var(--ui-shadow);
|
|
5462
|
+
}
|
|
5463
|
+
|
|
5464
|
+
.wizard-type-card.selected {
|
|
5465
|
+
border-color: var(--ui-accent);
|
|
5466
|
+
background: var(--ui-accent-overlay-2);
|
|
5467
|
+
box-shadow: 0 0 0 3px var(--ui-accent-overlay-1);
|
|
5468
|
+
}
|
|
5469
|
+
|
|
5470
|
+
.wizard-type-icon {
|
|
5471
|
+
font-size: 32px;
|
|
5472
|
+
margin-bottom: 8px;
|
|
5473
|
+
}
|
|
5474
|
+
|
|
5475
|
+
.wizard-type-name {
|
|
5476
|
+
font-size: 13px;
|
|
5477
|
+
font-weight: 600;
|
|
5478
|
+
color: var(--ui-text);
|
|
5479
|
+
text-transform: uppercase;
|
|
5480
|
+
letter-spacing: 0.5px;
|
|
5481
|
+
}
|
|
5482
|
+
|
|
5483
|
+
/* Preview Pane */
|
|
5484
|
+
.wizard-preview {
|
|
5485
|
+
margin-top: 24px;
|
|
5486
|
+
padding: 16px;
|
|
5487
|
+
background: var(--ui-bg-2);
|
|
5488
|
+
border: 1px solid var(--ui-border);
|
|
5489
|
+
border-radius: 10px;
|
|
5490
|
+
}
|
|
5491
|
+
|
|
5492
|
+
.wizard-preview-title {
|
|
5493
|
+
font-size: 12px;
|
|
5494
|
+
font-weight: 600;
|
|
5495
|
+
color: var(--ui-muted);
|
|
5496
|
+
text-transform: uppercase;
|
|
5497
|
+
letter-spacing: 0.5px;
|
|
5498
|
+
margin-bottom: 12px;
|
|
5499
|
+
}
|
|
5500
|
+
|
|
5501
|
+
.wizard-preview-json {
|
|
5502
|
+
background: var(--ui-dark-panel);
|
|
5503
|
+
border: 1px solid var(--ui-border);
|
|
5504
|
+
border-radius: 8px;
|
|
5505
|
+
padding: 12px;
|
|
5506
|
+
font-family: 'Consolas', 'Monaco', monospace;
|
|
5507
|
+
font-size: 11px;
|
|
5508
|
+
color: var(--ui-dark-text);
|
|
5509
|
+
overflow-x: auto;
|
|
5510
|
+
max-height: 200px;
|
|
5511
|
+
overflow-y: auto;
|
|
5512
|
+
}
|
|
5513
|
+
|
|
5514
|
+
/* Wizard Footer */
|
|
5515
|
+
.wizard-footer {
|
|
5516
|
+
display: flex;
|
|
5517
|
+
align-items: center;
|
|
5518
|
+
justify-content: space-between;
|
|
5519
|
+
padding: 16px 24px;
|
|
5520
|
+
border-top: 1px solid var(--ui-border);
|
|
5521
|
+
background: var(--ui-bg-2);
|
|
5522
|
+
}
|
|
5523
|
+
|
|
5524
|
+
.wizard-footer-actions {
|
|
5525
|
+
display: flex;
|
|
5526
|
+
gap: 12px;
|
|
5527
|
+
}
|
|
5528
|
+
|
|
5529
|
+
.wizard-btn {
|
|
5530
|
+
padding: 10px 20px;
|
|
5531
|
+
border: 1px solid var(--ui-border);
|
|
5532
|
+
border-radius: 8px;
|
|
5533
|
+
font-size: 13px;
|
|
5534
|
+
font-weight: 600;
|
|
5535
|
+
cursor: pointer;
|
|
5536
|
+
transition: all 0.2s var(--ui-ease);
|
|
5537
|
+
text-transform: uppercase;
|
|
5538
|
+
letter-spacing: 0.5px;
|
|
5539
|
+
}
|
|
5540
|
+
|
|
5541
|
+
.wizard-btn-primary {
|
|
5542
|
+
background: var(--ui-accent);
|
|
5543
|
+
color: var(--ui-text-white);
|
|
5544
|
+
border-color: var(--ui-accent);
|
|
5545
|
+
}
|
|
5546
|
+
|
|
5547
|
+
.wizard-btn-primary:hover {
|
|
5548
|
+
background: var(--ui-terracotta-hover);
|
|
5549
|
+
border-color: var(--ui-terracotta-hover);
|
|
5550
|
+
transform: translateY(-1px);
|
|
5551
|
+
box-shadow: var(--ui-shadow);
|
|
5552
|
+
}
|
|
5553
|
+
|
|
5554
|
+
.wizard-btn-primary:active {
|
|
5555
|
+
background: var(--ui-terracotta-active);
|
|
5556
|
+
transform: translateY(0);
|
|
5557
|
+
}
|
|
5558
|
+
|
|
5559
|
+
.wizard-btn-primary:disabled {
|
|
5560
|
+
background: var(--ui-border);
|
|
5561
|
+
color: var(--ui-muted);
|
|
5562
|
+
cursor: not-allowed;
|
|
5563
|
+
opacity: 0.5;
|
|
5564
|
+
}
|
|
5565
|
+
|
|
5566
|
+
.wizard-btn-secondary {
|
|
5567
|
+
background: var(--ui-surface);
|
|
5568
|
+
color: var(--ui-text);
|
|
5569
|
+
border-color: var(--ui-border);
|
|
5570
|
+
}
|
|
5571
|
+
|
|
5572
|
+
.wizard-btn-secondary:hover {
|
|
5573
|
+
background: var(--ui-surface-2);
|
|
5574
|
+
border-color: var(--ui-accent);
|
|
5575
|
+
}
|
|
5576
|
+
|
|
5577
|
+
.wizard-btn-danger {
|
|
5578
|
+
background: var(--ui-danger);
|
|
5579
|
+
color: var(--ui-text-white);
|
|
5580
|
+
border-color: var(--ui-danger);
|
|
5581
|
+
}
|
|
5582
|
+
|
|
5583
|
+
.wizard-btn-danger:hover {
|
|
5584
|
+
background: var(--ui-danger-overlay-2);
|
|
5585
|
+
}
|
|
5586
|
+
|
|
5587
|
+
/* Context Menu */
|
|
5588
|
+
.context-menu {
|
|
5589
|
+
position: fixed;
|
|
5590
|
+
background: var(--ui-surface);
|
|
5591
|
+
border: 1px solid var(--ui-border);
|
|
5592
|
+
border-radius: 8px;
|
|
5593
|
+
box-shadow: var(--ui-shadow-strong);
|
|
5594
|
+
z-index: 10001;
|
|
5595
|
+
min-width: 180px;
|
|
5596
|
+
padding: 4px;
|
|
5597
|
+
animation: context-menu-fade-in 0.15s var(--ui-ease);
|
|
5598
|
+
}
|
|
5599
|
+
|
|
5600
|
+
@keyframes context-menu-fade-in {
|
|
5601
|
+
from {
|
|
5602
|
+
opacity: 0;
|
|
5603
|
+
transform: scale(0.95);
|
|
5604
|
+
}
|
|
5605
|
+
to {
|
|
5606
|
+
opacity: 1;
|
|
5607
|
+
transform: scale(1);
|
|
5608
|
+
}
|
|
5609
|
+
}
|
|
5610
|
+
|
|
5611
|
+
.context-menu-item {
|
|
5612
|
+
display: flex;
|
|
5613
|
+
align-items: center;
|
|
5614
|
+
gap: 10px;
|
|
5615
|
+
padding: 10px 12px;
|
|
5616
|
+
font-size: 13px;
|
|
5617
|
+
color: var(--ui-text);
|
|
5618
|
+
cursor: pointer;
|
|
5619
|
+
border-radius: 6px;
|
|
5620
|
+
transition: all 0.15s var(--ui-ease);
|
|
5621
|
+
}
|
|
5622
|
+
|
|
5623
|
+
.context-menu-item:hover {
|
|
5624
|
+
background: var(--ui-accent-overlay-1);
|
|
5625
|
+
color: var(--ui-accent);
|
|
5626
|
+
}
|
|
5627
|
+
|
|
5628
|
+
.context-menu-item.danger {
|
|
5629
|
+
color: var(--ui-danger);
|
|
5630
|
+
}
|
|
5631
|
+
|
|
5632
|
+
.context-menu-item.danger:hover {
|
|
5633
|
+
background: var(--ui-danger-overlay-1);
|
|
5634
|
+
}
|
|
5635
|
+
|
|
5636
|
+
.context-menu-separator {
|
|
5637
|
+
height: 1px;
|
|
5638
|
+
background: var(--ui-border);
|
|
5639
|
+
margin: 4px 0;
|
|
5640
|
+
}
|
|
5641
|
+
|
|
5642
|
+
/* Responsive Design */
|
|
5643
|
+
@media (max-width: 768px) {
|
|
5644
|
+
.wizard-card {
|
|
5645
|
+
width: 95%;
|
|
5646
|
+
max-height: 95vh;
|
|
5647
|
+
}
|
|
5648
|
+
|
|
5649
|
+
.wizard-type-grid {
|
|
5650
|
+
grid-template-columns: repeat(2, 1fr);
|
|
5651
|
+
}
|
|
5652
|
+
|
|
5653
|
+
.wizard-footer {
|
|
5654
|
+
flex-direction: column;
|
|
5655
|
+
gap: 12px;
|
|
5656
|
+
}
|
|
5657
|
+
|
|
5658
|
+
.wizard-footer-actions {
|
|
5659
|
+
width: 100%;
|
|
5660
|
+
}
|
|
5661
|
+
|
|
5662
|
+
.wizard-btn {
|
|
5663
|
+
flex: 1;
|
|
5664
|
+
}
|
|
5665
|
+
}
|
|
5666
|
+
|
|
5667
|
+
|
|
5180
5668
|
/* ========== 12-responsive.css ========== */
|
|
5181
5669
|
/* 12 Responsive */
|
|
5182
5670
|
/* Auto-generated from preview.css */
|