diff --git a/CHANGELOG.md b/CHANGELOG.md index eff6894c..a9195885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.0.6](https://github.com/js-tool-pack/react-ui/compare/v0.0.5...v0.0.6) (2023-12-09) + +### Bug Fixes + +- **components/popover:** 修复 Popover 组件在 Slider 组件上拖动时鼠标离开了触发元素仍然不能关闭的问题 ([0d9dd06](https://github.com/js-tool-pack/react-ui/commit/0d9dd06a3cedfb2347472edd380251dd314bc721)) + +### Features + +- **components:** 新增 Slider 组件 ([0f22aaf](https://github.com/js-tool-pack/react-ui/commit/0f22aaf649b92a2e306b20fb6119d5370b764d8f)) + ## [0.0.5](https://github.com/js-tool-pack/react-ui/compare/v0.0.4...v0.0.5) (2023-12-01) ### Bug Fixes diff --git a/package.json b/package.json index b3567b01..184e7416 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tool-pack/react-ui-monorepo", - "version": "0.0.5", + "version": "0.0.6", "private": true, "packageManager": "pnpm@7.1.0", "workspaces": [ diff --git a/packages/components/package.json b/packages/components/package.json index fc038457..b329ad22 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,5 +1,5 @@ { - "version": "0.0.5", + "version": "0.0.6", "types": "dist/index.d.ts", "main": "dist/index.js", "private": true, diff --git a/packages/icons/package.json b/packages/icons/package.json index 1152502b..64e95fe0 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,5 +1,5 @@ { - "version": "0.0.5", + "version": "0.0.6", "types": "dist/index.d.ts", "main": "dist/index.js", "private": true, diff --git a/packages/react-ui/package.json b/packages/react-ui/package.json index 3e357292..9efe485c 100644 --- a/packages/react-ui/package.json +++ b/packages/react-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tool-pack/react-ui", - "version": "0.0.5", + "version": "0.0.6", "sideEffects": false, "scripts": { "rm:dist": "rimraf ./dist", diff --git a/packages/shared/package.json b/packages/shared/package.json index 1bd97ec7..4b1777cf 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,5 +1,5 @@ { - "version": "0.0.5", + "version": "0.0.6", "types": "dist/index.d.ts", "main": "dist/index.js", "private": true,