@el-plus/ui 0.0.6 → 0.0.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # el-plus
2
2
 
3
+ ## 0.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 增加http
8
+
3
9
  ## 0.0.6
4
10
 
5
11
  ### Patch Changes
package/components.ts CHANGED
@@ -2,10 +2,12 @@ import type { Plugin } from 'vue'
2
2
  import Buttons from '@el-plus/components/buttons'
3
3
  import Form from '@el-plus/components/form'
4
4
  import Input from '@el-plus/components/input'
5
- import SearchListPage from '@el-plus/components/searchListPage'
5
+ import SearchListPage from '@el-plus/components/search-list-page'
6
6
  import Select from '@el-plus/components/select'
7
7
  import Table from '@el-plus/components/table'
8
8
  import Title from '@el-plus/components/title'
9
+ import Header from '@el-plus/components/header'
10
+ import DatePickerRange from '@el-plus/components/date-picker-range'
9
11
 
10
12
  export default [
11
13
  Buttons,
@@ -15,4 +17,6 @@ export default [
15
17
  Select,
16
18
  Table,
17
19
  Title,
20
+ Header,
21
+ DatePickerRange,
18
22
  ] as Plugin[]
package/index.ts CHANGED
@@ -1,8 +1,11 @@
1
1
  import type { App, Plugin } from 'vue'
2
2
  import components from './components'
3
3
  import { version } from './package.json'
4
+ import * as plugins from './plugins'
5
+
4
6
  export const install = (app: App, options?: Record<string, any>) => {
5
7
  components.forEach((c) => app.use(c))
8
+ Object.values(plugins).forEach((p) => app.use(p))
6
9
  if (options) {
7
10
  }
8
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@el-plus/ui",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "pro base on element-plus",
5
5
  "module": "index.ts",
6
6
  "keywords": [
@@ -12,13 +12,13 @@
12
12
  "license": "MIT",
13
13
  "peerDependencies": {
14
14
  "axios": "1.13.2",
15
- "element-plus": "2.11.9",
16
- "vue": "3.5.26"
15
+ "element-plus": "2.13.0",
16
+ "vue": "^3.5.26"
17
17
  },
18
18
  "devDependencies": {
19
19
  "axios": "1.13.2",
20
- "element-plus": "2.11.9",
21
- "vue": "3.5.26"
20
+ "element-plus": "2.13.0",
21
+ "vue": "^3.5.26"
22
22
  },
23
23
  "dependencies": {
24
24
  "@el-plus/components": "^0.0.1"
@@ -0,0 +1,5 @@
1
+ export default {
2
+ install(app) {
3
+ app.config.globalProperties.$test = 'test'
4
+ },
5
+ }
@@ -0,0 +1 @@
1
+ export { default as globalProperties } from './globalProperties'