@iswangh/element-plus-kit 0.1.3 → 0.1.4

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/README.md CHANGED
@@ -294,6 +294,7 @@ import type {
294
294
  ColAttrs,
295
295
  ElFormAttrs,
296
296
  EventExtendedParams,
297
+ ExpandRule,
297
298
  FormItem,
298
299
  FormItems,
299
300
  FormItemSlotScope,
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@ import { ColAttrs } from '@iswangh/element-plus-kit-form';
6
6
  import { ComponentResolver } from 'unplugin-vue-components/types';
7
7
  import { ElFormAttrs } from '@iswangh/element-plus-kit-form';
8
8
  import { EventExtendedParams } from '@iswangh/element-plus-kit-form';
9
+ import { ExpandRule } from '@iswangh/element-plus-kit-form';
9
10
  import { FormItem } from '@iswangh/element-plus-kit-form';
10
11
  import { FormItemComp } from '@iswangh/element-plus-kit-form';
11
12
  import { FormItemCompAttrs } from '@iswangh/element-plus-kit-form';
@@ -63,6 +64,8 @@ export { ElFormAttrs }
63
64
 
64
65
  export { EventExtendedParams }
65
66
 
67
+ export { ExpandRule }
68
+
66
69
  export { FormItem }
67
70
 
68
71
  export { FormItemComp }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iswangh/element-plus-kit",
3
3
  "type": "module",
4
- "version": "0.1.3",
4
+ "version": "0.1.4",
5
5
  "description": "Element Plus Kit - 基于 Element Plus 的 Vue 3 组件集合",
6
6
  "author": "iswangh",
7
7
  "license": "Apache-2.0",
@@ -39,7 +39,7 @@
39
39
  "vue": "^3.5.23"
40
40
  },
41
41
  "dependencies": {
42
- "@iswangh/element-plus-kit-form": "0.1.3"
42
+ "@iswangh/element-plus-kit-form": "0.1.4"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@vitejs/plugin-vue": "^6.0.1",
@@ -58,9 +58,6 @@
58
58
  "build": "vite build",
59
59
  "dev": "vite build --watch",
60
60
  "type-check": "vue-tsc --noEmit",
61
- "clean": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\"",
62
- "publish:patch": "pnpm version patch --no-git-tag-version && pnpm publish",
63
- "publish:minor": "pnpm version minor --no-git-tag-version && pnpm publish",
64
- "publish:major": "pnpm version major --no-git-tag-version && pnpm publish"
61
+ "clean": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\""
65
62
  }
66
63
  }