x-next 0.0.0-alpha.15 → 0.0.0-alpha.16

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
1
+ {
2
+ "framework": "vue",
3
+ "name": "your-library-name",
4
+ "version": "1.0.0",
5
+ "contributions": {
6
+ "html": {
7
+ "tags": [],
8
+ "attributes": []
9
+ }
10
+ }
11
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-next",
3
3
  "private": false,
4
- "version": "0.0.0-alpha.15",
4
+ "version": "0.0.0-alpha.16",
5
5
  "description": "An amazing Vue3 UI library.",
6
6
  "type": "module",
7
7
  "main": "dist/index.umd.js",
package/volar.d.ts CHANGED
@@ -2,6 +2,11 @@
2
2
  declare module 'vue' {
3
3
  export interface GlobalComponents {
4
4
  XButton: (typeof import('x-next'))['XButton']
5
+ XDialog: (typeof import('x-next'))['XDialog']
6
+ XNotification: (typeof import('x-next'))['XNotification']
7
+ XSpace: (typeof import('x-next'))['XSpace']
8
+ XMessage: (typeof import('x-next'))['XMessage']
9
+ XMessageBox: (typeof import('x-next'))['XMessageBox']
5
10
  }
6
11
  }
7
12
  export {}