architwin 1.13.10 → 1.14.0
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 +61 -4
- package/lib/architwin.js +1 -1
- package/lib/atwinui/components/toolbar/i18n.js +62 -24
- package/lib/atwinui/components/toolbar/index.js +13 -1
- package/lib/atwinui/components/toolbar/menuBar.d.ts +1 -0
- package/lib/atwinui/components/toolbar/menuBar.js +12 -1
- package/lib/atwinui/components/toolbar/pipeFormPane.js +2 -2
- package/lib/atwinui/components/toolbar/pipeListPane.js +2 -2
- package/lib/atwinui/components/toolbar/screenSharePane.d.ts +3 -1
- package/lib/atwinui/components/toolbar/screenSharePane.js +89 -37
- package/lib/atwinui/components/toolbar/spaceUserListPane.js +1 -1
- package/lib/atwinui/components/toolbar/viewingRemoteSpace.js +5 -5
- package/lib/atwinui/events.d.ts +1 -0
- package/lib/atwinui/events.js +90 -3
- package/lib/tag.d.ts +14 -1
- package/lib/tag.js +28 -1
- package/lib/types.d.ts +47 -1
- package/lib/types.js +23 -1
- package/package.json +1 -1
- package/static/atwinui.css +260 -1
- package/static/utility.css +82 -2
package/static/utility.css
CHANGED
|
@@ -121,6 +121,10 @@ width: 100vw;
|
|
|
121
121
|
width: 22rem;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
.at_w-14 {
|
|
125
|
+
width: 26rem;
|
|
126
|
+
}
|
|
127
|
+
|
|
124
128
|
.at_mx-w-8 {
|
|
125
129
|
max-width: 8rem;
|
|
126
130
|
}
|
|
@@ -364,12 +368,63 @@ width: 100vw;
|
|
|
364
368
|
margin-bottom: 0 !important;
|
|
365
369
|
}
|
|
366
370
|
|
|
371
|
+
/* Margin Bottom */
|
|
367
372
|
.at_mb_1 {
|
|
368
|
-
margin-bottom: 0.25rem !important;
|
|
373
|
+
margin-bottom: 0.25rem !important; /* 4px */
|
|
369
374
|
}
|
|
370
375
|
|
|
371
376
|
.at_mb_2 {
|
|
372
|
-
margin-bottom: 0.5rem !important;
|
|
377
|
+
margin-bottom: 0.5rem !important; /* 8px */
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.at_mb_3 {
|
|
381
|
+
margin-bottom: 0.75rem !important; /* 12px */
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.at_mb_4 {
|
|
385
|
+
margin-bottom: 1rem !important; /* 16px */
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.at_mb_5 {
|
|
389
|
+
margin-bottom: 1.25rem !important; /* 20px */
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.at_mb_6 {
|
|
393
|
+
margin-bottom: 1.5rem !important; /* 24px */
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
/* Margin Top */
|
|
397
|
+
.at_mt_1 {
|
|
398
|
+
margin-top: 0.25rem !important;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.at_mt_2 {
|
|
402
|
+
margin-top: 0.5rem !important;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.at_mt_3 {
|
|
406
|
+
margin-top: 0.75rem !important;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.at_mt_4 {
|
|
410
|
+
margin-top: 1rem !important;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.at_mt_5 {
|
|
414
|
+
margin-top: 1.25rem !important;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.at_mt_6 {
|
|
418
|
+
margin-top: 1.5rem !important;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
.at_mb_3 {
|
|
423
|
+
margin-bottom: 0.75rem !important;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.at_mb_4 {
|
|
427
|
+
margin-bottom: 2rem !important;
|
|
373
428
|
}
|
|
374
429
|
|
|
375
430
|
.at_mb_3 {
|
|
@@ -404,6 +459,31 @@ width: 100vw;
|
|
|
404
459
|
display: inline-block
|
|
405
460
|
}
|
|
406
461
|
|
|
462
|
+
.at_p-1 {
|
|
463
|
+
padding: 0.25rem !important; /* 4px */
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.at_p-2 {
|
|
467
|
+
padding: 0.5rem !important; /* 8px */
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.at_p-3 {
|
|
471
|
+
padding: 0.75rem !important; /* 12px */
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.at_p-4 {
|
|
475
|
+
padding: 1rem !important; /* 16px */
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.at_p-5 {
|
|
479
|
+
padding: 1.25rem !important; /* 20px */
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.at_p-6 {
|
|
483
|
+
padding: 1.5rem !important; /* 24px */
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
|
|
407
487
|
.no_scroll{
|
|
408
488
|
overflow: hidden !important;
|
|
409
489
|
}
|