architwin 1.10.21 → 1.10.23
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/lib/architwin.d.ts +65 -6
- package/lib/architwin.js +1 -1
- package/lib/atwinui/components/toolbar/card.js +3 -1
- package/lib/atwinui/components/toolbar/generalSettingsMenuPane.d.ts +4 -0
- package/lib/atwinui/components/toolbar/generalSettingsMenuPane.js +92 -0
- package/lib/atwinui/components/toolbar/i18n.js +10 -2
- package/lib/atwinui/components/toolbar/index.js +5 -1
- package/lib/atwinui/components/toolbar/menuBar.d.ts +1 -0
- package/lib/atwinui/components/toolbar/menuBar.js +16 -0
- package/lib/atwinui/components/toolbar/modelControlsPane.js +3 -3
- package/lib/atwinui/components/toolbar/tagListPane.d.ts +4 -0
- package/lib/atwinui/components/toolbar/tagListPane.js +98 -4
- package/lib/atwinui/events.d.ts +6 -1
- package/lib/atwinui/events.js +381 -5
- package/lib/atwinui/index.js +7 -1
- package/lib/minimap.d.ts +63 -3
- package/lib/minimap.js +491 -60
- package/lib/types.d.ts +92 -1
- package/lib/types.js +22 -0
- package/lib/utils.d.ts +1 -0
- package/lib/utils.js +20 -1
- package/lib/worldConversion.d.ts +15 -0
- package/lib/worldConversion.js +45 -0
- package/package.json +1 -1
- package/static/atwinui.css +38 -1
- package/static/icons/mapleftrighticon.svg +17 -0
- package/static/icons/mapscaleheighticon.svg +18 -0
- package/static/icons/mapscalewidthicon.svg +16 -0
- package/static/icons/mapupdownicon.svg +17 -0
- package/static/images/377.png +0 -0
- package/static/images/pinkoriginmarker.png +0 -0
- package/static/map.css +212 -0
- package/static/utility.css +157 -1
package/static/utility.css
CHANGED
|
@@ -310,4 +310,160 @@ width: 100vw;
|
|
|
310
310
|
|
|
311
311
|
.at_inline_block{
|
|
312
312
|
display: inline-block
|
|
313
|
-
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
/* Spinner container style */
|
|
316
|
+
.at_spinner {
|
|
317
|
+
border: 8px solid grey;
|
|
318
|
+
border-radius: 50%;
|
|
319
|
+
border-top: 8px solid #222;
|
|
320
|
+
width: 50px;
|
|
321
|
+
height: 50px;
|
|
322
|
+
position: absolute;
|
|
323
|
+
top: 45%;
|
|
324
|
+
left: 45%;
|
|
325
|
+
z-index: 2;
|
|
326
|
+
-webkit-animation: spin 2s linear infinite;
|
|
327
|
+
animation: spin 2s linear infinite;
|
|
328
|
+
display: none;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
/* Safari */
|
|
332
|
+
@-webkit-keyframes spin {
|
|
333
|
+
0% { -webkit-transform: rotate(0deg); }
|
|
334
|
+
100% { -webkit-transform: rotate(360deg); }
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
@keyframes spin {
|
|
338
|
+
0% { transform: rotate(0deg); }
|
|
339
|
+
100% { transform: rotate(360deg); }
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.at_rotate-90 {
|
|
343
|
+
-ms-transform: rotate(90deg);
|
|
344
|
+
-webkit-transform: rotate(90deg);
|
|
345
|
+
transform: rotate(90deg);
|
|
346
|
+
}
|
|
347
|
+
.at_rotate-180 {
|
|
348
|
+
-ms-transform: rotate(180deg);
|
|
349
|
+
-webkit-transform: rotate(180deg);
|
|
350
|
+
transform: rotate(180deg);
|
|
351
|
+
}
|
|
352
|
+
.at_rotate-270 {
|
|
353
|
+
-ms-transform: rotate(270deg);
|
|
354
|
+
-webkit-transform: rotate(270deg);
|
|
355
|
+
transform: rotate(270deg);
|
|
356
|
+
}
|
|
357
|
+
.at_rotate-360 {
|
|
358
|
+
-ms-transform: rotate(360deg);
|
|
359
|
+
-webkit-transform: rotate(360deg);
|
|
360
|
+
transform: rotate(360deg);
|
|
361
|
+
}
|
|
362
|
+
.at_text_red_50 { color: #fef2f2; }
|
|
363
|
+
.at_text_red_100 { color: #fee2e2; }
|
|
364
|
+
.at_text_red_200 { color: #fecaca; }
|
|
365
|
+
.at_text_red_300 { color: #fca5a5; }
|
|
366
|
+
.at_text_red_400 { color: #f87171; }
|
|
367
|
+
.at_text_red_500 { color: #ef4444; }
|
|
368
|
+
.at_text_red_600 { color: #dc2626; }
|
|
369
|
+
.at_text_red_700 { color: #b91c1c; }
|
|
370
|
+
.at_text_red_800 { color: #991b1b; }
|
|
371
|
+
.at_text_red_900 { color: #7f1d1d; }
|
|
372
|
+
.at_text_red_950 { color: #450a0a; }
|
|
373
|
+
|
|
374
|
+
.at_text_yellow_50 { color: #fefce8; }
|
|
375
|
+
.at_text_yellow_100 { color: #fef9c3; }
|
|
376
|
+
.at_text_yellow_200 { color: #fef08a; }
|
|
377
|
+
.at_text_yellow_300 { color: #fde047; }
|
|
378
|
+
.at_text_yellow_400 { color: #facc15; }
|
|
379
|
+
.at_text_yellow_500 { color: #eab308; }
|
|
380
|
+
.at_text_yellow_600 { color: #ca8a04; }
|
|
381
|
+
.at_text_yellow_700 { color: #a16207; }
|
|
382
|
+
.at_text_yellow_800 { color: #854d0e; }
|
|
383
|
+
.at_text_yellow_900 { color: #713f12; }
|
|
384
|
+
.at_text_yellow_950 { color: #422006; }
|
|
385
|
+
|
|
386
|
+
.at_text_blue_50 { color: #eff6ff; }
|
|
387
|
+
.at_text_blue_100 { color: #dbeafe; }
|
|
388
|
+
.at_text_blue_200 { color: #bfdbfe; }
|
|
389
|
+
.at_text_blue_300 { color: #93c5fd; }
|
|
390
|
+
.at_text_blue_400 { color: #60a5fa; }
|
|
391
|
+
.at_text_blue_500 { color: #3b82f6; }
|
|
392
|
+
.at_text_blue_600 { color: #2563eb; }
|
|
393
|
+
.at_text_blue_700 { color: #1d4ed8; }
|
|
394
|
+
.at_text_blue_800 { color: #1e40af; }
|
|
395
|
+
.at_text_blue_900 { color: #1e3a8a; }
|
|
396
|
+
.at_text_blue_950 { color: #172554; }
|
|
397
|
+
|
|
398
|
+
.at_bg_red_50 { background-color: #fef2f2; }
|
|
399
|
+
.at_bg_red_100 { background-color: #fee2e2; }
|
|
400
|
+
.at_bg_red_200 { background-color: #fecaca; }
|
|
401
|
+
.at_bg_red_300 { background-color: #fca5a5; }
|
|
402
|
+
.at_bg_red_400 { background-color: #f87171; }
|
|
403
|
+
.at_bg_red_500 { background-color: #ef4444; }
|
|
404
|
+
.at_bg_red_600 { background-color: #dc2626; }
|
|
405
|
+
.at_bg_red_700 { background-color: #b91c1c; }
|
|
406
|
+
.at_bg_red_800 { background-color: #991b1b; }
|
|
407
|
+
.at_bg_red_900 { background-color: #7f1d1d; }
|
|
408
|
+
.at_bg_red_950 { background-color: #450a0a; }
|
|
409
|
+
|
|
410
|
+
.at_bg_yellow_50 { background-color: #fefce8; }
|
|
411
|
+
.at_bg_yellow_100 { background-color: #fef9c3; }
|
|
412
|
+
.at_bg_yellow_200 { background-color: #fef08a; }
|
|
413
|
+
.at_bg_yellow_300 { background-color: #fde047; }
|
|
414
|
+
.at_bg_yellow_400 { background-color: #facc15; }
|
|
415
|
+
.at_bg_yellow_500 { background-color: #eab308; }
|
|
416
|
+
.at_bg_yellow_600 { background-color: #ca8a04; }
|
|
417
|
+
.at_bg_yellow_700 { background-color: #a16207; }
|
|
418
|
+
.at_bg_yellow_800 { background-color: #854d0e; }
|
|
419
|
+
.at_bg_yellow_900 { background-color: #713f12; }
|
|
420
|
+
.at_bg_yellow_950 { background-color: #422006; }
|
|
421
|
+
|
|
422
|
+
.at_bg_blue_50 { background-color: #eff6ff; }
|
|
423
|
+
.at_bg_blue_100 { background-color: #dbeafe; }
|
|
424
|
+
.at_bg_blue_200 { background-color: #bfdbfe; }
|
|
425
|
+
.at_bg_blue_300 { background-color: #93c5fd; }
|
|
426
|
+
.at_bg_blue_400 { background-color: #60a5fa; }
|
|
427
|
+
.at_bg_blue_500 { background-color: #3b82f6; }
|
|
428
|
+
.at_bg_blue_600 { background-color: #2563eb; }
|
|
429
|
+
.at_bg_blue_700 { background-color: #1d4ed8; }
|
|
430
|
+
.at_bg_blue_800 { background-color: #1e40af; }
|
|
431
|
+
.at_bg_blue_900 { background-color: #1e3a8a; }
|
|
432
|
+
.at_bg_blue_950 { background-color: #172554; }
|
|
433
|
+
|
|
434
|
+
.at_border_red_50 { border-color: #fef2f2; }
|
|
435
|
+
.at_border_red_100 { border-color: #fee2e2; }
|
|
436
|
+
.at_border_red_200 { border-color: #fecaca; }
|
|
437
|
+
.at_border_red_300 { border-color: #fca5a5; }
|
|
438
|
+
.at_border_red_400 { border-color: #f87171; }
|
|
439
|
+
.at_border_red_500 { border-color: #ef4444; }
|
|
440
|
+
.at_border_red_600 { border-color: #dc2626; }
|
|
441
|
+
.at_border_red_700 { border-color: #b91c1c; }
|
|
442
|
+
.at_border_red_800 { border-color: #991b1b; }
|
|
443
|
+
.at_border_red_900 { border-color: #7f1d1d; }
|
|
444
|
+
.at_border_red_950 { border-color: #450a0a; }
|
|
445
|
+
|
|
446
|
+
.at_border_yellow_50 { border-color: #fefce8; }
|
|
447
|
+
.at_border_yellow_100 { border-color: #fef9c3; }
|
|
448
|
+
.at_border_yellow_200 { border-color: #fef08a; }
|
|
449
|
+
.at_border_yellow_300 { border-color: #fde047; }
|
|
450
|
+
.at_border_yellow_400 { border-color: #facc15; }
|
|
451
|
+
.at_border_yellow_500 { border-color: #eab308; }
|
|
452
|
+
.at_border_yellow_600 { border-color: #ca8a04; }
|
|
453
|
+
.at_border_yellow_700 { border-color: #a16207; }
|
|
454
|
+
.at_border_yellow_800 { border-color: #854d0e; }
|
|
455
|
+
.at_border_yellow_900 { border-color: #713f12; }
|
|
456
|
+
.at_border_yellow_950 { border-color: #422006; }
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
.at_border_blue_50 { border-color: #eff6ff; }
|
|
460
|
+
.at_border_blue_100 { border-color: #dbeafe; }
|
|
461
|
+
.at_border_blue_200 { border-color: #bfdbfe; }
|
|
462
|
+
.at_border_blue_300 { border-color: #93c5fd; }
|
|
463
|
+
.at_border_blue_400 { border-color: #60a5fa; }
|
|
464
|
+
.at_border_blue_500 { border-color: #3b82f6; }
|
|
465
|
+
.at_border_blue_600 { border-color: #2563eb; }
|
|
466
|
+
.at_border_blue_700 { border-color: #1d4ed8; }
|
|
467
|
+
.at_border_blue_800 { border-color: #1e40af; }
|
|
468
|
+
.at_border_blue_900 { border-color: #1e3a8a; }
|
|
469
|
+
.at_border_blue_950 { border-color: #172554; }
|