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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workflow-editor",
3
- "version": "0.9.84-dw-tmp3",
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-tmp31",
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",
@@ -203,7 +203,7 @@ export default {
203
203
  }
204
204
  </script>
205
205
  <style scoped>
206
- #custTabOne /deep/ .el-tabs__content{
206
+ #custTabOne ::v-deep .el-tabs__content{
207
207
  height:500px
208
208
  }
209
209
  </style>
@@ -203,13 +203,13 @@ export default {
203
203
  </script>
204
204
 
205
205
  <style lang="scss" scoped>
206
- #appContainer /deep/ .el-checkbox {
206
+ #appContainer ::v-deep .el-checkbox {
207
207
  display: block
208
208
  }
209
- #appContainer /deep/ .el-transfer-panel{
209
+ #appContainer ::v-deep .el-transfer-panel{
210
210
  width:400px
211
211
  }
212
- #appContainer /deep/ .ellipsis {
212
+ #appContainer ::v-deep .ellipsis {
213
213
  display:inline-block;
214
214
  overflow:hidden;
215
215
  text-overflow: ellipsis;
@@ -572,8 +572,8 @@ section{
572
572
  height:100%;
573
573
  width:100%;
574
574
  }
575
- // 在scss中需要使用/deep/这个别名来代替 '>>>'
576
- .tabs /deep/ .el-tabs__content{
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 /deep/ .draggable{
601
+ .canvas ::v-deep .draggable{
602
602
  cursor: move;
603
603
  }
604
604
 
@@ -146,7 +146,7 @@ section{
146
146
  min-height: 500px;
147
147
 
148
148
  }
149
- .canvas /deep/ .draggable{
149
+ .canvas ::v-deep .draggable{
150
150
  cursor: default;
151
151
  }
152
152
  </style>
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
  }