Skip to content

Commit 338e5ea

Browse files
committed
1 parent 081b9f7 commit 338e5ea

File tree

46 files changed

+260
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+260
-73
lines changed

hooks/hooks/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.0.6](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2023-08-28)
7+
8+
**Note:** Version bump only for package @pansy/react-hooks
9+
10+
11+
12+
13+
614
## [1.0.5](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2023-05-08)
715

816
**Note:** Version bump only for package @pansy/react-hooks

hooks/hooks/package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pansy/react-hooks",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"main": "lib/index.js",
55
"module": "es/index.js",
66
"types": "es/index.d.ts",
@@ -19,48 +19,48 @@
1919
},
2020
"dependencies": {
2121
"@pansy/use-boolean": "0.3.0",
22-
"@pansy/use-click-away": "0.4.0",
22+
"@pansy/use-click-away": "0.4.1",
2323
"@pansy/use-controllable-value": "0.4.0",
2424
"@pansy/use-cookie-state": "0.2.1",
25-
"@pansy/use-creation": "0.2.1",
25+
"@pansy/use-creation": "0.2.2",
2626
"@pansy/use-deep-compare-effect": "1.3.1",
2727
"@pansy/use-deep-compare-layout-effect": "1.1.0",
28-
"@pansy/use-document-visibility": "0.3.1",
29-
"@pansy/use-event-listener": "0.3.1",
28+
"@pansy/use-document-visibility": "0.3.2",
29+
"@pansy/use-event-listener": "0.3.2",
3030
"@pansy/use-event-target": "0.2.6",
3131
"@pansy/use-external": "0.1.5",
3232
"@pansy/use-favicon": "0.2.5",
3333
"@pansy/use-get-state": "0.4.0",
34-
"@pansy/use-hover": "0.4.0",
35-
"@pansy/use-in-viewport": "0.4.0",
34+
"@pansy/use-hover": "0.4.1",
35+
"@pansy/use-in-viewport": "0.4.1",
3636
"@pansy/use-interval": "0.3.0",
37-
"@pansy/use-key-press": "0.3.0",
37+
"@pansy/use-key-press": "0.3.1",
3838
"@pansy/use-latest": "0.2.5",
39-
"@pansy/use-local-storage-state": "0.3.1",
39+
"@pansy/use-local-storage-state": "0.3.2",
4040
"@pansy/use-lock-fn": "1.0.6",
4141
"@pansy/use-memoized-fn": "0.3.1",
4242
"@pansy/use-modal": "1.0.1",
4343
"@pansy/use-mount": "0.2.0",
44-
"@pansy/use-mouse": "0.3.0",
45-
"@pansy/use-mqtt": "0.4.1",
44+
"@pansy/use-mouse": "0.3.1",
45+
"@pansy/use-mqtt": "0.4.2",
4646
"@pansy/use-portal": "0.2.1",
4747
"@pansy/use-previous": "0.2.5",
48-
"@pansy/use-raf-state": "0.2.6",
49-
"@pansy/use-request": "0.3.0",
50-
"@pansy/use-scroll": "0.3.1",
51-
"@pansy/use-scroll-lock": "1.3.1",
48+
"@pansy/use-raf-state": "0.2.7",
49+
"@pansy/use-request": "0.3.1",
50+
"@pansy/use-scroll": "0.3.2",
51+
"@pansy/use-scroll-lock": "1.3.2",
5252
"@pansy/use-selections": "0.4.0",
53-
"@pansy/use-session-storage-state": "0.3.1",
54-
"@pansy/use-size": "0.3.1",
53+
"@pansy/use-session-storage-state": "0.3.2",
54+
"@pansy/use-size": "0.3.2",
5555
"@pansy/use-timeout": "0.2.6",
56-
"@pansy/use-title": "0.3.1",
56+
"@pansy/use-title": "0.3.2",
5757
"@pansy/use-toggle": "0.2.5",
58-
"@pansy/use-unmount": "0.2.6",
58+
"@pansy/use-unmount": "0.2.7",
5959
"@pansy/use-update": "0.2.5",
6060
"@pansy/use-update-effect": "0.2.5",
61-
"@pansy/use-update-layout-effect": "0.2.10",
62-
"@pansy/use-watermark": "0.3.1",
63-
"@pansy/use-web-socket": "0.2.0"
61+
"@pansy/use-update-layout-effect": "0.2.11",
62+
"@pansy/use-watermark": "0.3.2",
63+
"@pansy/use-web-socket": "0.2.1"
6464
},
6565
"publishConfig": {
6666
"registry": "https://registry.npmjs.org",

hooks/useClickAway/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.4.1](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2023-08-28)
7+
8+
**Note:** Version bump only for package @pansy/use-click-away
9+
10+
11+
12+
13+
614
# [0.4.0](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2022-12-28)
715

816

hooks/useClickAway/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pansy/use-click-away",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "监听目标元素外的点击事件",
55
"main": "lib/index.js",
66
"module": "es/index.js",
@@ -18,7 +18,7 @@
1818
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
1919
},
2020
"dependencies": {
21-
"@pansy/hook-utils": "0.5.0",
21+
"@pansy/hook-utils": "0.5.1",
2222
"@pansy/shared": "^1.9.0",
2323
"@pansy/use-latest": "0.2.5"
2424
},

hooks/useCreation/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.2.2](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2023-08-28)
7+
8+
**Note:** Version bump only for package @pansy/use-creation
9+
10+
11+
12+
13+
614
## [0.2.1](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2022-12-28)
715

816
**Note:** Version bump only for package @pansy/use-creation

hooks/useCreation/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pansy/use-creation",
33
"description": "useCreation 是 useMemo 或 useRef 的替代品",
4-
"version": "0.2.1",
4+
"version": "0.2.2",
55
"main": "lib/index.js",
66
"module": "es/index.js",
77
"types": "es/index.d.ts",
@@ -18,7 +18,7 @@
1818
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
1919
},
2020
"dependencies": {
21-
"@pansy/hook-utils": "0.5.0",
21+
"@pansy/hook-utils": "0.5.1",
2222
"@pansy/shared": "^1.9.0"
2323
},
2424
"publishConfig": {

hooks/useDocumentVisibility/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.3.2](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2023-08-28)
7+
8+
**Note:** Version bump only for package @pansy/use-document-visibility
9+
10+
11+
12+
13+
614
## [0.3.1](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2022-12-28)
715

816
**Note:** Version bump only for package @pansy/use-document-visibility

hooks/useDocumentVisibility/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pansy/use-document-visibility",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "监听页面是否可见",
55
"main": "lib/index.js",
66
"module": "es/index.js",
@@ -18,9 +18,9 @@
1818
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
1919
},
2020
"dependencies": {
21-
"@pansy/hook-utils": "0.5.0",
21+
"@pansy/hook-utils": "0.5.1",
2222
"@pansy/shared": "^1.9.0",
23-
"@pansy/use-event-listener": "0.3.1"
23+
"@pansy/use-event-listener": "0.3.2"
2424
},
2525
"publishConfig": {
2626
"registry": "https://registry.npmjs.org",

hooks/useEventListener/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.3.2](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2023-08-28)
7+
8+
**Note:** Version bump only for package @pansy/use-event-listener
9+
10+
11+
12+
13+
614
## [0.3.1](https://github.com/pansyjs/react-hooks/compare/@pansy/[email protected]...@pansy/[email protected]) (2022-12-28)
715

816
**Note:** Version bump only for package @pansy/use-event-listener

hooks/useEventListener/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pansy/use-event-listener",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"main": "lib/index.js",
55
"module": "es/index.js",
66
"types": "es/index.d.ts",
@@ -17,7 +17,7 @@
1717
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
1818
},
1919
"dependencies": {
20-
"@pansy/hook-utils": "0.5.0",
20+
"@pansy/hook-utils": "0.5.1",
2121
"@pansy/shared": "^1.9.0",
2222
"@pansy/use-latest": "0.2.5"
2323
},

0 commit comments

Comments
 (0)