pywebexec 2.2.4__py3-none-any.whl → 2.2.6__py3-none-any.whl
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.
- pywebexec/static/css/form.css +3 -1
- pywebexec/static/js/script.js +4 -1
- pywebexec/version.py +2 -2
- {pywebexec-2.2.4.dist-info → pywebexec-2.2.6.dist-info}/METADATA +1 -1
- {pywebexec-2.2.4.dist-info → pywebexec-2.2.6.dist-info}/RECORD +9 -9
- {pywebexec-2.2.4.dist-info → pywebexec-2.2.6.dist-info}/WHEEL +1 -1
- {pywebexec-2.2.4.dist-info → pywebexec-2.2.6.dist-info}/entry_points.txt +0 -0
- {pywebexec-2.2.4.dist-info → pywebexec-2.2.6.dist-info}/licenses/LICENSE +0 -0
- {pywebexec-2.2.4.dist-info → pywebexec-2.2.6.dist-info}/top_level.txt +0 -0
pywebexec/static/css/form.css
CHANGED
@@ -143,9 +143,11 @@
|
|
143
143
|
.controls input, select {
|
144
144
|
min-width: unset;
|
145
145
|
max-width: unset;
|
146
|
-
width: 110px;
|
147
146
|
margin: 0;
|
148
147
|
}
|
148
|
+
.controls input[type="text"] {
|
149
|
+
width: 110px;;
|
150
|
+
}
|
149
151
|
input[type="number"] {
|
150
152
|
max-width: 120px;
|
151
153
|
text-align: right;
|
pywebexec/static/js/script.js
CHANGED
@@ -384,7 +384,9 @@ function initResizer() {
|
|
384
384
|
const resizer = document.getElementById('resizer');
|
385
385
|
const tableContainer = document.getElementById('tableContainer');
|
386
386
|
let startY, startHeight;
|
387
|
-
|
387
|
+
tableContainer.style.height = localStorage.getItem('tableHeight');
|
388
|
+
adjustOutputHeight();
|
389
|
+
|
388
390
|
resizer.addEventListener('mousedown', (e) => {
|
389
391
|
startY = e.clientY;
|
390
392
|
startHeight = parseInt(document.defaultView.getComputedStyle(tableContainer).height, 10);
|
@@ -394,6 +396,7 @@ function initResizer() {
|
|
394
396
|
|
395
397
|
function doDrag(e) {
|
396
398
|
tableContainer.style.height = `${startHeight + e.clientY - startY}px`;
|
399
|
+
localStorage.setItem('tableHeight', tableContainer.style.height);
|
397
400
|
adjustOutputHeight();
|
398
401
|
}
|
399
402
|
|
pywebexec/version.py
CHANGED
@@ -2,8 +2,8 @@ pywebexec/__init__.py,sha256=197fHJy0UDBwTTpGCGortZRr-w2kTaD7MxqdbVmTEi0,61
|
|
2
2
|
pywebexec/host_ip.py,sha256=Ud_HTflWVQ8789aoQ2RZdT1wGI-ccvrwSWGz_c7T3TI,1241
|
3
3
|
pywebexec/pywebexec.py,sha256=R-jp9BiUMJZW7m9N9kQC6dpIueUgFVDo4n9_GFb1rOs,45734
|
4
4
|
pywebexec/swagger.yaml,sha256=I_oLpp7Hqel8SDEEykvpmCT-Gv3ytGlziq9bvQOrtZY,7598
|
5
|
-
pywebexec/version.py,sha256=
|
6
|
-
pywebexec/static/css/form.css,sha256=
|
5
|
+
pywebexec/version.py,sha256=2jX0JMD4JhBR3q6iGoTm9_8W9OruIxwEs3BpF5ozLt4,511
|
6
|
+
pywebexec/static/css/form.css,sha256=7H9bt-Hm0Kwn0ATHvyrmcWV1Q1oWNugvZykOMd8QYao,5536
|
7
7
|
pywebexec/static/css/markdown.css,sha256=br4-iK9wigTs54N2KHtjgZ4KLH0THVSvJo-XZAdMHiE,1970
|
8
8
|
pywebexec/static/css/style.css,sha256=R1VOPNV2ztROKy9Fgf3tvUrtuKagY027tFJ8C866yWU,9991
|
9
9
|
pywebexec/static/css/swagger-ui.css,sha256=xhXN8fnUaIACGHuPIEIr9-qmyYr6Zx0k2wv4Qy7Bg1Y,154985
|
@@ -36,7 +36,7 @@ pywebexec/static/images/swagger-ui.svg,sha256=FR0yeOVwe4zCYKZAjCGcT_m0Mf25NexIVa
|
|
36
36
|
pywebexec/static/js/executables.js,sha256=_Deyx1O8QyiFt6RcmaXnC9Vx9yagTQP4Vhz9GAXFR84,11774
|
37
37
|
pywebexec/static/js/popup.js,sha256=O3DEWnyb5yGW9tjODYycc-ujWndyAfnJMxulaQeogtc,9700
|
38
38
|
pywebexec/static/js/schemaform.js,sha256=2kjdaquoIdh0hAuAuZdI0cqM5URPWslZtbYHAjtG1_4,8918
|
39
|
-
pywebexec/static/js/script.js,sha256=
|
39
|
+
pywebexec/static/js/script.js,sha256=yQP2dWwTObWbg6ROeKFxwYi1NfDd2gxEn2e3oL-FWL8,18379
|
40
40
|
pywebexec/static/js/swagger-form.js,sha256=CLcSHMhk5P4-_2MIRBoJLgEnIj_9keDDSzUugXHZjio,4565
|
41
41
|
pywebexec/static/js/js-yaml/LICENSE,sha256=oHvCRGi5ZUznalR9R6LbKC0HcztxXbTHOpi9Y5YflVA,1084
|
42
42
|
pywebexec/static/js/js-yaml/js-yaml.min.js,sha256=Rdw90D3AegZwWiwpibjH9wkBPwS9U4bjJ51ORH8H69c,39430
|
@@ -67,9 +67,9 @@ pywebexec/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
67
67
|
pywebexec/templates/index.html,sha256=w18O2plH_yS8bqlPsu5hwFFmCj9H2hWLSV8B6ADcSwU,3900
|
68
68
|
pywebexec/templates/popup.html,sha256=3kpMccKD_OLLhJ4Y9KRw6Ny8wQWjVaRrUfV9y5-bDiQ,1580
|
69
69
|
pywebexec/templates/swagger_ui.html,sha256=9ngyldkyEdLonBjl97mbIZUlVk-jxwcHrvFzMSrveyU,1067
|
70
|
-
pywebexec-2.2.
|
71
|
-
pywebexec-2.2.
|
72
|
-
pywebexec-2.2.
|
73
|
-
pywebexec-2.2.
|
74
|
-
pywebexec-2.2.
|
75
|
-
pywebexec-2.2.
|
70
|
+
pywebexec-2.2.6.dist-info/licenses/LICENSE,sha256=gRJf0JPT_wsZJsUGlWPTS8Vypfl9vQ1qjp6sNbKykuA,1064
|
71
|
+
pywebexec-2.2.6.dist-info/METADATA,sha256=OPnaK8AVJW0L52318LUXdrV_jH4ujnLqLsmK_Sm1lww,12832
|
72
|
+
pywebexec-2.2.6.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
73
|
+
pywebexec-2.2.6.dist-info/entry_points.txt,sha256=l52GBkPCXRkmlHfEyoVauyfBdg8o-CAtC8qQpOIjJK0,55
|
74
|
+
pywebexec-2.2.6.dist-info/top_level.txt,sha256=vHoHyzngrfGdm_nM7Xn_5iLmaCrf10XO1EhldgNLEQ8,10
|
75
|
+
pywebexec-2.2.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|