morghulis 1.0.30 → 1.0.31
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/dist/index.d.ts +20 -0
- package/package.json +4 -1
package/dist/index.d.ts
CHANGED
@@ -350,5 +350,25 @@ declare module '@vue/runtime-core' {
|
|
350
350
|
ElDivider: typeof ElDivider;
|
351
351
|
ElSpace: typeof ElSpace;
|
352
352
|
// 可以根据需要添加更多Element Plus组件
|
353
|
+
|
354
|
+
// PascalCase 形式
|
355
|
+
MTable: typeof import('morghulis')['MTable']
|
356
|
+
MDialog: typeof import('morghulis')['MDialog']
|
357
|
+
MForm: typeof import('morghulis')['MForm']
|
358
|
+
DTable: typeof import('morghulis')['DTable']
|
359
|
+
DCell: typeof import('morghulis')['DCell']
|
360
|
+
DForm: typeof import('morghulis')['DForm']
|
361
|
+
DController: typeof import('morghulis')['DController']
|
362
|
+
MCell: typeof import('morghulis')['MCell']
|
363
|
+
|
364
|
+
// kebab-case 形式
|
365
|
+
'm-table': typeof import('morghulis')['MTable']
|
366
|
+
'm-dialog': typeof import('morghulis')['MDialog']
|
367
|
+
'm-form': typeof import('morghulis')['MForm']
|
368
|
+
'd-table': typeof import('morghulis')['DTable']
|
369
|
+
'd-cell': typeof import('morghulis')['DCell']
|
370
|
+
'd-form': typeof import('morghulis')['DForm']
|
371
|
+
'd-controller': typeof import('morghulis')['DController']
|
372
|
+
'm-cell': typeof import('morghulis')['MCell']
|
353
373
|
}
|
354
374
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "morghulis",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.31",
|
4
4
|
"private": false,
|
5
5
|
"description": "Vue 3组件库",
|
6
6
|
"type": "module",
|
@@ -26,6 +26,9 @@
|
|
26
26
|
"./components/*": {
|
27
27
|
"types": "./dist/index.d.ts",
|
28
28
|
"import": "./dist/index.js"
|
29
|
+
},
|
30
|
+
"./global": {
|
31
|
+
"types": "./dist/global.d.ts"
|
29
32
|
}
|
30
33
|
},
|
31
34
|
"typesVersions": {
|