@optimajet/workflow-designer 14.1.0 → 15.0.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/dist/workflowdesigner.min.css +33 -0
- package/dist/workflowdesignerfull.esm.min.js +2 -0
- package/dist/workflowdesignerfull.esm.min.js.LICENSE.txt +62 -0
- package/dist/workflowdesignerfull.min.js +1 -1
- package/dist/workflowdesignerfull.min.js.LICENSE.txt +62 -0
- package/module.js +10 -0
- package/package.json +85 -79
|
@@ -435,6 +435,10 @@ td .el-checkbox__input {
|
|
|
435
435
|
background-repeat: no-repeat;
|
|
436
436
|
}
|
|
437
437
|
|
|
438
|
+
.WorkflowDesignerElements .Icon.BPMN {
|
|
439
|
+
background-image: none;
|
|
440
|
+
}
|
|
441
|
+
|
|
438
442
|
.WorkflowDesignerElements .el-card__body {
|
|
439
443
|
padding: 7px 15px !important;
|
|
440
444
|
}
|
|
@@ -1099,6 +1103,25 @@ div.SpacedRow > div:not(:last-child) {
|
|
|
1099
1103
|
border-color: red;
|
|
1100
1104
|
}
|
|
1101
1105
|
|
|
1106
|
+
.WFEUploadLog,
|
|
1107
|
+
.WFEUploadLog .el-textarea,
|
|
1108
|
+
.WFEUploadLog .el-textarea__inner {
|
|
1109
|
+
position: relative;
|
|
1110
|
+
display: flex;
|
|
1111
|
+
flex: 1;
|
|
1112
|
+
min-height: 0;
|
|
1113
|
+
width: 100%;
|
|
1114
|
+
resize: none;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.WFEUploadLog .el-button {
|
|
1118
|
+
position: absolute;
|
|
1119
|
+
inset-inline-end: 8px;
|
|
1120
|
+
inset-block-start: 8px;
|
|
1121
|
+
padding: 10px !important;
|
|
1122
|
+
border: none;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1102
1125
|
.el-autocomplete-suggestion {
|
|
1103
1126
|
width: fit-content !important;
|
|
1104
1127
|
}
|
|
@@ -1363,6 +1386,16 @@ table .el-form-item {
|
|
|
1363
1386
|
transform: scaleX(-1);
|
|
1364
1387
|
}
|
|
1365
1388
|
|
|
1389
|
+
.wf-elements-tabs.with-bpmn {
|
|
1390
|
+
.el-tabs__header {
|
|
1391
|
+
margin-inline: 0;
|
|
1392
|
+
margin-inline-end: 8px;
|
|
1393
|
+
}
|
|
1394
|
+
.el-tabs__nav-wrap {
|
|
1395
|
+
padding-inline: 0;
|
|
1396
|
+
}
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1366
1399
|
/* Scrollbar */
|
|
1367
1400
|
|
|
1368
1401
|
::-webkit-scrollbar {
|