zydx-plus 1.35.496 → 1.35.497
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 +1 -1
- package/src/index.js +6 -3
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -19,6 +19,7 @@ import mind from './components/mind/index';
|
|
|
19
19
|
import bizHeader from './components/biz_header/index';
|
|
20
20
|
import editor2 from './components/editor2/index';
|
|
21
21
|
import dragPopup from './components/dragPopup/index';
|
|
22
|
+
import dragPopup2 from './components/dragPopup2/index';
|
|
22
23
|
import bizTaskInfo from './components/biz_taskInfo/index';
|
|
23
24
|
import read from './components/read/index';
|
|
24
25
|
import textarea from './components/textarea/index';
|
|
@@ -74,7 +75,8 @@ const components = [
|
|
|
74
75
|
seek,
|
|
75
76
|
sketchpad,
|
|
76
77
|
chat,
|
|
77
|
-
variableBox
|
|
78
|
+
variableBox,
|
|
79
|
+
dragPopup2
|
|
78
80
|
];
|
|
79
81
|
|
|
80
82
|
function install(app) {
|
|
@@ -87,7 +89,7 @@ function install(app) {
|
|
|
87
89
|
}
|
|
88
90
|
|
|
89
91
|
export default {
|
|
90
|
-
version: '1.35.
|
|
92
|
+
version: '1.35.497',
|
|
91
93
|
install,
|
|
92
94
|
Calendar,
|
|
93
95
|
Message,
|
|
@@ -127,6 +129,7 @@ export default {
|
|
|
127
129
|
seek,
|
|
128
130
|
sketchpad,
|
|
129
131
|
chat,
|
|
130
|
-
variableBox
|
|
132
|
+
variableBox,
|
|
133
|
+
dragPopup2
|
|
131
134
|
};
|
|
132
135
|
|