workflow-editor 0.9.84-dw-tmp3 → 0.9.84-dw-tmp5
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/package.json +2 -2
- package/packages/workflow-editor/src/properties-editors/common/value-selection-dialog.vue +1 -1
- package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue +3 -3
- package/packages/workflow-editor/src/src.zip +0 -0
- package/packages/workflow-editor/src/workflow-editor.vue +3 -3
- package/packages/workflow-editor/src/workflow-history.vue +1 -1
- package/src/index.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "workflow-editor",
|
|
3
|
-
"version": "0.9.84-dw-
|
|
3
|
+
"version": "0.9.84-dw-tmp5",
|
|
4
4
|
"description": "流程编辑器",
|
|
5
5
|
"main": "lib/workflow-editor.umd.min.js",
|
|
6
6
|
"private": false,
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"element-ui": "2.15.3",
|
|
34
34
|
"eslint": "5.16.0",
|
|
35
35
|
"eslint-plugin-vue": "5.2.2",
|
|
36
|
-
"imatrix-ui": "2.8.97-dw-
|
|
36
|
+
"imatrix-ui": "2.8.97-dw-tmp33",
|
|
37
37
|
"node-sass": "4.12.0",
|
|
38
38
|
"nprogress": "^0.2.0",
|
|
39
39
|
"sass-loader": "^7.1.0",
|
package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue
CHANGED
|
@@ -203,13 +203,13 @@ export default {
|
|
|
203
203
|
</script>
|
|
204
204
|
|
|
205
205
|
<style lang="scss" scoped>
|
|
206
|
-
#appContainer
|
|
206
|
+
#appContainer ::v-deep .el-checkbox {
|
|
207
207
|
display: block
|
|
208
208
|
}
|
|
209
|
-
#appContainer
|
|
209
|
+
#appContainer ::v-deep .el-transfer-panel{
|
|
210
210
|
width:400px
|
|
211
211
|
}
|
|
212
|
-
#appContainer
|
|
212
|
+
#appContainer ::v-deep .ellipsis {
|
|
213
213
|
display:inline-block;
|
|
214
214
|
overflow:hidden;
|
|
215
215
|
text-overflow: ellipsis;
|
|
Binary file
|
|
@@ -572,8 +572,8 @@ section{
|
|
|
572
572
|
height:100%;
|
|
573
573
|
width:100%;
|
|
574
574
|
}
|
|
575
|
-
// 在scss
|
|
576
|
-
.tabs
|
|
575
|
+
// 在scss中需要使用::v-deep这个别名来代替 '>>>'
|
|
576
|
+
.tabs ::v-deep .el-tabs__content{
|
|
577
577
|
height: calc(100% - #{$tabsHeaderHeight});
|
|
578
578
|
padding:10px;
|
|
579
579
|
width:100%;
|
|
@@ -598,7 +598,7 @@ pre{
|
|
|
598
598
|
pointer-events: none;
|
|
599
599
|
// border: 1px solid red;
|
|
600
600
|
}
|
|
601
|
-
.canvas
|
|
601
|
+
.canvas ::v-deep .draggable{
|
|
602
602
|
cursor: move;
|
|
603
603
|
}
|
|
604
604
|
|
package/src/index.js
CHANGED
|
@@ -18,11 +18,11 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
18
18
|
}
|
|
19
19
|
export {
|
|
20
20
|
WorkflowEditor,
|
|
21
|
-
WorkflowHistory
|
|
21
|
+
WorkflowHistory,
|
|
22
|
+
wfEditorStore
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
export default {
|
|
25
26
|
// 导出的对象必须具有 install,才能被 Vue.use() 方法安装
|
|
26
|
-
install
|
|
27
|
-
wfEditorStore
|
|
27
|
+
install
|
|
28
28
|
}
|