@iswangh/element-plus-kit 0.2.1 → 0.3.0

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 CHANGED
@@ -4,6 +4,7 @@ import { FormActionConfig } from '@iswangh/element-plus-kit-form';
4
4
  import { FormItemEventExtendedParams } from '@iswangh/element-plus-kit-form';
5
5
  import { FormItems } from '@iswangh/element-plus-kit-form';
6
6
  import { ResolverFunction } from 'unplugin-auto-import/types';
7
+ import { useLoadOptions } from '@iswangh/element-plus-kit-form';
7
8
  import { WForm } from '@iswangh/element-plus-kit-form';
8
9
 
9
10
  /**
@@ -55,6 +56,8 @@ export { FormItems }
55
56
  */
56
57
  export declare function install(app: App): void;
57
58
 
59
+ export { useLoadOptions }
60
+
58
61
  export { WForm }
59
62
 
60
63
  export { }
package/dist/index.js CHANGED
@@ -1,15 +1,14 @@
1
1
  import { WForm as t } from "@iswangh/element-plus-kit-form";
2
- import { WForm as f } from "@iswangh/element-plus-kit-form";
3
- import { ElementPlusKitResolver as a } from "./resolver.js";
4
- function r(o) {
2
+ import { WForm as s, useLoadOptions as a } from "@iswangh/element-plus-kit-form";
3
+ import { ElementPlusKitResolver as i } from "./resolver.js";
4
+ function e(o) {
5
5
  o.component("WForm", t);
6
6
  }
7
- const l = {
8
- install: r
9
- };
7
+ const l = { install: e };
10
8
  export {
11
- a as ElementPlusKitResolver,
12
- f as WForm,
9
+ i as ElementPlusKitResolver,
10
+ s as WForm,
13
11
  l as default,
14
- r as install
12
+ e as install,
13
+ a as useLoadOptions
15
14
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iswangh/element-plus-kit",
3
3
  "type": "module",
4
- "version": "0.2.1",
4
+ "version": "0.3.0",
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.2.1"
42
+ "@iswangh/element-plus-kit-form": "0.3.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@vitejs/plugin-vue": "^6.0.1",
@@ -52,12 +52,12 @@
52
52
  "vue-tsc": "^3.1.3"
53
53
  },
54
54
  "publishConfig": {
55
- "access": "public"
55
+ "access": "public",
56
+ "registry": "https://registry.npmjs.org/"
56
57
  },
57
58
  "scripts": {
58
59
  "build": "vite build",
59
60
  "dev": "vite build --watch",
60
- "type-check": "vue-tsc --build",
61
- "clean": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\""
61
+ "type-check": "vue-tsc --build"
62
62
  }
63
63
  }