@abi-software/simulationvuer 3.0.14 → 3.0.16
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/dist/simulationvuer.js +36960 -28515
- package/dist/simulationvuer.umd.cjs +1369 -1361
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/SimulationVuer.vue +23 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/simulationvuer",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.16",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "vite serve --host --force",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@abi-software/plotvuer": "1.0.7",
|
|
24
|
-
"@opencor/opencor": "^0.
|
|
24
|
+
"@opencor/opencor": "^0.20260410.0",
|
|
25
25
|
"element-plus": "2.8.4",
|
|
26
26
|
"jsonschema": "^1.4.0",
|
|
27
27
|
"mathjs": "^15.1.0",
|
|
@@ -904,6 +904,10 @@ export default {
|
|
|
904
904
|
--el-color-primary-light-9: #f3e6f9;
|
|
905
905
|
}
|
|
906
906
|
|
|
907
|
+
.buttons-container {
|
|
908
|
+
flex-shrink: 0;
|
|
909
|
+
}
|
|
910
|
+
|
|
907
911
|
:deep(.el-button:hover) {
|
|
908
912
|
box-shadow: -3px 2px 4px #00000040;
|
|
909
913
|
}
|
|
@@ -924,6 +928,10 @@ export default {
|
|
|
924
928
|
}
|
|
925
929
|
}
|
|
926
930
|
|
|
931
|
+
.opencor {
|
|
932
|
+
line-height: 1.5;
|
|
933
|
+
}
|
|
934
|
+
|
|
927
935
|
:deep(.p-floatlabel:has(input:focus)) label,
|
|
928
936
|
:deep(.p-floatlabel:has(input:-webkit-autofill)) label,
|
|
929
937
|
:deep(.p-floatlabel:has(textarea:focus)) label,
|
|
@@ -931,6 +939,12 @@ export default {
|
|
|
931
939
|
color: #8300bf;
|
|
932
940
|
}
|
|
933
941
|
|
|
942
|
+
:deep(.p-inputnumber-button) {
|
|
943
|
+
background-color: transparent;
|
|
944
|
+
border: 0;
|
|
945
|
+
padding: 0;
|
|
946
|
+
}
|
|
947
|
+
|
|
934
948
|
:deep(.p-inputtext:enabled:focus) {
|
|
935
949
|
border-color: #8300bf;
|
|
936
950
|
}
|
|
@@ -947,6 +961,15 @@ export default {
|
|
|
947
961
|
background-color: #8300bf;
|
|
948
962
|
}
|
|
949
963
|
|
|
964
|
+
:deep(.pi) {
|
|
965
|
+
line-height: 20px;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
:deep(div.empty-state) > p {
|
|
969
|
+
margin: 0;
|
|
970
|
+
line-height: 16px;
|
|
971
|
+
}
|
|
972
|
+
|
|
950
973
|
div.input {
|
|
951
974
|
display: flex;
|
|
952
975
|
flex-direction: column;
|
|
@@ -961,10 +984,6 @@ div.input {
|
|
|
961
984
|
box-sizing: border-box;
|
|
962
985
|
}
|
|
963
986
|
|
|
964
|
-
.buttons-container {
|
|
965
|
-
flex-shrink: 0;
|
|
966
|
-
}
|
|
967
|
-
|
|
968
987
|
div.container {
|
|
969
988
|
height: 100%;
|
|
970
989
|
}
|