architwin 1.17.0 → 1.17.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/actionPathHistory.js +4 -0
- package/lib/architwin.d.ts +3 -1
- package/lib/architwin.js +1 -1
- package/lib/atwinui/components/toolbar/tagIotFormPane.d.ts +3 -1
- package/lib/atwinui/components/toolbar/tagIotFormPane.js +84 -66
- package/lib/atwinui/components/toolbar/tagListPane.d.ts +5 -1
- package/lib/atwinui/components/toolbar/tagListPane.js +142 -4
- package/lib/atwinui/events.js +23 -29
- package/lib/atwinui/index.js +2 -0
- package/lib/types.d.ts +12 -1
- package/lib/types.js +2 -0
- package/package.json +1 -1
- package/static/atwinui.css +27 -0
package/lib/types.js
CHANGED
|
@@ -112,6 +112,7 @@ export var SPACE_EVENTS;
|
|
|
112
112
|
SPACE_EVENTS["SPACE_METADATA_RETRIEVED"] = "SPACE_METADATA_RETRIEVED";
|
|
113
113
|
SPACE_EVENTS["GET_IOT_CATEGORIES"] = "GET_IOT_CATEGORIES";
|
|
114
114
|
SPACE_EVENTS["GET_IOT_DEVICES"] = "GET_IOT_DEVICES";
|
|
115
|
+
SPACE_EVENTS["GET_IOT_LINKED_SYSTEM_OPTIONS"] = "GET_IOT_LINKED_SYSTEM_OPTIONS";
|
|
115
116
|
SPACE_EVENTS["IOT_TAG_SAVED"] = "IOT_TAG_SAVED";
|
|
116
117
|
SPACE_EVENTS["TAG_SANDBOX_REGISTERED"] = "TAG_SANDBOX_REGISTERED";
|
|
117
118
|
SPACE_EVENTS["GET_IOT_TAG_ICON"] = "GET_IOT_TAG_ICON";
|
|
@@ -198,6 +199,7 @@ export var IOT_LINKED_SYSTEMS;
|
|
|
198
199
|
IOT_LINKED_SYSTEMS["BEMAC"] = "BEMAC";
|
|
199
200
|
IOT_LINKED_SYSTEMS["HANASYS"] = "HANASYS";
|
|
200
201
|
IOT_LINKED_SYSTEMS["URL_LINK"] = "URLLink";
|
|
202
|
+
IOT_LINKED_SYSTEMS["I_MTEC"] = "i-MTEC";
|
|
201
203
|
})(IOT_LINKED_SYSTEMS || (IOT_LINKED_SYSTEMS = {}));
|
|
202
204
|
export var TAG_TYPE;
|
|
203
205
|
(function (TAG_TYPE) {
|
package/package.json
CHANGED
package/static/atwinui.css
CHANGED
|
@@ -2734,6 +2734,33 @@ li.at_partition_wall_row_item {
|
|
|
2734
2734
|
box-sizing: border-box;
|
|
2735
2735
|
}
|
|
2736
2736
|
|
|
2737
|
+
.at_listbox {
|
|
2738
|
+
width: 230px;
|
|
2739
|
+
background-color: var(--bg-secondary);
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2742
|
+
.at_listbox_options {
|
|
2743
|
+
list-style: none;
|
|
2744
|
+
margin: 0;
|
|
2745
|
+
padding: 0;
|
|
2746
|
+
max-height: 160px;
|
|
2747
|
+
overflow-y: auto;
|
|
2748
|
+
}
|
|
2749
|
+
|
|
2750
|
+
.at_listbox_option {
|
|
2751
|
+
padding: 8px 12px;
|
|
2752
|
+
cursor: pointer;
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
.at_listbox_option:hover {
|
|
2756
|
+
background-color: var(--bg-accent);
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
.at_listbox_option.is-selected {
|
|
2760
|
+
background-color: var(--bg-accent);
|
|
2761
|
+
font-weight: 600;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2737
2764
|
/* FLEXIBLE MODAL CLASSES */
|
|
2738
2765
|
|
|
2739
2766
|
.at_flexible_modal-overlay {
|