zydx-plus 1.7.27 → 1.7.28
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 +3 -6
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -11,7 +11,6 @@ import Table from './components/data_table/index';
|
|
|
11
11
|
import buttonGroup from './components/buttonGroup/index';
|
|
12
12
|
import spinner from './components/spinner/index';
|
|
13
13
|
import treeList from './components/treeList/index';
|
|
14
|
-
import flip from './components/flip/index';
|
|
15
14
|
|
|
16
15
|
const components = [
|
|
17
16
|
Calendar,
|
|
@@ -24,8 +23,7 @@ const components = [
|
|
|
24
23
|
Year,
|
|
25
24
|
Table,
|
|
26
25
|
buttonGroup,
|
|
27
|
-
treeList
|
|
28
|
-
flip
|
|
26
|
+
treeList
|
|
29
27
|
];
|
|
30
28
|
|
|
31
29
|
function install(app) {
|
|
@@ -37,7 +35,7 @@ function install(app) {
|
|
|
37
35
|
}
|
|
38
36
|
|
|
39
37
|
export default {
|
|
40
|
-
version: '1.7.
|
|
38
|
+
version: '1.7.28',
|
|
41
39
|
install,
|
|
42
40
|
Calendar,
|
|
43
41
|
Message,
|
|
@@ -51,7 +49,6 @@ export default {
|
|
|
51
49
|
Year,
|
|
52
50
|
Table,
|
|
53
51
|
buttonGroup,
|
|
54
|
-
treeList
|
|
55
|
-
flip
|
|
52
|
+
treeList
|
|
56
53
|
};
|
|
57
54
|
|