diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c42fc6a..14a73e73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Bug Fixes + +* **lib:** 添加严格模式配置,更精准计算anyOf 默认值 ([10cdc08](https://github.com/lljj-x/vue-json-schema-form/commit/10cdc089087d83d8fe08e1fd379b7a1aaad0cd5d)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152) +* **ts:** 修复类型定义文件 ([18a7058](https://github.com/lljj-x/vue-json-schema-form/commit/18a70581d4471055a9d1c78eef6e012f37ddd8cb)) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) +* **lib:** 添加vue3 naiveui支持 ([a159c78](https://github.com/lljj-x/vue-json-schema-form/commit/a159c78eb1a9156aa042a0cf82a350c46e035dcc)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) diff --git a/lerna.json b/lerna.json index f259dc15..ca995b87 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "1.11.0", + "version": "1.12.0", "command": { "version": { "allowBranch": "master", diff --git a/packages/demo/demo-common/CHANGELOG.md b/packages/demo/demo-common/CHANGELOG.md index 732cac08..884ef8e8 100644 --- a/packages/demo/demo-common/CHANGELOG.md +++ b/packages/demo/demo-common/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Bug Fixes + +* **lib:** 添加严格模式配置,更精准计算anyOf 默认值 ([10cdc08](https://github.com/lljj-x/vue-json-schema-form/commit/10cdc089087d83d8fe08e1fd379b7a1aaad0cd5d)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) + + + + + # [1.2.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.1.3...v1.2.0) (2021-03-30) diff --git a/packages/demo/demo-common/package.json b/packages/demo/demo-common/package.json index c8414938..e7a1cb86 100644 --- a/packages/demo/demo-common/package.json +++ b/packages/demo/demo-common/package.json @@ -1,6 +1,6 @@ { "name": "demo-common", - "version": "1.2.0", + "version": "1.12.0", "description": "vue json schema form demo公共代码", "keywords": [ "@lljj/vjsf-utils", diff --git a/packages/demo/demo-v2/CHANGELOG.md b/packages/demo/demo-v2/CHANGELOG.md index d39ffdc9..67424897 100644 --- a/packages/demo/demo-v2/CHANGELOG.md +++ b/packages/demo/demo-v2/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) diff --git a/packages/demo/demo-v2/package.json b/packages/demo/demo-v2/package.json index 8e33b5b8..44203c41 100644 --- a/packages/demo/demo-v2/package.json +++ b/packages/demo/demo-v2/package.json @@ -1,6 +1,6 @@ { "name": "demo", - "version": "1.11.0", + "version": "1.12.0", "private": true, "license": "Apache-2.0", "scripts": { @@ -10,10 +10,10 @@ }, "dependencies": { "@lljj/polyfill": "^0.1.0", - "@lljj/vue-json-schema-form": "1.11.0", - "@lljj/vue2-form-iview3": "1.11.0", + "@lljj/vue-json-schema-form": "1.12.0", + "@lljj/vue2-form-iview3": "1.12.0", "ajv-i18n": "^3.5.0", - "demo-common": "1.2.0", + "demo-common": "1.12.0", "iview": "^3.5.4", "vue": "^2.6.10", "vuedraggable": "2.23.2" diff --git a/packages/demo/demo-v3/CHANGELOG.md b/packages/demo/demo-v3/CHANGELOG.md index bd4fcc0f..ece733d9 100644 --- a/packages/demo/demo-v3/CHANGELOG.md +++ b/packages/demo/demo-v3/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Bug Fixes + +* **lib:** 添加严格模式配置,更精准计算anyOf 默认值 ([10cdc08](https://github.com/lljj-x/vue-json-schema-form/commit/10cdc089087d83d8fe08e1fd379b7a1aaad0cd5d)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) **Note:** Version bump only for package demo-v3 diff --git a/packages/demo/demo-v3/package.json b/packages/demo/demo-v3/package.json index 61f272e8..b9db090d 100644 --- a/packages/demo/demo-v3/package.json +++ b/packages/demo/demo-v3/package.json @@ -1,6 +1,6 @@ { "name": "demo-v3", - "version": "1.11.0", + "version": "1.12.0", "private": true, "license": "Apache-2.0", "scripts": { @@ -10,12 +10,12 @@ }, "dependencies": { "@lljj/polyfill": "^0.1.0", - "@lljj/vue3-form-ant": "1.11.0", - "@lljj/vue3-form-element": "1.11.0", + "@lljj/vue3-form-ant": "1.12.0", + "@lljj/vue3-form-element": "1.12.0", "ajv-i18n": "^3.5.0", "ant-design-vue": "^2.0.1", + "demo-common": "1.12.0", "naive-ui": "^2.26.1", - "demo-common": "1.2.0", "vue": "^3.0.0", "vuedraggable": "2.23.2" }, diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md index 34b426b8..d3749d73 100644 --- a/packages/docs/CHANGELOG.md +++ b/packages/docs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + +**Note:** Version bump only for package docs + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) diff --git a/packages/docs/package.json b/packages/docs/package.json index fc448e6c..cdbee1a7 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "1.11.0", + "version": "1.12.0", "private": true, "license": "Apache-2.0", "scripts": { @@ -9,7 +9,7 @@ "build": "vuepress build docs" }, "dependencies": { - "@lljj/vue-json-schema-form": "1.11.0", + "@lljj/vue-json-schema-form": "1.12.0", "element-ui": "^2.13.2", "v-distpicker": "^1.2.7" }, diff --git a/packages/lib/utils/CHANGELOG.md b/packages/lib/utils/CHANGELOG.md index d2dec291..2b4bbdd4 100644 --- a/packages/lib/utils/CHANGELOG.md +++ b/packages/lib/utils/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Bug Fixes + +* **lib:** 添加严格模式配置,更精准计算anyOf 默认值 ([10cdc08](https://github.com/lljj-x/vue-json-schema-form/commit/10cdc089087d83d8fe08e1fd379b7a1aaad0cd5d)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) diff --git a/packages/lib/utils/package.json b/packages/lib/utils/package.json index 2d24b8c8..9136524d 100644 --- a/packages/lib/utils/package.json +++ b/packages/lib/utils/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vjsf-utils", - "version": "1.11.0", + "version": "1.12.0", "description": "vue json schema form 使用的基础utils工具类", "private": false, "publishConfig": { diff --git a/packages/lib/vue2/vue2-core/CHANGELOG.md b/packages/lib/vue2/vue2-core/CHANGELOG.md index 9710644c..a0ec0908 100644 --- a/packages/lib/vue2/vue2-core/CHANGELOG.md +++ b/packages/lib/vue2/vue2-core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) diff --git a/packages/lib/vue2/vue2-core/package.json b/packages/lib/vue2/vue2-core/package.json index 77268733..790e11cd 100644 --- a/packages/lib/vue2/vue2-core/package.json +++ b/packages/lib/vue2/vue2-core/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue2-form-core", - "version": "1.11.0", + "version": "1.12.0", "description": "基于 Vue 、JsonSchema快速构建一个带完整校验的form表单,vue2版本基础框架", "main": "src/index.js", "module": "src/index.js", @@ -14,7 +14,7 @@ "access": "public" }, "dependencies": { - "@lljj/vjsf-utils": "1.11.0" + "@lljj/vjsf-utils": "1.12.0" }, "repository": "https://github.com/lljj-x/vue-json-schema-form", "homepage": "https://github.com/lljj-x/vue-json-schema-form", diff --git a/packages/lib/vue2/vue2-form-element/CHANGELOG.md b/packages/lib/vue2/vue2-form-element/CHANGELOG.md index 41550413..4edcce6d 100644 --- a/packages/lib/vue2/vue2-form-element/CHANGELOG.md +++ b/packages/lib/vue2/vue2-form-element/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + +**Note:** Version bump only for package @lljj/vue-json-schema-form + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) **Note:** Version bump only for package @lljj/vue-json-schema-form diff --git a/packages/lib/vue2/vue2-form-element/package.json b/packages/lib/vue2/vue2-form-element/package.json index 60a2f6eb..f5e775c1 100644 --- a/packages/lib/vue2/vue2-form-element/package.json +++ b/packages/lib/vue2/vue2-form-element/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue-json-schema-form", - "version": "1.11.0", + "version": "1.12.0", "description": "基于 Vue 、ElementUi、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vueJsonSchemaForm.umd.min.js", "module": "dist/vueJsonSchemaForm.esm.min.js", @@ -15,8 +15,8 @@ "jsonSchema" ], "dependencies": { - "@lljj/vjsf-utils": "1.11.0", - "@lljj/vue2-form-core": "1.11.0" + "@lljj/vjsf-utils": "1.12.0", + "@lljj/vue2-form-core": "1.12.0" }, "typings": "types/index.d.ts", "files": [ diff --git a/packages/lib/vue2/vue2-form-iview3/CHANGELOG.md b/packages/lib/vue2/vue2-form-iview3/CHANGELOG.md index ebdcccdb..841846fb 100644 --- a/packages/lib/vue2/vue2-form-iview3/CHANGELOG.md +++ b/packages/lib/vue2/vue2-form-iview3/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + +**Note:** Version bump only for package @lljj/vue2-form-iview3 + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) **Note:** Version bump only for package @lljj/vue2-form-iview3 diff --git a/packages/lib/vue2/vue2-form-iview3/package.json b/packages/lib/vue2/vue2-form-iview3/package.json index 57dcc448..b6b18482 100644 --- a/packages/lib/vue2/vue2-form-iview3/package.json +++ b/packages/lib/vue2/vue2-form-iview3/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue2-form-iview3", - "version": "1.11.0", + "version": "1.12.0", "description": "基于 Vue 、iView3、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vue2-form-iview3.umd.min.js", "module": "dist/vue2-form-iview3.esm.min.js", @@ -16,8 +16,8 @@ "iView3" ], "dependencies": { - "@lljj/vjsf-utils": "1.11.0", - "@lljj/vue2-form-core": "1.11.0" + "@lljj/vjsf-utils": "1.12.0", + "@lljj/vue2-form-core": "1.12.0" }, "typings": "types/index.d.ts", "files": [ diff --git a/packages/lib/vue3/vue3-core/CHANGELOG.md b/packages/lib/vue3/vue3-core/CHANGELOG.md index e32c0155..1f81188b 100644 --- a/packages/lib/vue3/vue3-core/CHANGELOG.md +++ b/packages/lib/vue3/vue3-core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) diff --git a/packages/lib/vue3/vue3-core/package.json b/packages/lib/vue3/vue3-core/package.json index 7ab3ff36..e6f30ffa 100644 --- a/packages/lib/vue3/vue3-core/package.json +++ b/packages/lib/vue3/vue3-core/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue3-form-core", - "version": "1.11.0", + "version": "1.12.0", "description": "基于 Vue3 、JsonSchema快速构建一个带完整校验的form表单,vue3版本基础框架", "main": "src/index.js", "module": "src/index.js", @@ -14,7 +14,7 @@ "access": "public" }, "dependencies": { - "@lljj/vjsf-utils": "1.11.0" + "@lljj/vjsf-utils": "1.12.0" }, "repository": "https://github.com/lljj-x/vue-json-schema-form", "homepage": "https://github.com/lljj-x/vue-json-schema-form", diff --git a/packages/lib/vue3/vue3-form-ant/CHANGELOG.md b/packages/lib/vue3/vue3-form-ant/CHANGELOG.md index fa4a9573..b9668dd9 100644 --- a/packages/lib/vue3/vue3-form-ant/CHANGELOG.md +++ b/packages/lib/vue3/vue3-form-ant/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Bug Fixes + +* **lib:** 添加严格模式配置,更精准计算anyOf 默认值 ([10cdc08](https://github.com/lljj-x/vue-json-schema-form/commit/10cdc089087d83d8fe08e1fd379b7a1aaad0cd5d)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152) +* **ts:** 修复类型定义文件 ([18a7058](https://github.com/lljj-x/vue-json-schema-form/commit/18a70581d4471055a9d1c78eef6e012f37ddd8cb)) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) **Note:** Version bump only for package @lljj/vue3-form-ant diff --git a/packages/lib/vue3/vue3-form-ant/package.json b/packages/lib/vue3/vue3-form-ant/package.json index d5610932..f9a0d51f 100644 --- a/packages/lib/vue3/vue3-form-ant/package.json +++ b/packages/lib/vue3/vue3-form-ant/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue3-form-ant", - "version": "1.11.0", + "version": "1.12.0", "description": "基于 Vue3 、Antdv、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vue3-form-ant.umd.min.js", "module": "dist/vue3-form-ant.esm.min.js", @@ -15,8 +15,8 @@ "jsonSchema" ], "dependencies": { - "@lljj/vjsf-utils": "1.11.0", - "@lljj/vue3-form-core": "1.11.0" + "@lljj/vjsf-utils": "1.12.0", + "@lljj/vue3-form-core": "1.12.0" }, "typings": "types/index.d.ts", "files": [ diff --git a/packages/lib/vue3/vue3-form-element/CHANGELOG.md b/packages/lib/vue3/vue3-form-element/CHANGELOG.md index f48f5e8a..847622ff 100644 --- a/packages/lib/vue3/vue3-form-element/CHANGELOG.md +++ b/packages/lib/vue3/vue3-form-element/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Features + +* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e)) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) **Note:** Version bump only for package @lljj/vue3-form-element diff --git a/packages/lib/vue3/vue3-form-element/package.json b/packages/lib/vue3/vue3-form-element/package.json index b64116fe..0ee8a5d9 100644 --- a/packages/lib/vue3/vue3-form-element/package.json +++ b/packages/lib/vue3/vue3-form-element/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue3-form-element", - "version": "1.11.0", + "version": "1.12.0", "description": "基于 Vue3 、ElementPlus、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vue3-form-element.umd.min.js", "module": "dist/vue3-form-element.esm.min.js", @@ -15,8 +15,8 @@ "jsonSchema" ], "dependencies": { - "@lljj/vjsf-utils": "1.11.0", - "@lljj/vue3-form-core": "1.11.0" + "@lljj/vjsf-utils": "1.12.0", + "@lljj/vue3-form-core": "1.12.0" }, "typings": "types/index.d.ts", "files": [ diff --git a/packages/lib/vue3/vue3-form-naive/CHANGELOG.md b/packages/lib/vue3/vue3-form-naive/CHANGELOG.md index f48f5e8a..32783b11 100644 --- a/packages/lib/vue3/vue3-form-naive/CHANGELOG.md +++ b/packages/lib/vue3/vue3-form-naive/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08) + + +### Bug Fixes + +* **lib:** 添加严格模式配置,更精准计算anyOf 默认值 ([10cdc08](https://github.com/lljj-x/vue-json-schema-form/commit/10cdc089087d83d8fe08e1fd379b7a1aaad0cd5d)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152) +* **ts:** 修复类型定义文件 ([18a7058](https://github.com/lljj-x/vue-json-schema-form/commit/18a70581d4471055a9d1c78eef6e012f37ddd8cb)) + + +### Features + +* **lib:** 添加vue3 naiveui支持 ([a159c78](https://github.com/lljj-x/vue-json-schema-form/commit/a159c78eb1a9156aa042a0cf82a350c46e035dcc)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152) + + + + + # [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19) **Note:** Version bump only for package @lljj/vue3-form-element diff --git a/packages/lib/vue3/vue3-form-naive/package.json b/packages/lib/vue3/vue3-form-naive/package.json index 4732e486..7f1d8838 100644 --- a/packages/lib/vue3/vue3-form-naive/package.json +++ b/packages/lib/vue3/vue3-form-naive/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue3-form-naive", - "version": "1.11.0", + "version": "1.12.0", "description": "基于 Vue3 、Naive、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vue3-form-naive.umd.min.js", "module": "dist/vue3-form-naive.esm.min.js", @@ -16,8 +16,8 @@ "jsonSchema" ], "dependencies": { - "@lljj/vjsf-utils": "1.11.0", - "@lljj/vue3-form-core": "1.11.0" + "@lljj/vjsf-utils": "1.12.0", + "@lljj/vue3-form-core": "1.12.0" }, "typings": "types/index.d.ts", "files": [