ecinc-cloud-yoabase 9.5.16 → 9.5.18
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/index.js +2 -7
- package/lib/ecyoabase.common.js +141929 -142291
- package/lib/ecyoabase.umd.js +141929 -142291
- package/lib/ecyoabase.umd.min.js +5 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -46,12 +46,7 @@ import VoiceRightFormTab from './src/voice/RightForm/PanelNode/Tab0'
|
|
|
46
46
|
// common
|
|
47
47
|
//import CommonComponents from './src/common/exportor'
|
|
48
48
|
// workflow
|
|
49
|
-
|
|
50
|
-
import textBox from './src/workflow/wfInstance/mainform/components/textBox'
|
|
51
|
-
import wformFooter from './src/workflow/wfInstance/mainform/components/wformFooter'
|
|
52
|
-
import wformHeader from './src/workflow/wfInstance/mainform/components/wformHeader'
|
|
53
|
-
import wformSerial from './src/workflow/wfInstance/mainform/components/wformSerial'
|
|
54
|
-
import wformTitle from './src/workflow/wfInstance/mainform/components/wformTitle'
|
|
49
|
+
import { textBox, wformFooter, wformHeader, wformSerial, wformTitle } from './src/workflow/exporter'
|
|
55
50
|
|
|
56
51
|
// 以对象的结构保存组件,便于遍历
|
|
57
52
|
const components = {
|
|
@@ -101,7 +96,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
101
96
|
install(window.Vue)
|
|
102
97
|
}
|
|
103
98
|
|
|
104
|
-
|
|
99
|
+
export default {
|
|
105
100
|
// 导出的对象必须具备一个 install 方法
|
|
106
101
|
install,
|
|
107
102
|
// 组件列表
|