mortise-tenon-design 0.4.0-beta.2 → 0.4.0-beta.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.
- package/global.d.ts +11 -0
- package/package.json +2 -1
package/global.d.ts
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
// GlobalComponents for Volar
|
2
|
+
declare module 'vue' {
|
3
|
+
export interface GlobalComponents {
|
4
|
+
MtComponentNeo: typeof import('mortise-tenon-design')['MtComponentNeo']
|
5
|
+
MtExpand: typeof import('mortise-tenon-design')['MtExpand']
|
6
|
+
MtSort: typeof import('mortise-tenon-design')['MtSort']
|
7
|
+
MtTable: typeof import('mortise-tenon-design')['MtTable']
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
export {};
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "mortise-tenon-design",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.4.0-beta.
|
4
|
+
"version": "0.4.0-beta.3",
|
5
5
|
"description": "榫卯组件库",
|
6
6
|
"author": "nixwai",
|
7
7
|
"license": "ISC",
|
@@ -55,6 +55,7 @@
|
|
55
55
|
"types": "types/index.d.ts",
|
56
56
|
"files": [
|
57
57
|
"es",
|
58
|
+
"global.d.ts",
|
58
59
|
"lib",
|
59
60
|
"types"
|
60
61
|
],
|