x-next 0.0.0-alpha.40 → 0.0.0-alpha.41

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 +2 -2
  2. package/volar.d.ts +3 -0
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.40",
4
+ "version": "0.0.0-alpha.41",
5
5
  "description": "An amazing Vue3 UI library.",
6
6
  "type": "module",
7
7
  "main": "dist/index.umd.js",
@@ -13,7 +13,7 @@
13
13
  "preview": "vite preview",
14
14
  "publish": "npm publish --access=public",
15
15
  "gen-volar-dts": "esbuild script/gen-component-declaration.js --bundle --platform=node --tsconfig=tsconfig.esbuild.json | node",
16
- "gen-volar-dts-alpha": "esbuild script/gen-component-declaration.alpha.js --bundle --platform=node --tsconfig=tsconfig.esbuild.json | node"
16
+ "gen-volar-dts-old": "esbuild script/gen-component-declaration.old.js --bundle --platform=node --tsconfig=tsconfig.esbuild.json | node"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
package/volar.d.ts CHANGED
@@ -9,6 +9,9 @@ declare module 'vue' {
9
9
  XSpace: (typeof import('x-next'))['XSpace'];
10
10
  XPopconfirm: (typeof import('x-next'))['XPopconfirm'];
11
11
  XTrendChart: (typeof import('x-next'))['XTrendChart'];
12
+ XTimeline: (typeof import('x-next'))['XTimeline'];
13
+ XTimelineItem: (typeof import('x-next'))['XTimelineItem'];
14
+ XPopup: (typeof import('x-next'))['XPopup'];
12
15
  }
13
16
  }
14
17
  export {};