imatrix-ui 2.8.97-dw-tmp31 → 2.8.97-dw-tmp33
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 +7 -8
- package/packages/department-tree-inline/src/department-multi-tree-inline.vue +1 -1
- package/packages/department-tree-inline/src/department-single-tree-inline.vue +1 -1
- package/packages/department-user-tree-inline/src/department-user-multiple-tree-inline.vue +1 -1
- package/packages/department-user-tree-inline/src/department-user-single-tree-inline.vue +1 -1
- package/packages/department-user-tree-inline/src/department-user-tree-multi-service.js +1 -1
- package/packages/department-user-tree-inline/src/department-user-tree-single-service.js +1 -1
- package/packages/workgroup-tree-inline/src/workgroup-tree-inline.vue +1 -1
- package/packages/workgroup-user-tree-inline/src/workgroup-user-tree-inline.vue +1 -1
- package/src/index.js +0 -32
- package/lib/index.js +0 -3672
- package/lib/plugins.js +0 -2928
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "imatrix-ui",
|
|
3
|
-
"version": "2.8.97-dw-
|
|
3
|
+
"version": "2.8.97-dw-tmp33",
|
|
4
4
|
"description": "前端组件库:表格、表单、组织结构树等",
|
|
5
5
|
"main": "lib/super-ui.umd.min.js",
|
|
6
6
|
"private": false,
|
|
@@ -14,14 +14,9 @@
|
|
|
14
14
|
"webpack": "webpack --config ./webpack.components.js",
|
|
15
15
|
"buildJs": "webpack --config ./webpack.commonjs.js"
|
|
16
16
|
},
|
|
17
|
-
"dependencies": {
|
|
18
|
-
"@tinymce/tinymce-vue": "^3.2.4",
|
|
19
|
-
"@zxing/library": "^0.19.1",
|
|
20
|
-
"js-cookie": "^2.2.0",
|
|
21
|
-
"sortablejs": "1.10.2",
|
|
22
|
-
"tinymce": "^5.6.1"
|
|
23
|
-
},
|
|
17
|
+
"dependencies": {},
|
|
24
18
|
"devDependencies": {
|
|
19
|
+
"@tinymce/tinymce-vue": "^3.2.4",
|
|
25
20
|
"@vue/cli-plugin-babel": "3.8.0",
|
|
26
21
|
"@vue/cli-plugin-e2e-cypress": "3.8.0",
|
|
27
22
|
"@vue/cli-plugin-eslint": "3.8.0",
|
|
@@ -29,6 +24,7 @@
|
|
|
29
24
|
"@vue/cli-service": "3.8.0",
|
|
30
25
|
"@vue/eslint-config-standard": "^4.0.0",
|
|
31
26
|
"@vue/test-utils": "^1.0.0-beta.29",
|
|
27
|
+
"@zxing/library": "^0.19.1",
|
|
32
28
|
"axios": "0.19.0",
|
|
33
29
|
"babel-cli": "^6.26.0",
|
|
34
30
|
"babel-eslint": "^10.0.1",
|
|
@@ -38,10 +34,13 @@
|
|
|
38
34
|
"element-ui": "2.15.3",
|
|
39
35
|
"eslint": "5.16.0",
|
|
40
36
|
"eslint-plugin-vue": "5.2.2",
|
|
37
|
+
"js-cookie": "^2.2.0",
|
|
41
38
|
"node-sass": "4.14.0",
|
|
42
39
|
"nprogress": "^0.2.0",
|
|
43
40
|
"sass-loader": "^7.1.0",
|
|
44
41
|
"sessionstorage": "^0.1.0",
|
|
42
|
+
"sortablejs": "1.10.2",
|
|
43
|
+
"tinymce": "^5.6.1",
|
|
45
44
|
"vue": "^2.6.10",
|
|
46
45
|
"vue-cli-plugin-element": "^1.0.1",
|
|
47
46
|
"vue-i18n": "^8.17.4",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
</style>
|
|
71
71
|
|
|
72
72
|
<script>
|
|
73
|
-
import localStorage from '
|
|
73
|
+
import localStorage from '../../../src/utils/local-storage'
|
|
74
74
|
import utils from '../../utils/utils'
|
|
75
75
|
import departmentTreeService from './department-tree-service'
|
|
76
76
|
import UserResult from './search-result.vue'
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
</style>
|
|
51
51
|
|
|
52
52
|
<script>
|
|
53
|
-
import localStorage from '
|
|
53
|
+
import localStorage from '../../../src/utils/local-storage'
|
|
54
54
|
import utils from '../../utils/utils'
|
|
55
55
|
import departmentTreeService from './department-tree-service'
|
|
56
56
|
import UserResult from './search-result.vue'
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
}
|
|
71
71
|
</style>
|
|
72
72
|
<script>
|
|
73
|
-
import localStorage from '
|
|
73
|
+
import localStorage from '../../../src/utils/local-storage'
|
|
74
74
|
import UserResult from './search-result'
|
|
75
75
|
import utils from '../../utils/utils'
|
|
76
76
|
import departmentUserTreeMultiService from './department-user-tree-multi-service'
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
}
|
|
56
56
|
</style>
|
|
57
57
|
<script>
|
|
58
|
-
import localStorage from '
|
|
58
|
+
import localStorage from '../../../src/utils/local-storage'
|
|
59
59
|
import UserResult from './search-result'
|
|
60
60
|
import utils from '../../utils/utils'
|
|
61
61
|
import departmentUserTreeSingleService from './department-user-tree-single-service'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Vue from 'vue'
|
|
2
2
|
import { getI18n } from '../../../src/utils/util'
|
|
3
|
-
import localStorage from '
|
|
3
|
+
import localStorage from '../../../src/utils/local-storage'
|
|
4
4
|
const departmentUserTreeMultiService = {
|
|
5
5
|
// 后台查询部门,并拼接树节点
|
|
6
6
|
filterAppendNodes(value) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Vue from 'vue'
|
|
2
2
|
import { getI18n } from '../../../src/utils/util'
|
|
3
|
-
import localStorage from '
|
|
3
|
+
import localStorage from '../../../src/utils/local-storage'
|
|
4
4
|
const departmentUserTreeSingleService = {
|
|
5
5
|
// 后台查询部门,并拼接树节点
|
|
6
6
|
filterAppendNodes(value) {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
</style>
|
|
43
43
|
|
|
44
44
|
<script>
|
|
45
|
-
import localStorage from '
|
|
45
|
+
import localStorage from '../../../src/utils/local-storage'
|
|
46
46
|
import utils from '../../utils/utils'
|
|
47
47
|
import workgroupTreeService from './workgroup-tree-service'
|
|
48
48
|
export default {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
</style>
|
|
46
46
|
|
|
47
47
|
<script>
|
|
48
|
-
import localStorage from '
|
|
48
|
+
import localStorage from '../../../src/utils/local-storage'
|
|
49
49
|
import utils from '../../utils/utils'
|
|
50
50
|
import workgroupTreeInlineService from './workgroup-tree-inline-service'
|
|
51
51
|
export default {
|
package/src/index.js
CHANGED
|
@@ -32,38 +32,6 @@ import YearRangePicker from '../packages/year-range-picker'
|
|
|
32
32
|
import MultipartUpload from '../packages/multipart-upload'
|
|
33
33
|
import RichEditor from '../packages/rich-editor'
|
|
34
34
|
import SecretInfo from '../packages/secret-info'
|
|
35
|
-
// 将所有组件都存储起来,方便后续统一注册
|
|
36
|
-
const components = [
|
|
37
|
-
Breadcrumb,
|
|
38
|
-
DepartmentTree,
|
|
39
|
-
Hamburger,
|
|
40
|
-
SvgIcon,
|
|
41
|
-
SuperGrid,
|
|
42
|
-
DepartmentUserTree,
|
|
43
|
-
WorkgroupTree,
|
|
44
|
-
WorkgroupUserTree,
|
|
45
|
-
InlineDepartmentTree,
|
|
46
|
-
InlineDepartmentUserTree,
|
|
47
|
-
InlineWorkgroupTree,
|
|
48
|
-
InlineWorkgroupUserTree,
|
|
49
|
-
WorkflowButton,
|
|
50
|
-
WorkflowHistoryList,
|
|
51
|
-
ValidCode,
|
|
52
|
-
RemoveUser,
|
|
53
|
-
RemoveDepartment,
|
|
54
|
-
RemoveWorkgroup,
|
|
55
|
-
OrganizationInput,
|
|
56
|
-
SuperNineGrid,
|
|
57
|
-
DynamicSourceSelect,
|
|
58
|
-
FsUpload,
|
|
59
|
-
ScanCodeInput,
|
|
60
|
-
FsPreview,
|
|
61
|
-
FsUploadList,
|
|
62
|
-
YearRangePicker,
|
|
63
|
-
MultipartUpload,
|
|
64
|
-
RichEditor,
|
|
65
|
-
SecretInfo
|
|
66
|
-
]
|
|
67
35
|
|
|
68
36
|
// 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
69
37
|
const install = function(Vue) {
|