diff --git a/CHANGELOG.md b/CHANGELOG.md index 4836b153..07cffe27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +### [0.8.1](https://github.com/jdfed/drip-form/compare/v0.8.0...v0.8.1) (2022-06-29) + + +### Bug Fixes + +* **form:** collapsed object container in array container is not displayed after deletion ([#218](https://github.com/jdfed/drip-form/issues/218)) ([9454c8b](https://github.com/jdfed/drip-form/commit/9454c8bc028e5e4c707adf4e498aa8b22fe7fe0c)) +* **form:** when collapse is folded, tooltip does not show ([#223](https://github.com/jdfed/drip-form/issues/223)) ([adf9d43](https://github.com/jdfed/drip-form/commit/adf9d43a6bee0c8bdbca145b39d7be0154ed9457)) +* **generator:** compatibility with old data ([#214](https://github.com/jdfed/drip-form/issues/214)) ([8aec201](https://github.com/jdfed/drip-form/commit/8aec201eac85cbeca24d218aa37c3a0c3216d091)) +* **generator:** compatibility with old data ([#215](https://github.com/jdfed/drip-form/issues/215)) ([3ac1ab9](https://github.com/jdfed/drip-form/commit/3ac1ab9a5c794d216e9e6117fcc96fffb69b5a40)), closes [#214](https://github.com/jdfed/drip-form/issues/214) +* **generator:** compatibility with old data ([#217](https://github.com/jdfed/drip-form/issues/217)) ([ece5bfc](https://github.com/jdfed/drip-form/commit/ece5bfc9755d53c598ad2a577100a79abd4119d9)) +* **generator:** turn off the required validation, the required field is not properly deleted ([#216](https://github.com/jdfed/drip-form/issues/216)) ([fcd64c4](https://github.com/jdfed/drip-form/commit/fcd64c4b1b91d37b3849e12fa891ea76f9232d94)) +* **utils:** handleMargin function cannot properly handle the width when margin is set to 4 values ([#222](https://github.com/jdfed/drip-form/issues/222)) ([70f9a4c](https://github.com/jdfed/drip-form/commit/70f9a4cfeb28aa232e6ef3aad5779bca27d8c4f2)) + + +### style + +* **form:** prevent component from spilling outside its container ([#219](https://github.com/jdfed/drip-form/issues/219)) ([ef4c92f](https://github.com/jdfed/drip-form/commit/ef4c92f9197f4a324b54ad77b9fa66077597efb2)) +* **generator:** add fixed width to the component area and configuration area ([#213](https://github.com/jdfed/drip-form/issues/213)) ([663bc68](https://github.com/jdfed/drip-form/commit/663bc682b5f3b0b06e4bb9315f58fae475903821)) +* **generator:** hide scroll bar in webKit browser ([#220](https://github.com/jdfed/drip-form/issues/220)) ([9b958e4](https://github.com/jdfed/drip-form/commit/9b958e4bfe0911d18f12459f4a4f446f26ccff32)) + + + ## [0.8.0](https://github.com/jdfed/drip-form/compare/v0.7.0...v0.8.0) (2022-06-01) diff --git a/lerna.json b/lerna.json index d60d6ba1..44744b25 100644 --- a/lerna.json +++ b/lerna.json @@ -6,7 +6,7 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "0.8.0", + "version": "0.8.1", "command": { "version": { "allowBranch": [ diff --git a/packages/drip-form-theme-antd/CHANGELOG.md b/packages/drip-form-theme-antd/CHANGELOG.md index ca0710fe..9d0158db 100644 --- a/packages/drip-form-theme-antd/CHANGELOG.md +++ b/packages/drip-form-theme-antd/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +### [0.8.1](https://github.com/jdfed/drip-form/compare/v0.8.0...v0.8.1) (2022-06-29) + + +### Bug Fixes + +* **generator:** compatibility with old data ([#215](https://github.com/jdfed/drip-form/issues/215)) ([3ac1ab9](https://github.com/jdfed/drip-form/commit/3ac1ab9a5c794d216e9e6117fcc96fffb69b5a40)), closes [#214](https://github.com/jdfed/drip-form/issues/214) + + + ## [0.8.0](https://github.com/jdfed/drip-form/compare/v0.7.0...v0.8.0) (2022-06-01) diff --git a/packages/drip-form-theme-antd/package.json b/packages/drip-form-theme-antd/package.json index cf224300..f3e8c108 100644 --- a/packages/drip-form-theme-antd/package.json +++ b/packages/drip-form-theme-antd/package.json @@ -1,6 +1,6 @@ { "name": "@jdfed/drip-form-theme-antd", - "version": "0.8.0", + "version": "0.8.1", "author": "JDFED", "description": "drip-form antd主题包", "main": "dist/index.js", @@ -31,8 +31,8 @@ "dependencies": { "@ant-design/icons": "^4.7.0", "@babel/runtime": "^7.10.2", - "@jdfed/hooks": "^0.8.0", - "@jdfed/utils": "^0.8.0", + "@jdfed/hooks": "^0.8.1", + "@jdfed/utils": "^0.8.1", "moment": "^2.26.0", "react-color": "^2.18.1", "use-immer": "^0.6.0" diff --git a/packages/drip-form/CHANGELOG.md b/packages/drip-form/CHANGELOG.md index 2bdbdcd6..3e4c3e5d 100644 --- a/packages/drip-form/CHANGELOG.md +++ b/packages/drip-form/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +### [0.8.1](https://github.com/jdfed/drip-form/compare/v0.8.0...v0.8.1) (2022-06-29) + + +### Bug Fixes + +* **form:** collapsed object container in array container is not displayed after deletion ([#218](https://github.com/jdfed/drip-form/issues/218)) ([9454c8b](https://github.com/jdfed/drip-form/commit/9454c8bc028e5e4c707adf4e498aa8b22fe7fe0c)) +* **form:** when collapse is folded, tooltip does not show ([#223](https://github.com/jdfed/drip-form/issues/223)) ([adf9d43](https://github.com/jdfed/drip-form/commit/adf9d43a6bee0c8bdbca145b39d7be0154ed9457)) + + +### style + +* **form:** prevent component from spilling outside its container ([#219](https://github.com/jdfed/drip-form/issues/219)) ([ef4c92f](https://github.com/jdfed/drip-form/commit/ef4c92f9197f4a324b54ad77b9fa66077597efb2)) + + + ## [0.8.0](https://github.com/jdfed/drip-form/compare/v0.7.0...v0.8.0) (2022-06-01) diff --git a/packages/drip-form/package.json b/packages/drip-form/package.json index c5452cd3..cf329fc4 100644 --- a/packages/drip-form/package.json +++ b/packages/drip-form/package.json @@ -1,6 +1,6 @@ { "name": "@jdfed/drip-form", - "version": "0.8.0", + "version": "0.8.1", "description": "drip-form表单渲染core", "keywords": [ "drip-form", @@ -49,8 +49,8 @@ "@dnd-kit/sortable": "^5.0.0", "@dnd-kit/utilities": "^3.0.0", "@jdfed/ajv": "^0.8.0", - "@jdfed/hooks": "^0.8.0", - "@jdfed/utils": "^0.8.0", + "@jdfed/hooks": "^0.8.1", + "@jdfed/utils": "^0.8.1", "ajv": "^8.6.2", "classnames": "^2.2.6", "immer": "^9.0.5", diff --git a/packages/generator/CHANGELOG.md b/packages/generator/CHANGELOG.md index cbee087f..6db0db99 100644 --- a/packages/generator/CHANGELOG.md +++ b/packages/generator/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. +### [0.8.1](https://github.com/jdfed/drip-form/compare/v0.8.0...v0.8.1) (2022-06-29) + + +### Bug Fixes + +* **generator:** compatibility with old data ([#214](https://github.com/jdfed/drip-form/issues/214)) ([8aec201](https://github.com/jdfed/drip-form/commit/8aec201eac85cbeca24d218aa37c3a0c3216d091)) +* **generator:** compatibility with old data ([#215](https://github.com/jdfed/drip-form/issues/215)) ([3ac1ab9](https://github.com/jdfed/drip-form/commit/3ac1ab9a5c794d216e9e6117fcc96fffb69b5a40)), closes [#214](https://github.com/jdfed/drip-form/issues/214) +* **generator:** compatibility with old data ([#217](https://github.com/jdfed/drip-form/issues/217)) ([ece5bfc](https://github.com/jdfed/drip-form/commit/ece5bfc9755d53c598ad2a577100a79abd4119d9)) +* **generator:** turn off the required validation, the required field is not properly deleted ([#216](https://github.com/jdfed/drip-form/issues/216)) ([fcd64c4](https://github.com/jdfed/drip-form/commit/fcd64c4b1b91d37b3849e12fa891ea76f9232d94)) + + +### style + +* **generator:** add fixed width to the component area and configuration area ([#213](https://github.com/jdfed/drip-form/issues/213)) ([663bc68](https://github.com/jdfed/drip-form/commit/663bc682b5f3b0b06e4bb9315f58fae475903821)) +* **generator:** hide scroll bar in webKit browser ([#220](https://github.com/jdfed/drip-form/issues/220)) ([9b958e4](https://github.com/jdfed/drip-form/commit/9b958e4bfe0911d18f12459f4a4f446f26ccff32)) + + + ## [0.8.0](https://github.com/jdfed/drip-form/compare/v0.7.0...v0.8.0) (2022-06-01) diff --git a/packages/generator/package.json b/packages/generator/package.json index 76850cff..c9cc3a30 100644 --- a/packages/generator/package.json +++ b/packages/generator/package.json @@ -1,6 +1,6 @@ { "name": "@jdfed/form-generator", - "version": "0.8.0", + "version": "0.8.1", "description": "drip-form 生成器", "keywords": [ "hooks", @@ -37,10 +37,10 @@ "@dnd-kit/modifiers": "^4.0.0", "@dnd-kit/sortable": "^5.0.0", "@dnd-kit/utilities": "^3.0.0", - "@jdfed/drip-form": "^0.8.0", - "@jdfed/drip-form-theme-antd": "^0.8.0", - "@jdfed/hooks": "^0.8.0", - "@jdfed/utils": "^0.8.0", + "@jdfed/drip-form": "^0.8.1", + "@jdfed/drip-form-theme-antd": "^0.8.1", + "@jdfed/hooks": "^0.8.1", + "@jdfed/utils": "^0.8.1", "@monaco-editor/react": "^4.2.2", "antd": "^4.16.13", "classnames": "^2.3.1", diff --git a/packages/hooks/CHANGELOG.md b/packages/hooks/CHANGELOG.md index f5e95534..669ac8a2 100644 --- a/packages/hooks/CHANGELOG.md +++ b/packages/hooks/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. +### [0.8.1](https://github.com/jdfed/drip-form/compare/v0.8.0...v0.8.1) (2022-06-29) + +**Note:** Version bump only for package @jdfed/hooks + + + + + ## [0.8.0](https://github.com/jdfed/drip-form/compare/v0.7.0...v0.8.0) (2022-06-01) diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 4ecc1d85..c9aa248c 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -1,6 +1,6 @@ { "name": "@jdfed/hooks", - "version": "0.8.0", + "version": "0.8.1", "description": "drip-form通用hooks", "keywords": [ "hooks", @@ -31,7 +31,7 @@ }, "dependencies": { "@babel/runtime": "^7.10.2", - "@jdfed/utils": "^0.8.0", + "@jdfed/utils": "^0.8.1", "ahooks": "^2.10.12", "ajv": "^8.8.2", "immer": "^9.0.5", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 8cb8361d..cdf080b2 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +### [0.8.1](https://github.com/jdfed/drip-form/compare/v0.8.0...v0.8.1) (2022-06-29) + + +### Bug Fixes + +* **generator:** compatibility with old data ([#217](https://github.com/jdfed/drip-form/issues/217)) ([ece5bfc](https://github.com/jdfed/drip-form/commit/ece5bfc9755d53c598ad2a577100a79abd4119d9)) +* **utils:** handleMargin function cannot properly handle the width when margin is set to 4 values ([#222](https://github.com/jdfed/drip-form/issues/222)) ([70f9a4c](https://github.com/jdfed/drip-form/commit/70f9a4cfeb28aa232e6ef3aad5779bca27d8c4f2)) + + + ## [0.8.0](https://github.com/jdfed/drip-form/compare/v0.7.0...v0.8.0) (2022-06-01) diff --git a/packages/utils/package.json b/packages/utils/package.json index 19042437..fa871122 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@jdfed/utils", - "version": "0.8.0", + "version": "0.8.1", "description": "drip-form通用方法", "keywords": [ "utils", @@ -21,7 +21,7 @@ "distExports": { "dist": "./dist", "build-info": "./build-info", - "exports":"named", + "exports": "named", "format": [ "esm", "cjs"