agilebuilder-ui 1.1.36-tmp1 → 1.1.36-tmp3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +0 -34
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agilebuilder-ui",
3
- "version": "1.1.36-tmp1",
3
+ "version": "1.1.36-tmp3",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "./lib/super-ui.js",
package/src/index.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import PreventReclick from '../packages/directives/prevent-reclick'
2
2
  import customPlugin from '../packages/plugins/index'
3
3
  import { openPage } from './utils/jump-page-utils'
4
- import plugins from '../packages/plugins/index'
5
4
  import permission from './directives/permission'
6
5
 
7
6
  // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
@@ -9,7 +8,6 @@ const install = function (Vue) {
9
8
  Vue.directive('prevent-reclick', PreventReclick)
10
9
  permission.install(Vue)
11
10
  Vue.use(customPlugin)
12
- Vue.use(plugins)
13
11
  if (install.installed) return
14
12
  // 将弹出页面方法注册到window对象上
15
13
  window['$plateform_openPage'] = openPage
@@ -19,38 +17,6 @@ const install = function (Vue) {
19
17
  if (typeof window !== 'undefined' && window.Vue) {
20
18
  install(window.Vue)
21
19
  }
22
- // 按需引入
23
- // export {
24
- // Breadcrumb,
25
- // DepartmentTree,
26
- // Hamburger,
27
- // SvgIcon,
28
- // SuperGrid,
29
- // DepartmentUserTree,
30
- // WorkgroupTree,
31
- // WorkgroupUserTree,
32
- // InlineDepartmentTree,
33
- // InlineDepartmentUserTree,
34
- // InlineWorkgroupTree,
35
- // InlineWorkgroupUserTree,
36
- // WorkflowButton,
37
- // WorkflowHistoryList,
38
- // ValidCode,
39
- // RemoveUser,
40
- // RemoveDepartment,
41
- // RemoveWorkgroup,
42
- // OrganizationInput,
43
- // SuperNineGrid,
44
- // DynamicSourceSelect,
45
- // FsUpload,
46
- // ScanCodeInput,
47
- // FsPreview,
48
- // FsUploadList,
49
- // YearRangePicker,
50
- // MultipartUpload,
51
- // RichEditor,
52
- // SecretInfo
53
- // }
54
20
 
55
21
  export default {
56
22
  // 导出的对象必须具有 install,才能被 Vue.use() 方法安装