@sirpho/components 1.0.2 → 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.
Files changed (2) hide show
  1. package/README.md +30 -1
  2. package/package.json +3 -15
package/README.md CHANGED
@@ -1 +1,30 @@
1
- # 组件库
1
+ ## sirpho components
2
+
3
+ #### 常用组件库
4
+
5
+ | 工具类 | 导入文件 |
6
+ |---------|----------------------|
7
+ | 多列下拉组件 | ComboBox |
8
+ | vxe筛选插件 | FilterExtend |
9
+ | 页面容器 | PageContainer |
10
+ | 查询容器 | QueryFilterContainer |
11
+ | 日志弹框 | StatusPop |
12
+ | vxe容器 | VxeContainer |
13
+
14
+ - [npm包地址](https://www.npmjs.com/package/@sirpho/components)
15
+
16
+
17
+ - [github地址](https://github.com/sirpho/components)
18
+
19
+ 打包命令
20
+
21
+ ```git
22
+ pnpm i
23
+ pnpm build
24
+ ```
25
+
26
+ 在项目中使用
27
+
28
+ ```cmd
29
+ npm i @sirpho/components
30
+ ```
package/package.json CHANGED
@@ -1,22 +1,10 @@
1
1
  {
2
2
  "name": "@sirpho/components",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
- "main": "./dist/index.cjs",
6
- "module": "./dist/index.js",
5
+ "main": "./dist/index.umd.js",
6
+ "module": "./dist/index.es.js",
7
7
  "types": "./dist/components/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "import": "./dist/index.js",
11
- "require": "./dist/index.cjs",
12
- "types": "./dist/index.d.ts"
13
- },
14
- "./*": {
15
- "import": "./dist/*.js",
16
- "require": "./dist/*.cjs",
17
- "types": "./dist/*.d.ts"
18
- }
19
- },
20
8
  "scripts": {
21
9
  "dev": "vite",
22
10
  "build": "vue-tsc && vite build",