workflow-editor 0.9.85-dw-tmp2 → 0.9.86-dw
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/lib/workflow-editor.min.js +1 -1
- package/package.json +1 -1
- package/src/index.js +5 -4
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// 依次导入组件库的各个组件
|
|
2
2
|
import workflow from '../packages/workflow-editor'
|
|
3
3
|
import formValidator from './../packages/plugins/index'
|
|
4
|
-
const WorkflowEditor = workflow.WorkflowEditor
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
// const WorkflowEditor = workflow.WorkflowEditor
|
|
5
|
+
const WorkflowHistory = workflow.WorkflowHistory
|
|
6
|
+
const wfEditorStore = workflow.wfEditorStore
|
|
7
7
|
|
|
8
8
|
// 将所有组件都存储起来,方便后续统一注册
|
|
9
9
|
// const components = [
|
|
@@ -27,7 +27,8 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export {
|
|
30
|
-
|
|
30
|
+
WorkflowHistory,
|
|
31
|
+
wfEditorStore
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
export default {
|