@bdsoft/element 1.1.11 → 1.1.12

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/index.js +11 -11
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -5,10 +5,10 @@ import * as ElementPlus from 'element-plus'
5
5
  import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
6
6
  window.ElementPlus = ElementPlus
7
7
 
8
- import './src/assets/css/element.scss'
8
+ import '@/assets/css/element.scss'
9
9
  import 'splitpanes/dist/splitpanes.css'
10
- import './src/assets/css/layout.scss'
11
- import './src/assets/css/tailwind.scss'
10
+ import '@/assets/css/layout.scss'
11
+ import '@/assets/css/tailwind.scss'
12
12
 
13
13
  // 添加分隔组件
14
14
  import { Splitpanes, Pane } from 'splitpanes'
@@ -16,9 +16,9 @@ import { Splitpanes, Pane } from 'splitpanes'
16
16
  import * as ElementPlusIconsVue from '@element-plus/icons-vue'
17
17
  window.ElementPlusIconVue = ElementPlusIconsVue
18
18
 
19
- import LoadComponent from './utils/coms/load.jsx'
19
+ import LoadComponent from 'utils/coms/load.jsx'
20
20
  // 自定义的所有组件
21
- import * as components from './src/index.js'
21
+ import * as components from '@/index.js'
22
22
 
23
23
  // 定义 useElement 为 Vue 插件
24
24
  const useElement = {
@@ -76,11 +76,11 @@ const useElement = {
76
76
  export default useElement
77
77
  export { useElement }
78
78
  // 功能 showwarning, showsuccess, showerror, showconfirm
79
- export * from './utils/message.js'
80
- export * from './utils/index.js'
81
- export * from './global/index'
82
- export * from './utils/hookDialog.js'
83
- export * from './utils/hookPage.js' // 分页hook函数
79
+ export * from 'utils/message.js'
80
+ export * from 'utils/index.js'
81
+ export * from 'global/index'
82
+ export * from 'utils/hookDialog.js'
83
+ export * from 'utils/hookPage.js' // 分页hook函数
84
84
  // export { dayjs }
85
85
  // 导出所有组件
86
- export * from './src/index.js'
86
+ export * from '@/index.js'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bdsoft/element",
3
3
  "description": "内部UI组件",
4
- "version": "1.1.11",
4
+ "version": "1.1.12",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "files":["dist", "package.json", "README.md"],