architwin 1.15.6 → 1.16.1
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 +15 -1
- package/lib/architwin.js +1 -1
- package/lib/atwinui/components/toolbar/i18n.js +4 -0
- package/lib/atwinui/components/toolbar/spacePartition/roomFormPane.d.ts +2 -4
- package/lib/atwinui/components/toolbar/spacePartition/roomFormPane.js +66 -63
- package/lib/atwinui/components/toolbar/tagListPane.d.ts +5 -0
- package/lib/atwinui/components/toolbar/tagListPane.js +198 -26
- package/lib/atwinui/events.d.ts +2 -1
- package/lib/atwinui/events.js +73 -25
- package/lib/loaders/polydrawerLoader.js +3 -1
- package/lib/tag.d.ts +6 -1
- package/lib/tag.js +8 -1
- package/lib/types.d.ts +1 -0
- package/package.json +1 -1
- package/static/atwinui.css +16 -14
package/static/atwinui.css
CHANGED
|
@@ -676,12 +676,19 @@
|
|
|
676
676
|
|
|
677
677
|
.at_table_button_row {
|
|
678
678
|
display: flex;
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
679
|
+
justify-content: end;
|
|
680
|
+
width: fit-content;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.at_table_label_row{
|
|
684
|
+
width: 130px;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.at_table_label_row span {
|
|
688
|
+
display: block;
|
|
689
|
+
overflow: hidden;
|
|
690
|
+
text-overflow: ellipsis;
|
|
691
|
+
white-space: nowrap;
|
|
685
692
|
}
|
|
686
693
|
|
|
687
694
|
/*Form Classes*/
|
|
@@ -769,8 +776,8 @@
|
|
|
769
776
|
margin-top: 1px;
|
|
770
777
|
margin-left: 4px;
|
|
771
778
|
height: 2.45rem;
|
|
772
|
-
|
|
773
|
-
width:
|
|
779
|
+
width: 100%;
|
|
780
|
+
/* width: 11.75rem */
|
|
774
781
|
}
|
|
775
782
|
|
|
776
783
|
.at_field_search_input:focus {
|
|
@@ -1690,7 +1697,7 @@
|
|
|
1690
1697
|
.at_tag_list_pane {
|
|
1691
1698
|
margin: 6px 6px 0px 6px !important;
|
|
1692
1699
|
gap: 0px !important;
|
|
1693
|
-
padding:
|
|
1700
|
+
padding: 0px 5px 5px 10px !important;
|
|
1694
1701
|
}
|
|
1695
1702
|
|
|
1696
1703
|
/* Basic styling for the tree */
|
|
@@ -2383,11 +2390,6 @@ dialog#at-screen-share-request-modal::backdrop {
|
|
|
2383
2390
|
margin-top: 1px;
|
|
2384
2391
|
}
|
|
2385
2392
|
|
|
2386
|
-
#at-tag-sort-icon {
|
|
2387
|
-
background-color: var(--bg-secondary);
|
|
2388
|
-
margin-bottom: 15px;
|
|
2389
|
-
margin-right: -15px;
|
|
2390
|
-
}
|
|
2391
2393
|
|
|
2392
2394
|
#at-object-sort-icon {
|
|
2393
2395
|
background-color: var(--bg-secondary);
|