@mtn-ui/components 1.0.1 → 1.0.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.
@@ -0,0 +1,18 @@
1
+ import { App } from 'vue';
2
+ /**
3
+ * Mtn UI - Vue 3 Component Library
4
+ *
5
+ * 分类导出:
6
+ * - data-display: 数据展示组件(自实现)
7
+ * - antd-wrapped: 复杂组件(基于 Ant Design Vue 封装)
8
+ * - layout: 布局组件(待添加)
9
+ * - navigation: 导航组件(待添加)
10
+ * - data-entry: 数据录入组件(待添加)
11
+ * - feedback: 反馈组件(待添加)
12
+ */
13
+ export * from './packages/components/src/data-display';
14
+ export * from './packages/components/src/antd-wrapped';
15
+ declare const _default: {
16
+ install(app: App): void;
17
+ };
18
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtn-ui/components",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
5
  "description": "Core components for mtn-ui",
6
6
  "main": "./dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "dist"
22
22
  ],
23
23
  "scripts": {
24
- "build": "vite build",
24
+ "build": "vite build && node scripts/fix-types.js",
25
25
  "dev": "vite build --watch",
26
26
  "test": "vitest run",
27
27
  "test:watch": "vitest"