@wx-design/components 0.9.0-alpha.2 → 0.9.0-alpha.3

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/types/index.d.ts +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wx-design/components",
3
- "version": "0.9.0-alpha.2",
3
+ "version": "0.9.0-alpha.3",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
package/types/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { VxeTablePropTypes } from 'vxe-table'
2
+ import { App } from 'vue'
2
3
  import { SabTable, SabTableSet, SabDesignConfigProvider } from './table'
3
4
  export { SabTable, SabTableSet, SabDesignConfigProvider }
4
5
 
@@ -21,4 +22,8 @@ declare module '@vue/runtime-core' {
21
22
  export namespace SABTable {
22
23
  export * from './table'
23
24
  export import SabTablePropTypes = VxeTablePropTypes
24
- }
25
+ }
26
+
27
+ export const SabUI: {
28
+ install(app: App)
29
+ }