Skip to content

Commit e4f15de

Browse files
committed
chore: test out letting docs generate in autofix
1 parent c18d112 commit e4f15de

File tree

143 files changed

+1386
-1700
lines changed

Some content is hidden

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

143 files changed

+1386
-1700
lines changed

.github/workflows/autofix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
uses: tanstack/config/.github/setup@main
2424
- name: Fix formatting
2525
run: pnpm prettier:write
26-
# - name: Regenerate docs
27-
# run: pnpm docs:generate
26+
- name: Regenerate docs
27+
run: pnpm docs:generate
2828
- name: Apply fixes
2929
uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
3030
with:

docs/framework/react/reference/functions/useasyncdebouncer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useAsyncDebouncer
1111
function useAsyncDebouncer<TFn>(fn, options): AsyncDebouncer<TFn>
1212
```
1313

14-
Defined in: [react-pacer/src/async-debouncer/useAsyncDebouncer.ts:60](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/async-debouncer/useAsyncDebouncer.ts#L60)
14+
Defined in: [react-pacer/src/async-debouncer/useAsyncDebouncer.ts:60](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-debouncer/useAsyncDebouncer.ts#L60)
1515

1616
A low-level React hook that creates an `AsyncDebouncer` instance to delay execution of an async function.
1717

docs/framework/react/reference/functions/useasyncqueuedstate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useAsyncQueuedState
1111
function useAsyncQueuedState<TValue>(fn, options): [TValue[], AsyncQueuer<TValue>]
1212
```
1313

14-
Defined in: [react-pacer/src/async-queuer/useAsyncQueuedState.ts:53](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuedState.ts#L53)
14+
Defined in: [react-pacer/src/async-queuer/useAsyncQueuedState.ts:53](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuedState.ts#L53)
1515

1616
A higher-level React hook that creates an `AsyncQueuer` instance with built-in state management.
1717

docs/framework/react/reference/functions/useasyncqueuer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useAsyncQueuer
1111
function useAsyncQueuer<TValue>(fn, options): AsyncQueuer<TValue>
1212
```
1313

14-
Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:51](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuer.ts#L51)
14+
Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:51](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuer.ts#L51)
1515

1616
A lower-level React hook that creates an `AsyncQueuer` instance for managing an async queue of items.
1717

docs/framework/react/reference/functions/useasyncratelimiter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useAsyncRateLimiter
1111
function useAsyncRateLimiter<TFn>(fn, options): AsyncRateLimiter<TFn>
1212
```
1313

14-
Defined in: [react-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts:67](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts#L67)
14+
Defined in: [react-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts:67](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts#L67)
1515

1616
A low-level React hook that creates an `AsyncRateLimiter` instance to limit how many times an async function can execute within a time window.
1717

docs/framework/react/reference/functions/useasyncthrottler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useAsyncThrottler
1111
function useAsyncThrottler<TFn>(fn, options): AsyncThrottler<TFn>
1212
```
1313

14-
Defined in: [react-pacer/src/async-throttler/useAsyncThrottler.ts:55](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/async-throttler/useAsyncThrottler.ts#L55)
14+
Defined in: [react-pacer/src/async-throttler/useAsyncThrottler.ts:55](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-throttler/useAsyncThrottler.ts#L55)
1515

1616
A low-level React hook that creates an `AsyncThrottler` instance to limit how often an async function can execute.
1717

docs/framework/react/reference/functions/usebatcher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useBatcher
1111
function useBatcher<TValue>(fn, options): Batcher<TValue>
1212
```
1313

14-
Defined in: [react-pacer/src/batcher/useBatcher.ts:43](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/batcher/useBatcher.ts#L43)
14+
Defined in: [react-pacer/src/batcher/useBatcher.ts:43](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/batcher/useBatcher.ts#L43)
1515

1616
A React hook that creates and manages a Batcher instance.
1717

docs/framework/react/reference/functions/usedebouncedcallback.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useDebouncedCallback
1111
function useDebouncedCallback<TFn>(fn, options): (...args) => void
1212
```
1313

14-
Defined in: [react-pacer/src/debouncer/useDebouncedCallback.ts:42](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncedCallback.ts#L42)
14+
Defined in: [react-pacer/src/debouncer/useDebouncedCallback.ts:42](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncedCallback.ts#L42)
1515

1616
A React hook that creates a debounced version of a callback function.
1717
This hook is essentially a wrapper around the basic `debounce` function

docs/framework/react/reference/functions/usedebouncedstate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useDebouncedState
1111
function useDebouncedState<TValue>(value, options): [TValue, Dispatch<SetStateAction<TValue>>, Debouncer<Dispatch<SetStateAction<TValue>>>]
1212
```
1313

14-
Defined in: [react-pacer/src/debouncer/useDebouncedState.ts:38](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncedState.ts#L38)
14+
Defined in: [react-pacer/src/debouncer/useDebouncedState.ts:38](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncedState.ts#L38)
1515

1616
A React hook that creates a debounced state value, combining React's useState with debouncing functionality.
1717
This hook provides both the current debounced value and methods to update it.

docs/framework/react/reference/functions/usedebouncedvalue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: useDebouncedValue
1111
function useDebouncedValue<TValue>(value, options): [TValue, Debouncer<Dispatch<SetStateAction<TValue>>>]
1212
```
1313

14-
Defined in: [react-pacer/src/debouncer/useDebouncedValue.ts:41](https://github.com/tanstack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncedValue.ts#L41)
14+
Defined in: [react-pacer/src/debouncer/useDebouncedValue.ts:41](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncedValue.ts#L41)
1515

1616
A React hook that creates a debounced value that updates only after a specified delay.
1717
Unlike useDebouncedState, this hook automatically tracks changes to the input value

0 commit comments

Comments
 (0)