@grifhinz/logics-manager 2.5.1 → 2.6.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/README.md +1 -1
- package/VERSION +1 -1
- package/clients/shared-web/media/css/layout.css +7 -0
- package/clients/viewer/browser-host.js +524 -61
- package/clients/viewer/index.html +39 -19
- package/clients/viewer/viewer.css +471 -8
- package/logics_manager/viewer.py +286 -3
- package/package.json +1 -1
- package/pyproject.toml +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/AlexAgo83/logics-manager/actions/workflows/ci.yml)
|
|
4
4
|
[](LICENSE)
|
|
5
|
-

|
|
6
6
|

|
|
7
7
|

|
|
8
8
|

|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.6.0
|
|
@@ -107,8 +107,11 @@
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.layout--stacked .details {
|
|
110
|
+
width: 100%;
|
|
111
|
+
max-width: none;
|
|
110
112
|
min-height: 220px;
|
|
111
113
|
border-top: none;
|
|
114
|
+
border-left: none;
|
|
112
115
|
position: absolute;
|
|
113
116
|
left: 0;
|
|
114
117
|
right: 0;
|
|
@@ -117,6 +120,10 @@
|
|
|
117
120
|
z-index: 2;
|
|
118
121
|
}
|
|
119
122
|
|
|
123
|
+
.layout--stacked .details.details--collapsed {
|
|
124
|
+
min-height: 0;
|
|
125
|
+
}
|
|
126
|
+
|
|
120
127
|
.is-resizing {
|
|
121
128
|
cursor: row-resize;
|
|
122
129
|
user-select: none;
|