Skip to content

Commit c9f6385

Browse files
authored
feat: upgrade tanstack store versions with useSelector hook (#202)
* feat: upgrade tanstack store versions with useSelector hook * changeset
1 parent afc958f commit c9f6385

134 files changed

Lines changed: 2617 additions & 2232 deletions

File tree

Some content is hidden

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

.changeset/lucky-buckets-beam.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
'@tanstack/react-pacer-devtools': minor
3+
'@tanstack/pacer-devtools': minor
4+
'@tanstack/angular-pacer': minor
5+
'@tanstack/preact-pacer': minor
6+
'@tanstack/react-pacer': minor
7+
'@tanstack/solid-pacer': minor
8+
'@tanstack/pacer': minor
9+
---
10+
11+
feat: upgrade to tanstack store with useSelector hook

docs/framework/preact/reference/interfaces/PreactAsyncBatcher.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/async-batcher/useAsyncBatcher.ts:55](https://githu
4949
#### Deprecated
5050

5151
Use `batcher.state` instead of `batcher.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

docs/framework/preact/reference/interfaces/PreactAsyncDebouncer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/async-debouncer/useAsyncDebouncer.ts:56](https://g
4949
#### Deprecated
5050

5151
Use `debouncer.state` instead of `debouncer.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

docs/framework/preact/reference/interfaces/PreactAsyncQueuer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/async-queuer/useAsyncQueuer.ts:55](https://github.
4949
#### Deprecated
5050

5151
Use `queuer.state` instead of `queuer.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

docs/framework/preact/reference/interfaces/PreactAsyncRateLimiter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts:56](http
4949
#### Deprecated
5050

5151
Use `rateLimiter.state` instead of `rateLimiter.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

docs/framework/preact/reference/interfaces/PreactAsyncThrottler.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/async-throttler/useAsyncThrottler.ts:56](https://g
4949
#### Deprecated
5050

5151
Use `throttler.state` instead of `throttler.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

docs/framework/preact/reference/interfaces/PreactBatcher.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/batcher/useBatcher.ts:52](https://github.com/TanSt
4949
#### Deprecated
5050

5151
Use `batcher.state` instead of `batcher.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

docs/framework/preact/reference/interfaces/PreactDebouncer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/debouncer/useDebouncer.ts:56](https://github.com/T
4949
#### Deprecated
5050

5151
Use `debouncer.state` instead of `debouncer.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

docs/framework/preact/reference/interfaces/PreactQueuer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/queuer/useQueuer.ts:52](https://github.com/TanStac
4949
#### Deprecated
5050

5151
Use `queuer.state` instead of `queuer.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

docs/framework/preact/reference/interfaces/PreactRateLimiter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Defined in: [preact-pacer/src/rate-limiter/useRateLimiter.ts:56](https://github.
4949
#### Deprecated
5050

5151
Use `rateLimiter.state` instead of `rateLimiter.store.state` if you want to read reactive state.
52-
The state on the store object is not reactive, as it has not been wrapped in a `useStore` hook internally.
53-
Although, you can make the state reactive by using the `useStore` in your own usage.
52+
The state on the store object is not reactive, as it has not been wrapped in a `useSelector` hook internally.
53+
Although, you can make the state reactive by using the `useSelector` in your own usage.
5454

5555
***
5656

0 commit comments

Comments
 (0)