Skip to content

Commit 8318e86

Browse files
committed
release: v0.0.22
1 parent 917634a commit 8318e86

File tree

6 files changed

+27
-5
lines changed

6 files changed

+27
-5
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## [0.0.22](https://github.com/js-tool-pack/react-ui/compare/v0.0.21...v0.0.22) (2024-06-09)
2+
3+
### Bug Fixes
4+
5+
- **shared/hooks:** 修复 useChildrenWithRefs 未能连通外部 ref 的问题 ([59ea017](https://github.com/js-tool-pack/react-ui/commit/59ea01723aba5902f0b03336fbd8dc3a8b095812))
6+
7+
### Features
8+
9+
- **components:** 新增 DraggableGroup 拖拽组组件 ([5ee816f](https://github.com/js-tool-pack/react-ui/commit/5ee816f9405273cc43a236b8e8380febd426640f))
10+
- **components/draggable:** 新增动画功能 ([7df6414](https://github.com/js-tool-pack/react-ui/commit/7df6414ea7905737662f29461ce8f635691f3ccb))
11+
- **components/draggable:** 重构并优化 draggable 组件 ([a6cc91f](https://github.com/js-tool-pack/react-ui/commit/a6cc91fcf7adb74383a561fe4f145e2f308e76a5))
12+
- **components/popover:** 当触发方式为 click 时,可按下 Esc 键关闭 ([65fb83a](https://github.com/js-tool-pack/react-ui/commit/65fb83abbe1213dd1fb687789b5e7b12d5111e07))
13+
- **components/popover:** 拆分 useShowController 处理类型 ([37c5d87](https://github.com/js-tool-pack/react-ui/commit/37c5d8722551034cfa39fc5cb21461f1286a6ebb))
14+
- **components/transition-group:** 重构并优化 TransitionGroup 组件 ([351c54a](https://github.com/js-tool-pack/react-ui/commit/351c54a8b2faafa23299c8c944dcd4d13ed4e8d8))
15+
- **components/transition-group:** 重构并优化 TransitionGroup 组件,tag 属性可设置为 null 去除包裹元素 ([73244ce](https://github.com/js-tool-pack/react-ui/commit/73244ce97eb9c80bbeb9f828bfe5d1701492c06c))
16+
- **components:** 新增 Draggable 拖拽组件 ([fde7561](https://github.com/js-tool-pack/react-ui/commit/fde7561969949a6a7b7ac73aca5010f307db46da))
17+
- **shared/hooks:** useChildrenWithRefs 可控制cloneElement 参数 ([23a120a](https://github.com/js-tool-pack/react-ui/commit/23a120a17ed8586940b5aaf73f30a7b3e7ca55ef))
18+
- **shared/hooks:** 为 useChildrenWithRefs 的 cloneEl 添加 index 入参 ([aae639a](https://github.com/js-tool-pack/react-ui/commit/aae639ac91a550076ee0a4976f0eb67fa3839cdc))
19+
- **shared/hooks:** 新增 useChildrenWithRefs hook ([58a8dd6](https://github.com/js-tool-pack/react-ui/commit/58a8dd6fcfdaf952ee68c7aa93de99d3e8a28067))
20+
- **shared/hooks:** 新增 useFollowingRef hook ([8e5ba63](https://github.com/js-tool-pack/react-ui/commit/8e5ba637d79537d7b7b04226a472f28c8bb38506))
21+
- **shared/utils:** 新增 forwardRefs ([2f17dce](https://github.com/js-tool-pack/react-ui/commit/2f17dce2e1c818bf91963675838feab0c149a1ba))
22+
123
## [0.0.21](https://github.com/js-tool-pack/react-ui/compare/v0.0.20...v0.0.21) (2024-03-25)
224

325
### Bug Fixes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tool-pack/react-ui-monorepo",
3-
"version": "0.0.21",
3+
"version": "0.0.22",
44
"private": true,
55
"packageManager": "pnpm@7.1.0",
66
"workspaces": [

packages/components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.21",
2+
"version": "0.0.22",
33
"types": "dist/index.d.ts",
44
"main": "dist/index.js",
55
"private": true,

packages/icons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.21",
2+
"version": "0.0.22",
33
"types": "dist/index.d.ts",
44
"main": "dist/index.js",
55
"private": true,

packages/react-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tool-pack/react-ui",
3-
"version": "0.0.21",
3+
"version": "0.0.22",
44
"sideEffects": false,
55
"scripts": {
66
"rm:dist": "rimraf ./dist",

packages/shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.21",
2+
"version": "0.0.22",
33
"types": "dist/index.d.ts",
44
"main": "dist/index.js",
55
"private": true,

0 commit comments

Comments
 (0)