diff --git a/.changeset/fresh-tools-smile.md b/.changeset/fresh-tools-smile.md
new file mode 100644
index 000000000..f46860be8
--- /dev/null
+++ b/.changeset/fresh-tools-smile.md
@@ -0,0 +1,13 @@
+---
+'@tanstack/angular-pacer': minor
+'@tanstack/pacer': minor
+'@tanstack/pacer-devtools': minor
+'@tanstack/preact-pacer': minor
+'@tanstack/preact-pacer-devtools': minor
+'@tanstack/react-pacer': minor
+'@tanstack/react-pacer-devtools': minor
+'@tanstack/solid-pacer': minor
+'@tanstack/solid-pacer-devtools': minor
+---
+
+Update package dependencies and migrate the devtools theme integration to the latest API.
diff --git a/.nvmrc b/.nvmrc
index b40402760..c4697fd56 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-24.8.0
+26.3.0
diff --git a/README.md b/README.md
index 5fbe334f4..c9747ef35 100644
--- a/README.md
+++ b/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/docs/reference/classes/AsyncDebouncer.md b/docs/reference/classes/AsyncDebouncer.md
index 37c9e4e23..a113f89b7 100644
--- a/docs/reference/classes/AsyncDebouncer.md
+++ b/docs/reference/classes/AsyncDebouncer.md
@@ -75,7 +75,7 @@ const results = await asyncDebouncer.maybeExecute(inputElement.value);
new AsyncDebouncer(fn, initialOptions): AsyncDebouncer;
```
-Defined in: [async-debouncer.ts:230](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L230)
+Defined in: [async-debouncer.ts:229](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L229)
#### Parameters
@@ -109,7 +109,7 @@ Defined in: [async-debouncer.ts:224](https://github.com/TanStack/pacer/blob/main
fn: TFn;
```
-Defined in: [async-debouncer.ts:231](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L231)
+Defined in: [async-debouncer.ts:230](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L230)
***
@@ -149,7 +149,7 @@ Defined in: [async-debouncer.ts:219](https://github.com/TanStack/pacer/blob/main
abort(): void;
```
-Defined in: [async-debouncer.ts:469](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L469)
+Defined in: [async-debouncer.ts:468](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L468)
Aborts all ongoing executions with the internal abort controllers.
Does NOT cancel any pending execution that have not started yet.
@@ -166,7 +166,7 @@ Does NOT cancel any pending execution that have not started yet.
cancel(): void;
```
-Defined in: [async-debouncer.ts:481](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L481)
+Defined in: [async-debouncer.ts:480](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L480)
Cancels any pending execution that have not started yet.
Does NOT abort any execution already in progress.
@@ -183,7 +183,7 @@ Does NOT abort any execution already in progress.
flush(): Promise | undefined>;
```
-Defined in: [async-debouncer.ts:404](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L404)
+Defined in: [async-debouncer.ts:403](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L403)
Processes the current pending execution immediately
@@ -199,7 +199,7 @@ Processes the current pending execution immediately
getAbortSignal(maybeExecuteCount?): AbortSignal | null;
```
-Defined in: [async-debouncer.ts:459](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L459)
+Defined in: [async-debouncer.ts:458](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L458)
Returns the AbortSignal for a specific execution.
If no maybeExecuteCount is provided, returns the signal for the most recent execution.
@@ -240,7 +240,7 @@ const debouncer = new AsyncDebouncer(
maybeExecute(...args): Promise | undefined>;
```
-Defined in: [async-debouncer.ts:318](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L318)
+Defined in: [async-debouncer.ts:317](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L317)
Attempts to execute the debounced function.
If a call is already in progress, it will be queued.
@@ -276,7 +276,7 @@ The error from the debounced function if no onError handler is configured
reset(): void;
```
-Defined in: [async-debouncer.ts:489](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L489)
+Defined in: [async-debouncer.ts:488](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L488)
Resets the debouncer state to its default values
@@ -292,7 +292,7 @@ Resets the debouncer state to its default values
setOptions(newOptions): void;
```
-Defined in: [async-debouncer.ts:258](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L258)
+Defined in: [async-debouncer.ts:257](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L257)
Updates the async debouncer options
diff --git a/docs/reference/classes/AsyncThrottler.md b/docs/reference/classes/AsyncThrottler.md
index 0bca3e890..240ebd2ab 100644
--- a/docs/reference/classes/AsyncThrottler.md
+++ b/docs/reference/classes/AsyncThrottler.md
@@ -79,7 +79,7 @@ const result = await throttler.maybeExecute(inputElement.value);
new AsyncThrottler(fn, initialOptions): AsyncThrottler;
```
-Defined in: [async-throttler.ts:242](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L242)
+Defined in: [async-throttler.ts:241](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L241)
#### Parameters
@@ -113,7 +113,7 @@ Defined in: [async-throttler.ts:236](https://github.com/TanStack/pacer/blob/main
fn: TFn;
```
-Defined in: [async-throttler.ts:243](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L243)
+Defined in: [async-throttler.ts:242](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L242)
***
@@ -153,7 +153,7 @@ Defined in: [async-throttler.ts:231](https://github.com/TanStack/pacer/blob/main
abort(): void;
```
-Defined in: [async-throttler.ts:533](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L533)
+Defined in: [async-throttler.ts:532](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L532)
Aborts all ongoing executions with the internal abort controllers.
Does NOT cancel any pending execution that have not started yet.
@@ -170,7 +170,7 @@ Does NOT cancel any pending execution that have not started yet.
cancel(): void;
```
-Defined in: [async-throttler.ts:543](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L543)
+Defined in: [async-throttler.ts:542](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L542)
Cancels any pending execution that have not started yet.
Does NOT abort any execution already in progress.
@@ -187,7 +187,7 @@ Does NOT abort any execution already in progress.
flush(): Promise | undefined>;
```
-Defined in: [async-throttler.ts:462](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L462)
+Defined in: [async-throttler.ts:461](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L461)
Processes the current pending execution immediately
@@ -203,7 +203,7 @@ Processes the current pending execution immediately
getAbortSignal(maybeExecuteCount?): AbortSignal | null;
```
-Defined in: [async-throttler.ts:523](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L523)
+Defined in: [async-throttler.ts:522](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L522)
Returns the AbortSignal for a specific execution.
If no maybeExecuteCount is provided, returns the signal for the most recent execution.
@@ -248,7 +248,7 @@ const throttler = new AsyncThrottler(
maybeExecute(...args): Promise | undefined>;
```
-Defined in: [async-throttler.ts:338](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L338)
+Defined in: [async-throttler.ts:337](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L337)
Attempts to execute the throttled function. The execution behavior depends on the throttler options:
@@ -290,7 +290,7 @@ await throttled.maybeExecute('c', 'd');
reset(): void;
```
-Defined in: [async-throttler.ts:557](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L557)
+Defined in: [async-throttler.ts:556](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L556)
Resets the debouncer state to its default values
@@ -306,7 +306,7 @@ Resets the debouncer state to its default values
setOptions(newOptions): void;
```
-Defined in: [async-throttler.ts:270](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L270)
+Defined in: [async-throttler.ts:269](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L269)
Updates the async throttler options
diff --git a/docs/reference/functions/asyncDebounce.md b/docs/reference/functions/asyncDebounce.md
index f9be27bfb..21e7622d4 100644
--- a/docs/reference/functions/asyncDebounce.md
+++ b/docs/reference/functions/asyncDebounce.md
@@ -9,7 +9,7 @@ title: asyncDebounce
function asyncDebounce(fn, initialOptions): (...args) => Promise | undefined>;
```
-Defined in: [async-debouncer.ts:559](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L559)
+Defined in: [async-debouncer.ts:558](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-debouncer.ts#L558)
Creates an async debounced function that delays execution until after a specified wait time.
The debounced function will only execute once the wait period has elapsed without any new calls.
diff --git a/docs/reference/functions/asyncThrottle.md b/docs/reference/functions/asyncThrottle.md
index ff031ed42..6bf6ea486 100644
--- a/docs/reference/functions/asyncThrottle.md
+++ b/docs/reference/functions/asyncThrottle.md
@@ -9,7 +9,7 @@ title: asyncThrottle
function asyncThrottle(fn, initialOptions): (...args) => Promise | undefined>;
```
-Defined in: [async-throttler.ts:627](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L627)
+Defined in: [async-throttler.ts:626](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-throttler.ts#L626)
Creates an async throttled function that limits how often the function can execute.
The throttled function will execute at most once per wait period, even if called multiple times.
diff --git a/examples/angular/asyncBatch/package.json b/examples/angular/asyncBatch/package.json
index 1d78df25c..2afd3a396 100644
--- a/examples/angular/asyncBatch/package.json
+++ b/examples/angular/asyncBatch/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/asyncDebounce/package.json b/examples/angular/asyncDebounce/package.json
index d3269c0ab..2ee16ccd9 100644
--- a/examples/angular/asyncDebounce/package.json
+++ b/examples/angular/asyncDebounce/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/asyncRateLimit/package.json b/examples/angular/asyncRateLimit/package.json
index 2caa425c1..edca337cd 100644
--- a/examples/angular/asyncRateLimit/package.json
+++ b/examples/angular/asyncRateLimit/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/asyncRetry/package.json b/examples/angular/asyncRetry/package.json
index 8be00d0c6..14d1f1ca4 100644
--- a/examples/angular/asyncRetry/package.json
+++ b/examples/angular/asyncRetry/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/asyncThrottle/package.json b/examples/angular/asyncThrottle/package.json
index 41f7b0f8f..a98a5aa07 100644
--- a/examples/angular/asyncThrottle/package.json
+++ b/examples/angular/asyncThrottle/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/batch/package.json b/examples/angular/batch/package.json
index 9f5230eb5..2499c4f9f 100644
--- a/examples/angular/batch/package.json
+++ b/examples/angular/batch/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/debounce/package.json b/examples/angular/debounce/package.json
index 37e9785b8..6ac5c9adc 100644
--- a/examples/angular/debounce/package.json
+++ b/examples/angular/debounce/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncBatchedCallback/package.json b/examples/angular/injectAsyncBatchedCallback/package.json
index 3ee1a32b3..6d3f99ae6 100644
--- a/examples/angular/injectAsyncBatchedCallback/package.json
+++ b/examples/angular/injectAsyncBatchedCallback/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncBatcher/package.json b/examples/angular/injectAsyncBatcher/package.json
index 603680cf0..a875ac817 100644
--- a/examples/angular/injectAsyncBatcher/package.json
+++ b/examples/angular/injectAsyncBatcher/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncDebouncedCallback/package.json b/examples/angular/injectAsyncDebouncedCallback/package.json
index 8e890fd47..88d4e26b5 100644
--- a/examples/angular/injectAsyncDebouncedCallback/package.json
+++ b/examples/angular/injectAsyncDebouncedCallback/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncDebouncer/package.json b/examples/angular/injectAsyncDebouncer/package.json
index 3d1f59067..9197ceb18 100644
--- a/examples/angular/injectAsyncDebouncer/package.json
+++ b/examples/angular/injectAsyncDebouncer/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncQueuedSignal/package.json b/examples/angular/injectAsyncQueuedSignal/package.json
index 4780b92df..4b34227dc 100644
--- a/examples/angular/injectAsyncQueuedSignal/package.json
+++ b/examples/angular/injectAsyncQueuedSignal/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncQueuer/package.json b/examples/angular/injectAsyncQueuer/package.json
index 818f32cd6..01cad3bd1 100644
--- a/examples/angular/injectAsyncQueuer/package.json
+++ b/examples/angular/injectAsyncQueuer/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncRateLimiter/package.json b/examples/angular/injectAsyncRateLimiter/package.json
index 1b89425da..74c02a592 100644
--- a/examples/angular/injectAsyncRateLimiter/package.json
+++ b/examples/angular/injectAsyncRateLimiter/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncRateLimiterWithPersister/package.json b/examples/angular/injectAsyncRateLimiterWithPersister/package.json
index 779ca32ec..fe7a2ca6a 100644
--- a/examples/angular/injectAsyncRateLimiterWithPersister/package.json
+++ b/examples/angular/injectAsyncRateLimiterWithPersister/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncThrottledCallback/package.json b/examples/angular/injectAsyncThrottledCallback/package.json
index 3d2219de4..ae6506810 100644
--- a/examples/angular/injectAsyncThrottledCallback/package.json
+++ b/examples/angular/injectAsyncThrottledCallback/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectAsyncThrottler/package.json b/examples/angular/injectAsyncThrottler/package.json
index c27f30016..8b30168af 100644
--- a/examples/angular/injectAsyncThrottler/package.json
+++ b/examples/angular/injectAsyncThrottler/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectBatchedCallback/package.json b/examples/angular/injectBatchedCallback/package.json
index f6f7f81ab..419dea5ea 100644
--- a/examples/angular/injectBatchedCallback/package.json
+++ b/examples/angular/injectBatchedCallback/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectBatcher/package.json b/examples/angular/injectBatcher/package.json
index 74e16839c..f9ba6b8b1 100644
--- a/examples/angular/injectBatcher/package.json
+++ b/examples/angular/injectBatcher/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectDebouncedCallback/package.json b/examples/angular/injectDebouncedCallback/package.json
index 2dcb0a2db..4ed18da45 100644
--- a/examples/angular/injectDebouncedCallback/package.json
+++ b/examples/angular/injectDebouncedCallback/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectDebouncedSignal/package.json b/examples/angular/injectDebouncedSignal/package.json
index 5afb45956..84d8a3907 100644
--- a/examples/angular/injectDebouncedSignal/package.json
+++ b/examples/angular/injectDebouncedSignal/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectDebouncedValue/package.json b/examples/angular/injectDebouncedValue/package.json
index a5b109ecb..11541ad09 100644
--- a/examples/angular/injectDebouncedValue/package.json
+++ b/examples/angular/injectDebouncedValue/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectDebouncer/package.json b/examples/angular/injectDebouncer/package.json
index 291dabcd1..a1b282ffe 100644
--- a/examples/angular/injectDebouncer/package.json
+++ b/examples/angular/injectDebouncer/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectQueuedSignal/package.json b/examples/angular/injectQueuedSignal/package.json
index 19ecde2b2..92a0fa999 100644
--- a/examples/angular/injectQueuedSignal/package.json
+++ b/examples/angular/injectQueuedSignal/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectQueuedValue/package.json b/examples/angular/injectQueuedValue/package.json
index 2c1770fb6..cea3a2776 100644
--- a/examples/angular/injectQueuedValue/package.json
+++ b/examples/angular/injectQueuedValue/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectQueuer/package.json b/examples/angular/injectQueuer/package.json
index bd7b2d747..618ec2a74 100644
--- a/examples/angular/injectQueuer/package.json
+++ b/examples/angular/injectQueuer/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectQueuerWithPersister/package.json b/examples/angular/injectQueuerWithPersister/package.json
index b6103d12a..97ab90449 100644
--- a/examples/angular/injectQueuerWithPersister/package.json
+++ b/examples/angular/injectQueuerWithPersister/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectRateLimitedCallback/package.json b/examples/angular/injectRateLimitedCallback/package.json
index ed4af9722..2a52ac34b 100644
--- a/examples/angular/injectRateLimitedCallback/package.json
+++ b/examples/angular/injectRateLimitedCallback/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectRateLimitedSignal/package.json b/examples/angular/injectRateLimitedSignal/package.json
index 22d011307..0744b86ee 100644
--- a/examples/angular/injectRateLimitedSignal/package.json
+++ b/examples/angular/injectRateLimitedSignal/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectRateLimitedValue/package.json b/examples/angular/injectRateLimitedValue/package.json
index 177dfe339..3d4319706 100644
--- a/examples/angular/injectRateLimitedValue/package.json
+++ b/examples/angular/injectRateLimitedValue/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectRateLimiter/package.json b/examples/angular/injectRateLimiter/package.json
index a149d0f67..1b457d0d2 100644
--- a/examples/angular/injectRateLimiter/package.json
+++ b/examples/angular/injectRateLimiter/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectRateLimiterWithPersister/package.json b/examples/angular/injectRateLimiterWithPersister/package.json
index 46ec8a7f1..e063eade7 100644
--- a/examples/angular/injectRateLimiterWithPersister/package.json
+++ b/examples/angular/injectRateLimiterWithPersister/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectThrottledCallback/package.json b/examples/angular/injectThrottledCallback/package.json
index dd5f03409..84f1465dd 100644
--- a/examples/angular/injectThrottledCallback/package.json
+++ b/examples/angular/injectThrottledCallback/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectThrottledSignal/package.json b/examples/angular/injectThrottledSignal/package.json
index f980570f4..43e8d3723 100644
--- a/examples/angular/injectThrottledSignal/package.json
+++ b/examples/angular/injectThrottledSignal/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectThrottledValue/package.json b/examples/angular/injectThrottledValue/package.json
index 8870eb3c6..68cbabc1a 100644
--- a/examples/angular/injectThrottledValue/package.json
+++ b/examples/angular/injectThrottledValue/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/injectThrottler/package.json b/examples/angular/injectThrottler/package.json
index f3f5bc248..6995c8e95 100644
--- a/examples/angular/injectThrottler/package.json
+++ b/examples/angular/injectThrottler/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/queue/package.json b/examples/angular/queue/package.json
index 14585100b..596868229 100644
--- a/examples/angular/queue/package.json
+++ b/examples/angular/queue/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/rateLimit/package.json b/examples/angular/rateLimit/package.json
index a1455ae8f..54cce289e 100644
--- a/examples/angular/rateLimit/package.json
+++ b/examples/angular/rateLimit/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/angular/throttle/package.json b/examples/angular/throttle/package.json
index 9b6bc1d30..e0ca3a529 100644
--- a/examples/angular/throttle/package.json
+++ b/examples/angular/throttle/package.json
@@ -20,24 +20,24 @@
]
},
"private": true,
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"dependencies": {
- "@angular/common": "^21.2.12",
- "@angular/compiler": "^21.2.12",
- "@angular/core": "^21.2.12",
- "@angular/forms": "^21.2.12",
- "@angular/platform-browser": "^21.2.12",
- "@angular/router": "^21.2.12",
+ "@angular/common": "^22.1.0",
+ "@angular/compiler": "^22.1.0",
+ "@angular/core": "^22.1.0",
+ "@angular/forms": "^22.1.0",
+ "@angular/platform-browser": "^22.1.0",
+ "@angular/router": "^22.1.0",
"@tanstack/angular-pacer": "^0.23.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
- "@angular/build": "^21.2.11",
- "@angular/cli": "^21.2.11",
- "@angular/compiler-cli": "^21.2.12",
- "jsdom": "^29.1.1",
+ "@angular/build": "^22.1.3",
+ "@angular/cli": "^22.1.3",
+ "@angular/compiler-cli": "^22.1.0",
+ "jsdom": "^30.0.1",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/examples/preact/asyncBatch/package.json b/examples/preact/asyncBatch/package.json
index f889b55d2..fcde8bbeb 100644
--- a/examples/preact/asyncBatch/package.json
+++ b/examples/preact/asyncBatch/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/asyncDebounce/package.json b/examples/preact/asyncDebounce/package.json
index c3f687e7c..fa46aa390 100644
--- a/examples/preact/asyncDebounce/package.json
+++ b/examples/preact/asyncDebounce/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/asyncRateLimit/package.json b/examples/preact/asyncRateLimit/package.json
index 255b105f4..b11586006 100644
--- a/examples/preact/asyncRateLimit/package.json
+++ b/examples/preact/asyncRateLimit/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/asyncRetry/package.json b/examples/preact/asyncRetry/package.json
index b0cb3f412..52d0efd8a 100644
--- a/examples/preact/asyncRetry/package.json
+++ b/examples/preact/asyncRetry/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/asyncThrottle/package.json b/examples/preact/asyncThrottle/package.json
index 6ad4dc25f..7ae484f5e 100644
--- a/examples/preact/asyncThrottle/package.json
+++ b/examples/preact/asyncThrottle/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/batch/package.json b/examples/preact/batch/package.json
index 6a155977d..b016e6c7a 100644
--- a/examples/preact/batch/package.json
+++ b/examples/preact/batch/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/debounce/package.json b/examples/preact/debounce/package.json
index 650461d72..ba013979b 100644
--- a/examples/preact/debounce/package.json
+++ b/examples/preact/debounce/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/queue/package.json b/examples/preact/queue/package.json
index 2fad83b36..7bd7097bc 100644
--- a/examples/preact/queue/package.json
+++ b/examples/preact/queue/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/rateLimit/package.json b/examples/preact/rateLimit/package.json
index adf83c4de..c805b8358 100644
--- a/examples/preact/rateLimit/package.json
+++ b/examples/preact/rateLimit/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/throttle/package.json b/examples/preact/throttle/package.json
index 4241ea438..be09aa098 100644
--- a/examples/preact/throttle/package.json
+++ b/examples/preact/throttle/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncBatchedCallback/package.json b/examples/preact/useAsyncBatchedCallback/package.json
index e7b7313d3..a6429c35b 100644
--- a/examples/preact/useAsyncBatchedCallback/package.json
+++ b/examples/preact/useAsyncBatchedCallback/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncBatcher/package.json b/examples/preact/useAsyncBatcher/package.json
index 6235b0a21..85b8d2308 100644
--- a/examples/preact/useAsyncBatcher/package.json
+++ b/examples/preact/useAsyncBatcher/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncDebouncedCallback/package.json b/examples/preact/useAsyncDebouncedCallback/package.json
index 543e99ee2..ad48d632e 100644
--- a/examples/preact/useAsyncDebouncedCallback/package.json
+++ b/examples/preact/useAsyncDebouncedCallback/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncDebouncer/package.json b/examples/preact/useAsyncDebouncer/package.json
index 8996baff1..296d0bce1 100644
--- a/examples/preact/useAsyncDebouncer/package.json
+++ b/examples/preact/useAsyncDebouncer/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncQueuedState/package.json b/examples/preact/useAsyncQueuedState/package.json
index d8b5ccaa8..68f681ac8 100644
--- a/examples/preact/useAsyncQueuedState/package.json
+++ b/examples/preact/useAsyncQueuedState/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncQueuer/package.json b/examples/preact/useAsyncQueuer/package.json
index 5c8a30a8f..b623615fc 100644
--- a/examples/preact/useAsyncQueuer/package.json
+++ b/examples/preact/useAsyncQueuer/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncRateLimiter/package.json b/examples/preact/useAsyncRateLimiter/package.json
index 7aa3776fe..059c36b22 100644
--- a/examples/preact/useAsyncRateLimiter/package.json
+++ b/examples/preact/useAsyncRateLimiter/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncRateLimiterWithPersister/package.json b/examples/preact/useAsyncRateLimiterWithPersister/package.json
index ea1e55d86..9e8ab35dc 100644
--- a/examples/preact/useAsyncRateLimiterWithPersister/package.json
+++ b/examples/preact/useAsyncRateLimiterWithPersister/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncThrottledCallback/package.json b/examples/preact/useAsyncThrottledCallback/package.json
index 79e89e812..8cf8d04a2 100644
--- a/examples/preact/useAsyncThrottledCallback/package.json
+++ b/examples/preact/useAsyncThrottledCallback/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useAsyncThrottler/package.json b/examples/preact/useAsyncThrottler/package.json
index 378686121..c52c55a87 100644
--- a/examples/preact/useAsyncThrottler/package.json
+++ b/examples/preact/useAsyncThrottler/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useBatchedCallback/package.json b/examples/preact/useBatchedCallback/package.json
index 86e0e66d5..1e5c7ed8f 100644
--- a/examples/preact/useBatchedCallback/package.json
+++ b/examples/preact/useBatchedCallback/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useBatcher/package.json b/examples/preact/useBatcher/package.json
index a08013880..0a8961f22 100644
--- a/examples/preact/useBatcher/package.json
+++ b/examples/preact/useBatcher/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useDebouncedCallback/package.json b/examples/preact/useDebouncedCallback/package.json
index d0ccf4f7a..e0f572b73 100644
--- a/examples/preact/useDebouncedCallback/package.json
+++ b/examples/preact/useDebouncedCallback/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useDebouncedState/package.json b/examples/preact/useDebouncedState/package.json
index 594c14f47..f793f182f 100644
--- a/examples/preact/useDebouncedState/package.json
+++ b/examples/preact/useDebouncedState/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useDebouncedValue/package.json b/examples/preact/useDebouncedValue/package.json
index 200bc24de..39ca5eea6 100644
--- a/examples/preact/useDebouncedValue/package.json
+++ b/examples/preact/useDebouncedValue/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useDebouncer/package.json b/examples/preact/useDebouncer/package.json
index 680af7bab..a95d8d401 100644
--- a/examples/preact/useDebouncer/package.json
+++ b/examples/preact/useDebouncer/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useQueuedState/package.json b/examples/preact/useQueuedState/package.json
index 77dc5b697..5dbaa9130 100644
--- a/examples/preact/useQueuedState/package.json
+++ b/examples/preact/useQueuedState/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useQueuedValue/package.json b/examples/preact/useQueuedValue/package.json
index e4515bc43..456ebfa41 100644
--- a/examples/preact/useQueuedValue/package.json
+++ b/examples/preact/useQueuedValue/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useQueuer/package.json b/examples/preact/useQueuer/package.json
index b8a90619f..5bdd1667d 100644
--- a/examples/preact/useQueuer/package.json
+++ b/examples/preact/useQueuer/package.json
@@ -9,14 +9,14 @@
"test:types": "tsc"
},
"dependencies": {
- "@tanstack/preact-devtools": "^0.10.5",
+ "@tanstack/preact-devtools": "^0.10.9",
"@tanstack/preact-pacer": "^0.22.1",
"@tanstack/preact-pacer-devtools": "workspace:*",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useQueuerWithPersister/package.json b/examples/preact/useQueuerWithPersister/package.json
index 9c0d103df..7435bfcf8 100644
--- a/examples/preact/useQueuerWithPersister/package.json
+++ b/examples/preact/useQueuerWithPersister/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useRateLimitedCallback/package.json b/examples/preact/useRateLimitedCallback/package.json
index 0939d6a56..3ce9b6ca9 100644
--- a/examples/preact/useRateLimitedCallback/package.json
+++ b/examples/preact/useRateLimitedCallback/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useRateLimitedState/package.json b/examples/preact/useRateLimitedState/package.json
index 2dacbf430..b8f07fe81 100644
--- a/examples/preact/useRateLimitedState/package.json
+++ b/examples/preact/useRateLimitedState/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useRateLimitedValue/package.json b/examples/preact/useRateLimitedValue/package.json
index 2df5f4830..6a91337a8 100644
--- a/examples/preact/useRateLimitedValue/package.json
+++ b/examples/preact/useRateLimitedValue/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useRateLimiter/package.json b/examples/preact/useRateLimiter/package.json
index a794ac649..1d795e65e 100644
--- a/examples/preact/useRateLimiter/package.json
+++ b/examples/preact/useRateLimiter/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useRateLimiterWithPersister/package.json b/examples/preact/useRateLimiterWithPersister/package.json
index a3b6f7fba..b5a7c9a69 100644
--- a/examples/preact/useRateLimiterWithPersister/package.json
+++ b/examples/preact/useRateLimiterWithPersister/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useThrottledCallback/package.json b/examples/preact/useThrottledCallback/package.json
index 0c6c2b961..0b4bb7a4c 100644
--- a/examples/preact/useThrottledCallback/package.json
+++ b/examples/preact/useThrottledCallback/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useThrottledState/package.json b/examples/preact/useThrottledState/package.json
index 0184a9537..b0450b1b0 100644
--- a/examples/preact/useThrottledState/package.json
+++ b/examples/preact/useThrottledState/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useThrottledValue/package.json b/examples/preact/useThrottledValue/package.json
index 01713d7e2..06aef1129 100644
--- a/examples/preact/useThrottledValue/package.json
+++ b/examples/preact/useThrottledValue/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/useThrottler/package.json b/examples/preact/useThrottler/package.json
index a95622480..8ed73e5cf 100644
--- a/examples/preact/useThrottler/package.json
+++ b/examples/preact/useThrottler/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/preact-pacer": "^0.22.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/preact/util-comparison/package.json b/examples/preact/util-comparison/package.json
index 75f82160d..c42b4dfc9 100644
--- a/examples/preact/util-comparison/package.json
+++ b/examples/preact/util-comparison/package.json
@@ -9,14 +9,14 @@
"test:types": "tsc"
},
"dependencies": {
- "@tanstack/preact-devtools": "^0.10.5",
+ "@tanstack/preact-devtools": "^0.10.9",
"@tanstack/preact-pacer": "^0.22.1",
"@tanstack/preact-pacer-devtools": "workspace:*",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
- "vite": "^8.0.12"
+ "@preact/preset-vite": "^2.10.6",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/asyncBatch/package.json b/examples/react/asyncBatch/package.json
index 817f3112c..810b17099 100644
--- a/examples/react/asyncBatch/package.json
+++ b/examples/react/asyncBatch/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/asyncDebounce/package.json b/examples/react/asyncDebounce/package.json
index fe5f0ec55..78b311a1b 100644
--- a/examples/react/asyncDebounce/package.json
+++ b/examples/react/asyncDebounce/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/asyncRateLimit/package.json b/examples/react/asyncRateLimit/package.json
index fecac3dc0..70f8fae14 100644
--- a/examples/react/asyncRateLimit/package.json
+++ b/examples/react/asyncRateLimit/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/asyncRetry/package.json b/examples/react/asyncRetry/package.json
index 408f6ed55..17427b323 100644
--- a/examples/react/asyncRetry/package.json
+++ b/examples/react/asyncRetry/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/asyncThrottle/package.json b/examples/react/asyncThrottle/package.json
index 772aedb5f..4a60e541b 100644
--- a/examples/react/asyncThrottle/package.json
+++ b/examples/react/asyncThrottle/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/batch/package.json b/examples/react/batch/package.json
index ea6604316..12cb1f4bd 100644
--- a/examples/react/batch/package.json
+++ b/examples/react/batch/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/debounce/package.json b/examples/react/debounce/package.json
index 6365b7f32..9cef08153 100644
--- a/examples/react/debounce/package.json
+++ b/examples/react/debounce/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/queue/package.json b/examples/react/queue/package.json
index 492d6270b..33e8c553d 100644
--- a/examples/react/queue/package.json
+++ b/examples/react/queue/package.json
@@ -10,16 +10,16 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@tanstack/react-devtools": "0.10.5",
+ "@tanstack/react-devtools": "0.10.9",
"@tanstack/react-pacer-devtools": "0.7.1",
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/rateLimit/package.json b/examples/react/rateLimit/package.json
index d6e48b5e8..182f62604 100644
--- a/examples/react/rateLimit/package.json
+++ b/examples/react/rateLimit/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/react-query-debounced-prefetch/package.json b/examples/react/react-query-debounced-prefetch/package.json
index 9813c17da..f04347803 100644
--- a/examples/react/react-query-debounced-prefetch/package.json
+++ b/examples/react/react-query-debounced-prefetch/package.json
@@ -10,16 +10,16 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "@tanstack/react-query": "^5.100.10",
- "@tanstack/react-query-devtools": "^5.100.10",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "@tanstack/react-query": "^5.101.4",
+ "@tanstack/react-query-devtools": "^5.101.4",
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/react-query-queued-prefetch/package.json b/examples/react/react-query-queued-prefetch/package.json
index 09a8bc2ea..f66834b9d 100644
--- a/examples/react/react-query-queued-prefetch/package.json
+++ b/examples/react/react-query-queued-prefetch/package.json
@@ -10,16 +10,16 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "@tanstack/react-query": "^5.100.10",
- "@tanstack/react-query-devtools": "^5.100.10",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "@tanstack/react-query": "^5.101.4",
+ "@tanstack/react-query-devtools": "^5.101.4",
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/react-query-throttled-prefetch/package.json b/examples/react/react-query-throttled-prefetch/package.json
index 432bab93e..d5f5ae1cc 100644
--- a/examples/react/react-query-throttled-prefetch/package.json
+++ b/examples/react/react-query-throttled-prefetch/package.json
@@ -10,16 +10,16 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "@tanstack/react-query": "^5.100.10",
- "@tanstack/react-query-devtools": "^5.100.10",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "@tanstack/react-query": "^5.101.4",
+ "@tanstack/react-query-devtools": "^5.101.4",
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/throttle/package.json b/examples/react/throttle/package.json
index aafee0a17..c2e2e957a 100644
--- a/examples/react/throttle/package.json
+++ b/examples/react/throttle/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncBatchedCallback/package.json b/examples/react/useAsyncBatchedCallback/package.json
index 610f6f4ef..d987070c8 100644
--- a/examples/react/useAsyncBatchedCallback/package.json
+++ b/examples/react/useAsyncBatchedCallback/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncBatcher/package.json b/examples/react/useAsyncBatcher/package.json
index 196277941..f2531eb47 100644
--- a/examples/react/useAsyncBatcher/package.json
+++ b/examples/react/useAsyncBatcher/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncDebouncedCallback/package.json b/examples/react/useAsyncDebouncedCallback/package.json
index 7acce70c1..2dc580bd9 100644
--- a/examples/react/useAsyncDebouncedCallback/package.json
+++ b/examples/react/useAsyncDebouncedCallback/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncDebouncer/package.json b/examples/react/useAsyncDebouncer/package.json
index 790e19f29..fe5bf9240 100644
--- a/examples/react/useAsyncDebouncer/package.json
+++ b/examples/react/useAsyncDebouncer/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncQueuedState/package.json b/examples/react/useAsyncQueuedState/package.json
index 501aea63c..dbd66ed79 100644
--- a/examples/react/useAsyncQueuedState/package.json
+++ b/examples/react/useAsyncQueuedState/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncQueuer/package.json b/examples/react/useAsyncQueuer/package.json
index abdb00674..ae4919907 100644
--- a/examples/react/useAsyncQueuer/package.json
+++ b/examples/react/useAsyncQueuer/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncRateLimiter/package.json b/examples/react/useAsyncRateLimiter/package.json
index 36d81acd9..9d2f3afc3 100644
--- a/examples/react/useAsyncRateLimiter/package.json
+++ b/examples/react/useAsyncRateLimiter/package.json
@@ -11,14 +11,14 @@
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-persister": "^0.1.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncRateLimiterWithPersister/package.json b/examples/react/useAsyncRateLimiterWithPersister/package.json
index 30cb3c5ae..3cea11340 100644
--- a/examples/react/useAsyncRateLimiterWithPersister/package.json
+++ b/examples/react/useAsyncRateLimiterWithPersister/package.json
@@ -11,14 +11,14 @@
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-persister": "^0.1.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncThrottledCallback/package.json b/examples/react/useAsyncThrottledCallback/package.json
index b4d103e37..1acbc92ce 100644
--- a/examples/react/useAsyncThrottledCallback/package.json
+++ b/examples/react/useAsyncThrottledCallback/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useAsyncThrottler/package.json b/examples/react/useAsyncThrottler/package.json
index 223a1f1ad..99a3b8d16 100644
--- a/examples/react/useAsyncThrottler/package.json
+++ b/examples/react/useAsyncThrottler/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useBatchedCallback/package.json b/examples/react/useBatchedCallback/package.json
index 292b5cb0d..e99cfc004 100644
--- a/examples/react/useBatchedCallback/package.json
+++ b/examples/react/useBatchedCallback/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useBatcher/package.json b/examples/react/useBatcher/package.json
index ee964133c..1c46e8e31 100644
--- a/examples/react/useBatcher/package.json
+++ b/examples/react/useBatcher/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useDebouncedCallback/package.json b/examples/react/useDebouncedCallback/package.json
index f80600ad0..3fc0d19d4 100644
--- a/examples/react/useDebouncedCallback/package.json
+++ b/examples/react/useDebouncedCallback/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useDebouncedState/package.json b/examples/react/useDebouncedState/package.json
index 908b66853..a9d208ce7 100644
--- a/examples/react/useDebouncedState/package.json
+++ b/examples/react/useDebouncedState/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useDebouncedValue/package.json b/examples/react/useDebouncedValue/package.json
index 64e44387a..d38ba4cfa 100644
--- a/examples/react/useDebouncedValue/package.json
+++ b/examples/react/useDebouncedValue/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useDebouncer/package.json b/examples/react/useDebouncer/package.json
index f98777bcf..b0e5af965 100644
--- a/examples/react/useDebouncer/package.json
+++ b/examples/react/useDebouncer/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useQueuedState/package.json b/examples/react/useQueuedState/package.json
index 4c141cd1f..8b8ec1510 100644
--- a/examples/react/useQueuedState/package.json
+++ b/examples/react/useQueuedState/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useQueuedValue/package.json b/examples/react/useQueuedValue/package.json
index 8ff090e92..59885c548 100644
--- a/examples/react/useQueuedValue/package.json
+++ b/examples/react/useQueuedValue/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useQueuer/package.json b/examples/react/useQueuer/package.json
index 42851b418..9aaeb3cb7 100644
--- a/examples/react/useQueuer/package.json
+++ b/examples/react/useQueuer/package.json
@@ -11,16 +11,16 @@
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-persister": "^0.1.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@tanstack/react-devtools": "0.10.5",
+ "@tanstack/react-devtools": "0.10.9",
"@tanstack/react-pacer-devtools": "0.7.1",
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useQueuerWithPersister/package.json b/examples/react/useQueuerWithPersister/package.json
index 7b9cbfa5d..828b7c355 100644
--- a/examples/react/useQueuerWithPersister/package.json
+++ b/examples/react/useQueuerWithPersister/package.json
@@ -11,14 +11,14 @@
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-persister": "^0.1.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useRateLimitedCallback/package.json b/examples/react/useRateLimitedCallback/package.json
index ee3e1fbf0..3b5ab058f 100644
--- a/examples/react/useRateLimitedCallback/package.json
+++ b/examples/react/useRateLimitedCallback/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useRateLimitedState/package.json b/examples/react/useRateLimitedState/package.json
index eb473c13d..c36b46aa2 100644
--- a/examples/react/useRateLimitedState/package.json
+++ b/examples/react/useRateLimitedState/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useRateLimitedValue/package.json b/examples/react/useRateLimitedValue/package.json
index f3c6123c4..c850d1f20 100644
--- a/examples/react/useRateLimitedValue/package.json
+++ b/examples/react/useRateLimitedValue/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useRateLimiter/package.json b/examples/react/useRateLimiter/package.json
index 83b30d6f1..420375d16 100644
--- a/examples/react/useRateLimiter/package.json
+++ b/examples/react/useRateLimiter/package.json
@@ -11,14 +11,14 @@
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-persister": "^0.1.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useRateLimiterWithPersister/package.json b/examples/react/useRateLimiterWithPersister/package.json
index 6dae3d456..e14810845 100644
--- a/examples/react/useRateLimiterWithPersister/package.json
+++ b/examples/react/useRateLimiterWithPersister/package.json
@@ -11,14 +11,14 @@
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-persister": "^0.1.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useThrottledCallback/package.json b/examples/react/useThrottledCallback/package.json
index 574e9bc2d..cb32d0d80 100644
--- a/examples/react/useThrottledCallback/package.json
+++ b/examples/react/useThrottledCallback/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useThrottledState/package.json b/examples/react/useThrottledState/package.json
index 06311e619..54a813b8b 100644
--- a/examples/react/useThrottledState/package.json
+++ b/examples/react/useThrottledState/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useThrottledValue/package.json b/examples/react/useThrottledValue/package.json
index 3d51a5bfb..a422d6879 100644
--- a/examples/react/useThrottledValue/package.json
+++ b/examples/react/useThrottledValue/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/useThrottler/package.json b/examples/react/useThrottler/package.json
index d8637fbc7..5cda0a7c5 100644
--- a/examples/react/useThrottler/package.json
+++ b/examples/react/useThrottler/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/react/util-comparison/package.json b/examples/react/util-comparison/package.json
index 8a3742808..05aa81249 100644
--- a/examples/react/util-comparison/package.json
+++ b/examples/react/util-comparison/package.json
@@ -10,16 +10,16 @@
},
"dependencies": {
"@tanstack/react-pacer": "^0.22.1",
- "react": "^19.2.6",
- "react-dom": "^19.2.6"
+ "react": "^19.2.8",
+ "react-dom": "^19.2.8"
},
"devDependencies": {
- "@tanstack/react-devtools": "0.10.5",
+ "@tanstack/react-devtools": "0.10.9",
"@tanstack/react-pacer-devtools": "0.7.1",
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^6.0.1",
- "vite": "^8.0.12"
+ "@types/react": "^19.2.18",
+ "@types/react-dom": "^19.2.4",
+ "@vitejs/plugin-react": "^6.0.5",
+ "vite": "^8.2.0"
},
"browserslist": {
"production": [
diff --git a/examples/solid/asyncBatch/package.json b/examples/solid/asyncBatch/package.json
index 648c7de6f..9859f968d 100644
--- a/examples/solid/asyncBatch/package.json
+++ b/examples/solid/asyncBatch/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/asyncDebounce/package.json b/examples/solid/asyncDebounce/package.json
index ebcf8733f..8b42bfa69 100644
--- a/examples/solid/asyncDebounce/package.json
+++ b/examples/solid/asyncDebounce/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/asyncRateLimit/package.json b/examples/solid/asyncRateLimit/package.json
index a407084e6..ae01741fb 100644
--- a/examples/solid/asyncRateLimit/package.json
+++ b/examples/solid/asyncRateLimit/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/asyncThrottle/package.json b/examples/solid/asyncThrottle/package.json
index 539a139fd..bbfe754b7 100644
--- a/examples/solid/asyncThrottle/package.json
+++ b/examples/solid/asyncThrottle/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/batch/package.json b/examples/solid/batch/package.json
index 30e3cbed5..ab220a965 100644
--- a/examples/solid/batch/package.json
+++ b/examples/solid/batch/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createAsyncBatcher/package.json b/examples/solid/createAsyncBatcher/package.json
index 69577b0c5..9b66e44bb 100644
--- a/examples/solid/createAsyncBatcher/package.json
+++ b/examples/solid/createAsyncBatcher/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createAsyncDebouncer/package.json b/examples/solid/createAsyncDebouncer/package.json
index 4e6585b53..0afec9023 100644
--- a/examples/solid/createAsyncDebouncer/package.json
+++ b/examples/solid/createAsyncDebouncer/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createAsyncQueuer/package.json b/examples/solid/createAsyncQueuer/package.json
index f11461ae8..4bbf6ff9e 100644
--- a/examples/solid/createAsyncQueuer/package.json
+++ b/examples/solid/createAsyncQueuer/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createAsyncRateLimiter/package.json b/examples/solid/createAsyncRateLimiter/package.json
index 8e932ff26..fc654823f 100644
--- a/examples/solid/createAsyncRateLimiter/package.json
+++ b/examples/solid/createAsyncRateLimiter/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createAsyncThrottler/package.json b/examples/solid/createAsyncThrottler/package.json
index 0e53288ce..64945ceb2 100644
--- a/examples/solid/createAsyncThrottler/package.json
+++ b/examples/solid/createAsyncThrottler/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createBatcher/package.json b/examples/solid/createBatcher/package.json
index 423fbd5f8..6eecff00d 100644
--- a/examples/solid/createBatcher/package.json
+++ b/examples/solid/createBatcher/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createDebouncedSignal/package.json b/examples/solid/createDebouncedSignal/package.json
index 4d928c370..a78962758 100644
--- a/examples/solid/createDebouncedSignal/package.json
+++ b/examples/solid/createDebouncedSignal/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createDebouncedValue/package.json b/examples/solid/createDebouncedValue/package.json
index 04e88064f..5a00d8338 100644
--- a/examples/solid/createDebouncedValue/package.json
+++ b/examples/solid/createDebouncedValue/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createDebouncer/package.json b/examples/solid/createDebouncer/package.json
index 7cd9ef571..6812114eb 100644
--- a/examples/solid/createDebouncer/package.json
+++ b/examples/solid/createDebouncer/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createQueuedSignal/package.json b/examples/solid/createQueuedSignal/package.json
index cbd42f287..daf705dd0 100644
--- a/examples/solid/createQueuedSignal/package.json
+++ b/examples/solid/createQueuedSignal/package.json
@@ -9,14 +9,14 @@
"test:types": "tsc"
},
"dependencies": {
- "@tanstack/solid-devtools": "0.8.5",
+ "@tanstack/solid-devtools": "0.8.9",
"@tanstack/solid-pacer": "^0.21.1",
"@tanstack/solid-pacer-devtools": "0.6.3",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createQueuer/package.json b/examples/solid/createQueuer/package.json
index 5f7a2dd70..eaa258241 100644
--- a/examples/solid/createQueuer/package.json
+++ b/examples/solid/createQueuer/package.json
@@ -9,14 +9,14 @@
"test:types": "tsc"
},
"dependencies": {
- "@tanstack/solid-devtools": "0.8.5",
+ "@tanstack/solid-devtools": "0.8.9",
"@tanstack/solid-pacer": "^0.21.1",
"@tanstack/solid-pacer-devtools": "0.6.3",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createRateLimitedSignal/package.json b/examples/solid/createRateLimitedSignal/package.json
index c72be5586..3b2250945 100644
--- a/examples/solid/createRateLimitedSignal/package.json
+++ b/examples/solid/createRateLimitedSignal/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createRateLimitedValue/package.json b/examples/solid/createRateLimitedValue/package.json
index 4ee58f31c..51b04213c 100644
--- a/examples/solid/createRateLimitedValue/package.json
+++ b/examples/solid/createRateLimitedValue/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createRateLimiter/package.json b/examples/solid/createRateLimiter/package.json
index 7c0be6f4c..c3048fbcc 100644
--- a/examples/solid/createRateLimiter/package.json
+++ b/examples/solid/createRateLimiter/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createThrottledSignal/package.json b/examples/solid/createThrottledSignal/package.json
index 49d11b772..664ad8e78 100644
--- a/examples/solid/createThrottledSignal/package.json
+++ b/examples/solid/createThrottledSignal/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createThrottledValue/package.json b/examples/solid/createThrottledValue/package.json
index 43c0b7c2f..50f77b5c8 100644
--- a/examples/solid/createThrottledValue/package.json
+++ b/examples/solid/createThrottledValue/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/createThrottler/package.json b/examples/solid/createThrottler/package.json
index b1cc937f3..1d9800617 100644
--- a/examples/solid/createThrottler/package.json
+++ b/examples/solid/createThrottler/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/debounce/package.json b/examples/solid/debounce/package.json
index 5e6d90731..9fa4131de 100644
--- a/examples/solid/debounce/package.json
+++ b/examples/solid/debounce/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/queue/package.json b/examples/solid/queue/package.json
index 9b73c843d..d57ad792c 100644
--- a/examples/solid/queue/package.json
+++ b/examples/solid/queue/package.json
@@ -9,14 +9,14 @@
"test:types": "tsc"
},
"dependencies": {
- "@tanstack/solid-devtools": "0.8.5",
+ "@tanstack/solid-devtools": "0.8.9",
"@tanstack/solid-pacer": "^0.21.1",
"@tanstack/solid-pacer-devtools": "0.6.3",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/rateLimit/package.json b/examples/solid/rateLimit/package.json
index fa27753e7..599295c7f 100644
--- a/examples/solid/rateLimit/package.json
+++ b/examples/solid/rateLimit/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/solid/throttle/package.json b/examples/solid/throttle/package.json
index 2efa6a65e..9218543e0 100644
--- a/examples/solid/throttle/package.json
+++ b/examples/solid/throttle/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"@tanstack/solid-pacer": "^0.21.1",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
- "vite": "^8.0.12",
- "vite-plugin-solid": "^2.11.12"
+ "vite": "^8.2.0",
+ "vite-plugin-solid": "^2.11.14"
},
"browserslist": {
"production": [
diff --git a/examples/vanilla/LiteBatcher/package.json b/examples/vanilla/LiteBatcher/package.json
index d4ab5d225..9a108e31e 100644
--- a/examples/vanilla/LiteBatcher/package.json
+++ b/examples/vanilla/LiteBatcher/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/LiteDebouncer/package.json b/examples/vanilla/LiteDebouncer/package.json
index fc92399d9..2799a973d 100644
--- a/examples/vanilla/LiteDebouncer/package.json
+++ b/examples/vanilla/LiteDebouncer/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/LiteQueuer/package.json b/examples/vanilla/LiteQueuer/package.json
index 4f012c483..78211c16b 100644
--- a/examples/vanilla/LiteQueuer/package.json
+++ b/examples/vanilla/LiteQueuer/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/LiteRateLimiter/package.json b/examples/vanilla/LiteRateLimiter/package.json
index 1504e9a34..dc33e214d 100644
--- a/examples/vanilla/LiteRateLimiter/package.json
+++ b/examples/vanilla/LiteRateLimiter/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/LiteThrottler/package.json b/examples/vanilla/LiteThrottler/package.json
index f2596c3e7..acef6696f 100644
--- a/examples/vanilla/LiteThrottler/package.json
+++ b/examples/vanilla/LiteThrottler/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/liteBatch/package.json b/examples/vanilla/liteBatch/package.json
index a85f0f5b9..a291b9b77 100644
--- a/examples/vanilla/liteBatch/package.json
+++ b/examples/vanilla/liteBatch/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/liteDebounce/package.json b/examples/vanilla/liteDebounce/package.json
index 2db25f9b6..a44162a13 100644
--- a/examples/vanilla/liteDebounce/package.json
+++ b/examples/vanilla/liteDebounce/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/liteQueue/package.json b/examples/vanilla/liteQueue/package.json
index 7e648fbe5..4ecb0cb17 100644
--- a/examples/vanilla/liteQueue/package.json
+++ b/examples/vanilla/liteQueue/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/liteRateLimit/package.json b/examples/vanilla/liteRateLimit/package.json
index 0ff214ebd..b43a7bff1 100644
--- a/examples/vanilla/liteRateLimit/package.json
+++ b/examples/vanilla/liteRateLimit/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/examples/vanilla/liteThrottle/package.json b/examples/vanilla/liteThrottle/package.json
index 34a154a6c..edb15c5c1 100644
--- a/examples/vanilla/liteThrottle/package.json
+++ b/examples/vanilla/liteThrottle/package.json
@@ -12,6 +12,6 @@
"@tanstack/pacer-lite": "0.2.2"
},
"devDependencies": {
- "vite": "^8.0.12"
+ "vite": "^8.2.0"
}
}
diff --git a/package.json b/package.json
index 4600c1a8f..b7d6a118f 100644
--- a/package.json
+++ b/package.json
@@ -5,7 +5,7 @@
"type": "git",
"url": "git+https://github.com/TanStack/pacer.git"
},
- "packageManager": "pnpm@11.1.1",
+ "packageManager": "pnpm@11.20.0",
"engines": {
"pnpm": ">=11.0.0"
},
@@ -53,29 +53,29 @@
}
],
"devDependencies": {
- "@changesets/cli": "^2.31.0",
- "@faker-js/faker": "^10.4.0",
- "@size-limit/preset-small-lib": "^12.1.0",
+ "@changesets/cli": "^2.31.1",
+ "@faker-js/faker": "^10.5.0",
+ "@size-limit/preset-small-lib": "^13.0.3",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/eslint-config": "0.4.0",
"@tanstack/typedoc-config": "0.3.3",
- "@testing-library/jest-dom": "^6.9.1",
- "@types/node": "^25.7.0",
- "eslint": "^10.3.0",
+ "@testing-library/jest-dom": "^7.0.0",
+ "@types/node": "^26.1.2",
+ "eslint": "^10.8.0",
"eslint-plugin-unused-imports": "^4.4.1",
- "happy-dom": "^20.9.0",
- "knip": "^6.13.1",
- "markdown-link-extractor": "^4.0.3",
- "nx": "^22.7.1",
+ "happy-dom": "^20.11.1",
+ "knip": "^6.32.0",
+ "markdown-link-extractor": "^4.0.4",
+ "nx": "^23.1.1",
"premove": "^4.0.0",
- "prettier": "^3.8.3",
- "prettier-plugin-svelte": "^3.5.2",
- "publint": "^0.3.21",
- "sherif": "^1.11.1",
- "size-limit": "^12.1.0",
- "tinyglobby": "^0.2.16",
- "tsdown": "^0.22.0",
+ "prettier": "^3.9.6",
+ "prettier-plugin-svelte": "^4.1.1",
+ "publint": "^0.3.23",
+ "sherif": "^1.13.0",
+ "size-limit": "^13.0.3",
+ "tinyglobby": "^0.2.17",
+ "tsdown": "^0.22.14",
"typescript": "6.0.3",
- "vitest": "^4.1.6"
+ "vitest": "^4.1.10"
}
}
diff --git a/packages/angular-pacer/README.md b/packages/angular-pacer/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/angular-pacer/README.md
+++ b/packages/angular-pacer/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/angular-pacer/package.json b/packages/angular-pacer/package.json
index 3c8a443d9..dea553d46 100644
--- a/packages/angular-pacer/package.json
+++ b/packages/angular-pacer/package.json
@@ -108,12 +108,12 @@
"src"
],
"dependencies": {
- "@tanstack/angular-store": "^0.11.0",
+ "@tanstack/angular-store": "^0.11.1",
"@tanstack/pacer": "workspace:*"
},
"devDependencies": {
- "@angular/core": "^21.2.12",
- "@types/node": "^25.7.0"
+ "@angular/core": "^22.1.0",
+ "@types/node": "^26.1.2"
},
"peerDependencies": {
"@angular/core": ">=17.0.0"
diff --git a/packages/angular-pacer/src/debouncer/injectDebouncedValue.ts b/packages/angular-pacer/src/debouncer/injectDebouncedValue.ts
index 5c20e5660..0c0d26979 100644
--- a/packages/angular-pacer/src/debouncer/injectDebouncedValue.ts
+++ b/packages/angular-pacer/src/debouncer/injectDebouncedValue.ts
@@ -108,8 +108,7 @@ export function injectDebouncedValue(
const selector = hasInitialValue
? maybeSelector
: (initialOptionsOrSelector as
- | ((state: DebouncerState>) => TSelected)
- | undefined)
+ ((state: DebouncerState>) => TSelected) | undefined)
const debounced = injectDebouncedSignal(
initialValue,
diff --git a/packages/angular-pacer/src/queuer/injectQueuedValue.ts b/packages/angular-pacer/src/queuer/injectQueuedValue.ts
index 9eff79c03..414bd9474 100644
--- a/packages/angular-pacer/src/queuer/injectQueuedValue.ts
+++ b/packages/angular-pacer/src/queuer/injectQueuedValue.ts
@@ -61,8 +61,7 @@ export function injectQueuedValue<
value: Signal,
initialValueOrOptions?: TValue | QueuerOptions,
initialOptionsOrSelector?:
- | QueuerOptions
- | ((state: QueuerState) => TSelected),
+ QueuerOptions | ((state: QueuerState) => TSelected),
maybeSelector?: (state: QueuerState) => TSelected,
): QueuedSignal {
const hasSelector = typeof initialOptionsOrSelector === 'function'
@@ -79,8 +78,7 @@ export function injectQueuedValue<
const selector = hasInitialValue
? maybeSelector
: (initialOptionsOrSelector as
- | ((state: QueuerState) => TSelected)
- | undefined)
+ ((state: QueuerState) => TSelected) | undefined)
const linkedValue = linkedSignal(() => value())
const queuedValue = signal(initialValue)
diff --git a/packages/angular-pacer/src/rate-limiter/injectRateLimitedValue.ts b/packages/angular-pacer/src/rate-limiter/injectRateLimitedValue.ts
index 23bab1040..fa78261b7 100644
--- a/packages/angular-pacer/src/rate-limiter/injectRateLimitedValue.ts
+++ b/packages/angular-pacer/src/rate-limiter/injectRateLimitedValue.ts
@@ -81,8 +81,7 @@ export function injectRateLimitedValue(
const selector = hasInitialValue
? maybeSelector
: (initialOptionsOrSelector as
- | ((state: RateLimiterState) => TSelected)
- | undefined)
+ ((state: RateLimiterState) => TSelected) | undefined)
const rateLimited = injectRateLimitedSignal(
initialValue,
diff --git a/packages/angular-pacer/src/throttler/injectThrottledValue.ts b/packages/angular-pacer/src/throttler/injectThrottledValue.ts
index 8a91cc10f..206c2aafb 100644
--- a/packages/angular-pacer/src/throttler/injectThrottledValue.ts
+++ b/packages/angular-pacer/src/throttler/injectThrottledValue.ts
@@ -106,8 +106,7 @@ export function injectThrottledValue(
const selector = hasInitialValue
? maybeSelector
: (initialOptionsOrSelector as
- | ((state: ThrottlerState>) => TSelected)
- | undefined)
+ ((state: ThrottlerState>) => TSelected) | undefined)
const throttledValue = injectThrottledSignal(
initialValue,
diff --git a/packages/pacer-devtools/README.md b/packages/pacer-devtools/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/pacer-devtools/README.md
+++ b/packages/pacer-devtools/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/pacer-devtools/package.json b/packages/pacer-devtools/package.json
index c657658b3..218ebcae1 100644
--- a/packages/pacer-devtools/package.json
+++ b/packages/pacer-devtools/package.json
@@ -80,18 +80,18 @@
"@tanstack/pacer": ">=0.16.4"
},
"dependencies": {
- "@tanstack/devtools-ui": "0.5.2",
- "@tanstack/devtools-utils": "^0.5.0",
- "@tanstack/solid-store": "^0.11.0",
+ "@tanstack/devtools-ui": "0.6.0",
+ "@tanstack/devtools-utils": "^0.6.0",
+ "@tanstack/solid-store": "^0.11.1",
"clsx": "^2.1.1",
"csstype": "^3.2.3",
- "dayjs": "^1.11.20",
+ "dayjs": "^1.11.21",
"goober": "^2.1.19",
- "solid-js": "^1.9.12"
+ "solid-js": "^1.9.14"
},
"devDependencies": {
"rolldown-plugin-solid": "^0.2.1",
- "tsdown": "^0.22.0",
- "vite-plugin-solid": "^2.11.12"
+ "tsdown": "^0.22.14",
+ "vite-plugin-solid": "^2.11.14"
}
}
diff --git a/packages/pacer-devtools/src/styles/use-styles.ts b/packages/pacer-devtools/src/styles/use-styles.ts
index 91ca2312b..9e7e9d624 100644
--- a/packages/pacer-devtools/src/styles/use-styles.ts
+++ b/packages/pacer-devtools/src/styles/use-styles.ts
@@ -1,6 +1,6 @@
import * as goober from 'goober'
import { createEffect, createSignal } from 'solid-js'
-import { useTheme } from '@tanstack/devtools-ui'
+import { createTheme } from '@tanstack/devtools-ui'
import { tokens } from './tokens'
const stylesFactory = (theme: 'light' | 'dark') => {
@@ -376,7 +376,7 @@ const stylesFactory = (theme: 'light' | 'dark') => {
}
export function useStyles() {
- const { theme } = useTheme()
+ const { theme } = createTheme()
const [styles, setStyles] = createSignal(stylesFactory(theme()))
createEffect(() => {
setStyles(stylesFactory(theme()))
diff --git a/packages/pacer-lite/README.md b/packages/pacer-lite/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/pacer-lite/README.md
+++ b/packages/pacer-lite/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/pacer/README.md b/packages/pacer/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/pacer/README.md
+++ b/packages/pacer/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/pacer/package.json b/packages/pacer/package.json
index 7b17744b9..da8bf69b1 100644
--- a/packages/pacer/package.json
+++ b/packages/pacer/package.json
@@ -107,7 +107,7 @@
"src"
],
"dependencies": {
- "@tanstack/devtools-event-client": "^0.4.3",
- "@tanstack/store": "^0.11.0"
+ "@tanstack/devtools-event-client": "^0.5.0",
+ "@tanstack/store": "^0.11.1"
}
}
diff --git a/packages/pacer/src/async-debouncer.ts b/packages/pacer/src/async-debouncer.ts
index d24d721a7..33d6cd2b8 100644
--- a/packages/pacer/src/async-debouncer.ts
+++ b/packages/pacer/src/async-debouncer.ts
@@ -224,8 +224,7 @@ export class AsyncDebouncer {
asyncRetryers = new Map>()
#timeoutId: ReturnType | null = null
#resolvePreviousPromise:
- | ((value?: ReturnType | undefined) => void)
- | null = null
+ ((value?: ReturnType | undefined) => void) | null = null
constructor(
public fn: TFn,
diff --git a/packages/pacer/src/async-throttler.ts b/packages/pacer/src/async-throttler.ts
index b6bc30b3a..70c1d934d 100644
--- a/packages/pacer/src/async-throttler.ts
+++ b/packages/pacer/src/async-throttler.ts
@@ -236,8 +236,7 @@ export class AsyncThrottler {
asyncRetryers = new Map>()
#timeoutId: ReturnType | null = null
#resolvePreviousPromise:
- | ((value?: ReturnType | undefined) => void)
- | null = null
+ ((value?: ReturnType | undefined) => void) | null = null
constructor(
public fn: TFn,
diff --git a/packages/preact-pacer-devtools/README.md b/packages/preact-pacer-devtools/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/preact-pacer-devtools/README.md
+++ b/packages/preact-pacer-devtools/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/preact-pacer-devtools/package.json b/packages/preact-pacer-devtools/package.json
index 44bf80eac..ac471ecf6 100644
--- a/packages/preact-pacer-devtools/package.json
+++ b/packages/preact-pacer-devtools/package.json
@@ -52,13 +52,13 @@
"preact": ">=10.0.0"
},
"dependencies": {
- "@tanstack/devtools-utils": "^0.5.0",
+ "@tanstack/devtools-utils": "^0.6.0",
"@tanstack/pacer-devtools": "workspace:*"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
+ "@preact/preset-vite": "^2.10.6",
"@testing-library/preact": "^3.2.4",
"csstype": "^3.2.3",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
}
}
diff --git a/packages/preact-pacer/README.md b/packages/preact-pacer/README.md
index 8d46b1f9c..8203890b4 100644
--- a/packages/preact-pacer/README.md
+++ b/packages/preact-pacer/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/preact-pacer/package.json b/packages/preact-pacer/package.json
index ae5d1ba42..0d60a235b 100644
--- a/packages/preact-pacer/package.json
+++ b/packages/preact-pacer/package.json
@@ -109,12 +109,12 @@
},
"dependencies": {
"@tanstack/pacer": "workspace:*",
- "@tanstack/preact-store": "^0.13.1"
+ "@tanstack/preact-store": "^0.13.2"
},
"devDependencies": {
- "@preact/preset-vite": "^2.10.5",
+ "@preact/preset-vite": "^2.10.6",
"eslint-plugin-react-hooks": "^7.1.1",
- "preact": "^10.29.1"
+ "preact": "^10.29.8"
},
"peerDependencies": {
"preact": ">=10.0.0"
diff --git a/packages/react-pacer-devtools/README.md b/packages/react-pacer-devtools/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/react-pacer-devtools/README.md
+++ b/packages/react-pacer-devtools/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/react-pacer-devtools/package.json b/packages/react-pacer-devtools/package.json
index 071bb9e1a..3537f758f 100644
--- a/packages/react-pacer-devtools/package.json
+++ b/packages/react-pacer-devtools/package.json
@@ -53,12 +53,12 @@
"react-dom": ">=16.8"
},
"dependencies": {
- "@tanstack/devtools-utils": "^0.5.0",
+ "@tanstack/devtools-utils": "^0.6.0",
"@tanstack/pacer-devtools": "workspace:*"
},
"devDependencies": {
- "@eslint-react/eslint-plugin": "^5.7.7",
- "@vitejs/plugin-react": "^6.0.1",
+ "@eslint-react/eslint-plugin": "^5.18.3",
+ "@vitejs/plugin-react": "^6.0.5",
"csstype": "^3.2.3",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.1.1"
diff --git a/packages/react-pacer/README.md b/packages/react-pacer/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/react-pacer/README.md
+++ b/packages/react-pacer/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/react-pacer/package.json b/packages/react-pacer/package.json
index 6a2df9e4c..0c6d9b179 100644
--- a/packages/react-pacer/package.json
+++ b/packages/react-pacer/package.json
@@ -108,15 +108,15 @@
],
"dependencies": {
"@tanstack/pacer": "workspace:*",
- "@tanstack/react-store": "^0.11.0"
+ "@tanstack/react-store": "^0.11.1"
},
"devDependencies": {
- "@eslint-react/eslint-plugin": "^5.7.7",
- "@types/react": "^19.2.14",
- "@vitejs/plugin-react": "^6.0.1",
+ "@eslint-react/eslint-plugin": "^5.18.3",
+ "@types/react": "^19.2.18",
+ "@vitejs/plugin-react": "^6.0.5",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.1.1",
- "react": "^19.2.6"
+ "react": "^19.2.8"
},
"peerDependencies": {
"react": ">=16.8",
diff --git a/packages/solid-pacer-devtools/README.md b/packages/solid-pacer-devtools/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/solid-pacer-devtools/README.md
+++ b/packages/solid-pacer-devtools/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/solid-pacer-devtools/package.json b/packages/solid-pacer-devtools/package.json
index c7cc36c9e..3c105b47f 100644
--- a/packages/solid-pacer-devtools/package.json
+++ b/packages/solid-pacer-devtools/package.json
@@ -50,11 +50,11 @@
"solid-js": ">=1.9.7"
},
"dependencies": {
- "@tanstack/devtools-utils": "^0.5.0",
+ "@tanstack/devtools-utils": "^0.6.0",
"@tanstack/pacer-devtools": "workspace:*"
},
"devDependencies": {
"csstype": "^3.2.3",
- "vite-plugin-solid": "^2.11.12"
+ "vite-plugin-solid": "^2.11.14"
}
}
diff --git a/packages/solid-pacer/README.md b/packages/solid-pacer/README.md
index 5fbe334f4..c9747ef35 100644
--- a/packages/solid-pacer/README.md
+++ b/packages/solid-pacer/README.md
@@ -43,8 +43,9 @@
-
+
### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
# TanStack Pacer
diff --git a/packages/solid-pacer/package.json b/packages/solid-pacer/package.json
index 4a29dbb97..378fdb83f 100644
--- a/packages/solid-pacer/package.json
+++ b/packages/solid-pacer/package.json
@@ -104,11 +104,11 @@
],
"dependencies": {
"@tanstack/pacer": "workspace:*",
- "@tanstack/solid-store": "^0.11.0"
+ "@tanstack/solid-store": "^0.11.1"
},
"devDependencies": {
- "solid-js": "^1.9.12",
- "vite-plugin-solid": "^2.11.12"
+ "solid-js": "^1.9.14",
+ "vite-plugin-solid": "^2.11.14"
},
"peerDependencies": {
"solid-js": ">=1.9.5"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index cf9b63df8..c395f2938 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -21,98 +21,98 @@ importers:
.:
devDependencies:
'@changesets/cli':
- specifier: ^2.31.0
- version: 2.31.0(@types/node@25.7.0)
+ specifier: ^2.31.1
+ version: 2.31.1(@types/node@26.1.2)
'@faker-js/faker':
- specifier: ^10.4.0
- version: 10.4.0
+ specifier: ^10.5.0
+ version: 10.5.0
'@size-limit/preset-small-lib':
- specifier: ^12.1.0
- version: 12.1.0(size-limit@12.1.0(jiti@2.7.0))
+ specifier: ^13.0.3
+ version: 13.0.3(size-limit@13.0.3)
'@svitejs/changesets-changelog-github-compact':
specifier: ^1.2.0
version: 1.2.0
'@tanstack/eslint-config':
specifier: 0.4.0
- version: 0.4.0(@typescript-eslint/utils@8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ version: 0.4.0(@typescript-eslint/utils@8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
'@tanstack/typedoc-config':
specifier: 0.3.3
version: 0.3.3(typescript@6.0.3)
'@testing-library/jest-dom':
- specifier: ^6.9.1
- version: 6.9.1
+ specifier: ^7.0.0
+ version: 7.0.0(@testing-library/dom@10.4.1)
'@types/node':
- specifier: ^25.7.0
- version: 25.7.0
+ specifier: ^26.1.2
+ version: 26.1.2
eslint:
- specifier: ^10.3.0
- version: 10.8.0(jiti@2.7.0)
+ specifier: ^10.8.0
+ version: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
eslint-plugin-unused-imports:
specifier: ^4.4.1
- version: 4.4.1(@typescript-eslint/eslint-plugin@8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))
+ version: 4.4.1(@typescript-eslint/eslint-plugin@8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
happy-dom:
- specifier: ^20.9.0
- version: 20.9.0
+ specifier: ^20.11.1
+ version: 20.11.1
knip:
- specifier: ^6.13.1
- version: 6.15.0
+ specifier: ^6.32.0
+ version: 6.32.0
markdown-link-extractor:
- specifier: ^4.0.3
- version: 4.0.3
+ specifier: ^4.0.4
+ version: 4.0.4
nx:
- specifier: ^22.7.1
- version: 22.7.5
+ specifier: ^23.1.1
+ version: 23.1.1
premove:
specifier: ^4.0.0
version: 4.0.0
prettier:
- specifier: ^3.8.3
- version: 3.8.3
+ specifier: ^3.9.6
+ version: 3.9.6
prettier-plugin-svelte:
- specifier: ^3.5.2
- version: 3.5.2(prettier@3.8.3)(svelte@5.55.1(@typescript-eslint/types@8.60.0))
+ specifier: ^4.1.1
+ version: 4.1.1(prettier@3.9.6)(svelte@5.55.1(@typescript-eslint/types@8.66.0))
publint:
- specifier: ^0.3.21
- version: 0.3.21
+ specifier: ^0.3.23
+ version: 0.3.23
sherif:
- specifier: ^1.11.1
- version: 1.11.1
+ specifier: ^1.13.0
+ version: 1.13.0
size-limit:
- specifier: ^12.1.0
- version: 12.1.0(jiti@2.7.0)
+ specifier: ^13.0.3
+ version: 13.0.3
tinyglobby:
- specifier: ^0.2.16
+ specifier: ^0.2.17
version: 0.2.17
tsdown:
- specifier: ^0.22.0
- version: 0.22.1(oxc-resolver@11.20.0)(publint@0.3.21)(typescript@6.0.3)
+ specifier: ^0.22.14
+ version: 0.22.14(oxc-resolver@11.24.2)(publint@0.3.23)(typescript@6.0.3)
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/asyncBatch:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -124,44 +124,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.15)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/asyncDebounce:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -173,44 +173,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/asyncRateLimit:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -222,44 +222,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/asyncRetry:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -271,44 +271,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/asyncThrottle:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -320,44 +320,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/batch:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -369,44 +369,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/debounce:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -418,44 +418,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncBatchedCallback:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -467,44 +467,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncBatcher:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -516,44 +516,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncDebouncedCallback:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -565,44 +565,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncDebouncer:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -614,44 +614,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncQueuedSignal:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -663,44 +663,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncQueuer:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -712,44 +712,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncRateLimiter:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -761,44 +761,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncRateLimiterWithPersister:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -810,44 +810,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncThrottledCallback:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -859,44 +859,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectAsyncThrottler:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -908,44 +908,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectBatchedCallback:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -957,44 +957,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectBatcher:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1006,44 +1006,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectDebouncedCallback:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1055,44 +1055,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectDebouncedSignal:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1104,44 +1104,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectDebouncedValue:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1153,44 +1153,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectDebouncer:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1202,44 +1202,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectQueuedSignal:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1251,44 +1251,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectQueuedValue:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1300,44 +1300,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectQueuer:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1349,44 +1349,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectQueuerWithPersister:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1398,44 +1398,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectRateLimitedCallback:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1447,44 +1447,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectRateLimitedSignal:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1496,44 +1496,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectRateLimitedValue:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1545,44 +1545,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectRateLimiter:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1594,44 +1594,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectRateLimiterWithPersister:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1643,44 +1643,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectThrottledCallback:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1692,44 +1692,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectThrottledSignal:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1741,44 +1741,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectThrottledValue:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1790,44 +1790,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/injectThrottler:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1839,44 +1839,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/queue:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1888,44 +1888,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/rateLimit:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1937,44 +1937,44 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/angular/throttle:
dependencies:
'@angular/common':
- specifier: ^21.2.12
- version: 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^21.2.12
- version: 21.2.19
+ specifier: ^22.1.0
+ version: 22.1.0
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@angular/forms':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@angular/router':
- specifier: ^21.2.12
- version: 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)
'@tanstack/angular-pacer':
specifier: workspace:*
version: link:../../../packages/angular-pacer
@@ -1986,23 +1986,23 @@ importers:
version: 2.8.1
devDependencies:
'@angular/build':
- specifier: ^21.2.11
- version: 21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)
'@angular/cli':
- specifier: ^21.2.11
- version: 21.2.13(@types/node@25.7.0)(chokidar@5.0.0)
+ specifier: ^22.1.3
+ version: 22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)
'@angular/compiler-cli':
- specifier: ^21.2.12
- version: 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
jsdom:
- specifier: ^29.1.1
- version: 29.1.1
+ specifier: ^30.0.1
+ version: 30.0.1
typescript:
specifier: 6.0.3
version: 6.0.3
vitest:
- specifier: ^4.1.6
- version: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^4.1.10
+ version: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/preact/asyncBatch:
dependencies:
@@ -2010,15 +2010,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/asyncDebounce:
dependencies:
@@ -2026,15 +2026,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/asyncRateLimit:
dependencies:
@@ -2042,15 +2042,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/asyncRetry:
dependencies:
@@ -2058,15 +2058,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/asyncThrottle:
dependencies:
@@ -2074,15 +2074,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/batch:
dependencies:
@@ -2090,15 +2090,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/debounce:
dependencies:
@@ -2106,15 +2106,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/queue:
dependencies:
@@ -2122,15 +2122,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/rateLimit:
dependencies:
@@ -2138,15 +2138,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/throttle:
dependencies:
@@ -2154,15 +2154,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncBatchedCallback:
dependencies:
@@ -2170,15 +2170,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncBatcher:
dependencies:
@@ -2186,15 +2186,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncDebouncedCallback:
dependencies:
@@ -2202,15 +2202,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncDebouncer:
dependencies:
@@ -2218,15 +2218,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncQueuedState:
dependencies:
@@ -2234,15 +2234,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncQueuer:
dependencies:
@@ -2250,15 +2250,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncRateLimiter:
dependencies:
@@ -2266,15 +2266,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncRateLimiterWithPersister:
dependencies:
@@ -2282,15 +2282,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncThrottledCallback:
dependencies:
@@ -2298,15 +2298,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useAsyncThrottler:
dependencies:
@@ -2314,15 +2314,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useBatchedCallback:
dependencies:
@@ -2330,15 +2330,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useBatcher:
dependencies:
@@ -2346,15 +2346,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useDebouncedCallback:
dependencies:
@@ -2362,15 +2362,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useDebouncedState:
dependencies:
@@ -2378,15 +2378,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useDebouncedValue:
dependencies:
@@ -2394,15 +2394,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useDebouncer:
dependencies:
@@ -2410,15 +2410,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useQueuedState:
dependencies:
@@ -2426,15 +2426,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useQueuedValue:
dependencies:
@@ -2442,21 +2442,21 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useQueuer:
dependencies:
'@tanstack/preact-devtools':
- specifier: ^0.10.5
- version: 0.10.5(csstype@3.2.3)(preact@10.29.2)(solid-js@1.9.13)
+ specifier: ^0.10.9
+ version: 0.10.9(csstype@3.2.3)(preact@10.29.8)(solid-js@1.9.14)
'@tanstack/preact-pacer':
specifier: workspace:*
version: link:../../../packages/preact-pacer
@@ -2464,15 +2464,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer-devtools
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useQueuerWithPersister:
dependencies:
@@ -2480,15 +2480,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useRateLimitedCallback:
dependencies:
@@ -2496,15 +2496,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useRateLimitedState:
dependencies:
@@ -2512,15 +2512,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useRateLimitedValue:
dependencies:
@@ -2528,15 +2528,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useRateLimiter:
dependencies:
@@ -2544,15 +2544,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useRateLimiterWithPersister:
dependencies:
@@ -2560,15 +2560,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useThrottledCallback:
dependencies:
@@ -2576,15 +2576,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useThrottledState:
dependencies:
@@ -2592,15 +2592,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useThrottledValue:
dependencies:
@@ -2608,15 +2608,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/useThrottler:
dependencies:
@@ -2624,21 +2624,21 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/preact/util-comparison:
dependencies:
'@tanstack/preact-devtools':
- specifier: ^0.10.5
- version: 0.10.5(csstype@3.2.3)(preact@10.29.2)(solid-js@1.9.13)
+ specifier: ^0.10.9
+ version: 0.10.9(csstype@3.2.3)(preact@10.29.8)(solid-js@1.9.14)
'@tanstack/preact-pacer':
specifier: workspace:*
version: link:../../../packages/preact-pacer
@@ -2646,15 +2646,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/preact-pacer-devtools
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/asyncBatch:
dependencies:
@@ -2662,24 +2662,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/asyncDebounce:
dependencies:
@@ -2687,24 +2687,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/asyncRateLimit:
dependencies:
@@ -2712,24 +2712,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/asyncRetry:
dependencies:
@@ -2737,24 +2737,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/asyncThrottle:
dependencies:
@@ -2762,24 +2762,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/batch:
dependencies:
@@ -2787,24 +2787,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/debounce:
dependencies:
@@ -2812,24 +2812,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/queue:
dependencies:
@@ -2837,30 +2837,30 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@tanstack/react-devtools':
- specifier: 0.10.5
- version: 0.10.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(csstype@3.2.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(solid-js@1.9.13)
+ specifier: 0.10.9
+ version: 0.10.9(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(csstype@3.2.3)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(solid-js@1.9.14)
'@tanstack/react-pacer-devtools':
specifier: workspace:*
version: link:../../../packages/react-pacer-devtools
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/rateLimit:
dependencies:
@@ -2868,24 +2868,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/react-query-debounced-prefetch:
dependencies:
@@ -2893,30 +2893,30 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
'@tanstack/react-query':
- specifier: ^5.100.10
- version: 5.100.14(react@19.2.6)
+ specifier: ^5.101.4
+ version: 5.101.4(react@19.2.8)
'@tanstack/react-query-devtools':
- specifier: ^5.100.10
- version: 5.100.14(@tanstack/react-query@5.100.14(react@19.2.6))(react@19.2.6)
+ specifier: ^5.101.4
+ version: 5.101.4(@tanstack/react-query@5.101.4(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/react-query-queued-prefetch:
dependencies:
@@ -2924,30 +2924,30 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
'@tanstack/react-query':
- specifier: ^5.100.10
- version: 5.100.14(react@19.2.6)
+ specifier: ^5.101.4
+ version: 5.101.4(react@19.2.8)
'@tanstack/react-query-devtools':
- specifier: ^5.100.10
- version: 5.100.14(@tanstack/react-query@5.100.14(react@19.2.6))(react@19.2.6)
+ specifier: ^5.101.4
+ version: 5.101.4(@tanstack/react-query@5.101.4(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/react-query-throttled-prefetch:
dependencies:
@@ -2955,30 +2955,30 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
'@tanstack/react-query':
- specifier: ^5.100.10
- version: 5.100.14(react@19.2.6)
+ specifier: ^5.101.4
+ version: 5.101.4(react@19.2.8)
'@tanstack/react-query-devtools':
- specifier: ^5.100.10
- version: 5.100.14(@tanstack/react-query@5.100.14(react@19.2.6))(react@19.2.6)
+ specifier: ^5.101.4
+ version: 5.101.4(@tanstack/react-query@5.101.4(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/throttle:
dependencies:
@@ -2986,24 +2986,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncBatchedCallback:
dependencies:
@@ -3011,24 +3011,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncBatcher:
dependencies:
@@ -3036,24 +3036,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncDebouncedCallback:
dependencies:
@@ -3061,24 +3061,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncDebouncer:
dependencies:
@@ -3086,24 +3086,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncQueuedState:
dependencies:
@@ -3111,24 +3111,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncQueuer:
dependencies:
@@ -3136,24 +3136,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncRateLimiter:
dependencies:
@@ -3162,26 +3162,26 @@ importers:
version: link:../../../packages/react-pacer
'@tanstack/react-persister':
specifier: ^0.1.1
- version: 0.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 0.1.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncRateLimiterWithPersister:
dependencies:
@@ -3190,26 +3190,26 @@ importers:
version: link:../../../packages/react-pacer
'@tanstack/react-persister':
specifier: ^0.1.1
- version: 0.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 0.1.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncThrottledCallback:
dependencies:
@@ -3217,24 +3217,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useAsyncThrottler:
dependencies:
@@ -3242,24 +3242,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useBatchedCallback:
dependencies:
@@ -3267,24 +3267,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useBatcher:
dependencies:
@@ -3292,24 +3292,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useDebouncedCallback:
dependencies:
@@ -3317,24 +3317,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useDebouncedState:
dependencies:
@@ -3342,24 +3342,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useDebouncedValue:
dependencies:
@@ -3367,24 +3367,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useDebouncer:
dependencies:
@@ -3392,24 +3392,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useQueuedState:
dependencies:
@@ -3417,24 +3417,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useQueuedValue:
dependencies:
@@ -3442,24 +3442,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useQueuer:
dependencies:
@@ -3468,32 +3468,32 @@ importers:
version: link:../../../packages/react-pacer
'@tanstack/react-persister':
specifier: ^0.1.1
- version: 0.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 0.1.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@tanstack/react-devtools':
- specifier: 0.10.5
- version: 0.10.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(csstype@3.2.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(solid-js@1.9.13)
+ specifier: 0.10.9
+ version: 0.10.9(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(csstype@3.2.3)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(solid-js@1.9.14)
'@tanstack/react-pacer-devtools':
specifier: workspace:*
version: link:../../../packages/react-pacer-devtools
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useQueuerWithPersister:
dependencies:
@@ -3502,26 +3502,26 @@ importers:
version: link:../../../packages/react-pacer
'@tanstack/react-persister':
specifier: ^0.1.1
- version: 0.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 0.1.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useRateLimitedCallback:
dependencies:
@@ -3529,24 +3529,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useRateLimitedState:
dependencies:
@@ -3554,24 +3554,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useRateLimitedValue:
dependencies:
@@ -3579,24 +3579,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useRateLimiter:
dependencies:
@@ -3605,26 +3605,26 @@ importers:
version: link:../../../packages/react-pacer
'@tanstack/react-persister':
specifier: ^0.1.1
- version: 0.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 0.1.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useRateLimiterWithPersister:
dependencies:
@@ -3633,26 +3633,26 @@ importers:
version: link:../../../packages/react-pacer
'@tanstack/react-persister':
specifier: ^0.1.1
- version: 0.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 0.1.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useThrottledCallback:
dependencies:
@@ -3660,24 +3660,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useThrottledState:
dependencies:
@@ -3685,24 +3685,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useThrottledValue:
dependencies:
@@ -3710,24 +3710,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/useThrottler:
dependencies:
@@ -3735,24 +3735,24 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/react/util-comparison:
dependencies:
@@ -3760,30 +3760,30 @@ importers:
specifier: workspace:*
version: link:../../../packages/react-pacer
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
react-dom:
- specifier: ^19.2.6
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.8
+ version: 19.2.8(react@19.2.8)
devDependencies:
'@tanstack/react-devtools':
- specifier: 0.10.5
- version: 0.10.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(csstype@3.2.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(solid-js@1.9.13)
+ specifier: 0.10.9
+ version: 0.10.9(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(csstype@3.2.3)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(solid-js@1.9.14)
'@tanstack/react-pacer-devtools':
specifier: workspace:*
version: link:../../../packages/react-pacer-devtools
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@types/react-dom':
- specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ specifier: ^19.2.4
+ version: 19.2.4(@types/react@19.2.18)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/solid/asyncBatch:
dependencies:
@@ -3791,15 +3791,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/asyncDebounce:
dependencies:
@@ -3807,15 +3807,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/asyncRateLimit:
dependencies:
@@ -3823,15 +3823,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/asyncThrottle:
dependencies:
@@ -3839,15 +3839,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/batch:
dependencies:
@@ -3855,15 +3855,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createAsyncBatcher:
dependencies:
@@ -3871,15 +3871,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createAsyncDebouncer:
dependencies:
@@ -3887,15 +3887,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createAsyncQueuer:
dependencies:
@@ -3903,15 +3903,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createAsyncRateLimiter:
dependencies:
@@ -3919,15 +3919,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createAsyncThrottler:
dependencies:
@@ -3935,15 +3935,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createBatcher:
dependencies:
@@ -3951,15 +3951,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createDebouncedSignal:
dependencies:
@@ -3967,15 +3967,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createDebouncedValue:
dependencies:
@@ -3983,15 +3983,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createDebouncer:
dependencies:
@@ -3999,21 +3999,21 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createQueuedSignal:
dependencies:
'@tanstack/solid-devtools':
- specifier: 0.8.5
- version: 0.8.5(csstype@3.2.3)(solid-js@1.9.13)
+ specifier: 0.8.9
+ version: 0.8.9(csstype@3.2.3)(solid-js@1.9.14)
'@tanstack/solid-pacer':
specifier: workspace:*
version: link:../../../packages/solid-pacer
@@ -4021,21 +4021,21 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer-devtools
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createQueuer:
dependencies:
'@tanstack/solid-devtools':
- specifier: 0.8.5
- version: 0.8.5(csstype@3.2.3)(solid-js@1.9.13)
+ specifier: 0.8.9
+ version: 0.8.9(csstype@3.2.3)(solid-js@1.9.14)
'@tanstack/solid-pacer':
specifier: workspace:*
version: link:../../../packages/solid-pacer
@@ -4043,15 +4043,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer-devtools
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createRateLimitedSignal:
dependencies:
@@ -4059,15 +4059,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createRateLimitedValue:
dependencies:
@@ -4075,15 +4075,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createRateLimiter:
dependencies:
@@ -4091,15 +4091,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createThrottledSignal:
dependencies:
@@ -4107,15 +4107,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createThrottledValue:
dependencies:
@@ -4123,15 +4123,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/createThrottler:
dependencies:
@@ -4139,15 +4139,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/debounce:
dependencies:
@@ -4155,21 +4155,21 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/queue:
dependencies:
'@tanstack/solid-devtools':
- specifier: 0.8.5
- version: 0.8.5(csstype@3.2.3)(solid-js@1.9.13)
+ specifier: 0.8.9
+ version: 0.8.9(csstype@3.2.3)(solid-js@1.9.14)
'@tanstack/solid-pacer':
specifier: workspace:*
version: link:../../../packages/solid-pacer
@@ -4177,15 +4177,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer-devtools
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/rateLimit:
dependencies:
@@ -4193,15 +4193,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/solid/throttle:
dependencies:
@@ -4209,15 +4209,15 @@ importers:
specifier: workspace:*
version: link:../../../packages/solid-pacer
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
examples/vanilla/LiteBatcher:
dependencies:
@@ -4226,8 +4226,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/LiteDebouncer:
dependencies:
@@ -4236,8 +4236,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/LiteQueuer:
dependencies:
@@ -4246,8 +4246,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/LiteRateLimiter:
dependencies:
@@ -4256,8 +4256,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/LiteThrottler:
dependencies:
@@ -4266,8 +4266,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/liteBatch:
dependencies:
@@ -4276,8 +4276,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/liteDebounce:
dependencies:
@@ -4286,8 +4286,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/liteQueue:
dependencies:
@@ -4296,8 +4296,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/liteRateLimit:
dependencies:
@@ -4306,8 +4306,8 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
examples/vanilla/liteThrottle:
dependencies:
@@ -4316,48 +4316,48 @@ importers:
version: link:../../../packages/pacer-lite
devDependencies:
vite:
- specifier: ^8.0.12
- version: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ specifier: ^8.2.0
+ version: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
packages/angular-pacer:
dependencies:
'@tanstack/angular-store':
- specifier: ^0.11.0
- version: 0.11.0(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ specifier: ^0.11.1
+ version: 0.11.1(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@tanstack/pacer':
specifier: workspace:*
version: link:../pacer
devDependencies:
'@angular/core':
- specifier: ^21.2.12
- version: 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ specifier: ^22.1.0
+ version: 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@types/node':
- specifier: ^25.7.0
- version: 25.7.0
+ specifier: ^26.1.2
+ version: 26.1.2
packages/pacer:
dependencies:
'@tanstack/devtools-event-client':
- specifier: ^0.4.3
- version: 0.4.3
+ specifier: ^0.5.0
+ version: 0.5.0
'@tanstack/store':
- specifier: ^0.11.0
- version: 0.11.0
+ specifier: ^0.11.1
+ version: 0.11.1
packages/pacer-devtools:
dependencies:
'@tanstack/devtools-ui':
- specifier: 0.5.2
- version: 0.5.2(csstype@3.2.3)(solid-js@1.9.13)
+ specifier: 0.6.0
+ version: 0.6.0(csstype@3.2.3)(solid-js@1.9.14)
'@tanstack/devtools-utils':
- specifier: ^0.5.0
- version: 0.5.0(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@types/react@19.2.15)(preact@10.29.2)(react@19.2.6)(solid-js@1.9.13)
+ specifier: ^0.6.0
+ version: 0.6.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@types/react@19.2.18)(preact@10.29.8)(react@19.2.8)(solid-js@1.9.14)(svelte@5.55.1(@typescript-eslint/types@8.66.0))
'@tanstack/pacer':
specifier: workspace:*
version: link:../pacer
'@tanstack/solid-store':
- specifier: ^0.11.0
- version: 0.11.0(solid-js@1.9.13)
+ specifier: ^0.11.1
+ version: 0.11.1(solid-js@1.9.14)
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -4365,24 +4365,24 @@ importers:
specifier: ^3.2.3
version: 3.2.3
dayjs:
- specifier: ^1.11.20
+ specifier: ^1.11.21
version: 1.11.21
goober:
specifier: ^2.1.19
version: 2.1.19(csstype@3.2.3)
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
devDependencies:
rolldown-plugin-solid:
specifier: ^0.2.1
- version: 0.2.1(rolldown@1.0.3)(solid-js@1.9.13)
+ version: 0.2.1(rolldown@1.2.3)(solid-js@1.9.14)(supports-color@7.2.0)
tsdown:
- specifier: ^0.22.0
- version: 0.22.1(oxc-resolver@11.20.0)(publint@0.3.21)(typescript@6.0.3)
+ specifier: ^0.22.14
+ version: 0.22.14(oxc-resolver@11.24.2)(publint@0.3.23)(typescript@6.0.3)
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
packages/pacer-lite:
devDependencies:
@@ -4396,40 +4396,40 @@ importers:
specifier: workspace:*
version: link:../pacer
'@tanstack/preact-store':
- specifier: ^0.13.1
- version: 0.13.1(preact@10.29.2)
+ specifier: ^0.13.2
+ version: 0.13.2(preact@10.29.8)
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
eslint-plugin-react-hooks:
specifier: ^7.1.1
- version: 7.1.1(eslint@10.8.0(jiti@2.7.0))
+ version: 7.1.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
packages/preact-pacer-devtools:
dependencies:
'@tanstack/devtools-utils':
- specifier: ^0.5.0
- version: 0.5.0(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@types/react@19.2.15)(preact@10.29.2)(react@19.2.6)(solid-js@1.9.13)
+ specifier: ^0.6.0
+ version: 0.6.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@types/react@19.2.18)(preact@10.29.8)(react@19.2.8)(solid-js@1.9.14)(svelte@5.55.1(@typescript-eslint/types@8.66.0))
'@tanstack/pacer-devtools':
specifier: workspace:*
version: link:../pacer-devtools
devDependencies:
'@preact/preset-vite':
- specifier: ^2.10.5
- version: 2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.10.6
+ version: 2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
'@testing-library/preact':
specifier: ^3.2.4
- version: 3.2.4(preact@10.29.2)
+ version: 3.2.4(preact@10.29.8)
csstype:
specifier: ^3.2.3
version: 3.2.3
preact:
- specifier: ^10.29.1
- version: 10.29.2
+ specifier: ^10.29.8
+ version: 10.29.8
packages/react-pacer:
dependencies:
@@ -4437,36 +4437,36 @@ importers:
specifier: workspace:*
version: link:../pacer
'@tanstack/react-store':
- specifier: ^0.11.0
- version: 0.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^0.11.1
+ version: 0.11.1(react-dom@19.2.6(react@19.2.8))(react@19.2.8)
react-dom:
specifier: '>=16.8'
- version: 19.2.6(react@19.2.6)
+ version: 19.2.6(react@19.2.8)
devDependencies:
'@eslint-react/eslint-plugin':
- specifier: ^5.7.7
- version: 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ specifier: ^5.18.3
+ version: 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.18
+ version: 19.2.18
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
eslint-plugin-react-compiler:
specifier: 19.1.0-rc.2
- version: 19.1.0-rc.2(eslint@10.8.0(jiti@2.7.0))
+ version: 19.1.0-rc.2(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
eslint-plugin-react-hooks:
specifier: ^7.1.1
- version: 7.1.1(eslint@10.8.0(jiti@2.7.0))
+ version: 7.1.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
react:
- specifier: ^19.2.6
- version: 19.2.6
+ specifier: ^19.2.8
+ version: 19.2.8
packages/react-pacer-devtools:
dependencies:
'@tanstack/devtools-utils':
- specifier: ^0.5.0
- version: 0.5.0(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@types/react@19.2.15)(preact@10.29.2)(react@19.2.6)(solid-js@1.9.13)
+ specifier: ^0.6.0
+ version: 0.6.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@types/react@19.2.15)(preact@10.29.8)(react@19.2.6)(solid-js@1.9.14)(svelte@5.55.1(@typescript-eslint/types@8.66.0))
'@tanstack/pacer-devtools':
specifier: workspace:*
version: link:../pacer-devtools
@@ -4484,20 +4484,20 @@ importers:
version: 19.2.6(react@19.2.6)
devDependencies:
'@eslint-react/eslint-plugin':
- specifier: ^5.7.7
- version: 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ specifier: ^5.18.3
+ version: 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
'@vitejs/plugin-react':
- specifier: ^6.0.1
- version: 6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^6.0.5
+ version: 6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
csstype:
specifier: ^3.2.3
version: 3.2.3
eslint-plugin-react-compiler:
specifier: 19.1.0-rc.2
- version: 19.1.0-rc.2(eslint@10.8.0(jiti@2.7.0))
+ version: 19.1.0-rc.2(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
eslint-plugin-react-hooks:
specifier: ^7.1.1
- version: 7.1.1(eslint@10.8.0(jiti@2.7.0))
+ version: 7.1.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
packages/solid-pacer:
dependencies:
@@ -4505,21 +4505,21 @@ importers:
specifier: workspace:*
version: link:../pacer
'@tanstack/solid-store':
- specifier: ^0.11.0
- version: 0.11.0(solid-js@1.9.13)
+ specifier: ^0.11.1
+ version: 0.11.1(solid-js@1.9.14)
devDependencies:
solid-js:
- specifier: ^1.9.12
- version: 1.9.13
+ specifier: ^1.9.14
+ version: 1.9.14
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
packages/solid-pacer-devtools:
dependencies:
'@tanstack/devtools-utils':
- specifier: ^0.5.0
- version: 0.5.0(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@types/react@19.2.15)(preact@10.29.2)(react@19.2.6)(solid-js@1.9.13)
+ specifier: ^0.6.0
+ version: 0.6.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@types/react@19.2.18)(preact@10.29.8)(react@19.2.8)(solid-js@1.9.13)(svelte@5.55.1(@typescript-eslint/types@8.66.0))
'@tanstack/pacer-devtools':
specifier: workspace:*
version: link:../pacer-devtools
@@ -4531,111 +4531,57 @@ importers:
specifier: ^3.2.3
version: 3.2.3
vite-plugin-solid:
- specifier: ^2.11.12
- version: 2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ specifier: ^2.11.14
+ version: 2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.13)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
packages:
'@adobe/css-tools@4.4.4':
resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
- '@algolia/abtesting@1.14.1':
- resolution: {integrity: sha512-Dkj0BgPiLAaim9sbQ97UKDFHJE/880wgStAM18U++NaJ/2Cws34J5731ovJifr6E3Pv4T2CqvMXf8qLCC417Ew==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-abtesting@5.48.1':
- resolution: {integrity: sha512-LV5qCJdj+/m9I+Aj91o+glYszrzd7CX6NgKaYdTOj4+tUYfbS62pwYgUfZprYNayhkQpVFcrW8x8ZlIHpS23Vw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-analytics@5.48.1':
- resolution: {integrity: sha512-/AVoMqHhPm14CcHq7mwB+bUJbfCv+jrxlNvRjXAuO+TQa+V37N8k1b0ijaRBPdmSjULMd8KtJbQyUyabXOu6Kg==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-common@5.48.1':
- resolution: {integrity: sha512-VXO+qu2Ep6ota28ktvBm3sG53wUHS2n7bgLWmce5jTskdlCD0/JrV4tnBm1l7qpla1CeoQb8D7ShFhad+UoSOw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-insights@5.48.1':
- resolution: {integrity: sha512-zl+Qyb0nLg+Y5YvKp1Ij+u9OaPaKg2/EPzTwKNiVyOHnQJlFxmXyUZL1EInczAZsEY8hVpPCLtNfhMhfxluXKQ==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-personalization@5.48.1':
- resolution: {integrity: sha512-r89Qf9Oo9mKWQXumRu/1LtvVJAmEDpn8mHZMc485pRfQUMAwSSrsnaw1tQ3sszqzEgAr1c7rw6fjBI+zrAXTOw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-query-suggestions@5.48.1':
- resolution: {integrity: sha512-TPKNPKfghKG/bMSc7mQYD9HxHRUkBZA4q1PEmHgICaSeHQscGqL4wBrKkhfPlDV1uYBKW02pbFMUhsOt7p4ZpA==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-search@5.48.1':
- resolution: {integrity: sha512-4Fu7dnzQyQmMFknYwTiN/HxPbH4DyxvQ1m+IxpPp5oslOgz8m6PG5qhiGbqJzH4HiT1I58ecDiCAC716UyVA8Q==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/ingestion@1.48.1':
- resolution: {integrity: sha512-/RFq3TqtXDUUawwic/A9xylA2P3LDMO8dNhphHAUOU51b1ZLHrmZ6YYJm3df1APz7xLY1aht6okCQf+/vmrV9w==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/monitoring@1.48.1':
- resolution: {integrity: sha512-Of0jTeAZRyRhC7XzDSjJef0aBkgRcvRAaw0ooYRlOw57APii7lZdq+layuNdeL72BRq1snaJhoMMwkmLIpJScw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/recommend@5.48.1':
- resolution: {integrity: sha512-bE7JcpFXzxF5zHwj/vkl2eiCBvyR1zQ7aoUdO+GDXxGp0DGw7nI0p8Xj6u8VmRQ+RDuPcICFQcCwRIJT5tDJFw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/requester-browser-xhr@5.48.1':
- resolution: {integrity: sha512-MK3wZ2koLDnvH/AmqIF1EKbJlhRS5j74OZGkLpxI4rYvNi9Jn/C7vb5DytBnQ4KUWts7QsmbdwHkxY5txQHXVw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/requester-fetch@5.48.1':
- resolution: {integrity: sha512-2oDT43Y5HWRSIQMPQI4tA/W+TN/N2tjggZCUsqQV440kxzzoPGsvv9QP1GhQ4CoDa+yn6ygUsGp6Dr+a9sPPSg==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/requester-node-http@5.48.1':
- resolution: {integrity: sha512-xcaCqbhupVWhuBP1nwbk1XNvwrGljozutEiLx06mvqDf3o8cHyEgQSHS4fKJM+UAggaWVnnFW+Nne5aQ8SUJXg==}
- engines: {node: '>= 14.0.0'}
-
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@angular-devkit/architect@0.2102.13':
- resolution: {integrity: sha512-fheyi0gPx6b7tT+WQ+ePlzdGqKjPLUK72wg5Z9pkVtQ5+VN/8yB9mlRlmoivngd2FeNG9wMeNynWZGYycnOWVw==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular-devkit/architect@0.2201.3':
+ resolution: {integrity: sha512-5WX6rooTQZCh+yE9k3O5hc7nnQtzy1nw6fQpaTuCzIgPG8teQuVtdxegBsM3OcjJac1r+qJLo+KmTRfnqcfsyg==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
- '@angular-devkit/core@21.2.13':
- resolution: {integrity: sha512-9jLaHcUr6BumIY9nCsBib1q62p259nf++gd2igYJ7mLm1w/0wEacsZ1cC8wCGEe6vx8a+DrD+EVCQ6zivePG2A==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular-devkit/core@22.1.3':
+ resolution: {integrity: sha512-ASK8oZVElt/Zpz5FrzJjLnnUbzp/fW57eFFSRgpA+n9KRnuFi6YvNdSS3HkG5049Jcukce+PiMBdfzw/jBVkEw==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
chokidar: ^5.0.0
peerDependenciesMeta:
chokidar:
optional: true
- '@angular-devkit/schematics@21.2.13':
- resolution: {integrity: sha512-gifpOcMNiAy49lQmQKhzpxoSfS3qJQSEdJSF5m7RVFkAcmllfcCD76GPN4dhho3wdAnbZ3qr54LtDqrGY4xNjw==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
-
- '@angular/build@21.2.13':
- resolution: {integrity: sha512-Y9TDAaTQ+E5LScCKA/hPZmns/7Mpu6J2BiPj2cETA1xNjvgRpeb5Mh32KuhZb20NSFLvjpdnLuBTTtbym7hevw==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- '@angular/compiler': ^21.0.0
- '@angular/compiler-cli': ^21.0.0
- '@angular/core': ^21.0.0
- '@angular/localize': ^21.0.0
- '@angular/platform-browser': ^21.0.0
- '@angular/platform-server': ^21.0.0
- '@angular/service-worker': ^21.0.0
- '@angular/ssr': ^21.2.13
+ '@angular-devkit/schematics@22.1.3':
+ resolution: {integrity: sha512-ebY5bwZVB0onxxyTbJch//VidVVV8jo/F13n+TV5s/3ZywsC3/XZsfMHaxlFmpvP/G17+/C9JVoEXT+uwjT+/Q==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+
+ '@angular/build@22.1.3':
+ resolution: {integrity: sha512-Hjen3LcVZUCNZy+epgO+/PMUpD/L8Y4vODS+Q8F0Lkva7YWQwycbJtrEr6xvFfMxp6xexxxIwB9+5b8voKSihQ==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ '@angular/compiler': ^22.0.0
+ '@angular/compiler-cli': ^22.0.0
+ '@angular/core': ^22.0.0
+ '@angular/localize': ^22.0.0
+ '@angular/platform-browser': ^22.0.0
+ '@angular/platform-server': ^22.0.0
+ '@angular/service-worker': ^22.0.0
+ '@angular/ssr': ^22.1.3
+ istanbul-lib-instrument: ^6.0.0
karma: ^6.4.0
less: ^4.2.0
- ng-packagr: ^21.0.0
+ ng-packagr: ^22.0.0
postcss: ^8.4.0
+ rollup: ^4.0.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
tslib: ^2.3.0
- typescript: '>=5.9 <6.0'
+ typescript: '>=6.0 <6.1'
vitest: ^4.0.8
peerDependenciesMeta:
'@angular/core':
@@ -4650,6 +4596,8 @@ packages:
optional: true
'@angular/ssr':
optional: true
+ istanbul-lib-instrument:
+ optional: true
karma:
optional: true
less:
@@ -4658,43 +4606,45 @@ packages:
optional: true
postcss:
optional: true
+ rollup:
+ optional: true
tailwindcss:
optional: true
vitest:
optional: true
- '@angular/cli@21.2.13':
- resolution: {integrity: sha512-j1kOV/f0og/3xCwG7Y8RyPd6V7uYfX2NuvXbvN1mzgxLLN2mu6CTsvPg5l/9Pu9SJI3KOPRgDxWyuP3k8KuzMg==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular/cli@22.1.3':
+ resolution: {integrity: sha512-GB1Pv8CXAHXE2/hqiwSGD6JRIyT4wswadjH1j3DH2+6os1zc7CBm28/YtlKPPIHZKVOZLDqV6uW+bRQTtdOw2A==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
- '@angular/common@21.2.19':
- resolution: {integrity: sha512-Rvo/VXI0kUmfQT7+OeAjv526OJlf/WrLnJq1Tz84Jkyv9bs9SOMTCT6m4+boo8gxVNdrcxvGU3Q0o2jZzKceSg==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ '@angular/common@22.1.0':
+ resolution: {integrity: sha512-67L8AS00egxwEKnoMhNDxy+TY+eKOwvwa+os0Odq8nLm7+Qh7JnMVeub8hfncpenOFqlC/RUjO2W9H7Gd2veNA==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0}
peerDependencies:
- '@angular/core': 21.2.19
+ '@angular/core': 22.1.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/compiler-cli@21.2.15':
- resolution: {integrity: sha512-/MU7OA9d/e9P5SthR+N6JJObBmzcGsgNQaeQ2YfSUnU0lCRVQweTWwxLFDbfU6UX8MZFWB6pdI57zod8r5kXUw==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ '@angular/compiler-cli@22.1.0':
+ resolution: {integrity: sha512-jL89dbzkrV8AeLaxedBgT7ErMnbfi2dvwDJuCrUgm3eCNfbcOpGbNxzH+wDgvbRg2Lhj11/u3JPbW50xA6rvvg==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0}
hasBin: true
peerDependencies:
- '@angular/compiler': 21.2.15
- typescript: '>=5.9 <6.1'
+ '@angular/compiler': 22.1.0
+ typescript: '>=6.0 <6.1'
peerDependenciesMeta:
typescript:
optional: true
- '@angular/compiler@21.2.19':
- resolution: {integrity: sha512-vuF5i1t14ftJiHXVVLgDYLWkT99QuajphcUHy1VZaMX3FiqSGXRV62g+R2RMxL0OJ5C1ai8xTHKPx9n1lQFyFg==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ '@angular/compiler@22.1.0':
+ resolution: {integrity: sha512-WCmuPnuXgqnqrkbrwqQRyldi1k3rlzNLVDl8ntINF7XWuJh0KfQLEkRK0FCCmBztWJkbGug4RBVnKTWlKhRzCQ==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0}
- '@angular/core@21.2.19':
- resolution: {integrity: sha512-PVoXD1kBexOJLkFzKx2zBY/0oZJXGru0eGn2hu0q5n3vkZlYsR1yRolfGenK1gZE48Qibiw/ttg/X/pAIPEZGg==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ '@angular/core@22.1.0':
+ resolution: {integrity: sha512-X5UaMuOCI4HAvSQIs3QtM+5e0Cni16DRaHUIL3BIBd4ZQNnSH3pZ25TsKQ8Jlu/3hAQ9rzV278kNQcecooGJ7g==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0}
peerDependencies:
- '@angular/compiler': 21.2.19
+ '@angular/compiler': 22.1.0
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0 || ~0.16.0
peerDependenciesMeta:
@@ -4703,78 +4653,91 @@ packages:
zone.js:
optional: true
- '@angular/forms@21.2.15':
- resolution: {integrity: sha512-swGUHgbBrPNvODPR9qBP6+vT2EHiyW361iEgS3HpTmvDhF/kD4l8NE0vh3P5N0DnEtGh4umOCKfQ1w6hPJ7lqA==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ '@angular/forms@22.1.0':
+ resolution: {integrity: sha512-nWlSM/pPp78Sx/fBM/tFEgZxdfZe50LkCE2/hkO22Fi1UM2maGc43LDsu/s6l0q9hFep4Wj+xa30KXDBS7Cn8A==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0}
peerDependencies:
- '@angular/common': 21.2.15
- '@angular/core': 21.2.15
- '@angular/platform-browser': 21.2.15
+ '@angular/common': 22.1.0
+ '@angular/core': 22.1.0
+ '@angular/platform-browser': 22.1.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/platform-browser@21.2.15':
- resolution: {integrity: sha512-O4ZHVV/rxkK1AuiD9M3UssL/HkoQvBcZy2+U421IMNibclGhwH9aRwc/0ZlQ7zpseS9+KPZ23FebvN4/92IbPg==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ '@angular/platform-browser@22.1.0':
+ resolution: {integrity: sha512-gqUYDUiPfwbaLYdH8WLnOLl3feo3OcNpnMO08HBHaUdi4TLNkC28xwa9fC6ANyYD22QZ5A3abSg8fmR6upWMwg==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0}
peerDependencies:
- '@angular/animations': 21.2.15
- '@angular/common': 21.2.15
- '@angular/core': 21.2.15
+ '@angular/animations': 22.1.0
+ '@angular/common': 22.1.0
+ '@angular/core': 22.1.0
peerDependenciesMeta:
'@angular/animations':
optional: true
- '@angular/router@21.2.15':
- resolution: {integrity: sha512-Cej4hYkmaTB6wXn1xQPlr4O1wHgUD0WLv//Oue1IssKqL8vkzic5f5x/H/bxtxxGlSnc+i6uIUF/lvjdGoWk/A==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ '@angular/router@22.1.0':
+ resolution: {integrity: sha512-42Bs0g+tV2gE70Lqnt+VD/+DWbvWwQcg8QgXkTIu3A504tYknrZG/wmvki2AJGyZhmyQ46B4pfXLG4WDP8MFSA==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0}
peerDependencies:
- '@angular/common': 21.2.15
- '@angular/core': 21.2.15
- '@angular/platform-browser': 21.2.15
+ '@angular/common': 22.1.0
+ '@angular/core': 22.1.0
+ '@angular/platform-browser': 22.1.0
rxjs: ^6.5.3 || ^7.4.0
- '@asamuzakjp/css-color@5.1.11':
- resolution: {integrity: sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
-
- '@asamuzakjp/dom-selector@7.1.1':
- resolution: {integrity: sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
-
- '@asamuzakjp/generational-cache@1.0.1':
- resolution: {integrity: sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ '@asamuzakjp/css-color@6.0.5':
+ resolution: {integrity: sha512-mbhpPMmnw/kwW19aRNmSUl1QzLbdGo1SCuE49BT98MNwqF6zaHb3o2owssFc/PEO/4t2UjqtCNwocuDtJornzA==}
+ engines: {node: ^22.13.0 || >=24.0.0}
- '@asamuzakjp/nwsapi@2.3.9':
- resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
+ '@asamuzakjp/dom-selector@8.3.2':
+ resolution: {integrity: sha512-93Z1N+BQNXysodoicpOIyNh2drHfz/CTf9nnT0FEx72GJcIiwgydD7tGAr78j41LsYn3hlRn+LdGPuBLn1Bl8Q==}
+ engines: {node: ^22.13.0 || >=24.0.0}
'@babel/code-frame@7.29.0':
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@8.0.0':
+ resolution: {integrity: sha512-dYYg153EyN2Ekbqw2zAsbd6/JR+9N2SEoC7YV2GyyqMM7x9bLDTjBD6XBhSMLH0wtIVyJj03jWNriQhaN+eoCw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/compat-data@7.29.0':
resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@8.0.0':
+ resolution: {integrity: sha512-DOjnob/cXOUgDOozCDeq/aK2p5y8dUIVdf6tNhEV1HQRd6I8aQ4f4fbtHRVEvb6lP3BGomrKHiS8ICAASSVQSw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/core@7.29.0':
resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
engines: {node: '>=6.9.0'}
+ '@babel/core@8.0.1':
+ resolution: {integrity: sha512-5FgxM4dLQpMJHSiVATk8foW263dVHQHBVpXYiimNECVWG01f4nFyEbQixeT6Mwvg7TayREJ2gpKl3o2RoMdnqw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/generator@7.29.1':
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@8.0.0-rc.6':
- resolution: {integrity: sha512-6mIzgVK8DgEzvIapoQwhXTMnnkuE4STQmVv9H03i/tZ2ml8oev3TRvZJgTenK2Bsq0YWNtzOrFdTyNzCMFtjJQ==}
+ '@babel/generator@8.0.0':
+ resolution: {integrity: sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g==}
engines: {node: ^22.18.0 || >=24.11.0}
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-annotate-as-pure@8.0.0':
+ resolution: {integrity: sha512-NSpMkMsvvZqzThJ0p1B02cbtA2ObEyfBvq950bmNkyxsxvcxwhvvCB036rKhlEnuBBo30bOrk13u3FzlKSoRrw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-compilation-targets@7.28.6':
resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@8.0.0':
+ resolution: {integrity: sha512-JwculLABZvyPvyLBpwU/E/IbH2uM3mnxNtIJpxnIfb24y1PrdVxK5Dqjle4DpgqpGRnwgC7G8IkzPdSXZrO1Ew==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-create-class-features-plugin@7.28.6':
resolution: {integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==}
engines: {node: '>=6.9.0'}
@@ -4785,6 +4748,10 @@ packages:
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-globals@8.0.0':
+ resolution: {integrity: sha512-lLozHOM6sWWlxNo8CYqHy4MBZeTvHXNgVPBfPOGsjPKUzHC2Az9QwB6gxdQmpwHl6GlQtbGgS+lj5887guDiLw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-member-expression-to-functions@7.28.5':
resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
engines: {node: '>=6.9.0'}
@@ -4829,33 +4796,41 @@ packages:
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@8.0.0-rc.6':
- resolution: {integrity: sha512-BCkFy+zN6kXQed3YOT7aJl93NfDSzQc3pBfsvTVPs9gU9X3V0aefEF5kwBT0E+mDWH9QgKaZstYUQN9VdQZT4g==}
+ '@babel/helper-string-parser@8.0.0':
+ resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==}
engines: {node: ^22.18.0 || >=24.11.0}
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@8.0.0-rc.6':
- resolution: {integrity: sha512-nVJ+1JcCgntv8d78rRo++o2wuODT0Irknx2BF8Np4Ft2CRgjLqIs4qzSZ8b66yGbBdMWGmZBO9WEZv1hhNiSpg==}
+ '@babel/helper-validator-identifier@8.0.4':
+ resolution: {integrity: sha512-4wFaiLd0bVo4cIoTXI3zKI038NIWE/cr3jvBjejOVYVxV/m8Ltav1USiGzG1fmS5J2RhgEOgXNNK46cRPnRsrg==}
engines: {node: ^22.18.0 || >=24.11.0}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@8.0.0':
+ resolution: {integrity: sha512-U4Dybxh4WESWHt5XhBeExi4DrY0/DNK1aHpQbsrQXCUbFHuMweT0TpLEWKvaraV2Y6fS+ZXunsZ8zIuZIgvF2Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helpers@7.29.2':
resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@8.0.0':
+ resolution: {integrity: sha512-wfbi91pM3py96oIiJEz7qIpyXDytgr9zQC1HEWwlGNVRAEmItuU/0a41ZUKu1sJGyhhOIpc4t5vk4PYzt8wpsg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/parser@7.29.2':
resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@8.0.0-rc.6':
- resolution: {integrity: sha512-rOS8IpdO7mQELkTPlCsTgPejO0bFuZdEDCGQJouYbYf9e1FLTym7Fei2pEjq8q7MWbX0ravcd7QQYKs1TxOuog==}
+ '@babel/parser@8.0.4':
+ resolution: {integrity: sha512-srpptsAkEbbNIC/q8nT7o+m6CQe8CJUTV/t7MYc9NnWlgYVtHOb7JH6SorxMhN0kuRJjVqXbKClG6xSbPtzz+g==}
engines: {node: ^22.18.0 || >=24.11.0}
hasBin: true
@@ -4916,16 +4891,24 @@ packages:
resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.29.0':
+ '@babel/template@8.0.0':
+ resolution: {integrity: sha512-eAD0QW/AlbamBbw0FeGiwasbCVPq5ncW0HNVyLP3B9czqLyh4gvw+5JTSNt6le9+ziAU7mqDZsKTHf3jTb4chQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
+ '@babel/traverse@7.29.0':
resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@8.0.4':
+ resolution: {integrity: sha512-bZnmqzGG8UZneG1lLxBoWIH0G6Gr1D846Yu4/3XnY6FhCndMR49u26nTY08u/dAxWmLWF9vGQOuC+84FfIUoeg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/types@7.29.0':
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
engines: {node: '>=6.9.0'}
- '@babel/types@8.0.0-rc.6':
- resolution: {integrity: sha512-p7/ABylAYlexb31wtRdIfH9L9A0Z2T/9H6zAqzqndkY2PLkvNNc580wGhp/gGKN4Sp9sQvSkhc6Oga8/O+wTyw==}
+ '@babel/types@8.0.4':
+ resolution: {integrity: sha512-eY+Yn3dCqTGmyiq2QRU66lA5FL8lqqqvecHt0fF3uHONIa7ToYsaCiWV8lOKqAs0Rb2SjixiKFROngnulPtt2g==}
engines: {node: ^22.18.0 || >=24.11.0}
'@bramus/specificity@2.4.2':
@@ -4941,8 +4924,8 @@ packages:
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
- '@changesets/cli@2.31.0':
- resolution: {integrity: sha512-AhI4enNTgHu2IZr6K4WZyf0EPch4XVMn1yOMFmCD9gsfBGqMYaHXls5HyDv6/CL5axVQABz68eG30eCtbr2wFg==}
+ '@changesets/cli@2.31.1':
+ resolution: {integrity: sha512-uO05WTcRBwuVOJVSW8Cmpqw6q0WDL53ajGCMyszutvOe5toOnunbpM4jZzf+qxBOz7i0AzopZ8diBuewjmF40w==}
hasBin: true
'@changesets/config@3.1.4':
@@ -4990,19 +4973,19 @@ packages:
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
- '@csstools/color-helpers@6.0.2':
- resolution: {integrity: sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==}
+ '@csstools/color-helpers@6.1.0':
+ resolution: {integrity: sha512-064IFJdjTfUqnjpCVpMOdbr8FLQBhinbZj6yRv2An2E41O/pLEXqfFRWqGq/SxlE5PEUYTlvWsG2r8MswAVvkg==}
engines: {node: '>=20.19.0'}
- '@csstools/css-calc@3.2.0':
- resolution: {integrity: sha512-bR9e6o2BDB12jzN/gIbjHa5wLJ4UjD1CB9pM7ehlc0ddk6EBz+yYS1EV2MF55/HUxrHcB/hehAyt5vhsA3hx7w==}
+ '@csstools/css-calc@3.3.0':
+ resolution: {integrity: sha512-c5ihYsPkdG6JCkU2zTMm4+k6r7RXuGxtWYhu5DHMIiF1FHzrfmHL5so11AoFpUv/tu61xfcmT4AmKoFfMPoqdQ==}
engines: {node: '>=20.19.0'}
peerDependencies:
'@csstools/css-parser-algorithms': ^4.0.0
'@csstools/css-tokenizer': ^4.0.0
- '@csstools/css-color-parser@4.1.0':
- resolution: {integrity: sha512-U0KhLYmy2GVj6q4T3WaAe6NPuFYCPQoE3b0dRGxejWDgcPp8TP7S5rVdM5ZrFaqu4N67X8YaPBw14dQSYx3IyQ==}
+ '@csstools/css-color-parser@4.1.10':
+ resolution: {integrity: sha512-UZhQLIUyJaaMepqehrCODwCg2KW25vFvLWBmqYFaPclYvvxzj/sG8LBOhBFCp11i9uE7t1EyS+RAoV9tztPFyw==}
engines: {node: '>=20.19.0'}
peerDependencies:
'@csstools/css-parser-algorithms': ^4.0.0
@@ -5014,8 +4997,8 @@ packages:
peerDependencies:
'@csstools/css-tokenizer': ^4.0.0
- '@csstools/css-syntax-patches-for-csstree@1.1.3':
- resolution: {integrity: sha512-SH60bMfrRCJF3morcdk57WklujF4Jr/EsQUzqkarfHXEFcAR1gg7fS/chAE922Sehgzc1/+Tz5H3Ypa1HiEKrg==}
+ '@csstools/css-syntax-patches-for-csstree@1.1.7':
+ resolution: {integrity: sha512-fQ+05118eQS1cofO3aJpB5efgpBZMvIzwr/sbC8kDLVA5XLG8q1kJV5yzrUAI1f7lvhPnm8fgIjzFB8/O/5Dig==}
peerDependencies:
css-tree: ^3.2.1
peerDependenciesMeta:
@@ -5026,14 +5009,20 @@ packages:
resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
engines: {node: '>=20.19.0'}
- '@emnapi/core@1.10.0':
- resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
+ '@emnapi/core@1.11.1':
+ resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
+
+ '@emnapi/core@1.11.2':
+ resolution: {integrity: sha512-TC8MkTuZUtcTSiFeuC0ksCh9QIJ5+F21MvZ4Wn4ORfYaFJ/0dsiudv5tVkejgwZlwQ39jL9WWDe2lz8x0WglOA==}
'@emnapi/core@1.4.5':
resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==}
- '@emnapi/runtime@1.10.0':
- resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
+ '@emnapi/runtime@1.11.1':
+ resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
+
+ '@emnapi/runtime@1.11.2':
+ resolution: {integrity: sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==}
'@emnapi/runtime@1.4.5':
resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==}
@@ -5041,473 +5030,161 @@ packages:
'@emnapi/wasi-threads@1.0.4':
resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==}
- '@emnapi/wasi-threads@1.2.1':
- resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
-
- '@esbuild/aix-ppc64@0.27.3':
- resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/aix-ppc64@0.27.4':
- resolution: {integrity: sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
+ '@emnapi/wasi-threads@1.2.2':
+ resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
- '@esbuild/aix-ppc64@0.28.0':
- resolution: {integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==}
+ '@esbuild/aix-ppc64@0.28.1':
+ resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.27.3':
- resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
+ '@esbuild/android-arm64@0.28.1':
+ resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.27.4':
- resolution: {integrity: sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm64@0.28.0':
- resolution: {integrity: sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm@0.27.3':
- resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
+ '@esbuild/android-arm@0.28.1':
+ resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.27.4':
- resolution: {integrity: sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-arm@0.28.0':
- resolution: {integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-x64@0.27.3':
- resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/android-x64@0.27.4':
- resolution: {integrity: sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==}
+ '@esbuild/android-x64@0.28.1':
+ resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.28.0':
- resolution: {integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/darwin-arm64@0.27.3':
- resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
+ '@esbuild/darwin-arm64@0.28.1':
+ resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.27.4':
- resolution: {integrity: sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-arm64@0.28.0':
- resolution: {integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.27.3':
- resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.27.4':
- resolution: {integrity: sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.28.0':
- resolution: {integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==}
+ '@esbuild/darwin-x64@0.28.1':
+ resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.27.3':
- resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-arm64@0.27.4':
- resolution: {integrity: sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==}
+ '@esbuild/freebsd-arm64@0.28.1':
+ resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.28.0':
- resolution: {integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.27.3':
- resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.27.4':
- resolution: {integrity: sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==}
+ '@esbuild/freebsd-x64@0.28.1':
+ resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.28.0':
- resolution: {integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/linux-arm64@0.27.3':
- resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
+ '@esbuild/linux-arm64@0.28.1':
+ resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.27.4':
- resolution: {integrity: sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm64@0.28.0':
- resolution: {integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm@0.27.3':
- resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-arm@0.27.4':
- resolution: {integrity: sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==}
+ '@esbuild/linux-arm@0.28.1':
+ resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.28.0':
- resolution: {integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-ia32@0.27.3':
- resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.27.4':
- resolution: {integrity: sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.28.0':
- resolution: {integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==}
+ '@esbuild/linux-ia32@0.28.1':
+ resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.27.3':
- resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-loong64@0.27.4':
- resolution: {integrity: sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-loong64@0.28.0':
- resolution: {integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==}
+ '@esbuild/linux-loong64@0.28.1':
+ resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.27.3':
- resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
+ '@esbuild/linux-mips64el@0.28.1':
+ resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.27.4':
- resolution: {integrity: sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.28.0':
- resolution: {integrity: sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.27.3':
- resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.27.4':
- resolution: {integrity: sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.28.0':
- resolution: {integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==}
+ '@esbuild/linux-ppc64@0.28.1':
+ resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.27.3':
- resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.27.4':
- resolution: {integrity: sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==}
+ '@esbuild/linux-riscv64@0.28.1':
+ resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.28.0':
- resolution: {integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-s390x@0.27.3':
- resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-s390x@0.27.4':
- resolution: {integrity: sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-s390x@0.28.0':
- resolution: {integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==}
+ '@esbuild/linux-s390x@0.28.1':
+ resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.27.3':
- resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/linux-x64@0.27.4':
- resolution: {integrity: sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==}
+ '@esbuild/linux-x64@0.28.1':
+ resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.28.0':
- resolution: {integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/netbsd-arm64@0.27.3':
- resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [netbsd]
-
- '@esbuild/netbsd-arm64@0.27.4':
- resolution: {integrity: sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==}
+ '@esbuild/netbsd-arm64@0.28.1':
+ resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-arm64@0.28.0':
- resolution: {integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.27.3':
- resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.27.4':
- resolution: {integrity: sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==}
+ '@esbuild/netbsd-x64@0.28.1':
+ resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.28.0':
- resolution: {integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/openbsd-arm64@0.27.3':
- resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
+ '@esbuild/openbsd-arm64@0.28.1':
+ resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-arm64@0.27.4':
- resolution: {integrity: sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
- '@esbuild/openbsd-arm64@0.28.0':
- resolution: {integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.27.3':
- resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.27.4':
- resolution: {integrity: sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==}
+ '@esbuild/openbsd-x64@0.28.1':
+ resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.28.0':
- resolution: {integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openharmony-arm64@0.27.3':
- resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
+ '@esbuild/openharmony-arm64@0.28.1':
+ resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
- '@esbuild/openharmony-arm64@0.27.4':
- resolution: {integrity: sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openharmony]
-
- '@esbuild/openharmony-arm64@0.28.0':
- resolution: {integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openharmony]
-
- '@esbuild/sunos-x64@0.27.3':
- resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/sunos-x64@0.27.4':
- resolution: {integrity: sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/sunos-x64@0.28.0':
- resolution: {integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==}
+ '@esbuild/sunos-x64@0.28.1':
+ resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.27.3':
- resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
+ '@esbuild/win32-arm64@0.28.1':
+ resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.27.4':
- resolution: {integrity: sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-arm64@0.28.0':
- resolution: {integrity: sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-ia32@0.27.3':
- resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-ia32@0.27.4':
- resolution: {integrity: sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-ia32@0.28.0':
- resolution: {integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==}
+ '@esbuild/win32-ia32@0.28.1':
+ resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.27.3':
- resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
- '@esbuild/win32-x64@0.27.4':
- resolution: {integrity: sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
- '@esbuild/win32-x64@0.28.0':
- resolution: {integrity: sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==}
+ '@esbuild/win32-x64@0.28.1':
+ resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -5522,53 +5199,53 @@ packages:
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint-react/ast@5.8.8':
- resolution: {integrity: sha512-hWSxSJpEPJhDZjw0F19w+2zb3+cKv+9JlbnKQ+jli9Jxk8LZrdwRrwPqMoM+9Z3KJUFXFFnRtvdxLO1UqRjVdA==}
+ '@eslint-react/ast@5.18.3':
+ resolution: {integrity: sha512-/993Nnt9ZIn7sBQjXF/iLJ9llDtd9qztQrPNxQKwU3XLUv7m3a0EUMIe0A9Ygfw1lJz4not3VwcwMBahn/foVA==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- '@eslint-react/core@5.8.8':
- resolution: {integrity: sha512-Cnmq9c64rKGM1qlNIO6cJ3th4QqrdZQaT3/9N77h0Casy/soyZIhp4pP79dxw7OdKjTCi/fYz4HZgDVQhxuTzQ==}
+ '@eslint-react/core@5.18.3':
+ resolution: {integrity: sha512-N0FtKHkByoQOPRuGbHEtDRdcpa+Zs/b1/zGVYcS1g0416FFRIl4utXxOLZQj6OtHaIVXh2C6lJhJtIWfzPzCJQ==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- '@eslint-react/eslint-plugin@5.8.8':
- resolution: {integrity: sha512-Sqymf1X2Z5P8tJsrd8W/HYscY5ndt096L0aYwbCQ7mp9iorBiydchpwelcI2vWAqzRhbhHEMC5le9N55hbQEaQ==}
+ '@eslint-react/eslint-plugin@5.18.3':
+ resolution: {integrity: sha512-gpzENfi+943orTyWWWwepWZoat3ePhEUO7lVwpiKhuRjo3i63O+nXG8Bg5gMpOa/t8b1ZTZI2PHh4/KcWx3aXw==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- '@eslint-react/eslint@5.8.8':
- resolution: {integrity: sha512-cwRHjR17dRPlcTTfLbWCeDky8drxVp+0wEgtrEgdJmaXeYkZB9OdWTMLhXkx0pNcrYiI5IVwjjFvt5QgR57aaQ==}
+ '@eslint-react/eslint@5.18.3':
+ resolution: {integrity: sha512-zH5kDfeHYzly6wiYEleCEBdc7g8H+nKmxzhcZKmR1omrfTvzSndVIoLPrG8WYsgtYRqJdTg+NOGkAkXnoaTW4Q==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- '@eslint-react/jsx@5.8.8':
- resolution: {integrity: sha512-2mzIejyw9oPZmt25R4KFYn8XxPThm4tFNFR48DCcZNHmp7+In5/Kei8+WYv2GHgU3NbJ9lY5TUsZZIrIT7sObQ==}
+ '@eslint-react/jsx@5.18.3':
+ resolution: {integrity: sha512-1MHb4HWOxk6UUg/PRMdrlu7AS1aLPKuz/lWNKfq27th3HCdxyppkg8FQLnU0GQoNnzyH2QoCvL6Um16rdyi7vA==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- '@eslint-react/shared@5.8.8':
- resolution: {integrity: sha512-9quBoistLX1FoafVVP8lanKZXLUZVjPkUZmmPOmp+kvyJsXGlqus35BYCM4NRQOF9r5v+eSoodjq0N5kq2ADqA==}
+ '@eslint-react/shared@5.18.3':
+ resolution: {integrity: sha512-r+ZxSYVHDTu6n4/75+94UWvMMoFSwx9rVm8OBJLVpfcxQEqpOSPtEPn7HmXaxsCg12N1os5bxqajWudKOM1Ydw==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- '@eslint-react/var@5.8.8':
- resolution: {integrity: sha512-H4PLMCw92mFf0bUOu29DKjOPrkvx+b5LEe1pUy9EaOqdb94PvYeB1JeND7djWLF1/ZWWqL8kQF8w0/vF/q1ufg==}
+ '@eslint-react/var@5.18.3':
+ resolution: {integrity: sha512-9nol88aB4PSyOouyh8toTZkuvYzIB1ZEQcLEW+yL3ausDHvFdN8zIxULMLetjdtcvmIoBLpOcW2dgJSwSCl+qg==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
'@eslint/config-array@0.23.5':
@@ -5600,8 +5277,8 @@ packages:
resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@exodus/bytes@1.15.0':
- resolution: {integrity: sha512-UY0nlA+feH81UGSHv92sLEPLCeZFjXOuHhrIo0HQydScuQc8s0A7kL/UdgwgDq8g8ilksmuoF35YVTNphV2aBQ==}
+ '@exodus/bytes@1.15.1':
+ resolution: {integrity: sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
'@noble/hashes': ^1.8.0 || ^2.0.0
@@ -5609,14 +5286,10 @@ packages:
'@noble/hashes':
optional: true
- '@faker-js/faker@10.4.0':
- resolution: {integrity: sha512-sDBWI3yLy8EcDzgobvJTWq1MJYzAkQdpjXuPukga9wXonhpMRvd1Izuo2Qgwey2OiEoRIBr35RMU9HJRoOHzpw==}
+ '@faker-js/faker@10.5.0':
+ resolution: {integrity: sha512-bsxD8WLS5lIj7aaoCx1YJkktqYj5vlBUE6HWzu2Q51ksrGJ0H737ECCKlFU7Yf8Br45z9t99frBp/J7kzbMPAg==}
engines: {node: ^20.19.0 || ^22.13.0 || ^23.5.0 || >=24.0.0, npm: '>=10'}
- '@gar/promise-retry@1.0.3':
- resolution: {integrity: sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
'@gerrit0/mini-shiki@3.23.0':
resolution: {integrity: sha512-bEMORlG0cqdjVyCEuU0cDQbORWX+kYCeo0kV1lbxF5bt4r7SID2l9bqsxJEM0zndaxpOUT7riCyIVEuqq/Ynxg==}
@@ -5649,49 +5322,49 @@ packages:
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
- '@inquirer/ansi@1.0.2':
- resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==}
- engines: {node: '>=18'}
+ '@inquirer/ansi@2.0.7':
+ resolution: {integrity: sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
- '@inquirer/checkbox@4.3.2':
- resolution: {integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==}
- engines: {node: '>=18'}
+ '@inquirer/checkbox@5.2.1':
+ resolution: {integrity: sha512-b6xmA/VlTe0ZgDQHDui+Nav470u7u49nRd8/iuhOcQPO9Ch7lGuogydhi2VOmNlZ+zXcM8IcPuNSwQcdJaF/kw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/confirm@5.1.21':
- resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==}
- engines: {node: '>=18'}
+ '@inquirer/confirm@6.1.1':
+ resolution: {integrity: sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/core@10.3.2':
- resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==}
- engines: {node: '>=18'}
+ '@inquirer/core@11.2.1':
+ resolution: {integrity: sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/editor@4.2.23':
- resolution: {integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==}
- engines: {node: '>=18'}
+ '@inquirer/editor@5.2.2':
+ resolution: {integrity: sha512-ZRVd/oD+sYsUd5zVm0NflqEzlqfYCyHNsqkHl2oWXEUHs12tCbcSFi+wVFEvD8+LGRaMUsVrE7qeo6lSG/S1Vg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/expand@4.0.23':
- resolution: {integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==}
- engines: {node: '>=18'}
+ '@inquirer/expand@5.1.1':
+ resolution: {integrity: sha512-YmQpenjbFSHAK3sOd44puHh3V1KXXr+JiNpUztoSQ4drLh2rTVzTap/YtlAVu/5xavifIlBfNEzJ/neZJ1a/1g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
@@ -5707,85 +5380,90 @@ packages:
'@types/node':
optional: true
- '@inquirer/figures@1.0.15':
- resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==}
- engines: {node: '>=18'}
-
- '@inquirer/input@4.3.1':
- resolution: {integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==}
- engines: {node: '>=18'}
+ '@inquirer/external-editor@3.0.3':
+ resolution: {integrity: sha512-6thf5I8q7lZwzGLAxPaaGEREEkZ3nyePPDQ1oyobblxmEE8mqTLguScP7pDjUTAibiyb4hfXl+qjUEJ+di/aNA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/number@3.0.23':
- resolution: {integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==}
- engines: {node: '>=18'}
+ '@inquirer/figures@2.0.7':
+ resolution: {integrity: sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+
+ '@inquirer/input@5.1.2':
+ resolution: {integrity: sha512-9K/DDBSQpOyZSkt6sOVP9Vo0TR7atX2kuILsUu0x3wVcVbe97lJwIJKMLdMw25tDYuXl/qp6erT0Xs1rfmcfZg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/password@4.0.23':
- resolution: {integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==}
- engines: {node: '>=18'}
+ '@inquirer/number@4.1.1':
+ resolution: {integrity: sha512-XF4IXAbPnGPgw0wsbC/i2tPcyfdZgDpUlhsqU0SfT4IRIGWha6Xm9VRgN5yYxJq+jnyXlfXI/nQ3ulfk0iEICA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/prompts@7.10.1':
- resolution: {integrity: sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg==}
- engines: {node: '>=18'}
+ '@inquirer/password@5.1.1':
+ resolution: {integrity: sha512-3XBfF7DAsp5qeDsvN5Rd1HmbNokVvEQoUM0QLrRcybC9nX96w3Pbmu7qUsb3IT3J3jBvs2+mTXaKHOUsgHMLzg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/rawlist@4.1.11':
- resolution: {integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==}
- engines: {node: '>=18'}
+ '@inquirer/prompts@8.5.2':
+ resolution: {integrity: sha512-IYR/3C/paEVVQYQvdDlFZVjRCJVYHHON0XXMH91KO9GSxs0TdKYWlUdvfQl2EfAHDxUaN3IBffkE/BDTh5nJ6g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/search@3.2.2':
- resolution: {integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==}
- engines: {node: '>=18'}
+ '@inquirer/rawlist@5.3.1':
+ resolution: {integrity: sha512-QqdTqQddL3qPX/PPrjobpsO25NZ4dWXgTLenrR445L2ptLEYE6Z+PD5c5CNDJNx4ugRgELAIpSIJxZaO2jJ2Og==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/select@4.4.2':
- resolution: {integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==}
- engines: {node: '>=18'}
+ '@inquirer/search@4.2.1':
+ resolution: {integrity: sha512-xJj8QWKRSrfKoBIITLZK61dD3zwo0Rz11fgDImku30/Oe81zMdIdGgrLY2h6RkJ+KZ/GhNYIRMKnH/62qBTA5g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/type@3.0.10':
- resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==}
- engines: {node: '>=18'}
+ '@inquirer/select@5.2.1':
+ resolution: {integrity: sha512-FlDndEUww8m7BfukO2nJa25vhD+H5jxxCv4oGioKqzyWz3nPHhhw4LKdYRSlXuAx7DsdWia7iyaBPKKS95Evfw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@isaacs/fs-minipass@4.0.1':
- resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
- engines: {node: '>=18.0.0'}
+ '@inquirer/type@4.0.7':
+ resolution: {integrity: sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
'@istanbuljs/schema@0.1.3':
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
@@ -5811,45 +5489,45 @@ packages:
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
- '@listr2/prompt-adapter-inquirer@3.0.5':
- resolution: {integrity: sha512-WELs+hj6xcilkloBXYf9XXK8tYEnKsgLj01Xl5ONUJpKjmT5hGVUzNUS5tooUxs7pGMrw+jFD/41WpqW4V3LDA==}
- engines: {node: '>=20.0.0'}
+ '@listr2/prompt-adapter-inquirer@4.2.4':
+ resolution: {integrity: sha512-/KRI2DMD7JGSYaREF0Ygl7AefJ/2ase4Gc5cBiKqT5l4tFjsSJfhFGcc5nSkgl0Sp9LkCQNzl/cqbVJYP2L3dw==}
+ engines: {node: '>=22.13.0'}
peerDependencies:
- '@inquirer/prompts': '>= 3 < 8'
- listr2: 9.0.5
+ '@inquirer/prompts': '>= 3 < 9'
+ listr2: 10.2.1
- '@lmdb/lmdb-darwin-arm64@3.5.1':
- resolution: {integrity: sha512-tpfN4kKrrMpQ+If1l8bhmoNkECJi0iOu6AEdrTJvWVC+32sLxTARX5Rsu579mPImRP9YFWfWgeRQ5oav7zApQQ==}
+ '@lmdb/lmdb-darwin-arm64@3.5.6':
+ resolution: {integrity: sha512-mY5FG4TjPAkY4P0w+OhHaUka5mDh2TX2WKYIwuKzJ1zeW3VvRgxdam/lGJTquI+bthTx5CSHDW+BAQCnNAzkEA==}
cpu: [arm64]
os: [darwin]
- '@lmdb/lmdb-darwin-x64@3.5.1':
- resolution: {integrity: sha512-+a2tTfc3rmWhLAolFUWRgJtpSuu+Fw/yjn4rF406NMxhfjbMuiOUTDRvRlMFV+DzyjkwnokisskHbCWkS3Ly5w==}
+ '@lmdb/lmdb-darwin-x64@3.5.6':
+ resolution: {integrity: sha512-foa+pwitysO8k+xhs7psBFfTKnVgR69NlZRRTHaFVDqphh7AdGpLeyRzKw/ofatr/sN6TiHRRW6mmop0ZrrppQ==}
cpu: [x64]
os: [darwin]
- '@lmdb/lmdb-linux-arm64@3.5.1':
- resolution: {integrity: sha512-aoERa5B6ywXdyFeYGQ1gbQpkMkDbEo45qVoXE5QpIRavqjnyPwjOulMkmkypkmsbJ5z4Wi0TBztON8agCTG0Vg==}
+ '@lmdb/lmdb-linux-arm64@3.5.6':
+ resolution: {integrity: sha512-HmiyFFdJa38s1heCMSooSPaBSFTHJ3C+ERPp28xAPlDX1YiALJVOgbry065nXd8Y7KISWjnw05zpG1RX8IfftA==}
cpu: [arm64]
os: [linux]
- '@lmdb/lmdb-linux-arm@3.5.1':
- resolution: {integrity: sha512-0EgcE6reYr8InjD7V37EgXcYrloqpxVPINy3ig1MwDSbl6LF/vXTYRH9OE1Ti1D8YZnB35ZH9aTcdfSb5lql2A==}
+ '@lmdb/lmdb-linux-arm@3.5.6':
+ resolution: {integrity: sha512-QR4YRyR5h5Z8eGXrNQjiyo2NNDfqi3tCc9dQG5Is1blCt+qWw1ZoBWhlWAr5d+jshkifMIJjVHzHGKbkKzF8Tw==}
cpu: [arm]
os: [linux]
- '@lmdb/lmdb-linux-x64@3.5.1':
- resolution: {integrity: sha512-SqNDY1+vpji7bh0sFH5wlWyFTOzjbDOl0/kB5RLLYDAFyd/uw3n7wyrmas3rYPpAW7z18lMOi1yKlTPv967E3g==}
+ '@lmdb/lmdb-linux-x64@3.5.6':
+ resolution: {integrity: sha512-ADzCuCF2cTNiX9kDScqcz1fjnAkxPpQNneV3KFTdV3wWtVlI2sTGzySoMTgDpinkMMFj1NTJlxA6XR8fwc4hlA==}
cpu: [x64]
os: [linux]
- '@lmdb/lmdb-win32-arm64@3.5.1':
- resolution: {integrity: sha512-50v0O1Lt37cwrmR9vWZK5hRW0Aw+KEmxJJ75fge/zIYdvNKB/0bSMSVR5Uc2OV9JhosIUyklOmrEvavwNJ8D6w==}
+ '@lmdb/lmdb-win32-arm64@3.5.6':
+ resolution: {integrity: sha512-J7A9aEQsQiv0TYtBGL7NDIPp2lOS8nnl+zm4sWZm1xlsTTaQ4PgD096Adzdrk27rw3UxCkDXdCUa4ax41oztBQ==}
cpu: [arm64]
os: [win32]
- '@lmdb/lmdb-win32-x64@3.5.1':
- resolution: {integrity: sha512-qwosvPyl+zpUlp3gRb7UcJ3H8S28XHCzkv0Y0EgQToXjQP91ZD67EHSCDmaLjtKhe+GVIW5om1KUpzVLA0l6pg==}
+ '@lmdb/lmdb-win32-x64@3.5.6':
+ resolution: {integrity: sha512-1g7G0knRX2iV/voDu54yxrGqw5Dk0w2oIYb7dgJq8IkOi+m7wbD8Q3QpPFjh0C01G58S88dqGn03len6UPCXsg==}
cpu: [x64]
os: [win32]
@@ -5859,8 +5537,8 @@ packages:
'@manypkg/get-packages@1.1.3':
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
- '@modelcontextprotocol/sdk@1.26.0':
- resolution: {integrity: sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==}
+ '@modelcontextprotocol/sdk@1.29.0':
+ resolution: {integrity: sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==}
engines: {node: '>=18'}
peerDependencies:
'@cfworker/json-schema': ^4.1.1
@@ -6018,11 +5696,12 @@ packages:
'@napi-rs/wasm-runtime@0.2.4':
resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
- '@napi-rs/wasm-runtime@1.1.4':
- resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==}
+ '@napi-rs/wasm-runtime@1.2.1':
+ resolution: {integrity: sha512-KjZdi8Q1wh89gsVmghvbrMgWl6ZWmRmHV6wjB7/g4Zf0dyO+hH3neZUtuDNPO00qq5YE5RITVWvrIZKRaAmzGQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=23.5.0}
peerDependencies:
- '@emnapi/core': ^1.7.1
- '@emnapi/runtime': ^1.7.1
+ '@emnapi/core': ^1.7.1 || ^2.0.0-alpha.3
+ '@emnapi/runtime': ^1.7.1 || ^2.0.0-alpha.3
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -6036,330 +5715,299 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@npmcli/agent@4.0.0':
- resolution: {integrity: sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@npmcli/fs@5.0.0':
- resolution: {integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@npmcli/git@7.0.2':
- resolution: {integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@npmcli/installed-package-contents@4.0.0':
- resolution: {integrity: sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA==}
- engines: {node: ^20.17.0 || >=22.9.0}
- hasBin: true
-
- '@npmcli/node-gyp@5.0.0':
- resolution: {integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@npmcli/package-json@7.0.5':
- resolution: {integrity: sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@npmcli/promise-spawn@9.0.1':
- resolution: {integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@npmcli/redact@4.0.0':
- resolution: {integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@npmcli/run-script@10.0.4':
- resolution: {integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@nx/nx-darwin-arm64@22.7.5':
- resolution: {integrity: sha512-eoPtwx0qZqvRUD+VVOHm150AlSYwYoPxkDHBBGqKCn5nzPspb0lLWw8q83crM/L1M928YgK0WmGf3C++7eqsTA==}
+ '@nx/nx-darwin-arm64@23.1.1':
+ resolution: {integrity: sha512-Rq/RXLX5uIvJQfb6kuUgEirquT5ARaAgQyNaMZVnOPAL5wuxaDvQag8WX/WUCIgbUKZuGkclJwM7Vlnvtn3bdg==}
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-x64@22.7.5':
- resolution: {integrity: sha512-VLOn/ZoEn3HfjSj+yIHLCM56/el79r+9I28CkZNHaSXJQWZ3edSkcgcfYjVxCurpN2VEwDQHLBeFCH8M+lQ7wQ==}
+ '@nx/nx-darwin-x64@23.1.1':
+ resolution: {integrity: sha512-doWaPLPd6yUas3FhQJqMAScupCsToeTedK4RRWm700VhHoVdBTN4ejIBRBfoiT/SPAwY6EOHb8uFDJhGo7geMg==}
cpu: [x64]
os: [darwin]
- '@nx/nx-freebsd-x64@22.7.5':
- resolution: {integrity: sha512-LEVer/E2xfGvK9Go+imMQoEninOoq/38Z2bhV1SD3AThXrp1xaLFVkW5jQ6juebeVkAeztEoMLFlr576egS0vw==}
+ '@nx/nx-freebsd-x64@23.1.1':
+ resolution: {integrity: sha512-9rDZKBPGuX8mid11RimJ2ENqDYZpPZhrqTlI9q/VnqcPLq0Bw/8AhqCKhBVlfNqJjbi4OsRQYDK7UkqIlcfThg==}
cpu: [x64]
os: [freebsd]
- '@nx/nx-linux-arm-gnueabihf@22.7.5':
- resolution: {integrity: sha512-NP27EFGpmFJM6RL1Ey/AFJ7gA2xuqtIHaw6jjSNGvfrnZRUNaway30GrVaGGeODf0DsvAty/unqoBMPy6kDHbw==}
+ '@nx/nx-linux-arm-gnueabihf@23.1.1':
+ resolution: {integrity: sha512-NDR5X2HiD6WU3JEaDJmOLteIGIFqjrjkzoFWrQke2Y1oCRYu+UyFdPeaMVUyAs5OyUx4U+SD+eBQPTCNbWmazA==}
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm64-gnu@22.7.5':
- resolution: {integrity: sha512-QLnkJl3HkHsPfpLiNiAiMfpfAeFpic0U1diAxF8RqChOkCpQ7ulvyBVgE1UrQxvhd+gFQ3ed5RNDxtCRw8nTiw==}
+ '@nx/nx-linux-arm64-gnu@23.1.1':
+ resolution: {integrity: sha512-tWDHJII8+aHweTzHelf5dGM6qGNmHbAPhCc3jrtrM0uE+UD/wt2Dpq7H3086Iyia9M9jGM9sYpuD/6W6WAFAMA==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@nx/nx-linux-arm64-musl@22.7.5':
- resolution: {integrity: sha512-cEP6KmwBgnb38+jTTaibWCjwXcHmigqhTfy0tN1be7WZr6bHxbqNLsXqKRN70PSNA3HouZcxw1cdRL8tqbPBBA==}
+ '@nx/nx-linux-arm64-musl@23.1.1':
+ resolution: {integrity: sha512-t7iVMZ7Cj3LmPcfaYt9KOkojpuC5XRmtZ/0G+NBMA2GuRhCVbzpOgUCob0nQMV2TrTwn5oAWJeDc4xLni+oteg==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@nx/nx-linux-x64-gnu@22.7.5':
- resolution: {integrity: sha512-tbaX1tZCSpGifDNBfDdEZAMxVF3Yg4bhFP/bm1needc0diqb+Zflc0u5tM5/6BWDMITQDwenJVsNiQ8ZdtJURA==}
+ '@nx/nx-linux-x64-gnu@23.1.1':
+ resolution: {integrity: sha512-stuCayctOt/4AFvxKYgGTPluUc0HW7DcyTz9yeTMl/zj0+FENEr8RCTjInD0Q5qVGzYphma6SssVSh432w5agw==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@nx/nx-linux-x64-musl@22.7.5':
- resolution: {integrity: sha512-H0M7csOZIgPT822LqjxSXzf4MXRND15vIkAQe3F3Jlr3Si8LC3tzbL52aVcRfgb8MF/xOB5U47mSwxWt1M2bPQ==}
+ '@nx/nx-linux-x64-musl@23.1.1':
+ resolution: {integrity: sha512-cZSUqGV+iHda39W91BNKSysSu6OFfR6M4ViQBcMtbwq3ce19gDr2f23MqGZEQZtaD/eSQ9UNEhx09nhrdYxWDg==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@nx/nx-win32-arm64-msvc@22.7.5':
- resolution: {integrity: sha512-JTcZch9YAnDL1gbhqePz3DZ4x7iYemLn1yJzrjbbXAmXju2eiiJiZvJJHbV06+SP9HKXDT8RjTKuAWTdVxnHug==}
+ '@nx/nx-win32-arm64-msvc@23.1.1':
+ resolution: {integrity: sha512-iDlYbFHgTYV5lg1ypEt+LAj86o/uyy6vR0ha5pcUs4FqXzQgy14lOeyRod/EZs9Er3DIyJlEi/rpEvaP99/Hag==}
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-x64-msvc@22.7.5':
- resolution: {integrity: sha512-ngcMyHdBJ9FSz2nHdbZ7gtJlFq0O2b05sPAsVMkZ18CKzdaA1qrBDJfsMO49hPCny505eiT766+CkKdaCDl5kA==}
+ '@nx/nx-win32-x64-msvc@23.1.1':
+ resolution: {integrity: sha512-UD21AHWJ2PEA+PuANPCt+lj3kYpAzYNq+bm4VCbrt3KZd7zDPas0ns85UIhfrhsNiSmYzjWz2/JDk2S3cA6lGw==}
cpu: [x64]
os: [win32]
- '@oxc-parser/binding-android-arm-eabi@0.133.0':
- resolution: {integrity: sha512-l/44caGse+VpnY9gx0yvvc5QnnG3yG1FO3KZgYvNL1GZrfK86zIwAOgGEVlxDyRymzrU/KHiblPFpevKOmJmUA==}
+ '@oxc-parser/binding-android-arm-eabi@0.142.0':
+ resolution: {integrity: sha512-ZiRGDutGsv1G6bL/ozy/koC0Sv39T1DqyoC4KD1DOy9ZoACm1O5UWhEK2c02Qdk+4lfLVkvFa/mQ0fm/4h1BtQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [android]
- '@oxc-parser/binding-android-arm64@0.133.0':
- resolution: {integrity: sha512-KUHmPMziLBp4u+zbrLdB7iWS7KshuZe+RAp7ELnY9SI9nNXBZ+dp8fiBqWOxhXqn+FQg3a4UcQhwmsJOKV8Jjg==}
+ '@oxc-parser/binding-android-arm64@0.142.0':
+ resolution: {integrity: sha512-WZkvGRLNQTz8lR9zP5nLjUdlroRCopBu3g9zF1p/laE6DzT1UbQo8Rdz5MWhaJUPYg/6gp+jo7HUgsyKaN1FtQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@oxc-parser/binding-darwin-arm64@0.133.0':
- resolution: {integrity: sha512-q8dWmnU/8ea2tga9w2f1PinQ5rcMPDUGkF64T189b65YMjUomET4oy5oRldOr4AwOQkneOG/Zttnz1Dvrc62wg==}
+ '@oxc-parser/binding-darwin-arm64@0.142.0':
+ resolution: {integrity: sha512-l4khS8LQOOVYsGRVARo1gSaCT/aBSceUVXgtovWc2+drnxVuDr082WA3OCHVdVzIz5JIrP/y9CWsSKxBDNmYGg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@oxc-parser/binding-darwin-x64@0.133.0':
- resolution: {integrity: sha512-cOKeIELIB2bJnCKwqx4Rdj+1Lss/U6uCbLxRySZrhyOOQa1flKhwZFjEHRHxk8fU1NKmhK5OnTdPQ4CpjuFuVw==}
+ '@oxc-parser/binding-darwin-x64@0.142.0':
+ resolution: {integrity: sha512-QBsNF3nqlXmcH2B1YOPqQYmCJoy4HuIjUxGbBO/k5JAJUl68ghU2psRY2zPk+RyBaWqKP/qfL4oaFgEMCdwskA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@oxc-parser/binding-freebsd-x64@0.133.0':
- resolution: {integrity: sha512-OpaSv4pW3KgFrMYQxTaS0aOE4T1DQF3qZE/4B6uqqv1KgPWWd4UQhJALi8PJPX1RRV5K7ThKXRfF7qGg2+3l1A==}
+ '@oxc-parser/binding-freebsd-x64@0.142.0':
+ resolution: {integrity: sha512-b7Q7m4Cqc6XqNhri3R+QhU+GVy646Pn+bkdhrDdWym/Fdi0ZUa+d73H9dm5H91JtbtAQ/z1d8XKMW3oOV8a4tQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@oxc-parser/binding-linux-arm-gnueabihf@0.133.0':
- resolution: {integrity: sha512-JGK1wlGrGwxBIlVSF7KWTX1/ru6BEtf28fRROztDRkLfiW+Kxa4onnriezMIiogfn9hVw2KzYcKiLjkLR2ns8A==}
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.142.0':
+ resolution: {integrity: sha512-3riVS5IhdH3uCZj1Y9ftDQlR0dvLsIlw/edrRqk8JhgNd5K0XSs+UBtgh50N13CAlW9/TXj6sVGXaKNBocd0Yg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxc-parser/binding-linux-arm-musleabihf@0.133.0':
- resolution: {integrity: sha512-yuZO533Ftonxn/iyoqQzURzLQHMspvsIyfiCSNi1t/ER4eIQaR0SsmUOUm5b/lmSig7IWIUa5/BrbEkAPwcilQ==}
+ '@oxc-parser/binding-linux-arm-musleabihf@0.142.0':
+ resolution: {integrity: sha512-NmXUOpgpTSkhl795TiXmWppTwmSJ92RC1qvD6e4XOF+slgmo3e6Ah+kEu+6AN8s7NAOEwqGmir58MgSQSWmBSA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxc-parser/binding-linux-arm64-gnu@0.133.0':
- resolution: {integrity: sha512-hvpbqT5pN2rR+3+xtWeizwfR/aZ0vGceg6TqYMl+ToxMpk9/tmnX7kSvQnfEUkoua8mhogzvIKsAkn0wxgblBA==}
+ '@oxc-parser/binding-linux-arm64-gnu@0.142.0':
+ resolution: {integrity: sha512-gc0EXsKtXgerujmU2Bql3u1L1HsSQ2774R83idq/FoNMPVV/RY/1ErFsvnit7KoiP/sLvzQixeUo4Ut0ic0wmw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@oxc-parser/binding-linux-arm64-musl@0.133.0':
- resolution: {integrity: sha512-wJQGamIosQBoJHW9+S5XxrtKRo3eyJxsnS1XCPrqN0LHi8uw1pTqqTfn3t/NVuvbBg7Pumn4ez9Eidgcn0xbEg==}
+ '@oxc-parser/binding-linux-arm64-musl@0.142.0':
+ resolution: {integrity: sha512-F2XvmWSE0uWpie+jHKKIFgdVOe9ypGhkEZxKx5DuW215K6cbAC274yYaPkcM7EqY4Df3Weyhpcz3lsURyH2LVg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@oxc-parser/binding-linux-ppc64-gnu@0.133.0':
- resolution: {integrity: sha512-Koaz32/O5+abIfrNGdyndgRvdOZ9jEf5/z3Ep9h3h2QWpdDiUQpVwgH0OcMXCs+l9aXxPLtkupqyVig9W6FDKw==}
+ '@oxc-parser/binding-linux-ppc64-gnu@0.142.0':
+ resolution: {integrity: sha512-wLMbT21U/QxknQsk+VvNF0b9D2/aGWhcaQQQ+VYlE8FwD5+GoWZIPPXNzyHmkYyhm0KB3itL+TBavjMatqNnYA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@oxc-parser/binding-linux-riscv64-gnu@0.133.0':
- resolution: {integrity: sha512-R4vOjWzxhnNWHnVLeiB6jNuIifdy9vcMXZGPc7StXcxBovI+U2zg1QhZ9o8OjV80oGivs1lX5NfPLzk4IPqlRA==}
+ '@oxc-parser/binding-linux-riscv64-gnu@0.142.0':
+ resolution: {integrity: sha512-+G8F/4ckwT7FCJV4H2bt09xEzJbjNCfuL4Sp1AYNaFtFMVtgIGMuJlteT82U+K0UIZ/DzAR/LDlMFnEuajG7Kw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@oxc-parser/binding-linux-riscv64-musl@0.133.0':
- resolution: {integrity: sha512-iwgBNUTHiMdxARLYuM0SBlnYeb19iw1Ea5M+4ERZupCsBMLArti6FyZ6UfFjJxIiTDr2oW2DGQFxlQVQ/dW9rA==}
+ '@oxc-parser/binding-linux-riscv64-musl@0.142.0':
+ resolution: {integrity: sha512-hTsHtTLxMAfCo+rpF5K3qZJKW2NpPN/CHd4mYB3y7XlSdspHkd2gehDIofP64AacA9nWQw2tY3O7wR6UY8IVOA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@oxc-parser/binding-linux-s390x-gnu@0.133.0':
- resolution: {integrity: sha512-ZwZNo8FZmB/gVfboQl+wXilBigGl+6nQQs+nITOeAP/HcAOjiHl6XZJL9F/KXNEspODQcbjAiyjUbeCJd9a0fA==}
+ '@oxc-parser/binding-linux-s390x-gnu@0.142.0':
+ resolution: {integrity: sha512-6y7qYY3TCUDYjqswImdTGl92y+KA/80twALegQPN27kfY+bG7Ib1+L3jbmrCZQx6wrVnai9IPsEZp07I0hx7JQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@oxc-parser/binding-linux-x64-gnu@0.133.0':
- resolution: {integrity: sha512-govCvWx1dBlED3uu4qXctxpRcouu9I8Kn+DBktGCl760JtlGJzc9l/OmPJKlYWSbrRqKkMZehNeZ/4Wfma7uSA==}
+ '@oxc-parser/binding-linux-x64-gnu@0.142.0':
+ resolution: {integrity: sha512-i69kAWU+2LgoH5bR+zWiiu+UzAw7Oxkwv7COeJTeY19pn4e70nKQcr9Pm6cL2Z0Z54d+gl9qADlK/0yyuCPiBA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@oxc-parser/binding-linux-x64-musl@0.133.0':
- resolution: {integrity: sha512-ssTlpXD5Mq9uCssDJPzlRWqBt4Y7Zzd9i+XZhWmK/9Y6KUIuAxVYTYiI8lxcGWi0+3/Cz4A8q9UrD4NK9Y2j7g==}
+ '@oxc-parser/binding-linux-x64-musl@0.142.0':
+ resolution: {integrity: sha512-4SQs678MmjYVrmhAgCWD4o0vpaFszXw9xLX5p2Z9MMFcltxiLkA88wQjh80YHjPrXtpyZ2CWI5m+1yNKM0m2Pw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@oxc-parser/binding-openharmony-arm64@0.133.0':
- resolution: {integrity: sha512-51aByfXhPtLEdWG4a2Ihdw6cPWV1ei1AarALpFdDP8MLWDLE2NuUMgbo3DERR2Kt8fT/ok1GUvBiLxVGke9uUQ==}
+ '@oxc-parser/binding-openharmony-arm64@0.142.0':
+ resolution: {integrity: sha512-YHpx9N7Ln3a++Tc8rv+H7mrK1zyJQOAwCFg8LZ3lTs1T5afGWeZrLPhPT9HLnIwSjCyJqPWVMIrMxbjcmBr2oQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@oxc-parser/binding-wasm32-wasi@0.133.0':
- resolution: {integrity: sha512-2e16tkKp+wDO2GTAmXfxbBcCmGEaFPIJEIRBBmVKNVXSc8/fJsSIaBGyFTPHM9ST5GNWgJcYIt94rDTks+PLwA==}
+ '@oxc-parser/binding-wasm32-wasi@0.142.0':
+ resolution: {integrity: sha512-3pLDyY3+oogW73RM5uehNgAiR/Xfb7fvO2Q1Z1gIqZ2+50XDVQmBVlRkHXZTU4gKnQHpwETNsYQVsJ3joVB2iA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [wasm32]
- '@oxc-parser/binding-win32-arm64-msvc@0.133.0':
- resolution: {integrity: sha512-KPTNDKbxH1cglrqTyVeXHb4Pk4oksz8EcE1/v8zqU7N4UXbiHfA/IwtXZ2U77fnRAWBbgVkl/lZbL7o3hRdejg==}
+ '@oxc-parser/binding-win32-arm64-msvc@0.142.0':
+ resolution: {integrity: sha512-Had/VeVY28Oyb0K+Q4FV8KCzoBycIh93oDK6pCbya9lkzdq+ikMHMgBubsdqqlybjJmQRawCQRrnBRHyQwYvcQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@oxc-parser/binding-win32-ia32-msvc@0.133.0':
- resolution: {integrity: sha512-Una1bNYv9zCavQrfnDR9wuZVB3itLjCEH4Oz7i6CwAJN/Xq9b+zbbcxmvdkKvvJt4Ngc/MBmIYlbLo3zS4TQ0A==}
+ '@oxc-parser/binding-win32-ia32-msvc@0.142.0':
+ resolution: {integrity: sha512-GGi3+YphVHavvgs6gum2UXoNCqzHAmPt/nXkn8ZQZstV2Q1qZD1Mn8fz/nWrDkefHQtrG/+1/XrbMxsBTo6Svw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- '@oxc-parser/binding-win32-x64-msvc@0.133.0':
- resolution: {integrity: sha512-kjBhCiOGSYTwDJQuuZa7a94JbP8htWu7J0X1KwH74kV2K5eYf6eyJRYmkpCDvr0XEL8tMxYI4WU1VekblFCLgg==}
+ '@oxc-parser/binding-win32-x64-msvc@0.142.0':
+ resolution: {integrity: sha512-Ny/Wv4Us1LGC/ljwNTp+Hx3r/pH15EFfeDF0p+n898gt+TtRd6C9SccHcuUhDiNTb8s5tt7jdeAMDRQZ4Vq6hg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- '@oxc-project/types@0.113.0':
- resolution: {integrity: sha512-Tp3XmgxwNQ9pEN9vxgJBAqdRamHibi76iowQ38O2I4PMpcvNRQNVsU2n1x1nv9yh0XoTrGFzf7cZSGxmixxrhA==}
+ '@oxc-project/types@0.139.0':
+ resolution: {integrity: sha512-r9gHphtCs+1M7J0pw6Sn/hh/Wpa/iQrOOkrNAlVLF/gHq+/CJmHIWKKUUhdWjcD6CIa8idarspCsASiXCXvFUw==}
+
+ '@oxc-project/types@0.140.0':
+ resolution: {integrity: sha512-h5LUOzGArYemnW1NMz/DuuQhBi96J6JL2Bk8zE4kvqxB5Sg3jxmCiH4uyOWHDkiKSt5vWlG4FIwCR/DbstcNRQ==}
- '@oxc-project/types@0.133.0':
- resolution: {integrity: sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==}
+ '@oxc-project/types@0.142.0':
+ resolution: {integrity: sha512-7W+2q5AKQVU36fkaryontrHn3YDt1RyUYXatw9i5H8ocYe2sPKSFB6eS8WNPeRKiN1qAWWZUPm7gwFzJGrccqQ==}
- '@oxc-resolver/binding-android-arm-eabi@11.20.0':
- resolution: {integrity: sha512-IjfWOXRgJFNdORDl+Uf1aibNgZY2guOD3zmOhx1BGVb/MIiqlFTdmjpQNplSN58lhWehnX4UNqC3QwpUo8pjJg==}
+ '@oxc-project/types@0.143.0':
+ resolution: {integrity: sha512-u6JZdLBTLotrNC9Vd6vPssINdzcCzleKAH6EJKImQb7GtYvX5keN2dxkoK44stCc4tffE6QQRtZTXVSzsLUlWA==}
+
+ '@oxc-resolver/binding-android-arm-eabi@11.24.2':
+ resolution: {integrity: sha512-y09e0L0SRI2OA2tUIrjBgoV3eH5hvUKXNkJqXmNo5V2WxIjyC7I7aJfRLMEVpA8yi95f90gFDvO0VMgrDw+vwA==}
cpu: [arm]
os: [android]
- '@oxc-resolver/binding-android-arm64@11.20.0':
- resolution: {integrity: sha512-QqslZAuFQG8Q9xm7JuIn8JUbvywhSBMVhuQHtYW+auirZJloS41oxUUaBXk7uUhZJgp44c5zQLeVvmFaDQB+2Q==}
+ '@oxc-resolver/binding-android-arm64@11.24.2':
+ resolution: {integrity: sha512-cl4icWaZFnLdg8m6qtnh5rBMuGbxc/ptStFHLeCNwr+2cZjkjNwQu/jYRS0CHlnPecOJMpuS5M6/BH+0J/YkEg==}
cpu: [arm64]
os: [android]
- '@oxc-resolver/binding-darwin-arm64@11.20.0':
- resolution: {integrity: sha512-MUcavykj2ewlR+kc5arpg4tC2RvzJkUxWtNv74pf7lcNk00GpIpN43vXMj+j6r4eMmfZhlb8hueKoIb8e9kAGQ==}
+ '@oxc-resolver/binding-darwin-arm64@11.24.2':
+ resolution: {integrity: sha512-At29QEMF6HajbQvgY8K6OXnHD1x9rad74xBEfmCB6ZqCGsdq75aK7tOYcTbOanMy8qdIBrfL3SMr3p/lfSlb9w==}
cpu: [arm64]
os: [darwin]
- '@oxc-resolver/binding-darwin-x64@11.20.0':
- resolution: {integrity: sha512-BGB16nRUK5Etiv//ihPyzj8Lj1px0mhh4YIfe0FDf045ywknfSm0GEbiRESpr6Q4K82AvnyaRIhhluHByvS4bg==}
+ '@oxc-resolver/binding-darwin-x64@11.24.2':
+ resolution: {integrity: sha512-A5Kqr1EUj4oIL5CF4WRssq/o5P0Y11cwoFouMRmQ7YnC/A8V93nv1nb7aSU8HwcgmXropjLNkVTl4MN87cu28Q==}
cpu: [x64]
os: [darwin]
- '@oxc-resolver/binding-freebsd-x64@11.20.0':
- resolution: {integrity: sha512-JZgtePaqj3qmD5XFHJaSLWzHRxQu0LaPkdoM1KJXYADvAaa83ijXHclV3ej3CueeW0wxfIAbGCZVP45J0CA7uQ==}
+ '@oxc-resolver/binding-freebsd-x64@11.24.2':
+ resolution: {integrity: sha512-R5xkRBRRz7ceH/P5Jrc6G7FmdUdgpLYyESFAUDVTNQ9K0sGPxcp4ljiwEwEqsvNcQ4sYbMRrWcHHBCu7ksAJVw==}
cpu: [x64]
os: [freebsd]
- '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0':
- resolution: {integrity: sha512-hOQ/p3ry3v3SchUBXicrrnszaI/UmYzM4wtS4RGfwgVUX7a+HbyQSzJ5aOzu+o6XZkFkS3ZXN4PZAzhOb77OSg==}
+ '@oxc-resolver/binding-linux-arm-gnueabihf@11.24.2':
+ resolution: {integrity: sha512-k/RuYL4L/R58IBn3wT5ma3Wh4k62bp1eYCFRWCmMsasUOqL+H6sW0VGFadEzKWXFFlz+2uIMoeMk9ySSZJHgbg==}
cpu: [arm]
os: [linux]
- '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0':
- resolution: {integrity: sha512-2ArPksaw0AqeuGBfoS715VF+JvJQAhD2niWgjE5hVO+L+nAfikVQopvngCMX9x4BD8itWoQ3dnikrQyl5Ho5Jg==}
+ '@oxc-resolver/binding-linux-arm-musleabihf@11.24.2':
+ resolution: {integrity: sha512-bnHAak3ujYfH5pKk4NieFNbvYvernfoQDgwLddbZ3OtMYrem87/qjlA+u+aKG0oZcqSLGCful/6/CEA+aeAgaA==}
cpu: [arm]
os: [linux]
- '@oxc-resolver/binding-linux-arm64-gnu@11.20.0':
- resolution: {integrity: sha512-0bJnmYFp62JdZ4nVMDUZ/C58BCZOCcqgKtnUlp7L9Ojf/czIN+3j72YlLPeWLkzlr6SlYvIQA4SGV/HyO0d+qg==}
+ '@oxc-resolver/binding-linux-arm64-gnu@11.24.2':
+ resolution: {integrity: sha512-vDT3KHgzYp47gmtNOqL2VNhCyl5Zv643eyxm//A68J8DeUGXrvD1pZFiaT4jSfe+RInfnn1R2yVHye4enx6RnA==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@oxc-resolver/binding-linux-arm64-musl@11.20.0':
- resolution: {integrity: sha512-wKHHzPKZo7Ufhv/Bt6yxT7FOgnIgW4gwXcJUipkShGp68W3wGVqvr1Sr0fY65lN0Oy6y41+g2kIDvkgZaMMUkw==}
+ '@oxc-resolver/binding-linux-arm64-musl@11.24.2':
+ resolution: {integrity: sha512-+kMlQvbzfyEYtu5FcjE4p+ttBLpKW4d/AsAsuE69BxV6V4twZJeIQZFfD8gh/wqglY0MkPSezWXQH0jBV13MUw==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0':
- resolution: {integrity: sha512-RN8goF7Ie0B79L4i4G6OeBocTgSC56vJbQ65VJje+oXnldVpLnOU7j/AQ/dP94TcCS+Yh6WG8u3Qt4ETteXFNQ==}
+ '@oxc-resolver/binding-linux-ppc64-gnu@11.24.2':
+ resolution: {integrity: sha512-shjfMhmZ3gq9fv/w7bi3PnZlgOPG+2QAOFf0BJF0EgBSIGZ6PMLN2zbGEblTUYB/NKVDRyYhE2ff3dJ1QqNPkA==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0':
- resolution: {integrity: sha512-5l1yU6/xQEqLZRzxqmMxJfWPslpwCmBsdDGaBvABPehxquCXDC7dd7oraNdKSJUMDXSM7VvVj8H2D2FTjU7oWw==}
+ '@oxc-resolver/binding-linux-riscv64-gnu@11.24.2':
+ resolution: {integrity: sha512-zGelwFR5oRo+b69k8Lrzun86DyUHzfKN6cnjbR9l7Z7NIRznOE/2ZvPa1IUKqAL2PzAXOdwkfVqNvO1H2RlpAw==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@oxc-resolver/binding-linux-riscv64-musl@11.20.0':
- resolution: {integrity: sha512-xHEvkbgz6UC+A3JOyDQy76LkUaxsNSfIr3/GV8slwZsnuooJiIB34gzJfsyvR4JdCYNUUPsRJc/w/oWkODu+hg==}
+ '@oxc-resolver/binding-linux-riscv64-musl@11.24.2':
+ resolution: {integrity: sha512-qxZ1SWCXJY0eyhAlP6Lmo9F2Nrtx7EkYj9oCgL8apDPCwXwCEDA2U697bbT81JIc2IrVjxO4KX6WU2N+oN9Z4w==}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@oxc-resolver/binding-linux-s390x-gnu@11.20.0':
- resolution: {integrity: sha512-aWPDUUmSeyHvlW+SoEUd+JIJsQhVhu6a5tBpDRMu058naPAchTgAVGCFy35zjbnFlt0i8hLWziff6HX0D3LU4g==}
+ '@oxc-resolver/binding-linux-s390x-gnu@11.24.2':
+ resolution: {integrity: sha512-sGCecF3cx2DFlH4t/z7ApnOnXqN48p5p5mlHDEnHTAukQa2P+qMVE4CwyWE9W+q/m3QJ7kKfGrIjax31f44oFQ==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@oxc-resolver/binding-linux-x64-gnu@11.20.0':
- resolution: {integrity: sha512-x2YeSimvhJjKLVD8KSu8f/rqU1potcdEMkApIPJqjZWN7c2Fpt4g2X32WDg1p+XDAmyT7nuQGe0vnhvXeLbH+g==}
+ '@oxc-resolver/binding-linux-x64-gnu@11.24.2':
+ resolution: {integrity: sha512-k/VlMMcSzMlahb3/fENM4rTlsJ0s3fFROA0KXPBmKggqmTSaE383sl8F3KCOXPLmVsYfW6hCitMhXCEtNeZxxg==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@oxc-resolver/binding-linux-x64-musl@11.20.0':
- resolution: {integrity: sha512-kcRLEIxpZefeYfLChjpgFf3ilBzRDZ+yobMrpRsQlSrxuFGtm3U6PMU7AaEpMqo3NfDGVyJJseAjnRLzMFHjwQ==}
+ '@oxc-resolver/binding-linux-x64-musl@11.24.2':
+ resolution: {integrity: sha512-8hbnZyNi97b/8wapYaIF9+t9GmZKBW2vunaOc3h9HGJptH7b7XpvZqOTBSm/MpTjr7H497BlgOaSfLUdhmy2bw==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@oxc-resolver/binding-openharmony-arm64@11.20.0':
- resolution: {integrity: sha512-HHcfnApSZGtKhTiHqe8OZruOZe5XuFQH5/E0Yhj3u8fnFvzkM4/k6WjacUf4SvA0SPEAbfbgYmVPuo0VX/fIBQ==}
+ '@oxc-resolver/binding-openharmony-arm64@11.24.2':
+ resolution: {integrity: sha512-MvyGik3a6pVgZ0t/kWlbmFxFLmXQJwgLsY2eYFHLpy0wGwRbfzeIGgDwQ3kXqE30z+kSXennRkCrT7TUvkptNg==}
cpu: [arm64]
os: [openharmony]
- '@oxc-resolver/binding-wasm32-wasi@11.20.0':
- resolution: {integrity: sha512-Tn0y1XOFYHNfK1wp1Z5QK8Rcld/bsOwRISQXfqAZ5IBpv8Gz1IvV39fUWNprqNdRizgcvFhOzWwFun2zkJsyBg==}
+ '@oxc-resolver/binding-wasm32-wasi@11.24.2':
+ resolution: {integrity: sha512-vHcssMPwO08RTvj/c0iOBz90attxyG3wQJ0dTcyEQK43LRpcdLWZlV5feBhv6Isn6ahbQIzHbCgfa81+RiML0Q==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@oxc-resolver/binding-win32-arm64-msvc@11.20.0':
- resolution: {integrity: sha512-qPi25YNPe4YenS8MgsQU2+bIFHxxpLx1LVna2444cEHqNPhNjvWf9zqj4aWE43H9LpAsTmkkAlA3eL5ElBU3mA==}
+ '@oxc-resolver/binding-win32-arm64-msvc@11.24.2':
+ resolution: {integrity: sha512-uokJqro2iBqkFvJdKQLP7d8/BUmFwESQFVmIJUQKj1Xn1a/LysJoe1vmeECLF5b3jsV8CAL5sEMJXX6SdK9Nhg==}
cpu: [arm64]
os: [win32]
- '@oxc-resolver/binding-win32-x64-msvc@11.20.0':
- resolution: {integrity: sha512-Wb14jWEW8huH6It9F6sXd9vrYmIS7pMrgkU6sxpLxkP+9z+wRgs71hUEhRpcn8FOXAFa27FVWfY2tRpbfTzfLw==}
+ '@oxc-resolver/binding-win32-x64-msvc@11.24.2':
+ resolution: {integrity: sha512-UqGPmo56KDfLlfXFAFIrNflHT8tFxWGEivWg3Zeyp4Uy2NlKN1FGPr6/BxcLGG3+kZ6Wp14g5Uj+n71boqZfiw==}
cpu: [x64]
os: [win32]
@@ -6454,8 +6102,8 @@ packages:
resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==}
engines: {node: '>= 10.0.0'}
- '@preact/preset-vite@2.10.5':
- resolution: {integrity: sha512-p0vJpxiVO7KWWazWny3LUZ+saXyZKWv6Ju0bYMWNJRp2YveufRPgSUB1C4MTqGJfz07EehMgfN+AJNwQy+w6Iw==}
+ '@preact/preset-vite@2.10.6':
+ resolution: {integrity: sha512-ZZ5RIT2ZVXg8UxRA8VZpoT8CdpDG7RFIqOT4bELqNBp85+HKvQBbgmh3gsoW1UOQXx26TLe+ZRNKI7q281Kckw==}
peerDependencies:
'@babel/core': 7.x
vite: 2.x || 3.x || 4.x || 5.x || 6.x || 7.x || 8.x
@@ -6477,185 +6125,289 @@ packages:
preact: ^10.4.0 || ^11.0.0-0
vite: '>=2.0.0'
- '@publint/pack@0.1.4':
- resolution: {integrity: sha512-HDVTWq3H0uTXiU0eeSQntcVUTPP3GamzeXI41+x7uU9J65JgWQh3qWZHblR1i0npXfFtF+mxBiU2nJH8znxWnQ==}
+ '@publint/pack@0.1.6':
+ resolution: {integrity: sha512-3uVNyGcVplhPZSLVyeIpL7+cIRn1YCSNHLG/rUIlBQMVH8YuN9++YF+5+UDIIO9RW98dujiUoTltO7RDB5bFJA==}
engines: {node: '>=18'}
'@quansync/fs@1.0.0':
resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==}
- '@rolldown/binding-android-arm64@1.0.0-rc.4':
- resolution: {integrity: sha512-vRq9f4NzvbdZavhQbjkJBx7rRebDKYR9zHfO/Wg486+I7bSecdUapzCm5cyXoK+LHokTxgSq7A5baAXUZkIz0w==}
+ '@rolldown/binding-android-arm64@1.1.5':
+ resolution: {integrity: sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@rolldown/binding-android-arm64@1.0.3':
- resolution: {integrity: sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==}
+ '@rolldown/binding-android-arm64@1.2.0':
+ resolution: {integrity: sha512-9yB1l95IrJuNGDFdOYe79vdApdz6WWBCObE+rQ2LUliYUlcyFwSYIb2xb5/Ifw7dAtMy2ZqNyd8QTSOc7duAKw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@rolldown/binding-darwin-arm64@1.0.0-rc.4':
- resolution: {integrity: sha512-kFgEvkWLqt3YCgKB5re9RlIrx9bRsvyVUnaTakEpOPuLGzLpLapYxE9BufJNvPg8GjT6mB1alN4yN1NjzoeM8Q==}
+ '@rolldown/binding-android-arm64@1.2.3':
+ resolution: {integrity: sha512-zrJtHDcaZJ1Fp7xf4hNl+7seH9Cn/N5TwLYkhgXREtBwAd/jaqW3uqeHxpDugJLVICWg4eW44kOQEGJ1r6jCGw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@rolldown/binding-darwin-arm64@1.1.5':
+ resolution: {integrity: sha512-51Bnx9pNiMRKSUNtBfySkNJ9vMU9Hh3I1ozDd6gyPPYzaXCfnptUcEZxXGYFn+ul2dtcMUiqGR1Yai2K10uoTw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rolldown/binding-darwin-arm64@1.2.0':
+ resolution: {integrity: sha512-pexNaW9ACLUOaBITOpU6qVu4VrsOFIjTv6bzgu0YUATo4eUJx0V605PxwZfndpPOn0ilqGqvGQ0M8UW0IE24jg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@rolldown/binding-darwin-arm64@1.0.3':
- resolution: {integrity: sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==}
+ '@rolldown/binding-darwin-arm64@1.2.3':
+ resolution: {integrity: sha512-ieIiibVCp0tX7TLu2cafoNPv8wJyYi01ekXpbf8q2j7F4rGAhhXb/eQh7ge9DRBY78GwmRQtvjZDux7EDbA8kA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@rolldown/binding-darwin-x64@1.0.0-rc.4':
- resolution: {integrity: sha512-JXmaOJGsL/+rsmMfutcDjxWM2fTaVgCHGoXS7nE8Z3c9NAYjGqHvXrAhMUZvMpHS/k7Mg+X7n/MVKb7NYWKKww==}
+ '@rolldown/binding-darwin-x64@1.1.5':
+ resolution: {integrity: sha512-Tm+gbfC0aHu1tBA/JvKQh32S0K6YgCHkiAF4/W6xX0K0RmNuc94VeK419dJoE65R5aRxmo+noZQSWrAMF6yb6g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@rolldown/binding-darwin-x64@1.0.3':
- resolution: {integrity: sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==}
+ '@rolldown/binding-darwin-x64@1.2.0':
+ resolution: {integrity: sha512-NqKYaq0355ZmNMG4QGpxtEDxsc7tGDhjhCm4PpE0cwnBW+5Il95LJyq414niEiaKLVjnVHBEjSo1wngKxJNiFw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@rolldown/binding-freebsd-x64@1.0.0-rc.4':
- resolution: {integrity: sha512-ep3Catd6sPnHTM0P4hNEvIv5arnDvk01PfyJIJ+J3wVCG1eEaPo09tvFqdtcaTrkwQy0VWR24uz+cb4IsK53Qw==}
+ '@rolldown/binding-darwin-x64@1.2.3':
+ resolution: {integrity: sha512-Zh9tCon19eDXJoihx0rqKhMUlMYqzwj3aPsSuHmI4RWZh62dWUL+DJN4C5YQya5TcQBJU/Fe8+rY0jhXTQITqA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rolldown/binding-freebsd-x64@1.1.5':
+ resolution: {integrity: sha512-JMzDKCCXq93YccG5gz3hvOs1oXRKAf0XYpfOS88e+wZrC8Iugj6j68867vrYZkvpDDpKn/KoKORThmchMpF6TA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@rolldown/binding-freebsd-x64@1.0.3':
- resolution: {integrity: sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==}
+ '@rolldown/binding-freebsd-x64@1.2.0':
+ resolution: {integrity: sha512-3vPoHzh6eBTz9IbB0/qZdSr0Qeks2echn+I4cHu2joV74VriPDdldswksEDzrl1mBB+oPRi+67+3Ib59paxIPQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.4':
- resolution: {integrity: sha512-LwA5ayKIpnsgXJEwWc3h8wPiS33NMIHd9BhsV92T8VetVAbGe2qXlJwNVDGHN5cOQ22R9uYvbrQir2AB+ntT2w==}
+ '@rolldown/binding-freebsd-x64@1.2.3':
+ resolution: {integrity: sha512-nGbJWewA1wrXXZiQhjAT5rhibGfns5ZNkDVqxsO6zJ3f3YvpoDNNmGMSbbhLuXKjNScaBJVOAboztAWVespQMg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.5':
+ resolution: {integrity: sha512-uML21j2K5TfPGutKxub+M+nLjZIrWjXQ5Grx4lCe/nimTj9B4L63zHpjXLl4y0L3mcm2htEQIb06oCG/szerNw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@rolldown/binding-linux-arm-gnueabihf@1.0.3':
- resolution: {integrity: sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==}
+ '@rolldown/binding-linux-arm-gnueabihf@1.2.0':
+ resolution: {integrity: sha512-E6NNefZ1bUVmKJq2tJkf45J4Zyczj7qm9rUT7NY+Xo2474Y13qWAwc2tvBt0BAVbmtXR1llkxXg0Ou1jbDf2SQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.4':
- resolution: {integrity: sha512-AC1WsGdlV1MtGay/OQ4J9T7GRadVnpYRzTcygV1hKnypbYN20Yh4t6O1Sa2qRBMqv1etulUknqXjc3CTIsBu6A==}
+ '@rolldown/binding-linux-arm-gnueabihf@1.2.3':
+ resolution: {integrity: sha512-QNniJr5Kml0kDEB98jiDOJjXNroxIIi0IXIbdYzY26Xt1pVbeP62+KnoIZLwirOymX/0jDk/2gI/bNUv7A7OIw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-gnu@1.1.5':
+ resolution: {integrity: sha512-navSiuTMogvnQoZoM/v+l3ZWo50/NTwSHSzheABx/RCnmUPaKwq9qSo4Br2OYRs21+Fz8uFqITZM3H4opOB0/Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-arm64-gnu@1.2.0':
+ resolution: {integrity: sha512-D+TgkdgM1vu+7/Fpf8+v0ARW+RXEP9Ccazgm8zQ4JFFd9Q7SrYQ2TakU5S5ihazQDgpKyAgZDOcIFsvoHmTZ8w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-arm64-gnu@1.0.3':
- resolution: {integrity: sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==}
+ '@rolldown/binding-linux-arm64-gnu@1.2.3':
+ resolution: {integrity: sha512-TkqEAcmmvH3I/q4114NB4RVt6241Dao48pF45uLcFGrwAaIn0iITgTAKP/dLjbN0R4buJjGb91+UHSoFmpgIWw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-arm64-musl@1.0.0-rc.4':
- resolution: {integrity: sha512-lU+6rgXXViO61B4EudxtVMXSOfiZONR29Sys5VGSetUY7X8mg9FCKIIjcPPj8xNDeYzKl+H8F/qSKOBVFJChCQ==}
+ '@rolldown/binding-linux-arm64-musl@1.1.5':
+ resolution: {integrity: sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rolldown/binding-linux-arm64-musl@1.0.3':
- resolution: {integrity: sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==}
+ '@rolldown/binding-linux-arm64-musl@1.2.0':
+ resolution: {integrity: sha512-wUqdwJBbAv0APN87GecstdMUtLjjNTs0hBALpxETD73mccFxdmt/XeizXDtN5RAlBwNKmI+Tg+blect2G+8IeQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rolldown/binding-linux-ppc64-gnu@1.0.3':
- resolution: {integrity: sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==}
+ '@rolldown/binding-linux-arm64-musl@1.2.3':
+ resolution: {integrity: sha512-NHqjnxpsndf4MPymxteFAWHHfkTL8HjWh1KB7z23ofZ6QO2euONuxDXjat69dKZRALnGypg8k8SsK8vZJoXv1Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-linux-ppc64-gnu@1.1.5':
+ resolution: {integrity: sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-s390x-gnu@1.0.3':
- resolution: {integrity: sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==}
+ '@rolldown/binding-linux-ppc64-gnu@1.2.0':
+ resolution: {integrity: sha512-9DtF35qR9/NrfhM4oxLplCzVVjE+KKm8Pjemi0i/sdhAWkUasjmSo8WTTubNJClhSHCfyk2yeyoXDQEDPtDAAw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-ppc64-gnu@1.2.3':
+ resolution: {integrity: sha512-6tbrbwfz5GB9DQ4Jwo6hy9v+vR31xZlvzZ6n5Xut6Hhx5PvrA9q/HsK8KMaYQp063iqZGXwNvZtYNLD7EM/x0w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-s390x-gnu@1.1.5':
+ resolution: {integrity: sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-x64-gnu@1.0.0-rc.4':
- resolution: {integrity: sha512-DZaN1f0PGp/bSvKhtw50pPsnln4T13ycDq1FrDWRiHmWt1JeW+UtYg9touPFf8yt993p8tS2QjybpzKNTxYEwg==}
+ '@rolldown/binding-linux-s390x-gnu@1.2.0':
+ resolution: {integrity: sha512-RzuHrBh8X8Hntd2N4VR02QGEciq/9JhcZoTpR/Cee6otRrlILGCf3cg2ygHuih+ZebUnWmMrDX6ITI85btO6rQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-s390x-gnu@1.2.3':
+ resolution: {integrity: sha512-oyuXxXmoZHjXC917IAPFAAv4wWAa0cM9afk8nx1+9/jNNOX1uPf8yDA6p7G0RypOfw/X0PQt5IfoquY1um+zSg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-gnu@1.1.5':
+ resolution: {integrity: sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-gnu@1.2.0':
+ resolution: {integrity: sha512-MK7L0018jjh1jR3mh21G2j1zAVcpscJBlPo2z19pRjv2XOYGRhaV4LyiD8HO6nCDdZln9IFgCMIV5yt4E3klGQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-x64-gnu@1.0.3':
- resolution: {integrity: sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==}
+ '@rolldown/binding-linux-x64-gnu@1.2.3':
+ resolution: {integrity: sha512-TytMwF2KVGqP2tgd0I1OY0PAv78dZRAYcF5ssDzjM34SUXCED3uXvSd5+lHoC0bTD6eEdFz7LdQNCO1y0oVk9w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-x64-musl@1.0.0-rc.4':
- resolution: {integrity: sha512-RnGxwZLN7fhMMAItnD6dZ7lvy+TI7ba+2V54UF4dhaWa/p8I/ys1E73KO6HmPmgz92ZkfD8TXS1IMV8+uhbR9g==}
+ '@rolldown/binding-linux-x64-musl@1.1.5':
+ resolution: {integrity: sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-linux-x64-musl@1.2.0':
+ resolution: {integrity: sha512-gyrxLQ9NfGb/9LoVnC4kb9miUghw1mghnkfYvNHSnVIXriabnfgGPUP4RLcJm87q3KgYz4FYUG8IDiWUT+CpSw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rolldown/binding-linux-x64-musl@1.0.3':
- resolution: {integrity: sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==}
+ '@rolldown/binding-linux-x64-musl@1.2.3':
+ resolution: {integrity: sha512-/E9m3qstrJFVPoULV25mVQblSNExY2+kBsYe4sy0Tn0yOOgJ8wZbZt3KnRbF/XeU2Gl1STKUQnDNTqhIE5MD4A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rolldown/binding-openharmony-arm64@1.0.0-rc.4':
- resolution: {integrity: sha512-6lcI79+X8klGiGd8yHuTgQRjuuJYNggmEml+RsyN596P23l/zf9FVmJ7K0KVKkFAeYEdg0iMUKyIxiV5vebDNQ==}
+ '@rolldown/binding-openharmony-arm64@1.1.5':
+ resolution: {integrity: sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@rolldown/binding-openharmony-arm64@1.0.3':
- resolution: {integrity: sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==}
+ '@rolldown/binding-openharmony-arm64@1.2.0':
+ resolution: {integrity: sha512-/6VFMQGRmrhP77KXDC+StIxGzcNp5JOIyYtw0CQ8gPlzhpiIRucYfoM5FaFamHd5BJYIdH86yfP46l1p3WdrFA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@rolldown/binding-wasm32-wasi@1.0.0-rc.4':
- resolution: {integrity: sha512-wz7ohsKCAIWy91blZ/1FlpPdqrsm1xpcEOQVveWoL6+aSPKL4VUcoYmmzuLTssyZxRpEwzuIxL/GDsvpjaBtOw==}
- engines: {node: '>=14.0.0'}
+ '@rolldown/binding-openharmony-arm64@1.2.3':
+ resolution: {integrity: sha512-Kr0OcsoQI816i6HOl3vFHpd1K0eZyh76zgfj4c1nTyaTsd5r2Mj1lwM4R90y/qaCfmTn9eHy0SKwi98eitRxug==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rolldown/binding-wasm32-wasi@1.1.5':
+ resolution: {integrity: sha512-VbQGPX2b4r48TAMIM2cjgluIM1HYutm4pcTEJsle7iEP7sB1dFqtPLBVbdLAZCxy1txCcPxf4QFf4v8uvltPqA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [wasm32]
- '@rolldown/binding-wasm32-wasi@1.0.3':
- resolution: {integrity: sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==}
+ '@rolldown/binding-wasm32-wasi@1.2.0':
+ resolution: {integrity: sha512-rwdbUL465kisF24WEJLvP3JrEG6E5GRuIHt5wpMwHGERtHe4Wm2CIvtf5gTBgr2tGOHKh5NdKEAFS2VkOPE91g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [wasm32]
- '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.4':
- resolution: {integrity: sha512-cfiMrfuWCIgsFmcVG0IPuO6qTRHvF7NuG3wngX1RZzc6dU8FuBFb+J3MIR5WrdTNozlumfgL4cvz+R4ozBCvsQ==}
+ '@rolldown/binding-win32-arm64-msvc@1.1.5':
+ resolution: {integrity: sha512-gHv82k63z4qpV5+Q1y/12KrK0ltWBukVDI8nZcbT7Tt/ZlOIVwppazneq0F93oDxTo3IgAMEDIoQh3E2n6mVsw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@rolldown/binding-win32-arm64-msvc@1.0.3':
- resolution: {integrity: sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==}
+ '@rolldown/binding-win32-arm64-msvc@1.2.0':
+ resolution: {integrity: sha512-+5suHwRiKGmhwyUaNT8a5QbrBvLFh2DbO910TEmGRH1aSxwrCezodvGQnulv4uiWEIv1Kq4ypRsJ5+O+ry1DiA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@rolldown/binding-win32-x64-msvc@1.0.0-rc.4':
- resolution: {integrity: sha512-p6UeR9y7ht82AH57qwGuFYn69S6CZ7LLKdCKy/8T3zS9VTrJei2/CGsTUV45Da4Z9Rbhc7G4gyWQ/Ioamqn09g==}
+ '@rolldown/binding-win32-arm64-msvc@1.2.3':
+ resolution: {integrity: sha512-hOtMwTqnME+/gJcH/PCZ0wn0zPUjiWOgkHpxbSJpfGKMezHltx1S7/k1SitzVa7Ww2cqrDDaFbZEhcJZO8o+Jw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.1.5':
+ resolution: {integrity: sha512-tTZuDBPw85tEN5PQi1pnEBzDy0Z49HtScLAbD5t6hyeU92A95pRWaSMw1GZZi/RwgSgUIl0xrSlXIT/9QzvYSA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- '@rolldown/binding-win32-x64-msvc@1.0.3':
- resolution: {integrity: sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==}
+ '@rolldown/binding-win32-x64-msvc@1.2.0':
+ resolution: {integrity: sha512-WfFv6/qGufotqBSBzBYwgpCkJBk8Nj7697LL9vTz/XWc67e0r3oewu8iMRwQj3AUL45GVD7wVsPjCsAAtW66Wg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.2.3':
+ resolution: {integrity: sha512-ekcqMMkI2PlhYnfzQnB/cEdYUVVJViWvoUyLrbzgDoi3Snfc1mVBwdnc306ufA5ejy8JSPjT2RlW1nQSjW7efg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
@@ -6663,8 +6415,8 @@ packages:
'@rolldown/pluginutils@1.0.0':
resolution: {integrity: sha512-aKs/3GSWyV0mrhNmt/96/Z3yczC3yvrzYATCiCXQebBsGyYzjNdUphRVLeJQ67ySKVXRfMxt2lm12pmXvbPFQQ==}
- '@rolldown/pluginutils@1.0.0-rc.4':
- resolution: {integrity: sha512-1BrrmTu0TWfOP1riA8uakjFc9bpIUGzVKETsOtzY39pPga8zELGDl8eu1Dx7/gjM5CAz14UknsUMpBO8L+YntQ==}
+ '@rolldown/pluginutils@1.0.1':
+ resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
'@rollup/pluginutils@4.2.1':
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
@@ -6817,9 +6569,9 @@ packages:
cpu: [x64]
os: [win32]
- '@schematics/angular@21.2.13':
- resolution: {integrity: sha512-e5guslSLKbb3PJ6gUuVqM+V9xgn68cJkG1IyBohho34shbpOeoWW2eYdWQQjxvn0KUdgEhYSRBluBamCHngaUA==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@schematics/angular@22.1.3':
+ resolution: {integrity: sha512-5f5f0tKp3d25hjNGkvw2dtGgTN4wxPNhv1AXnhFkh+mLinQK9Qwzr2iEXDDrAuJEkvz1ACHq631IURWph0lqew==}
+ engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@shikijs/engine-oniguruma@3.23.0':
resolution: {integrity: sha512-1nWINwKXxKKLqPibT5f4pAFLej9oZzQTsby8942OTlsJzOBZ0MWKiwzMsd+jhzu8YPCHAswGnnN1YtQfirL35g==}
@@ -6836,46 +6588,22 @@ packages:
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
- '@sigstore/bundle@4.0.0':
- resolution: {integrity: sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@sigstore/core@3.2.0':
- resolution: {integrity: sha512-kxHrDQ9YgfrWUSXU0cjsQGv8JykOFZQ9ErNKbFPWzk3Hgpwu8x2hHrQ9IdA8yl+j9RTLTC3sAF3Tdq1IQCP4oA==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@sigstore/protobuf-specs@0.5.0':
- resolution: {integrity: sha512-MM8XIwUjN2bwvCg1QvrMtbBmpcSHrkhFSCu1D11NyPvDQ25HEc4oG5/OcQfd/Tlf/OxmKWERDj0zGE23jQaMwA==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- '@sigstore/sign@4.1.1':
- resolution: {integrity: sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@sigstore/tuf@4.0.2':
- resolution: {integrity: sha512-TCAzTy0xzdP79EnxSjq9KQ3eaR7+FmudLC6eRKknVKZbV7ZNlGLClAAQb/HMNJ5n2OBNk2GT1tEmU0xuPr+SLQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@sigstore/verify@3.1.0':
- resolution: {integrity: sha512-mNe0Iigql08YupSOGv197YdHpPPr+EzDZmfCgMc7RPNaZTw5aLN01nBl6CHJOh3BGtnMIj83EeN4butBchc8Ag==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@size-limit/esbuild@12.1.0':
- resolution: {integrity: sha512-Um6MVrX+05kIxI4+zk0ZByG9dA/Th1f+sfGc571D95BnCPc90/pl2+2OdsQuOyoWEbeAMqfcTKo0v07i+E65Vw==}
+ '@size-limit/esbuild@13.0.3':
+ resolution: {integrity: sha512-g24wsTxM3N/SaGv1MiiDjTShNrIna1WCNJ7NXMrlsWBHWv1OL0nCyllR1bDDHf+gV41lF7QxX7vknswoOr71DQ==}
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
- size-limit: 12.1.0
+ size-limit: 13.0.3
- '@size-limit/file@12.1.0':
- resolution: {integrity: sha512-eGwDcIufnNnvJRzv3liDOn6MAOGgmOTUdpeGQ2KuRTlgIgO54AJH1ilvktlJc6PIjNfwpYY0dOGyap1QgM1swQ==}
+ '@size-limit/file@13.0.3':
+ resolution: {integrity: sha512-PWTITIXH5p9aGIf6qq2Fruihn/b9nBQyfkyoAyb6DzFJgS1Ek9MSPJYKxKFLO8jdo0aqSgBPd3sevbS6PyBiJw==}
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
- size-limit: 12.1.0
+ size-limit: 13.0.3
- '@size-limit/preset-small-lib@12.1.0':
- resolution: {integrity: sha512-TVVQ/iuHbaGtHJrjur5s4XKYEyGk0nIwUAqhuzhKPbTyV9nYOH/laDelQ4vg3cGmm8sayRx998wxEdnwM/Yewg==}
+ '@size-limit/preset-small-lib@13.0.3':
+ resolution: {integrity: sha512-rqKn1+JkVF5ckZRmcxeQPZ8g0e9Fqddh6bjmDotijXJtN40KJQ+5TG6pTiYq3RaA4nkuEkixHULpDBGcgAARAg==}
peerDependencies:
- size-limit: 12.1.0
+ size-limit: 13.0.3
'@solid-primitives/event-listener@2.4.5':
resolution: {integrity: sha512-nwRV558mIabl4yVAhZKY8cb6G+O1F0M6Z75ttTu5hk+SxdOnKSGj+eetDIu7Oax1P138ZdUU01qnBPR8rnxaEA==}
@@ -6926,33 +6654,33 @@ packages:
engines: {node: ^14.13.1 || ^16.0.0 || >=18}
deprecated: unmaintained
- '@tanstack/angular-store@0.11.0':
- resolution: {integrity: sha512-MZXax5LbzrmX8SERXv3GlzURkqJ+EW7tMTn3Hw7dFmOBxknNpMUbbzHUgpco7W1dNavnrQVdYJ1Sz5JcQ00qvg==}
+ '@tanstack/angular-store@0.11.1':
+ resolution: {integrity: sha512-bQxr/YhTnF8BJi+uv+F4NNafrApmDk5n3ongglmZ0h+sOhwwyZLpLZF+Rt4852AEkkkPkRBvhb7zMSPPkHjqQg==}
peerDependencies:
'@angular/common': '>=19.0.0'
'@angular/core': '>=19.0.0'
- '@tanstack/devtools-client@0.0.6':
- resolution: {integrity: sha512-f85ZJXJnDIFOoykG/BFIixuAevJovCvJF391LPs6YjBAPhGYC50NWlx1y4iF/UmK5/cCMx+/JqI5SBOz7FanQQ==}
+ '@tanstack/devtools-client@0.0.8':
+ resolution: {integrity: sha512-cG3iZkGWCwN330bLBKa8+9r4Of2AXNoz2zUqcsy/4XsD3105ghVBx78cGyvJj9fSclNomPxoqAnDGXXhg1WLvA==}
engines: {node: '>=18'}
- '@tanstack/devtools-event-bus@0.4.1':
- resolution: {integrity: sha512-cNnJ89Q021Zf883rlbBTfsaxTfi2r73/qejGtyTa7ksErF3hyDyAq1aTbo5crK9dAL7zSHh9viKY1BtMls1QOA==}
+ '@tanstack/devtools-event-bus@0.4.2':
+ resolution: {integrity: sha512-2LHzhwBFlKHCcklsQrGe8TeyjHd4XAF8nuCO6wHmva5fePUkJUULbu6CsCNAlGlCi0KkEsMXZSvRdR4HgMq4yA==}
engines: {node: '>=18'}
- '@tanstack/devtools-event-client@0.4.3':
- resolution: {integrity: sha512-OZI6QyULw0FI0wjgmeYzCIfbgPsOEzwJtCpa69XrfLMtNXLGnz3d/dIabk7frg0TmHo+Ah49w5I4KC7Tufwsvw==}
+ '@tanstack/devtools-event-client@0.5.0':
+ resolution: {integrity: sha512-H+OH3zC6Vhu/K0NaVfQKknEKawc/+2PT+D3SB3Ox0V8SiMlTo0abbmH2rH0721R2aNYbjdMXA1oENOd8E2UVoA==}
engines: {node: '>=18'}
hasBin: true
- '@tanstack/devtools-ui@0.5.2':
- resolution: {integrity: sha512-GtaMk8kaGZ9ZdR8Pu5RAfcse/ZrxzH/xsAIFtHMapLs2VMqSPFfb1NvIDO1MAAfUcub8Ix8XKQEP0uYSPzoFKw==}
+ '@tanstack/devtools-ui@0.6.0':
+ resolution: {integrity: sha512-CVaM6rT6Nl5ijo83vJYFa2SjofvpuOl/uOvbYGhBrRgUhhelNHhx8zZX+hnZCHmIr0/lzM65hsocnZ72592Rvg==}
engines: {node: '>=18'}
peerDependencies:
solid-js: '>=1.9.7'
- '@tanstack/devtools-utils@0.5.0':
- resolution: {integrity: sha512-5wRNVDun+y2Gn2OrSj4S73TljY0B3YCzgfIm540tGkqmI6MTu78i57WT/3YOuEUfIyxtZiANRWEnk7fiLNFBZg==}
+ '@tanstack/devtools-utils@0.6.0':
+ resolution: {integrity: sha512-ebYkWwe/OqzkgQzqGlJ5fyjaNX/CSBKluGOAW9KvhKeAM6+/kQ7+BQGqWQUnXE5CQ6pjtjyyLkYBEQ2vmctaug==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -6961,6 +6689,7 @@ packages:
preact: '>=10.0.0'
react: '>=17.0.0'
solid-js: '>=1.9.7'
+ svelte: '>=5.0.0'
vue: '>=3.2.0'
peerDependenciesMeta:
'@angular/core':
@@ -6973,11 +6702,13 @@ packages:
optional: true
solid-js:
optional: true
+ svelte:
+ optional: true
vue:
optional: true
- '@tanstack/devtools@0.12.2':
- resolution: {integrity: sha512-Xdl8pLzoDUvXaclQ0poY36WAPx0jEHk8vqUFd8FYFUm1BMshtB7RnTgD1HE9jCAXODxqw9I0gXBiUZLK3o3+Bw==}
+ '@tanstack/devtools@0.13.0':
+ resolution: {integrity: sha512-p/nOH9bS/OO/u3402zPjoGu+Mz6Fzi/iRqJuYghuuYRUY32kZt+C0/d+pP/bi6/2JTi1FdT6oEXI2lWlA5tXxw==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -6993,25 +6724,25 @@ packages:
resolution: {integrity: sha512-XUewm2+D0K84ZSuWm1oMHfqw/flmO7IzCc+316php/XChgbMe30DStp1cF2Uc4IV0cI0G4hDq2RX3+NTxTIvWg==}
engines: {node: '>=18'}
- '@tanstack/preact-devtools@0.10.5':
- resolution: {integrity: sha512-SjFh1QHcAhQwnKD2APlx9Vt4zNr/MtuukhbNCWLx/F36M4D2rsDOcwT94E2SbFGppgZjHzYzhnbb7ceueJrQrg==}
+ '@tanstack/preact-devtools@0.10.9':
+ resolution: {integrity: sha512-KQRpfKdwNDnG+CHnjxsBN8IoawAMBuZZ/rdh+43WJVIk35mgWlbUwrnXbeJtEZW2IHofGTm3Ig1OQRWYjyqu4A==}
engines: {node: '>=18'}
peerDependencies:
preact: '>=10.0.0'
- '@tanstack/preact-store@0.13.1':
- resolution: {integrity: sha512-0h8ku2LfJ/TtVtgx24CLgS2OgzY5wVsRWIGktE0yq6b6fHlsCcY55IEJXTDRs0RTYWFOXu7N/1kfb2SLEOasaw==}
+ '@tanstack/preact-store@0.13.2':
+ resolution: {integrity: sha512-CBosOLog5UnaZX9YHRA2LKJm5XR0tCABvNWDfDMcyFeLtEnJ9W9DOVbz4JxXMb3+LZhGEMVrt1iA77npNx/9rw==}
peerDependencies:
preact: ^10.0.0
- '@tanstack/query-core@5.100.14':
- resolution: {integrity: sha512-5X41dGpxgeaHISCRW2oYwcSycZeULZzAunaudXT9ov1KOTj9xwt0CH6hbwqP1/z74ZWF7rYFnDpyYH07XFcZew==}
+ '@tanstack/query-core@5.101.4':
+ resolution: {integrity: sha512-gNwcvOJcRbLWPOLG/2OBm+zM+Yv+MKsXKEOWC57USuZDEsI71hEErQsiEGx5wX9rzWWkfwM0fVSPoiIFSsxfiw==}
- '@tanstack/query-devtools@5.100.14':
- resolution: {integrity: sha512-g96SmSSQecYTYcyuAMRXr895GplJv01UGt7qttQWPOUyZ5EGz5tbRc589bMc2m5BsPFD6O0PCEAHdbDYNP6UBw==}
+ '@tanstack/query-devtools@5.101.4':
+ resolution: {integrity: sha512-z5IPHnDX3aUWeTWlRKLyooBQekaCAw4xRpZqPQ390RiWTDBcTynjpPT221BArw0u2+pnQMdGvPQI9YNNubBcmA==}
- '@tanstack/react-devtools@0.10.5':
- resolution: {integrity: sha512-orVsRJ7oAXFb7oyafQCgx9YuK44jpILh5T/ddYuxAsolNfN5DZBr5/NLrWErD7HCGIzvYzg1TZI4sPxmiKvtvA==}
+ '@tanstack/react-devtools@0.10.9':
+ resolution: {integrity: sha512-lS6mtccEmUaodsWiRORGM/MGKT0jgzcy5v+eY6pzOPxEgzTHUDhca+WGxShFqKxmF4oneRxXjww1gkvMrWq6uw==}
engines: {node: '>=18'}
peerDependencies:
'@types/react': '>=16.8'
@@ -7026,48 +6757,54 @@ packages:
react: '>=16.8'
react-dom: '>=16.8'
- '@tanstack/react-query-devtools@5.100.14':
- resolution: {integrity: sha512-JkP5VDgKOw3t/QSA1OABRHEqx8BuNs5MfvZRooNqdvN57SzTuGq3fKR1a2IH5rqa5HDLUm+FOXUEnB9ueHiLzg==}
+ '@tanstack/react-query-devtools@5.101.4':
+ resolution: {integrity: sha512-VeK2gtmfj7kvRBjtxS7TKxt/6qKhn8VzabY4UiYMr7NV9CddjSRYRgeYyld+NpjAkgMV9dd+2Qdr8ah5I03NeA==}
peerDependencies:
- '@tanstack/react-query': ^5.100.14
+ '@tanstack/react-query': ^5.101.4
react: ^18 || ^19
- '@tanstack/react-query@5.100.14':
- resolution: {integrity: sha512-oOr6aRdSFEwWhzxEkD/9ZcItM3+LjBSkeVmadWKwUssAHTsqd/7bOjWrX4AbvEkoEhgAxzN0Xk6H/aYzXiYBAw==}
+ '@tanstack/react-query@5.101.4':
+ resolution: {integrity: sha512-yRg2pfOCxIs4ZJW3XYYHU/WgtD04FHSnfHlpRT7h7pR77hwkdRG4wxbKe4aq6P0RvXUTBSQpQeadS1SUYUe+KA==}
peerDependencies:
react: ^18 || ^19
- '@tanstack/react-store@0.11.0':
- resolution: {integrity: sha512-tX4YXh3PDkmpvGQWkWqKpzs/MSqbtuwY9dWdWhtV9Q50PmO+jOkUKIWIX4G85dwt7lxdHLXsiaEKPdKmC8F41w==}
+ '@tanstack/react-store@0.11.1':
+ resolution: {integrity: sha512-HaIGKI3YLmjBYIvy5DFDY23oNaYZIsTZfngey07Uh5iLVJgM3bIGCnZeOFOqzjFld9JHWcaHJnasD/bKoGKwJQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- '@tanstack/solid-devtools@0.8.5':
- resolution: {integrity: sha512-nWvLVjO5Grwf1zyZezcF2mwJKAHiz8PhQM+wHy28Isi4alPmAo41dPlbadZu0uRnvoUi/PUX1BLseOKjnja36A==}
+ '@tanstack/solid-devtools@0.8.9':
+ resolution: {integrity: sha512-0Mu8zkId46vK0fC+bmbUi3RwQS957hwERWRAQLZeqYCD0Hme9xd8ywo29TzQzpugtZjfNjizYQxXSVGNxfmUpQ==}
engines: {node: '>=18'}
peerDependencies:
solid-js: '>=1.9.7'
- '@tanstack/solid-store@0.11.0':
- resolution: {integrity: sha512-2isL0ZnnyI1iN0V+QPrxE3OcPndohBgVlBcHZYoAOIAiU1WoWjVy0q5gb0suPu1Id0h5cKC23JnwzQTxWDZD0w==}
+ '@tanstack/solid-store@0.11.1':
+ resolution: {integrity: sha512-wzJsiqqLHyQacqbYPT8dKNfhR00NNu743vGeWz2lEpOyE/R+6AYIfFLhXsCIT/Kb+KKiT1KDkB2/35DhLEGx8g==}
peerDependencies:
solid-js: ^1.6.0
- '@tanstack/store@0.11.0':
- resolution: {integrity: sha512-WlzzCt3xi0G6pCAJu1U+2jiECwabETDpQDi3hfkFZvJii9AuZqEKbOiVarX1/bWhTNjU486yQtJCCasi/0q+Cw==}
+ '@tanstack/store@0.11.1':
+ resolution: {integrity: sha512-mzTOBhypOuDJAy/D8n2MfUZ1HFkXnmSETviRyhqEC8LUE7/IZQExOTxMANj3KjTofYTkFNpBY67qaVrT41YccA==}
'@tanstack/typedoc-config@0.3.3':
resolution: {integrity: sha512-wVT2YfKDSpd+4f7fk6UaPIP3a2J7LSovlyVuFF1PH2yQb7gjqehod5zdFiwFyEXgvI9XGuFvvs1OehkKNYcr6A==}
engines: {node: '>=18'}
+ '@testing-library/dom@10.4.1':
+ resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
+ engines: {node: '>=18'}
+
'@testing-library/dom@8.20.1':
resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==}
engines: {node: '>=12'}
- '@testing-library/jest-dom@6.9.1':
- resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==}
- engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+ '@testing-library/jest-dom@7.0.0':
+ resolution: {integrity: sha512-HKAH9C6mBo5yBG6yRO5i43L2iisencAo5z+o5P/saHUoY+miC5ivXRxHBJcFyB5ypPNxHJdK3BoF/3O4DIptMg==}
+ engines: {node: '>=22', npm: '>=6', yarn: '>=1'}
+ peerDependencies:
+ '@testing-library/dom': '>=10 <11'
'@testing-library/preact@3.2.4':
resolution: {integrity: sha512-F+kJ243LP6VmEK1M809unzTE/ijg+bsMNuiRN0JEDIJBELKKDNhdgC/WrUSZ7klwJvtlO3wQZ9ix+jhObG07Fg==}
@@ -7075,16 +6812,8 @@ packages:
peerDependencies:
preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0'
- '@tufjs/canonical-json@2.0.0':
- resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@tufjs/models@4.1.0':
- resolution: {integrity: sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- '@tybys/wasm-util@0.10.1':
- resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
+ '@tybys/wasm-util@0.10.3':
+ resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
@@ -7119,6 +6848,9 @@ packages:
'@types/estree@1.0.9':
resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
+ '@types/gensync@1.0.5':
+ resolution: {integrity: sha512-MbsRCT7mTikHwKZ0X+LVUTLRrZZRLipTuXEO9qOYO+zmjMVk81axyClMROf6uoPD9MRVu46bx8zoR0Ad9q3NAg==}
+
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
@@ -7134,14 +6866,25 @@ packages:
'@types/node@25.7.0':
resolution: {integrity: sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==}
+ '@types/node@26.1.2':
+ resolution: {integrity: sha512-Vu4a5UFA9rIIFJ7rB/Vaafh9lrCQszopTCx6KjFboXTGQbPNasehVR5TEiithSDGyd1DEiUByggTZsg8jukeIg==}
+
'@types/react-dom@19.2.3':
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
peerDependencies:
'@types/react': ^19.2.0
+ '@types/react-dom@19.2.4':
+ resolution: {integrity: sha512-Bsc+QHgp+P/F02XDzNCY9jnZNCUuLki36KT7VKrTXXLdHf+vHMNZnW1rVu5DNW/rCK+fya3DATySbLM4yhtKUw==}
+ peerDependencies:
+ '@types/react': ^19.2.0
+
'@types/react@19.2.15':
resolution: {integrity: sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==}
+ '@types/react@19.2.18':
+ resolution: {integrity: sha512-AnzbBERsrLKtk2XSfTbYRLjQPdy116Sty4q+T+Bp3IC4l6jNBvreVPAHmpq9qhXQM7CXZPjLVmGMw9sy+hxQ3w==}
+
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
@@ -7175,8 +6918,8 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/project-service@8.60.0':
- resolution: {integrity: sha512-aZu74NNKJeUWqCjDddzdiKaS82dgYgV/vmf+Ui3ZdZejmgfXR/q+pRumgobnQ2cCJTgGTWp4ypiwsuofFubavg==}
+ '@typescript-eslint/project-service@8.66.0':
+ resolution: {integrity: sha512-7MthGPTt4BP69lSryqpqq8HQqxuzynssckL/jyDyk3+TNMQ3y2jFWkptCrktWvBrP+EH787Nl5N5Qpw7WZg+5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
@@ -7185,8 +6928,8 @@ packages:
resolution: {integrity: sha512-W1Lur1oF50FxSnNdGp3Vs6P+yBRSmZiw4IIjEeYxd8UQJwhUF0gDgDD/W/Tgmh73mxgEU3qX0Bzdl/NGuSPEpQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/scope-manager@8.60.0':
- resolution: {integrity: sha512-pFzqhllJMs+jghLQWzV00ds39xLzuyqPSev5pd8f4Ir0rtKR3ZLUB4/4dhjOFighWb9larvtfJvqL+4yKDI3Xw==}
+ '@typescript-eslint/scope-manager@8.66.0':
+ resolution: {integrity: sha512-8TGcH25j9zqJ/IULB/ppyhRvxA8QYfFEZ7nfbg6/BN9spDgb8fPWQXlE5l8TWBL50EtUx007uZ1o9VOwrq2/9g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/tsconfig-utils@8.58.0':
@@ -7201,6 +6944,12 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/tsconfig-utils@8.66.0':
+ resolution: {integrity: sha512-9D5gLYZG4rOjcoag8MQ/fWI8WqA9wcPDyOGyWtWFhvM1lHRbliqUSPIY5J3zqCU1tvSwzXxnnjhQhz5Ne7mJ4g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/type-utils@8.58.0':
resolution: {integrity: sha512-aGsCQImkDIqMyx1u4PrVlbi/krmDsQUs4zAcCV6M7yPcPev+RqVlndsJy9kJ8TLihW9TZ0kbDAzctpLn5o+lOg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -7208,8 +6957,8 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/type-utils@8.60.0':
- resolution: {integrity: sha512-SX46wEUtitCpq7AN38HkUU/+zvUpdKf7ephtWAFgckH8O7PQIyL5gvrhQgBLuEYgLfuKWOVvWVskMbuFHAz5xg==}
+ '@typescript-eslint/type-utils@8.66.0':
+ resolution: {integrity: sha512-LG2dWfjZQQp0ADtAu/EWJVayefGL2UEZ3CDeI44D9v3rXB/WYUqE/jpO28KrEKul5AySrmI+Zh1v6v+xW2U9+g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
@@ -7223,14 +6972,18 @@ packages:
resolution: {integrity: sha512-AsE7x2XaAK+CVbeih0Fvbn+r1qHxtpLDJ3XUuFcIinT318T90yHMJC+Zgv+jUuDjQQd06HKwxnDu6sz1IcTilA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/types@8.66.0':
+ resolution: {integrity: sha512-H6gcYaSDOyvL3AD/jHUtUFo2jqGgn/F6nuyuZSu0QTesxL+cP4dQoIMrODRofuJC09g64+WgZ6tE19Y1N2YIFQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/typescript-estree@8.58.0':
resolution: {integrity: sha512-7vv5UWbHqew/dvs+D3e1RvLv1v2eeZ9txRHPnEEBUgSNLx5ghdzjHa0sgLWYVKssH+lYmV0JaWdoubo0ncGYLA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/typescript-estree@8.60.0':
- resolution: {integrity: sha512-3AcZNBGMClm6CXDyo8kYvVGT/sx29sS0oBsIb9oZI2gunA4Vm2M3YHzRLPvsUBBsl+yB5FPtltq7gGH0iTlp9g==}
+ '@typescript-eslint/typescript-estree@8.66.0':
+ resolution: {integrity: sha512-8/x4INiiQb10jGgXYD7116/zQ+OL84ZIFn0za68wwFHCanT/VLbBEroWht8RV8fn0/ZCAoazHLQgwUC0UQcDfg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
@@ -7242,8 +6995,8 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/utils@8.60.0':
- resolution: {integrity: sha512-HtXuPfrHTyBDkameWpl+vJb1Uevu2tznAyahM1Oc4AENidCLTPiZDWIo4GfcxNdC/RcfGcadzzkqbRG87dUrQA==}
+ '@typescript-eslint/utils@8.66.0':
+ resolution: {integrity: sha512-jasearZPolBw5NJNYGMwxzHMF83niVWmMU1VdHzG1CyfI2VS7f7nZltnKtHcg20hW+7Uo5GfK4MeDPoU3qI8EA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
@@ -7253,8 +7006,8 @@ packages:
resolution: {integrity: sha512-XJ9UD9+bbDo4a4epraTwG3TsNPeiB9aShrUneAVXy8q4LuwowN+qu89/6ByLMINqvIMeI9H9hOHQtg/ijrYXzQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/visitor-keys@8.60.0':
- resolution: {integrity: sha512-9WI52t8ZGLVGrPMBet25yAftqY/n95+zmoUUtJBBQTKDSKUu7OsPTroT2op7U9JatkoRccL0YkWDNMFfC4Sjxg==}
+ '@typescript-eslint/visitor-keys@8.66.0':
+ resolution: {integrity: sha512-dkKR8q+lKciskj1Y3vthHktl+3cMLWGyVUP23bRiPZ5O9BRT++4EqDDV+TVeIKBL1VXVEqrJlz8MYbcnvJcAlg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
@@ -7360,14 +7113,14 @@ packages:
cpu: [x64]
os: [win32]
- '@vitejs/plugin-basic-ssl@2.1.4':
- resolution: {integrity: sha512-HXciTXN/sDBYWgeAD4V4s0DN0g72x5mlxQhHxtYu3Tt8BLa6MzcJZUyDVFCdtjNs3bfENVHVzOsmooTVuNgAAw==}
+ '@vitejs/plugin-basic-ssl@2.3.0':
+ resolution: {integrity: sha512-bdyo8rB3NnQbikdMpHaML9Z1OZPBu6fFOBo+OtxsBlvMJtysWskmBcnbIDhUqgC8tcxNv/a+BcV5U+2nQMm1OQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
peerDependencies:
- vite: ^6.0.0 || ^7.0.0
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0
- '@vitejs/plugin-react@6.0.2':
- resolution: {integrity: sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==}
+ '@vitejs/plugin-react@6.0.5':
+ resolution: {integrity: sha512-BOVzne/NL162sMdResB25mUv+vWMF5NoAjNf09TeGlE7ZpszZWSD3winycicLJw72yeVsoCn/2kOhEuCvEShMA==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
'@rolldown/plugin-babel': ^0.1.7 || ^0.2.0
@@ -7379,11 +7132,11 @@ packages:
babel-plugin-react-compiler:
optional: true
- '@vitest/expect@4.1.7':
- resolution: {integrity: sha512-1R+tw0ortHEbZDGMymm+pN7/AFQ/RkFFdtd7EN+VBpynKmLbP8A3rpEXdshBJ7+8hQ9zBJh/i1s0yKNtxAnU7w==}
+ '@vitest/expect@4.1.10':
+ resolution: {integrity: sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==}
- '@vitest/mocker@4.1.7':
- resolution: {integrity: sha512-vY7nuamKgfvpA1Koa3oYIw/k7D6kZnpGyNMZW8loow2bsBYla1TFdqTaXncWdRn4pgwNs+90RhnXhJScDwQeJA==}
+ '@vitest/mocker@4.1.10':
+ resolution: {integrity: sha512-v0xaezt+DKEmKfaxg133ldzADrwLGd7Ze1MfQQTYfvs8OqZIwbxyxaYURivwV7sWy5fqn3rH5uOrSp07bp44Ow==}
peerDependencies:
msw: ^2.4.9
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -7393,32 +7146,163 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@4.1.7':
- resolution: {integrity: sha512-umgCarTOYQWIaDMvGDRZij+6b9oVeLIyJzfN+AS88e0ZOU3QTgNNSTtjQOpcvWr3np1N0j4WgZj+sb3oYBDscw==}
+ '@vitest/pretty-format@4.1.10':
+ resolution: {integrity: sha512-W1HsjSH4MXQ9YfmmhLAoIYf1HRfekQCGngeIgcei6MP5QQGWUe0gkopdZQaVCFO+JDJMrAJGwa5pRpNpvy4P8Q==}
- '@vitest/runner@4.1.7':
- resolution: {integrity: sha512-BapjmAQ2aI78WdMEfeUWivnfVzB+VPGwWRQcJE0OUq7qEeEcBsCSf+0T5iREBNE5nBb4wA5Ya0W6IA+sghdEFw==}
+ '@vitest/runner@4.1.10':
+ resolution: {integrity: sha512-IKI6kpIH+LmpROplyLwBBaCfMgOZOMsygVa6BARD6ahA04VRuJSa6OaVG7kRvSEMD870Vd91rSSw0eegtWyLGg==}
- '@vitest/snapshot@4.1.7':
- resolution: {integrity: sha512-ZacLzja+TmJeZ1h14xW2FB/WpeimUD3haBXQPyJqxvo8jQTmfeA8zv58mtjN2C7EHXZDYVcVYdYmAxjkWVvKCw==}
+ '@vitest/snapshot@4.1.10':
+ resolution: {integrity: sha512-xRkfOT1qpTAi/Ti4Y1LtfRc3kEuqxGw59eN2jN9pRWMtS/XDevekhcFSqvQqjUNGksfjMJu3Y+oJ+4Ypn2OaJw==}
- '@vitest/spy@4.1.7':
- resolution: {integrity: sha512-kbkI5LMWakyuTIvs6fUJ5qdIVb1XVKsYJAT4OJ938cHMROYMSfmoQdZy0aaAnjbbc8F61vkoTqz/Az+/HiIu5Q==}
+ '@vitest/spy@4.1.10':
+ resolution: {integrity: sha512-PLf/Ugvoq5wO/b4rwYCR1h2PSIdXz7wnkQFMiUpLdtM7l6pqVFcQIBEHyT1+l+cj7mNwAfZHzqXqDyjvOuwbDw==}
- '@vitest/utils@4.1.7':
- resolution: {integrity: sha512-T532WBu791cBxJlCl6SO+J14l81DQx6uQHm1bQbmCDY7nqlEIgkza/UFnSBNaUtSf41unldDFjdOBYEQC4b5Hw==}
+ '@vitest/utils@4.1.10':
+ resolution: {integrity: sha512-fy9am/HWxbaGt/Sawrp90vt6Y6jQwf1RX77cz3uwoJwJVMli/e1IEwRPnMNJ7vKfPTwo0diXifkpPvwH9v7nGA==}
'@yarnpkg/lockfile@1.1.0':
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
+ '@yuku-codegen/binding-android-arm64@0.8.3':
+ resolution: {integrity: sha512-/EKnnqwvN7xYoVDhQEIEJTdPDwGW1wkFz/2Eku3ES/IJd4lcQh/OaIDFBmoJKvpe12enrb1TIoYh1fxasGXolA==}
+ cpu: [arm64]
+ os: [android]
+
+ '@yuku-codegen/binding-darwin-arm64@0.8.3':
+ resolution: {integrity: sha512-DFAOliF5YIPv3ayNHGOJhIun6Af4kMaL/YXxf8ZtD1qrOIMFnX/AQBhwfvLalhwmmxuGA8AUteaKRHBvdKZFVA==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@yuku-codegen/binding-darwin-x64@0.8.3':
+ resolution: {integrity: sha512-WlMh4/oEibaTzE9j5Zq8qnsrH4Ii4kWdcDv/Pj2Rb/MYSrKghtg+bxbWpPe/6zJD21p9zZBApQUxl8ECpZOJuQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@yuku-codegen/binding-freebsd-x64@0.8.3':
+ resolution: {integrity: sha512-hoDOpPP0FTxPSD+6w0Gs4p8iL1yXe6jjIXcdzNxyT1KE6B3JI6O0gTIWQISJ+8QyNpNjIwBb7nHCdRavktJM6A==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@yuku-codegen/binding-linux-arm-gnu@0.8.3':
+ resolution: {integrity: sha512-nNW0GGMJyF04pK4A7Kq7WAYtUWU9uI5ugDAoXl9yHpd3IIZ8UI+zFlM01e+ZGWnQcdxYYLumeRe/EjzZT9bVfQ==}
+ cpu: [arm]
+ os: [linux]
+ libc: [glibc]
+
+ '@yuku-codegen/binding-linux-arm-musl@0.8.3':
+ resolution: {integrity: sha512-/jpxKhO8AV5TmXgT3R2Gv3YctKRUhyDzd5bQw8TiJ3O4z7qerHzoW2kE40fPAO3L434/IZtZbdhr8HuOqiwECA==}
+ cpu: [arm]
+ os: [linux]
+ libc: [musl]
+
+ '@yuku-codegen/binding-linux-arm64-gnu@0.8.3':
+ resolution: {integrity: sha512-CYhLJfnCknabfLvUjsanxC5s3BBtZHUwfzdDL7GcqShIRQh2qqgG7pPfFrFJ6Jp56kkjKXkfluFGn9nnIv0nZg==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@yuku-codegen/binding-linux-arm64-musl@0.8.3':
+ resolution: {integrity: sha512-c6gEdnI0MgA7/rVw6CACMciSbAcxVwLyD/jSBbMLWUeqqbysCNGrGPAHdpSaadpz3W1bd+OdXt9XWjfm66708w==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@yuku-codegen/binding-linux-x64-gnu@0.8.3':
+ resolution: {integrity: sha512-CRVZ9Rw5lIah/PpWeShWv7XiUCMY15N6rZRA2sEZrQvc5Az7Dv9/wsDMa6oBMkfQLXuDkFo4G1QOYyWbebjejg==}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@yuku-codegen/binding-linux-x64-musl@0.8.3':
+ resolution: {integrity: sha512-G12Nhecjmv7OlbCX6Y4HU4wYYePd111kTE+yTjbitnt+P3m8bNegtYG4ZGo4scGTq8cKsLF4xcda1XNzCUA6nQ==}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@yuku-codegen/binding-win32-arm64@0.8.3':
+ resolution: {integrity: sha512-i8bpXWaMlik9DvFl+89emEx3RZFtSd21Vlt0UrnPvUC7h8NGElP2SwQcdcG+pPmihFIYJAoIuJLw7YdQcFcDkA==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@yuku-codegen/binding-win32-x64@0.8.3':
+ resolution: {integrity: sha512-vlYymeTSsx+qxZoNvdl6KehgYDaQC4Sk/9KUnM3V2mriyCwSdhW7lqdpQGl+RLGsDTxyuRGjzGIjgRWk3lohmA==}
+ cpu: [x64]
+ os: [win32]
+
+ '@yuku-parser/binding-android-arm64@0.8.3':
+ resolution: {integrity: sha512-vySYRsMeul9ssvxeHdxgS9ZUIcq7gqljWNqgokjJE0uQWvVvOprihJ6hOsiifVqWsla0BMc3vAFBvNS9QqCw7g==}
+ cpu: [arm64]
+ os: [android]
+
+ '@yuku-parser/binding-darwin-arm64@0.8.3':
+ resolution: {integrity: sha512-+wpB/wqhiZ685Y77I+lj6v9pHSAJ3Y+QMHJmvch0Q0ahIMbNwtKk3s54MhtjCMKO1qpjPbyN/PjuHDg2hbKaVQ==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@yuku-parser/binding-darwin-x64@0.8.3':
+ resolution: {integrity: sha512-jKqiWejj4zVy7pPtEGu4/Ty+pG1h7ooQOXIkm7shKZTSwTU9X8X+eoH11uIeKHZi2SQWV0GhNz0J56eerseysQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@yuku-parser/binding-freebsd-x64@0.8.3':
+ resolution: {integrity: sha512-FC7zSwzFzd4z9bsId07CiHLR+Iw6yW/LzIQhL5AUtPUuVXLgEyx0rilgbRUYkl1CT3GJcLpkh63WuPZUSgCDzw==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@yuku-parser/binding-linux-arm-gnu@0.8.3':
+ resolution: {integrity: sha512-So61j88b9/ygDnUPlWCm1EUPw4HSxAyDjrNHKgud5N3aRDQ3kw94nW7TriXbo7GBXID9oBHCMNm1r1Fof/Df5Q==}
+ cpu: [arm]
+ os: [linux]
+ libc: [glibc]
+
+ '@yuku-parser/binding-linux-arm-musl@0.8.3':
+ resolution: {integrity: sha512-Nmnn20yJvSSKL8ZdtqReBRSGCDkSMqR5jEk/Sk/cdIdZmqVD49Z6M7w2GbMjdrxMI1MBPbsWFMMWxa93cd5t5g==}
+ cpu: [arm]
+ os: [linux]
+ libc: [musl]
+
+ '@yuku-parser/binding-linux-arm64-gnu@0.8.3':
+ resolution: {integrity: sha512-Lfgw7AXJ0rxu6BMPGgfc8HLJWEIr8BHhCzcQp/75k+NM90uCLkHlBNqIg/K42KlSvBgAvu9euOvjdswib+4qJA==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@yuku-parser/binding-linux-arm64-musl@0.8.3':
+ resolution: {integrity: sha512-cfRyu87xsJ0tFkHNsnMC4Rq6+xsFJ6i2dc4VAH52d2qLvykEJU/Mdi3ul1O2PyOApX/LoLT3uQZ0fWs3D5XE4w==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@yuku-parser/binding-linux-x64-gnu@0.8.3':
+ resolution: {integrity: sha512-GcQQCUuYxbm6P1n+io/A50rvWKDeWHutIp6rW0ycDOZuEQjOb8hDVgS88+NDyOnd9FfS0/Z6GXopcRFDyKpzOg==}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@yuku-parser/binding-linux-x64-musl@0.8.3':
+ resolution: {integrity: sha512-rMkImBGZzg7GZlj8krYtdiezyjYI4igjKWMut5T65jHyNWFigMQrEpn9mDIBflloW9FKhGE3mN6yTZ/N+4HRwg==}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@yuku-parser/binding-win32-arm64@0.8.3':
+ resolution: {integrity: sha512-/2Pl2cAzCXWxah8FqJapEj/ikpt9cEutEZFCa0hnbfrshkn5+C+aBM3ZDq62d1jsgQjBMmqr5HVhJUA4OAG/Tg==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@yuku-parser/binding-win32-x64@0.8.3':
+ resolution: {integrity: sha512-Ntnvjoan9jnfLhn7Kn3h8j/bhsbVdQSVmKUqFULKtmwImLCJVHOJbLL4qbEJyrOQ7r/FBL1/c/dRvx/AQWzzXg==}
+ cpu: [x64]
+ os: [win32]
+
+ '@yuku-toolchain/types@0.8.3':
+ resolution: {integrity: sha512-9LN3HYs3A9qSPVFunsxlbfwBcUgexti3TmhOzIxB/UH8zFuaHQJXTRDcN17DW6cp1GsyZtiZA7f18uIra36Jag==}
+
'@zkochan/js-yaml@0.0.7':
resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==}
hasBin: true
- abbrev@4.0.0:
- resolution: {integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
accepts@2.0.0:
resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
engines: {node: '>= 0.6'}
@@ -7433,9 +7317,13 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- agent-base@7.1.4:
- resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
- engines: {node: '>= 14'}
+ agent-base@6.0.2:
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
+
+ agent-base@9.0.0:
+ resolution: {integrity: sha512-TQf59BsZnytt8GdJKLPfUZ54g/iaUL2OWDSFCCvMOhsHduDQxO8xC4PNeyIkVcA5KwL2phPSv0douC0fgWzmnA==}
+ engines: {node: '>= 20'}
ajv-formats@3.0.1:
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
@@ -7451,9 +7339,8 @@ packages:
ajv@8.18.0:
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
- algoliasearch@5.48.1:
- resolution: {integrity: sha512-Rf7xmeuIo7nb6S4mp4abW2faW8DauZyE2faBIKFaUfP3wnpOvNSbiI5AwVhqBNj0jPgBWEvhyCu0sLjN2q77Rg==}
- engines: {node: '>= 14.0.0'}
+ ajv@8.20.0:
+ resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==}
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
@@ -7496,6 +7383,9 @@ packages:
aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
+ aria-query@5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+
aria-query@5.3.1:
resolution: {integrity: sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g==}
engines: {node: '>= 0.4'}
@@ -7516,10 +7406,6 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
- ast-kit@3.0.0-beta.1:
- resolution: {integrity: sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==}
- engines: {node: '>=20.19.0'}
-
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -7527,8 +7413,8 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- axios@1.16.0:
- resolution: {integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==}
+ axios@1.18.1:
+ resolution: {integrity: sha512-3nTvFlvpn9Zu/RkHUqtc7/+al4UpRW5az71ap5zccp6e8RAYEzhMTecX8Dz1wWDYrPpUoB1HAQEGEAEvUr7S9g==}
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
@@ -7572,8 +7458,8 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- beasties@0.4.1:
- resolution: {integrity: sha512-2Imdcw3LznDuxAbJM26RHniOLAzE6WgrK8OuvVXCQtNBS8rsnD9zsSEa3fHl4hHpUY7BYTlrpvtPVbvu9G6neg==}
+ beasties@0.4.3:
+ resolution: {integrity: sha512-fIIeLOcbAB/K1kb1HBVJoiq1alHL4RCYBSo5e7HzrNkkgMggXR1Vqt/Z9JWnkfe/qdCo66Ux3QRwZioAIBdWRA==}
engines: {node: '>=18.0.0'}
better-path-resolve@1.0.0:
@@ -7583,11 +7469,8 @@ packages:
bidi-js@1.0.3:
resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
- birecord@0.1.1:
- resolution: {integrity: sha512-VUpsf/qykW0heRlC8LooCq28Kxn3mAqKohhDG/49rrsQ1dT1CXyj/pgXS+5BSRzFTR/3DyIBOqQOrGyZOh71Aw==}
-
- birpc@4.0.0:
- resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==}
+ birecord@0.1.2:
+ resolution: {integrity: sha512-5PAPTTmMpMEb+GuMb5DebfBkipRGyIW9+gtwEBSoDA9xkhHILm04+hZQ702pMksu3d8YAuGkmgTzQWcKqTPScA==}
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -7602,9 +7485,9 @@ packages:
brace-expansion@2.0.3:
resolution: {integrity: sha512-MCV/fYJEbqx68aE58kv2cA/kiky1G8vux3OR6/jbS+jIMe/6fJWa0DTzJU7dqijOWYwHi1t29FlfYI9uytqlpA==}
- brace-expansion@5.0.6:
- resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==}
- engines: {node: 18 || 20 || >=22}
+ brace-expansion@5.0.8:
+ resolution: {integrity: sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==}
+ engines: {node: 20 || >=22}
brace-expansion@5.0.9:
resolution: {integrity: sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==}
@@ -7622,9 +7505,17 @@ packages:
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+ buffer-image-size@0.6.4:
+ resolution: {integrity: sha512-nEh+kZOPY1w+gcCMobZ6ETUp9WfibndnosbpwB1iJk/8Gt5ZF2bhS6+B6bPYz424KtwsR6Rflc3tCz1/ghX2dQ==}
+ engines: {node: '>=4.0'}
+
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ bundle-name@4.1.0:
+ resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
+ engines: {node: '>=18'}
+
bytes-iec@3.1.1:
resolution: {integrity: sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==}
engines: {node: '>= 0.8'}
@@ -7637,10 +7528,6 @@ packages:
resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==}
engines: {node: '>=20.19.0'}
- cacache@20.0.4:
- resolution: {integrity: sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
call-bind-apply-helpers@1.0.2:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
@@ -7678,18 +7565,10 @@ packages:
resolution: {integrity: sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg==}
engines: {node: '>=20.18.1'}
- chokidar@4.0.3:
- resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
- engines: {node: '>= 14.16.0'}
-
chokidar@5.0.0:
resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
engines: {node: '>= 20.19.0'}
- chownr@3.0.0:
- resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
- engines: {node: '>=18'}
-
cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
@@ -7737,9 +7616,6 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- colorette@2.0.20:
- resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
-
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -7834,6 +7710,14 @@ packages:
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ default-browser-id@5.0.0:
+ resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
+ engines: {node: '>=18'}
+
+ default-browser@5.2.1:
+ resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
+ engines: {node: '>=18'}
+
defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
@@ -7841,9 +7725,9 @@ packages:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
- define-lazy-prop@2.0.0:
- resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
- engines: {node: '>=8'}
+ define-lazy-prop@3.0.0:
+ resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
+ engines: {node: '>=12'}
define-properties@1.2.1:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
@@ -7860,6 +7744,10 @@ packages:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
+ dequal@2.0.3:
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
+
detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
@@ -7978,17 +7866,10 @@ packages:
resolution: {integrity: sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==}
engines: {node: '>=20.19.0'}
- env-paths@2.2.1:
- resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
- engines: {node: '>=6'}
-
environment@1.1.0:
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
engines: {node: '>=18'}
- err-code@2.0.3:
- resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
-
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -8011,18 +7892,8 @@ packages:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
- esbuild@0.27.3:
- resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
- engines: {node: '>=18'}
- hasBin: true
-
- esbuild@0.27.4:
- resolution: {integrity: sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==}
- engines: {node: '>=18'}
- hasBin: true
-
- esbuild@0.28.0:
- resolution: {integrity: sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==}
+ esbuild@0.28.1:
+ resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==}
engines: {node: '>=18'}
hasBin: true
@@ -8087,11 +7958,11 @@ packages:
peerDependencies:
eslint: '>=7'
- eslint-plugin-react-dom@5.8.8:
- resolution: {integrity: sha512-/LJV9CsNHF+cysy79Q0eG7rJ6Nwd+BfJFDiNjVK9dijJM3zvPjPz0zrjCDCc1sk4c++AQCdfJxhdxtHjH55HlQ==}
+ eslint-plugin-react-dom@5.18.3:
+ resolution: {integrity: sha512-iGZys8sreyijVkaWG41HBugjgduh4kSOu4Jyk2wLOjo7Ssn9hga2B6LOLoAP63IoFnHWs9TDVv7Tb0zEupvcSQ==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
eslint-plugin-react-hooks@7.1.1:
@@ -8100,39 +7971,39 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0
- eslint-plugin-react-jsx@5.8.8:
- resolution: {integrity: sha512-IcLHXnWB5xqjK/YnhZ8dnjYy2JloWsqTFxgaHONr7NAXpD//tSaOfdVF7Iwjmgxb33fyB3SNQ1ff97bgLuvfYQ==}
+ eslint-plugin-react-jsx@5.18.3:
+ resolution: {integrity: sha512-/qNyr4eYy4RNgIown6grxmJUNx1wYWqXd0wCd1P1Rc6wbQTwGB6bpnZMXMTOBpPrs0mgAgCPAscFOV/mvm6MAw==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- eslint-plugin-react-naming-convention@5.8.8:
- resolution: {integrity: sha512-0GzT/FZV3wbz+XjYtkcxN9W3PwWLuKYiW0LHHUYGESuxqFKlm8iqjZb2ITxfScWKsfdHJ/eYu1ksO0DF3FNK2w==}
+ eslint-plugin-react-naming-convention@5.18.3:
+ resolution: {integrity: sha512-dLVqpOtFbw7juVrfWvHqnS266h+6eF99opK9d1JlnXbjMSjWFlteIsQ7028cjNkgkObdZhLx50CxCJ0EnBfnyQ==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- eslint-plugin-react-rsc@5.8.8:
- resolution: {integrity: sha512-+6SsDrFhoQodn9kXRfCKIgvsdPGbtkFNIEftoKSvQz4OPO6kIbd3iwP5NpI3zsWFc2Q4Vd1rTJK2r6Pvdi9rhw==}
+ eslint-plugin-react-rsc@5.18.3:
+ resolution: {integrity: sha512-7+NVV+PEQ2Jst/05AY9RlqeFgd2gRQBNf6vZ32T8qMOR19YVv6qATTPVOW1NBTKHC4dHjUl7XXohWQ+FEWpcfw==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- eslint-plugin-react-web-api@5.8.8:
- resolution: {integrity: sha512-5qZmcVC7zPCujE6zh875zooZ4+30tNHpJ6MqFj9gXDDEYDdJ/qaq6f6C1853XrnE88Rvjfjg2DqLViTnaUSEGA==}
+ eslint-plugin-react-web-api@5.18.3:
+ resolution: {integrity: sha512-HlOCcicEaNp2I7jM9fTtuhZg61EFvdurRhuxnRtRP4X7qRroS0nZ683zJ1I+jJ1F+LkATwUWiHg4WMvsQ00ePQ==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
- eslint-plugin-react-x@5.8.8:
- resolution: {integrity: sha512-mbrVmwcbJuuHW5M+uwM2kTvl/Tq/7NkWEJ1lx1Ulb+i0dkXpP2Acr2rBqpX7oOyCzEjwTpALDav+RGI5IYOV1g==}
+ eslint-plugin-react-x@5.18.3:
+ resolution: {integrity: sha512-hkqWrDcp2wzsEHxhPeMkD8bB5yU5cCQMLeJSQ78r8sNZtktVGmV5YU+7yTUMKfApK+XkXLa7dAujdwhhS1fTiA==}
engines: {node: '>=22.0.0'}
peerDependencies:
- eslint: ^10.3.0
+ eslint: '*'
typescript: '*'
eslint-plugin-unused-imports@4.4.1:
@@ -8235,9 +8106,6 @@ packages:
resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
engines: {node: '>=12.0.0'}
- exponential-backoff@3.1.3:
- resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
-
express-rate-limit@8.3.2:
resolution: {integrity: sha512-77VmFeJkO0/rvimEDuUC5H30oqUC4EyOhyGccfqoLebB0oiEYfM7nwPrsDsBL1gsTpwfzX8SFy2MT3TDyRq+bg==}
engines: {node: '>= 16'}
@@ -8264,9 +8132,18 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ fast-string-truncated-width@3.0.3:
+ resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==}
+
+ fast-string-width@3.0.2:
+ resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==}
+
fast-uri@3.1.0:
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
+ fast-wrap-ansi@0.2.2:
+ resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==}
+
fastq@1.20.1:
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
@@ -8330,8 +8207,8 @@ packages:
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
engines: {node: '>= 0.4'}
- form-data@4.0.5:
- resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
+ form-data@4.0.6:
+ resolution: {integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==}
engines: {node: '>= 6'}
formatly@0.3.0:
@@ -8358,10 +8235,6 @@ packages:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
- fs-minipass@3.0.3:
- resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -8396,6 +8269,9 @@ packages:
get-tsconfig@4.14.0:
resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==}
+ get-tsconfig@4.14.1:
+ resolution: {integrity: sha512-Dz/6HxkrxgNehhxLVeyv8sad9UzF2xBVeaKBQNDfJ5XiSXmp2gTR0eO0RWiT2NCKS5aGP9jjkOMggTN90qU50A==}
+
get-tsconfig@5.0.0-beta.5:
resolution: {integrity: sha512-/6gFNr0N04nob252sTQxyFLi3eKFRqIg1I87YcqAMT1i6SQrSF6KujUEQrtrjMV0H/eejTCltLdDSTEMzHbnsQ==}
engines: {node: '>=20.20.0'}
@@ -8408,13 +8284,6 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob-to-regexp@0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
-
- glob@13.0.6:
- resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
- engines: {node: 18 || 20 || >=22}
-
globals@15.15.0:
resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
engines: {node: '>=18'}
@@ -8442,8 +8311,8 @@ packages:
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- happy-dom@20.9.0:
- resolution: {integrity: sha512-GZZ9mKe8r646NUAf/zemnGbjYh4Bt8/MqASJY+pSm5ZDtc3YQox+4gsLI7yi1hba6o+eCsGxpHn5+iEVn31/FQ==}
+ happy-dom@20.11.1:
+ resolution: {integrity: sha512-XSt8tMzbW9ymE7687xztkO1ckR7qJNQ3LywY9vlYGhGi3zXrGBHuUo2Cl1ztZaICW+1eAGdkLbj6iwVqDT33kg==}
engines: {node: '>=20.0.0'}
has-bigints@1.1.0:
@@ -8465,8 +8334,8 @@ packages:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- hasown@2.0.2:
- resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ hasown@2.0.4:
+ resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
engines: {node: '>= 0.4'}
he@1.2.0:
@@ -8486,9 +8355,9 @@ packages:
hookable@6.1.1:
resolution: {integrity: sha512-U9LYDy1CwhMCnprUfeAZWZGByVbhd54hwepegYTK7Pi5NvqEj63ifz5z+xukznehT7i6NIZRu89Ay1AZmRsLEQ==}
- hosted-git-info@9.0.2:
- resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==}
- engines: {node: ^20.17.0 || >=22.9.0}
+ hosted-git-info@10.1.1:
+ resolution: {integrity: sha512-DeOnSPAvOndYKfw075gt8yZzQ7S2hNztw34zBTfhIzLhmBTswIBg5/y+pqu/VD5cYWm5goAFTusDmUEmKZ0PEQ==}
+ engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
html-encoding-sniffer@6.0.0:
resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==}
@@ -8503,20 +8372,17 @@ packages:
htmlparser2@10.1.0:
resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==}
- http-cache-semantics@4.2.0:
- resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
-
http-errors@2.0.1:
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
engines: {node: '>= 0.8'}
- http-proxy-agent@7.0.2:
- resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
- engines: {node: '>= 14'}
+ https-proxy-agent@5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
- https-proxy-agent@7.0.6:
- resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
- engines: {node: '>= 14'}
+ https-proxy-agent@9.1.0:
+ resolution: {integrity: sha512-ag87y7cJJ9/3+GxFr8Oy4O5faDsGRGnBGsJj/YjOSsSx/5eadKLYTMPlzuR6obgoCDDm0abAAZitXXQkMOPSpA==}
+ engines: {node: '>= 20'}
human-id@4.1.3:
resolution: {integrity: sha512-tsYlhAYpjCKa//8rXZ9DqKEawhPoSytweBC2eNvcaDK+57RZLHGqNs3PZTQO6yekLFSuvA6AlnAfrw1uBvtb+Q==}
@@ -8533,10 +8399,6 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore-walk@8.0.0:
- resolution: {integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
@@ -8548,6 +8410,9 @@ packages:
immutable@5.1.5:
resolution: {integrity: sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==}
+ import-meta-resolve@4.2.0:
+ resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
+
import-without-cache@0.4.0:
resolution: {integrity: sha512-NkJQA7oZ4YHQhd2+H3BoRFKF3d/XNsiKpHZCQEMH9pDX27hQQLsTyOocyRgaIVtf8gHX3Nt3LPkR4e5EdtPAGQ==}
engines: {node: ^22.18.0 || >=24.0.0}
@@ -8563,10 +8428,6 @@ packages:
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- ini@6.0.0:
- resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
@@ -8603,9 +8464,9 @@ packages:
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
- is-docker@2.2.1:
- resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
- engines: {node: '>=8'}
+ is-docker@3.0.0:
+ resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
is-extglob@2.1.1:
@@ -8624,6 +8485,11 @@ packages:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
+ is-inside-container@1.0.0:
+ resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
+ engines: {node: '>=14.16'}
+ hasBin: true
+
is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
@@ -8701,9 +8567,9 @@ packages:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- is-wsl@2.2.0:
- resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
- engines: {node: '>=8'}
+ is-wsl@3.1.0:
+ resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
+ engines: {node: '>=16'}
isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
@@ -8711,10 +8577,6 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- isexe@4.0.0:
- resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==}
- engines: {node: '>=20'}
-
istanbul-lib-coverage@3.2.2:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
@@ -8730,6 +8592,9 @@ packages:
jose@6.2.2:
resolution: {integrity: sha512-d7kPDd34KO/YnzaDOlikGpOurfF0ByC2sEV4cANCtdqLlTfBlw2p14O/5d/zv40gJPbIQxfES3nSx1/oYNyuZQ==}
+ js-tokens@10.0.0:
+ resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -8741,11 +8606,11 @@ packages:
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
- jsdom@29.1.1:
- resolution: {integrity: sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q==}
- engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0}
+ jsdom@30.0.1:
+ resolution: {integrity: sha512-52v7mUVUfNQVYYqE1lcdaymWL0njO7lTLUog6ZvW2U5KsbiLk/GnZlVJ+qx0xfNJZ6Gn+KSpPNE52vurbxZwrA==}
+ engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
peerDependencies:
- canvas: ^3.0.0
+ canvas: ^3.2.3
peerDependenciesMeta:
canvas:
optional: true
@@ -8758,10 +8623,6 @@ packages:
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- json-parse-even-better-errors@5.0.0:
- resolution: {integrity: sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
@@ -8779,24 +8640,17 @@ packages:
engines: {node: '>=6'}
hasBin: true
- jsonc-parser@3.2.0:
- resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
-
jsonc-parser@3.3.1:
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
- jsonparse@1.3.1:
- resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
- engines: {'0': node >= 0.2.0}
-
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
- knip@6.15.0:
- resolution: {integrity: sha512-uBaKFEGcu/HG4EY2gWFBMr+fBF43Jftoc2riJX51TKME1Z46C8UQIbNEusenYbEWihphxe2PY0Kns0yPvPYz4A==}
+ knip@6.32.0:
+ resolution: {integrity: sha512-KDX9OmmOFmlvmxTkrx6Z0GHISMut+pXMSKR8eg84bovaxJKx2NdQD4JYCXveSbvieRe107W6vCD2xCpmz0qBYA==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
@@ -8813,30 +8667,60 @@ packages:
cpu: [arm64]
os: [android]
+ lightningcss-android-arm64@1.33.0:
+ resolution: {integrity: sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
lightningcss-darwin-arm64@1.32.0:
resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
+ lightningcss-darwin-arm64@1.33.0:
+ resolution: {integrity: sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
lightningcss-darwin-x64@1.32.0:
resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
+ lightningcss-darwin-x64@1.33.0:
+ resolution: {integrity: sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
lightningcss-freebsd-x64@1.32.0:
resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
+ lightningcss-freebsd-x64@1.33.0:
+ resolution: {integrity: sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
lightningcss-linux-arm-gnueabihf@1.32.0:
resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
+ lightningcss-linux-arm-gnueabihf@1.33.0:
+ resolution: {integrity: sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
lightningcss-linux-arm64-gnu@1.32.0:
resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
engines: {node: '>= 12.0.0'}
@@ -8844,6 +8728,13 @@ packages:
os: [linux]
libc: [glibc]
+ lightningcss-linux-arm64-gnu@1.33.0:
+ resolution: {integrity: sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
lightningcss-linux-arm64-musl@1.32.0:
resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
engines: {node: '>= 12.0.0'}
@@ -8851,6 +8742,13 @@ packages:
os: [linux]
libc: [musl]
+ lightningcss-linux-arm64-musl@1.33.0:
+ resolution: {integrity: sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
lightningcss-linux-x64-gnu@1.32.0:
resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
engines: {node: '>= 12.0.0'}
@@ -8858,6 +8756,13 @@ packages:
os: [linux]
libc: [glibc]
+ lightningcss-linux-x64-gnu@1.33.0:
+ resolution: {integrity: sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
lightningcss-linux-x64-musl@1.32.0:
resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
engines: {node: '>= 12.0.0'}
@@ -8865,22 +8770,45 @@ packages:
os: [linux]
libc: [musl]
+ lightningcss-linux-x64-musl@1.33.0:
+ resolution: {integrity: sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
lightningcss-win32-arm64-msvc@1.32.0:
resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
+ lightningcss-win32-arm64-msvc@1.33.0:
+ resolution: {integrity: sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
lightningcss-win32-x64-msvc@1.32.0:
resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
+ lightningcss-win32-x64-msvc@1.33.0:
+ resolution: {integrity: sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
lightningcss@1.32.0:
resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
engines: {node: '>= 12.0.0'}
+ lightningcss@1.33.0:
+ resolution: {integrity: sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==}
+ engines: {node: '>= 12.0.0'}
+
lilconfig@3.1.3:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
@@ -8892,12 +8820,12 @@ packages:
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
- listr2@9.0.5:
- resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
- engines: {node: '>=20.0.0'}
+ listr2@10.2.2:
+ resolution: {integrity: sha512-JtNtbZj8q5BnDMR7trpwvwk3RIrANtIVzEUm8w7amp6xelLgyuq+4WZoTH913XaQAoH/cNdYhaNzBPA2U3xbDw==}
+ engines: {node: '>=22.13.0'}
- lmdb@3.5.1:
- resolution: {integrity: sha512-NYHA0MRPjvNX+vSw8Xxg6FLKxzAG+e7Pt8RqAQA/EehzHVXq9SxDqJIN3JL1hK0dweb884y8kIh6rkWvPyg9Wg==}
+ lmdb@3.5.6:
+ resolution: {integrity: sha512-j3uE8ReKNyUWDjhfEFSJqE/1DLtfTR5Z8yFzVHvBjAk37wNg7HdScjcv8ttPHRvrdgPQMPWxFFI0SsdBzI5lBw==}
hasBin: true
locate-character@3.0.0:
@@ -8930,6 +8858,10 @@ packages:
resolution: {integrity: sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw==}
engines: {node: 20 || >=22}
+ lru-cache@11.5.2:
+ resolution: {integrity: sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==}
+ engines: {node: 20 || >=22}
+
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -8943,19 +8875,18 @@ packages:
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
- make-fetch-happen@15.0.5:
- resolution: {integrity: sha512-uCbIa8jWWmQZt4dSnEStkVC6gdakiinAm4PiGsywIkguF0eWMdcjDz0ECYhUolFU3pFLOev9VNPCEygydXnddg==}
- engines: {node: ^20.17.0 || >=22.9.0}
+ magic-string@1.0.0:
+ resolution: {integrity: sha512-CGvjzMN08iv6w1mm4/x3Gh1hLb4VnyRUA15FFpl6CsCIGGoe36k7kY5KNz9QDbSBN5I/fWHM6ZlIkUTa5xdUEA==}
markdown-it@14.1.1:
resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==}
hasBin: true
- markdown-link-extractor@4.0.3:
- resolution: {integrity: sha512-aEltJiQ4/oC0h6Jbw/uuATGSHZPkcH8DIunNH1A0e+GSFkvZ6BbBkdvBTVfIV8r6HapCU3yTd0eFdi3ZeM1eAQ==}
+ markdown-link-extractor@4.0.4:
+ resolution: {integrity: sha512-Dw9saacqF4u1EjUm3O+f0ZTBM/o7l1IrdHS8z1KSFX2coECIcJTZbltICMKx6QwHBKlzMQXgtWYnIHX71WHZMw==}
- marked@17.0.5:
- resolution: {integrity: sha512-6hLvc0/JEbRjRgzI6wnT2P1XuM1/RrrDEX0kPt0N7jGm1133g6X7DlxFasUIx+72aKAr904GTxhSLDrd5DIlZg==}
+ marked@18.0.9:
+ resolution: {integrity: sha512-/Sa4qiiHZxf0/FQdBBowr9q4r10krCwMvpK48FUBdXdUXScDxiQGR9zCPrFgRVR5LU3iySOiIjy09ZQvADir1w==}
engines: {node: '>= 20'}
hasBin: true
@@ -9032,38 +8963,6 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass-collect@2.0.1:
- resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minipass-fetch@5.0.2:
- resolution: {integrity: sha512-2d0q2a8eCi2IRg/IGubCNRJoYbA1+YPXAzQVRFmB45gdGZafyivnZ5YSEfo3JikbjGxOdntGFvBQGqaSMXlAFQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- minipass-flush@1.0.7:
- resolution: {integrity: sha512-TbqTz9cUwWyHS2Dy89P3ocAGUGxKjjLuR9z8w4WUTGAVgEj17/4nhgo2Du56i0Fm3Pm30g4iA8Lcqctc76jCzA==}
- engines: {node: '>= 8'}
-
- minipass-pipeline@1.2.4:
- resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
- engines: {node: '>=8'}
-
- minipass-sized@2.0.0:
- resolution: {integrity: sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA==}
- engines: {node: '>=8'}
-
- minipass@3.3.6:
- resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
- engines: {node: '>=8'}
-
- minipass@7.1.3:
- resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minizlib@3.1.0:
- resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
- engines: {node: '>= 18'}
-
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
@@ -9082,18 +8981,23 @@ packages:
msgpackr@1.11.9:
resolution: {integrity: sha512-FkoAAyyA6HM8wL882EcEyFZ9s7hVADSwG9xrVx3dxxNQAtgADTrJoEWivID82Iv1zWDsv/OtbrrcZAzGzOMdNw==}
- mute-stream@2.0.0:
- resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ mute-stream@3.0.0:
+ resolution: {integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
nanoid@3.3.12:
resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.1.7:
- resolution: {integrity: sha512-ua3NDgISf6jdwezAheMOk4mbE1LXjm1DfMUDMuJf4AqxLFK3ccGpgWizwa5YV7Yz9EpXwEaWoRXSb/BnV0t5dQ==}
- engines: {node: ^18 || >=20}
+ nanoid@3.3.17:
+ resolution: {integrity: sha512-xQLf0A3HOMlgHq0n247/LRuAOYmB7dXJ/DvAxGvsSBij45XtBSmQycu+F8ODbHwns/XyFZagyL1+J0Offw1E0g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
+ nanoid@6.0.1:
+ resolution: {integrity: sha512-3wVS3i51pE2pi1k5FFL/95BGfVS0kSsvDVuGXHOtxox/TywUmtgq+3qiTOTbs9J7KfHaXPiN171k/A6dBnaXFw==}
+ engines: {node: ^22 || ^24 || >=26}
hasBin: true
nanospinner@1.2.2:
@@ -9130,49 +9034,15 @@ packages:
resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
hasBin: true
- node-gyp@12.2.0:
- resolution: {integrity: sha512-q23WdzrQv48KozXlr0U1v9dwO/k59NHeSzn6loGcasyf0UnSrtzs8kRxM+mfwJSf0DkX0s43hcqgnSO4/VNthQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
- hasBin: true
-
node-html-parser@6.1.13:
resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==}
node-releases@2.0.36:
resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
- nopt@9.0.0:
- resolution: {integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==}
- engines: {node: ^20.17.0 || >=22.9.0}
- hasBin: true
-
- npm-bundled@5.0.0:
- resolution: {integrity: sha512-JLSpbzh6UUXIEoqPsYBvVNVmyrjVZ1fzEFbqxKkTJQkWBO3xFzFT+KDnSKQWwOQNbuWRwt5LSD6HOTLGIWzfrw==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- npm-install-checks@8.0.0:
- resolution: {integrity: sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- npm-normalize-package-bin@5.0.0:
- resolution: {integrity: sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- npm-package-arg@13.0.2:
- resolution: {integrity: sha512-IciCE3SY3uE84Ld8WZU23gAPPV9rIYod4F+rc+vJ7h7cwAJt9Vk6TVsK60ry7Uj3SRS3bqRRIGuTp9YVlk6WNA==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- npm-packlist@10.0.4:
- resolution: {integrity: sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- npm-pick-manifest@11.0.3:
- resolution: {integrity: sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- npm-registry-fetch@19.1.1:
- resolution: {integrity: sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw==}
- engines: {node: ^20.17.0 || >=22.9.0}
+ npm-package-arg@14.0.0:
+ resolution: {integrity: sha512-69XQh3k+dtGa1p+7RaR57IuG3rCko96xr/nUfN4yDYBXbTYICiWcOpsFKLN2GtGE9cyIljE+f1exnaYt9MvM+Q==}
+ engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
@@ -9181,8 +9051,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nx@22.7.5:
- resolution: {integrity: sha512-zoxsJabb33jl1QYnalDn0bicryrEBgSzdKp90d7VGGv/jDgzKrcLg/hw2ZxeYiOjWPIT/o8QNT9G9vTs4dv3AQ==}
+ nx@23.1.1:
+ resolution: {integrity: sha512-oDdW2JgVllgfyyN6OqlRzeABw0QrlXdxyl9rtOUMMXQzlkpYA1RTs8jinJCe6QSo7aEn0dZ+Ar7dd09hMudBsg==}
hasBin: true
peerDependencies:
'@swc-node/register': ^1.11.1
@@ -9216,6 +9086,10 @@ packages:
obug@2.1.1:
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
+ obug@2.1.4:
+ resolution: {integrity: sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==}
+ engines: {node: '>=12.20.0'}
+
on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
@@ -9231,20 +9105,20 @@ packages:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- open@8.4.2:
- resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
- engines: {node: '>=12'}
+ open@10.1.0:
+ resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ engines: {node: '>=18'}
optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
- ora@5.3.0:
- resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==}
+ ora@5.4.1:
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
- ora@9.3.0:
- resolution: {integrity: sha512-lBX72MWFduWEf7v7uWf5DHp9Jn5BI8bNPGuFgtXMmr2uDz2Gz2749y3am3agSDdkhHPHYmmxEGSKH85ZLGzgXw==}
+ ora@9.4.1:
+ resolution: {integrity: sha512-6VlU9MLXbjVQD04AZCMX28hVtA5bUoadvUqO76MUCVA0ilwJbMiHsITRPfyVm6p/BC0Av/BXMujx39WCe1LEqw==}
engines: {node: '>=20'}
ordered-binary@1.6.1:
@@ -9253,12 +9127,12 @@ packages:
outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
- oxc-parser@0.133.0:
- resolution: {integrity: sha512-661RSx+ZcjBmjBYid+Fpp/2F5EbtildpeoZh5HdgnGs+jZ03nqQEQW8yGkt4BGyOC3OMPDQQRl8M5kqD2/g6jw==}
+ oxc-parser@0.142.0:
+ resolution: {integrity: sha512-kKR+jPiRJYJDexVoziIg/FVGvr1fT1FZSSJOk6tVoMKKSlsf1Cso+cgGCJkOEDWOP174vRntCPFKg+AS7InWvw==}
engines: {node: ^20.19.0 || >=22.12.0}
- oxc-resolver@11.20.0:
- resolution: {integrity: sha512-CblytBiV/a/ZXY34dsVU2NxhIOxMXst8CvDCtyBelVITgd7PLrKzbEbA6oKLdPjvDKDzCiW48qzmzZ+mYaqn+g==}
+ oxc-resolver@11.24.2:
+ resolution: {integrity: sha512-FY91FiDBj7ls5MsFS9jN3tjz2o0/zsdSsymlakySaBwVJZorHhkWyICLZMKxlu1R9vYo+sd3z1jwb4J8x7bNDw==}
p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
@@ -9284,10 +9158,6 @@ packages:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
- p-map@7.0.4:
- resolution: {integrity: sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==}
- engines: {node: '>=18'}
-
p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
@@ -9295,16 +9165,11 @@ packages:
package-manager-detector@0.2.11:
resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==}
- package-manager-detector@1.6.0:
- resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==}
+ package-manager-detector@1.8.0:
+ resolution: {integrity: sha512-yQA4H19AmPEoMUeavPMDIe1higySl/gH/yaQrkT/s07Qp+7pp2hYz30N3z2l5BkjVkF9Ow6o0wjJamm2y7Sn0A==}
- pacote@21.3.1:
- resolution: {integrity: sha512-O0EDXi85LF4AzdjG74GUwEArhdvawi/YOHcsW6IijKNj7wm8IvEWNF5GnfuxNpQ/ZpO3L37+v8hqdVh8GgWYhg==}
- engines: {node: ^20.17.0 || >=22.9.0}
- hasBin: true
-
- parse5-html-rewriting-stream@8.0.0:
- resolution: {integrity: sha512-wzh11mj8KKkno1pZEu+l2EVeWsuKDfR5KNWZOTsslfUX8lPDZx77m9T0kIoAVkFtD1nx6YF8oh4BnPHvxMtNMw==}
+ parse5-html-rewriting-stream@8.0.1:
+ resolution: {integrity: sha512-NaRku2aMpUN1Sh1Gyk1KWUh2A7EJx2c6qYzvwsPtqhoHoaURshdrceYK3LunVCm3WHhm6FS7Vcczbvdh3/UIVw==}
parse5-htmlparser2-tree-adapter@7.1.0:
resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
@@ -9333,10 +9198,6 @@ packages:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- path-scurry@2.0.2:
- resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
- engines: {node: 18 || 20 || >=22}
-
path-to-regexp@8.4.1:
resolution: {integrity: sha512-fvU78fIjZ+SBM9YwCknCvKOUKkLVqtWDVctl0s7xIqfmfb38t2TT4ZU2gHm+Z8xGwgW+QWEU3oQSAzIbo89Ggw==}
@@ -9358,12 +9219,16 @@ packages:
resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
engines: {node: '>=12'}
+ picomatch@4.0.5:
+ resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==}
+ engines: {node: '>=12'}
+
pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- piscina@5.1.4:
- resolution: {integrity: sha512-7uU4ZnKeQq22t9AsmHGD2w4OYQGonwFnTypDypaWi7Qr2EvQIFVtG8J5D/3bE7W123Wdc9+v4CZDu5hJXVCtBg==}
+ piscina@5.2.0:
+ resolution: {integrity: sha512-DszUCKeVN/5G5QKo6jAVHL8fmKnkJvQ0ACiVgY7YGCq3TUB2oznAOayvZPIAdEThvhczkXR+qm3IHsNXpFCYfA==}
engines: {node: '>=20.x'}
pkce-challenge@5.0.1:
@@ -9387,8 +9252,17 @@ packages:
resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.29.2:
- resolution: {integrity: sha512-7tNmwg/7mzzAoB/8kSg6Hl37JraAZw3Z3A0JSY7VXlZwo82Xn0G7wKbNNs2qoF4ZEEsQGTwDAroNdqKs1ofJxQ==}
+ postcss@8.5.25:
+ resolution: {integrity: sha512-DTPx3RWSSnWyzLxQnlH0rJP+EW5ekl16ZU4/psbIhA0e53kJfdgaN5vKM+xP7yJtXVu+nfdVFmlgFDEKAe4Pyw==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ preact@10.29.8:
+ resolution: {integrity: sha512-ej2aVZ+vZ8WO7tvlQWRM9N63A0KzF9q4mWJfDUHgYaIofWY9hu74QdnQrjoPMmZi2/nZ5gN0bJCQF49xQqx09Q==}
+ peerDependencies:
+ preact-render-to-string: '>=5'
+ peerDependenciesMeta:
+ preact-render-to-string:
+ optional: true
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -9399,19 +9273,20 @@ packages:
engines: {node: '>=6'}
hasBin: true
- prettier-plugin-svelte@3.5.2:
- resolution: {integrity: sha512-ItFouLvzSFE3ulNl4DKoWM3BGcbDCNVpIyy/Y3F2gC3aNiGLxtFUdffVqO5Z5hhYG+DFT5KULWaxmeFFpdbvaQ==}
+ prettier-plugin-svelte@4.1.1:
+ resolution: {integrity: sha512-wXvbXMjSvb4C9ENWTHXyd+ihakKCsJ6rJhLP6/8HFNj4GkZr48jqL9PoKsl2sk7SyCZRTnJ7O2TTowUpOxP/KA==}
+ engines: {node: '>=20'}
peerDependencies:
prettier: ^3.0.0
- svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
+ svelte: ^5.0.0
prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.8.3:
- resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==}
+ prettier@3.9.6:
+ resolution: {integrity: sha512-OpN0zzVdiaiAhxpuuj5efpIS4sY9j7bY6uR5mnj5yPzGkdkjNKSJeUThPb60Jw29QuAZgA4o+/iB49kFiaBX6g==}
engines: {node: '>=14'}
hasBin: true
@@ -9419,24 +9294,29 @@ packages:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- proc-log@6.1.0:
- resolution: {integrity: sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
- promise-retry@2.0.1:
- resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
- engines: {node: '>=10'}
+ proc-log@7.0.0:
+ resolution: {integrity: sha512-FYgfaA69XZ93zaXLoMNQ+ViDXGGBgR8aLh03txzcFhV+9xOXx7+8DLCULrKKpR9+GsH9ZfHm82aSUPpozX0Ztg==}
+ engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
+ proxy-agent-negotiate@1.1.0:
+ resolution: {integrity: sha512-N8IBcM3UgCVzz2L2Lqv8DVntDnnC8/hiV4nEDUPkqq72TPUgYWjQc+bdZlBPZK9LzPAvOY//gAt0S0DApoOXWQ==}
+ engines: {node: '>= 20'}
+ peerDependencies:
+ kerberos: ^2.0.0
+ peerDependenciesMeta:
+ kerberos:
+ optional: true
+
proxy-from-env@2.1.0:
resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==}
engines: {node: '>=10'}
- publint@0.3.21:
- resolution: {integrity: sha512-OqejcnMV6E9zel2oCrUOJEiiFkGiAAni0A6ibfQNh1k9Gu5z4F+Yso8lllam7AzmV6Do0vp7u3UpZNRBwuXaHQ==}
+ publint@0.3.23:
+ resolution: {integrity: sha512-5MQipUPcB7MWw84zLUkHrg/H/UBtk3LL+A0GngTTBSsiNJLQurMUaSIRG3edlOrRz4UFe0AOKK9TZdIWviV+jQ==}
engines: {node: '>=18'}
hasBin: true
@@ -9474,6 +9354,11 @@ packages:
peerDependencies:
react: ^19.2.6
+ react-dom@19.2.8:
+ resolution: {integrity: sha512-rVprimfGBG3DR+Tq0IQG2DT5PxKth1WIGDmj5yPmlzr4YBe7uyE+Du4oVqTDXZSHGGGXRtTJEGSSePyQCMBglQ==}
+ peerDependencies:
+ react: ^19.2.8
+
react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
@@ -9481,6 +9366,10 @@ packages:
resolution: {integrity: sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==}
engines: {node: '>=0.10.0'}
+ react@19.2.8:
+ resolution: {integrity: sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==}
+ engines: {node: '>=0.10.0'}
+
read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
@@ -9489,10 +9378,6 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
- readdirp@4.1.2:
- resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
- engines: {node: '>= 14.18.0'}
-
readdirp@5.0.0:
resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
engines: {node: '>= 20.19.0'}
@@ -9535,10 +9420,6 @@ packages:
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
engines: {node: '>=18'}
- retry@0.12.0:
- resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
- engines: {node: '>= 4'}
-
reusify@1.1.0:
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -9546,20 +9427,20 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rolldown-plugin-dts@0.25.2:
- resolution: {integrity: sha512-nMhN/R+vmR8GM45ZW1FWMSjRTSDDn/6w4GTf8RNrEFCBdl8B1kySWrU1ixPtbwzXoRlcO+R/S88VgXuJQwfdDg==}
- engines: {node: ^22.18.0 || >=24.0.0}
+ rolldown-plugin-dts@0.27.14:
+ resolution: {integrity: sha512-ZvuDDwoIpRK9RPxDXratCpklFO9QZZWndf/sd0VBFb4LEj0jj07UcHK9OCh7V4XiFz2Z89ziyBC2K6tJiDjrbw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@ts-macro/tsc': ^0.3.6
- '@typescript/native-preview': '>=7.0.0-dev.20260325.1'
+ '@typescript/native-preview': '*'
+ '@volar/typescript': ~2.4.0
rolldown: ^1.0.0
- typescript: ^5.0.0 || ^6.0.0
- vue-tsc: ~3.2.0
+ typescript: ^5.0.0 || ^6.0.0 || ~7.0.0
+ vue-tsc: ~3.2.0 || ~3.3.0
peerDependenciesMeta:
- '@ts-macro/tsc':
- optional: true
'@typescript/native-preview':
optional: true
+ '@volar/typescript':
+ optional: true
typescript:
optional: true
vue-tsc:
@@ -9572,13 +9453,18 @@ packages:
rolldown: '>=0.15.0'
solid-js: '>=1.8.0'
- rolldown@1.0.0-rc.4:
- resolution: {integrity: sha512-V2tPDUrY3WSevrvU2E41ijZlpF+5PbZu4giH+VpNraaadsJGHa4fR6IFwsocVwEXDoAdIv5qgPPxgrvKAOIPtA==}
+ rolldown@1.1.5:
+ resolution: {integrity: sha512-t9z29cJjXf/vxQ8dyhCSpt6H6aSwHTk8cT5I3iy6SMXuFpk5mB6PL6XfC8PCwrPTx93udwKUm9HRteAlTGBLiA==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
- rolldown@1.0.3:
- resolution: {integrity: sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==}
+ rolldown@1.2.0:
+ resolution: {integrity: sha512-u7tgm5l4Yw1iTqUL4EcYOAt7fFvCgQMLeidrnD4GALlC6aOznCjezYajgxeyKw27u0Q5N7fwgCzjVyPIWzwuBA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
+ rolldown@1.2.3:
+ resolution: {integrity: sha512-rn9wpmxplLf7NLNyCk9FyWh3FM43DbY8jOzCdEPzH7uflhTftRbCEpqi6Ly2osgoU8OwObtmavMbWLaWy4LX7A==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
@@ -9591,6 +9477,10 @@ packages:
resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
engines: {node: '>= 18'}
+ run-applescript@7.0.0:
+ resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ engines: {node: '>=18'}
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@@ -9611,9 +9501,9 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass@1.97.3:
- resolution: {integrity: sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==}
- engines: {node: '>=14.0.0'}
+ sass@1.101.0:
+ resolution: {integrity: sha512-OL3GoQyoUdDt843DpVmDO6y2k1sc5IhUDSpu8XucEI+35neq5QivZ1iuegnpraEVTJXlQGK1gl27zKcTLEPbQw==}
+ engines: {node: '>=20.19.0'}
hasBin: true
saxes@6.0.0:
@@ -9627,13 +9517,18 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.7.4:
- resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
+ semver@7.8.1:
+ resolution: {integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ semver@7.8.4:
+ resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==}
engines: {node: '>=10'}
hasBin: true
- semver@7.8.1:
- resolution: {integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==}
+ semver@7.8.5:
+ resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==}
engines: {node: '>=10'}
hasBin: true
@@ -9647,10 +9542,20 @@ packages:
peerDependencies:
seroval: ^1.0
+ seroval-plugins@1.5.6:
+ resolution: {integrity: sha512-HXuLAX2pu/UByPpaeo/TaMfvMIi+1QqIoPJYCcAtU8QkVNwgR6MPlGuCQTErV1JwraaMbYaWVIBX7mppzGLATQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ seroval: ^1.0
+
seroval@1.5.1:
resolution: {integrity: sha512-OwrZRZAfhHww0WEnKHDY8OM0U/Qs8OTfIDWhUD4BLpNJUfXK4cGmjiagGze086m+mhI+V2nD0gfbHEnJjb9STA==}
engines: {node: '>=10'}
+ seroval@1.5.6:
+ resolution: {integrity: sha512-rVQVWjjSvlINzaQPZH5JFqsqEsIWdTxY3iJZCnTL/5gQbXIRooVZKI60tVCkOVfzcRPejboxO2t0P89dg5mQaA==}
+ engines: {node: '>=10'}
+
serve-static@2.2.1:
resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
engines: {node: '>= 18'}
@@ -9674,48 +9579,52 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- sherif-darwin-arm64@1.11.1:
- resolution: {integrity: sha512-VoMrUv5QY6hQ2rByNa3AAhr/KGQsCb6pvAUNKa1iCh1jvnY836hQr6zNBw9hYCDkVv6t9sITFGJljwdTCQD4xw==}
+ sherif-darwin-arm64@1.13.0:
+ resolution: {integrity: sha512-k38jpGpZIEWS5dpSRLSvVi53LZuGO3hDqB88jgdLMDN11LZM6yTDcP0GytnQ8OpE6Br/Js6bDCLsdWDarZdV9g==}
cpu: [arm64]
os: [darwin]
- sherif-darwin-x64@1.11.1:
- resolution: {integrity: sha512-7j3yOCBkvVbltVT3lXoiazGfG2nb36FteYT5VZPEBSf8sTn1pPTScukAQ1Fdl+MphadGyici7XlRbDrtZ/wnvA==}
+ sherif-darwin-x64@1.13.0:
+ resolution: {integrity: sha512-W2bOj0Ya9A0fPSWzbeaaNg2RRRr48l2lArN8sGbfc9SZuJSJWXcdWkTVC3sEUiiXwpxNeLY/CsGNyQz5Izbfig==}
cpu: [x64]
os: [darwin]
- sherif-linux-arm64-musl@1.11.1:
- resolution: {integrity: sha512-DCf87RFqBh8ZrYgu3y+fv0x4kFn/np84m2jAEgygznwozH/VCfrXbHFVdhxW7762JCYkXbHO9dUj/ff5fkvkvw==}
+ sherif-linux-arm64-musl@1.13.0:
+ resolution: {integrity: sha512-9IDAlwYT5Ay2nex9Da3R98cvnPKVveT57i7pJXnnY/DC90qdqqz6Twlp7STRv+7qo4k4ES+2J9zQ0k6SDe888A==}
cpu: [arm64]
os: [linux]
+ libc: [musl]
- sherif-linux-arm64@1.11.1:
- resolution: {integrity: sha512-vCZFS7RxhZ/8g9bdj3UPNVPTcZiKiWigW+FIlVQEUKEKfG0MfSOMBJqEWPVVUniyJa3rdIxtmZKSdWkG0e1x3w==}
+ sherif-linux-arm64@1.13.0:
+ resolution: {integrity: sha512-Z94SgKNClWarVJj4LsayOmL7zccCUAvy3ugZnIO860FoJofh812KAyF8CdWrSho8qfmmoAzNcqSSc1OZh7+ckQ==}
cpu: [arm64]
os: [linux]
+ libc: [glibc]
- sherif-linux-x64-musl@1.11.1:
- resolution: {integrity: sha512-f8xitqXdHObUFPZo4QVbz3o30Y4+gHA3B5ZobsOWocnSfJBaUGutBzJsUsjG6w2tccSRn6+mugiMUGKIbIPZmQ==}
+ sherif-linux-x64-musl@1.13.0:
+ resolution: {integrity: sha512-2L+A8jF5ylojFwl7eAePR1h3Bzx24IcMgEoWObXgD70k6xF+GOJaM/n+q4MQ9YDntAKbJfMDr6ETjt6Bt/hosA==}
cpu: [x64]
os: [linux]
+ libc: [musl]
- sherif-linux-x64@1.11.1:
- resolution: {integrity: sha512-9t+p1X3SyhU75BrJNHBbj9i/aQxHC/sF+Mdkf17V5AlokCznFgYKQUXq5EVmcmRDDhDl69RMzCTLD95EBqUSYA==}
+ sherif-linux-x64@1.13.0:
+ resolution: {integrity: sha512-xGB9iiet8l/i8/YLZje8icpZyt4pVgoxB2+SoC6JCB8iDWsCVSuixebwX2t9yeGqXBXO1kphaW0TLf8Tmwy9JQ==}
cpu: [x64]
os: [linux]
+ libc: [glibc]
- sherif-windows-arm64@1.11.1:
- resolution: {integrity: sha512-Dnffgcyz9zLq/8UTY2REchJzRJWcWAuMWo5Vl5O17IZGkhl71dwa7/Vi2wC3EQd8WAVK/O82yArOYggWA0dj5w==}
+ sherif-windows-arm64@1.13.0:
+ resolution: {integrity: sha512-jHzJ/EcG4HuNLf/3AEDzbRkAofLPBHRJKJJMjAosampAe9861atu4q+Z2IZ1/sHg5oVnNgaNg/Xc5DDhGcQ/3w==}
cpu: [arm64]
os: [win32]
- sherif-windows-x64@1.11.1:
- resolution: {integrity: sha512-xjfYUL/IQ65DwHkRsWIxiZWtglKtL5/E3UHpnLwOui3jqW1V2K88SMct415dnlBQiL3U9VEIVUo1i+KmToOBgQ==}
+ sherif-windows-x64@1.13.0:
+ resolution: {integrity: sha512-KyMqQY62Eb3O+wePlw433mH2XBPVPLXdDjWPneg9pB6jeK0B1sgEzM2yks+aAP5asZ1Y8Q7C7iR7ZtbJKdsAtA==}
cpu: [x64]
os: [win32]
- sherif@1.11.1:
- resolution: {integrity: sha512-HBFce8NGaPuWPg5NXb6+aI7hJQFjTilhtbrgo+Y/BvtGlkuJAzLnkmC8nyD+p3v7oIAq4KQeA8qySKGga28xZg==}
+ sherif@1.13.0:
+ resolution: {integrity: sha512-Ld2nUOlwW1nmYDA2Q/5o7SC8WcCzVS7XjImmzW4a4z1o8DXJnt+2xYLvI42N5UYlNb/EevPahdC/XxIP6C38TQ==}
hasBin: true
side-channel-list@1.0.0:
@@ -9744,22 +9653,13 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- sigstore@4.1.0:
- resolution: {integrity: sha512-/fUgUhYghuLzVT/gaJoeVehLCgZiUxPCPMcyVNY0lIf/cTCz58K/WTI7PefDarXxp9nUKpEwg1yyz3eSBMTtgA==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
simple-code-frame@1.3.0:
resolution: {integrity: sha512-MB4pQmETUBlNs62BBeRjIFGeuy/x6gGKh7+eRUemn1rCFhqo7K+4slPqsyizCbcbYLnaYqaoZ2FWsZ/jN06D8w==}
- size-limit@12.1.0:
- resolution: {integrity: sha512-VnDS2fycANrJFVPQwjaD+h+hkISY7EB3LsPsYWje4lBCjQwwsZLxjwwRwVJKHrcj2ZqyG+DdXykWm9mbZklZrw==}
- engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
+ size-limit@13.0.3:
+ resolution: {integrity: sha512-KVb2aNEU49BwTR21SVjD+2QHP9gBV/nWsTHzNB/heRwXtHyA7lLQiDZDQ1TiNh/B/TZXKAZrHYyTt+cvBUrzYw==}
+ engines: {node: ^22.18.0 || ^24.0.0 || >=26.0.0}
hasBin: true
- peerDependencies:
- jiti: ^2.0.0
- peerDependenciesMeta:
- jiti:
- optional: true
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
@@ -9773,25 +9673,20 @@ packages:
resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==}
engines: {node: '>=20'}
- smart-buffer@4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
-
smol-toml@1.6.1:
resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==}
engines: {node: '>= 18'}
- socks-proxy-agent@8.0.5:
- resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==}
- engines: {node: '>= 14'}
-
- socks@2.8.7:
- resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
- engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+ smol-toml@1.7.1:
+ resolution: {integrity: sha512-PPlsspAZ4jbMBu5DMFhfUGDQLu/vrL4SyBROVS37x8ynnVmFIs1VPBz1Co8Xks3TvpIaZXmU85y4DrQ+UyVFoQ==}
+ engines: {node: '>= 18'}
solid-js@1.9.13:
resolution: {integrity: sha512-6hJeJMOcEX8ktqjpDoJZEmld3ijvcvWBDtiXBm7f4332SiFN66QeAQI1REQshvyUoISsSeJ4PHDauKYbwao9JQ==}
+ solid-js@1.9.14:
+ resolution: {integrity: sha512-sAEXC0Kk0S1EDg+8ysEWJDbYhA3RRoEjwuySUGlKIemeo0I5YZfOyumNjNs9Sv3y2nmhD+0rW66ag2HsMuQiGQ==}
+
solid-refresh@0.6.3:
resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==}
peerDependencies:
@@ -9815,22 +9710,9 @@ packages:
spawndamnit@3.0.1:
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
- spdx-exceptions@2.5.0:
- resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
-
- spdx-expression-parse@4.0.0:
- resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
-
- spdx-license-ids@3.0.23:
- resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==}
-
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- ssri@13.0.1:
- resolution: {integrity: sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
stable-hash-x@0.2.0:
resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
engines: {node: '>=12.0.0'}
@@ -9849,8 +9731,8 @@ packages:
std-env@4.0.0:
resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==}
- stdin-discarder@0.3.1:
- resolution: {integrity: sha512-reExS1kSGoElkextOcPkel4NE99S0BWxjUHQeDFnR8S993JxpPX7KU4MNmO19NXhlJp+8dmdCbKQVNgLJh2teA==}
+ stdin-discarder@0.3.2:
+ resolution: {integrity: sha512-eCPu1qRxPVkl5605OTWF8Wz40b4Mf45NY5LQmVPQ599knfs5QhASUm9GbJ5BDMDOXgrnh0wyEdvzmL//YMlw0A==}
engines: {node: '>=18'}
stop-iteration-iterator@1.1.0:
@@ -9914,10 +9796,6 @@ packages:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
- tar@7.5.13:
- resolution: {integrity: sha512-tOG/7GyXpFevhXVh8jOPJrmtRpOTsYqUIkVdVooZYJS/z8WhfQUX8RJILmeuJNinGAMSu1veBr4asSHFt5/hng==}
- engines: {node: '>=18'}
-
term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
@@ -9929,9 +9807,9 @@ packages:
resolution: {integrity: sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==}
engines: {node: '>=18'}
- tinyglobby@0.2.15:
- resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
- engines: {node: '>=12.0.0'}
+ tinyexec@1.3.0:
+ resolution: {integrity: sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==}
+ engines: {node: '>=18'}
tinyglobby@0.2.17:
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
@@ -9948,8 +9826,8 @@ packages:
resolution: {integrity: sha512-I4FZcVFcqCRuT0ph6dCDpPuO4Xgzvh+spkcTr1gK7peIvxWauoloVO0vuy1FQnijT63ss6AsHB6+OIM4aXHbPg==}
hasBin: true
- tmp@0.2.6:
- resolution: {integrity: sha512-5sJPdPjfI5Kx+qbrDesxkglRBxW//g7hCsqspEjwkewGvBMGIKMOTKzLt1hFVJzyadba3lDUN20O9qhvbQUSTA==}
+ tmp@0.2.7:
+ resolution: {integrity: sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==}
engines: {node: '>=14.14'}
to-regex-range@5.0.1:
@@ -9960,8 +9838,8 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- tough-cookie@6.0.1:
- resolution: {integrity: sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==}
+ tough-cookie@6.0.2:
+ resolution: {integrity: sha512-exgYmnmL/sJpR3upZfXG5PoatXQii55xAiXGXzY+sROLZ/Y+SLcp9PgJNI9Vz37HpQ74WvDcLT8eqm+kV3FzrA==}
engines: {node: '>=16'}
tr46@0.0.3:
@@ -9993,18 +9871,18 @@ packages:
resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
engines: {node: '>=6'}
- tsdown@0.22.1:
- resolution: {integrity: sha512-Ldx1jLyDFEzsN/fMBi2TBVaZe4fuEJhIiHjQhX0pV7oa5uYz5Imdivs5mNzEXOrMEtFRR6C9BQ2YqLoroffB+Q==}
- engines: {node: ^22.18.0 || >=24.0.0}
+ tsdown@0.22.14:
+ resolution: {integrity: sha512-ule7Y+fsAN2iZbLDoo7C4KYljFJNJJ+fLshyn+9gozeTspVersWHxwdGB+Dm2hzA38s6muFnUTl0jK3vJm9ifQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
hasBin: true
peerDependencies:
'@arethetypeswrong/core': ^0.18.1
- '@tsdown/css': 0.22.1
- '@tsdown/exe': 0.22.1
+ '@tsdown/css': 0.22.14
+ '@tsdown/exe': 0.22.14
'@vitejs/devtools': '*'
publint: ^0.3.8
tsx: '*'
- typescript: ^5.0.0 || ^6.0.0
+ typescript: ^5.0.0 || ^6.0.0 || ^7.0.0
unplugin-unused: ^0.5.0
unrun: '*'
peerDependenciesMeta:
@@ -10030,10 +9908,6 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tuf-js@4.1.0:
- resolution: {integrity: sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ==}
- engines: {node: ^20.17.0 || >=22.9.0}
-
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -10075,8 +9949,8 @@ packages:
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
- unbash@3.0.0:
- resolution: {integrity: sha512-FeFPZ/WFT0mbRCuydiZzpPFlrYN8ZUpphQKoq4EeElVIYjYyGzPMxQR/simUwCOJIyVhpFk4RbtyO7RuMpMnHA==}
+ unbash@4.0.6:
+ resolution: {integrity: sha512-YGBMSVG/WrA2vgaZbXVvxrGgoMcWZecyyS4foGt8clbtY7s1nIKNmt7Z9LR74XE6FkYTSqDmKk2lIOhOjIvmrw==}
engines: {node: '>=14'}
unconfig-core@7.5.0:
@@ -10085,14 +9959,17 @@ packages:
undici-types@7.21.0:
resolution: {integrity: sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==}
- undici@7.24.4:
- resolution: {integrity: sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==}
- engines: {node: '>=20.18.1'}
+ undici-types@8.3.0:
+ resolution: {integrity: sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==}
undici@7.25.0:
resolution: {integrity: sha512-xXnp4kTyor2Zq+J1FfPI6Eq3ew5h6Vl0F/8d9XU5zZQf1tX9s2Su1/3PiMmUANFULpmksxkClamIZcaUqryHsQ==}
engines: {node: '>=20.18.1'}
+ undici@8.10.0:
+ resolution: {integrity: sha512-HvltHd7avK13QIw/oLe4qoOLyoVSoafqJ2jYOrtMRBkbYT31eiBQ8O0ehRKZiEZCMEyLFQNIADpgCWC5fALvYQ==}
+ engines: {node: '>=22.19.0'}
+
universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
@@ -10121,20 +9998,24 @@ packages:
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- validate-npm-package-name@7.0.2:
- resolution: {integrity: sha512-hVDIBwsRruT73PbK7uP5ebUt+ezEtCmzZz3F59BSr2F6OVFnJ/6h8liuvdLrQ88Xmnk6/+xGGuq+pG9WwTuy3A==}
- engines: {node: ^20.17.0 || >=22.9.0}
+ validate-npm-package-name@8.0.0:
+ resolution: {integrity: sha512-SCv6OOV6Xj2/3cXy3dGmADluJTNcL3o7hZAglNPTe+WYuEuvxgJzxPrSDLZhF+CwyQOubqgecjMmTJGMVLWjYQ==}
+ engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vite-plugin-solid@2.11.12:
- resolution: {integrity: sha512-FgjPcx2OwX9h6f28jli7A4bG7PP3te8uyakE5iqsmpq3Jqi1TWLgSroC9N6cMfGRU2zXsl4Q6ISvTr2VL0QHpA==}
+ verkit@0.3.2:
+ resolution: {integrity: sha512-zj/ob3UsvJGN0whEAKFp53REA5X66hvffVqoCtVQAakJKnKlH+/PcOfMoFwIG/o4rElqLv/ycAFlx8ZlXUorCg==}
+ engines: {node: '>=18.12.0'}
+
+ vite-plugin-solid@2.11.14:
+ resolution: {integrity: sha512-7ZVBt8rpoyqmlwin2kRIUveaHoF6/kulY7gsnD+qFh4nS29V4OPAnw+ojoAspXIjObiL9o1xh9a/nTuYHm02Rw==}
peerDependencies:
- '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.*
+ '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.0.0 || ^7.0.0
solid-js: ^1.7.2
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
peerDependenciesMeta:
'@testing-library/jest-dom':
optional: true
@@ -10144,15 +10025,16 @@ packages:
peerDependencies:
vite: 5.x || 6.x || 7.x || 8.x
- vite@7.3.2:
- resolution: {integrity: sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==}
+ vite@8.1.5:
+ resolution: {integrity: sha512-7ULLwsCdYx/nRyrpiEwvqb5TFHrMVZyBt+rg/OAXT7rgj/z+DtTDyKFeLAdDkubDVDKD8jOsndmy7m55XcfUsw==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
'@types/node': ^20.19.0 || >=22.12.0
+ '@vitejs/devtools': ^0.3.0
+ esbuild: ^0.27.0 || ^0.28.0
jiti: '>=1.21.0'
less: ^4.0.0
- lightningcss: ^1.21.0
sass: ^1.70.0
sass-embedded: ^1.70.0
stylus: '>=0.54.8'
@@ -10163,12 +10045,14 @@ packages:
peerDependenciesMeta:
'@types/node':
optional: true
+ '@vitejs/devtools':
+ optional: true
+ esbuild:
+ optional: true
jiti:
optional: true
less:
optional: true
- lightningcss:
- optional: true
sass:
optional: true
sass-embedded:
@@ -10184,13 +10068,13 @@ packages:
yaml:
optional: true
- vite@8.0.16:
- resolution: {integrity: sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==}
+ vite@8.2.0:
+ resolution: {integrity: sha512-pn+CFpM0lwDeKwmOq1ZaBK/9sjorZcgqxki6MbY/jPEVd9vichIlmlD4HmQ5wdP5EgqQCFRaACBxMC7uEGc6lQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
'@types/node': ^20.19.0 || >=22.12.0
- '@vitejs/devtools': ^0.1.18
+ '@vitejs/devtools': ^0.4.0
esbuild: ^0.27.0 || ^0.28.0
jiti: '>=1.21.0'
less: ^4.0.0
@@ -10235,20 +10119,20 @@ packages:
vite:
optional: true
- vitest@4.1.7:
- resolution: {integrity: sha512-flYyaFd2CgoCoU+0UKt3pxksgC+S02iTDN0n3LtqaMeXsI9SBcdNujc2k0DeFLzUn/0k538yNjOSdwgCqcrwJA==}
+ vitest@4.1.10:
+ resolution: {integrity: sha512-R9jUTe5S4Qb0HCd4TNqpC7oGcrMssMRGXLW80ubjWsW9VH5GF8y1Y0SFLY9AbqSk6nt0PnOx4H4WNJYZ13GUPw==}
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@opentelemetry/api': ^1.9.0
'@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
- '@vitest/browser-playwright': 4.1.7
- '@vitest/browser-preview': 4.1.7
- '@vitest/browser-webdriverio': 4.1.7
- '@vitest/coverage-istanbul': 4.1.7
- '@vitest/coverage-v8': 4.1.7
- '@vitest/ui': 4.1.7
+ '@vitest/browser-playwright': 4.1.10
+ '@vitest/browser-preview': 4.1.10
+ '@vitest/browser-webdriverio': 4.1.10
+ '@vitest/coverage-istanbul': 4.1.10
+ '@vitest/coverage-v8': 4.1.10
+ '@vitest/ui': 4.1.10
happy-dom: '*'
jsdom: '*'
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -10290,8 +10174,8 @@ packages:
resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==}
engines: {node: 20 || >=22}
- watchpack@2.5.1:
- resolution: {integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==}
+ watchpack@2.5.2:
+ resolution: {integrity: sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg==}
engines: {node: '>=10.13.0'}
wcwidth@1.0.1:
@@ -10328,6 +10212,10 @@ packages:
resolution: {integrity: sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ whatwg-url@17.1.0:
+ resolution: {integrity: sha512-3GeworPmc2ZfEEHP7lEbUfBX/L75wdEsi0rLNhXcXxnoN5jyq0SL5gCy06SGW2cyTIZdTvWIDQNQoza++vKeaw==}
+ engines: {node: ^22.14.0 || >=24.0.0}
+
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
@@ -10348,9 +10236,9 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- which@6.0.1:
- resolution: {integrity: sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==}
- engines: {node: ^20.17.0 || >=22.9.0}
+ which@3.0.1:
+ resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
why-is-node-running@2.3.0:
@@ -10362,9 +10250,9 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- wrap-ansi@6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
+ wrap-ansi@10.0.0:
+ resolution: {integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==}
+ engines: {node: '>=20'}
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
@@ -10377,8 +10265,20 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- ws@8.20.0:
- resolution: {integrity: sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==}
+ ws@8.20.0:
+ resolution: {integrity: sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ ws@8.21.2:
+ resolution: {integrity: sha512-54dMVAo4WIe6SKy3vBgN+9bJZqqQ8IMRevAkOLQALhi49qkkQDQfWdAZ8KQlXiEabw88ARXXdUrlvtbKQX+aKw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -10403,13 +10303,6 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yallist@4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
-
- yallist@5.0.0:
- resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
- engines: {node: '>=18'}
-
yaml@2.9.0:
resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
engines: {node: '>= 14.6'}
@@ -10435,14 +10328,19 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yoctocolors-cjs@2.1.3:
- resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==}
- engines: {node: '>=18'}
-
yoctocolors@2.1.2:
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
engines: {node: '>=18'}
+ yuku-ast@0.8.3:
+ resolution: {integrity: sha512-8x34yU5uhHUnJXzy2Qvjvec/vE9BzS0/2khVT1MsLmSLO/P8Q1Wp8IxHv+IhD+HMYETk6kherOSvP4JPWw2joQ==}
+
+ yuku-codegen@0.8.3:
+ resolution: {integrity: sha512-okdo5bb+TfebQa4JOjz9QxeT34D6CcBxu8dxaPUdFEKRdLkp+D2Fah2OanepK+XTyPXdmAJzAo9iXvYvZ/5rmg==}
+
+ yuku-parser@0.8.3:
+ resolution: {integrity: sha512-KPQcpF9aj77ywlJBIkQWCQ9DObdxnCA8AJdUOmA5CZZx042Xt4+dvbQmPJfWxF3E+KG5dVAZ2fBKuDJ8VsKWgA==}
+
zimmerframe@1.1.4:
resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==}
@@ -10466,9 +10364,6 @@ packages:
zod@3.25.76:
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
- zod@4.3.6:
- resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
-
zod@4.4.3:
resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
@@ -10476,169 +10371,85 @@ snapshots:
'@adobe/css-tools@4.4.4': {}
- '@algolia/abtesting@1.14.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/client-abtesting@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/client-analytics@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/client-common@5.48.1': {}
-
- '@algolia/client-insights@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/client-personalization@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/client-query-suggestions@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/client-search@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/ingestion@1.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/monitoring@1.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/recommend@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
-
- '@algolia/requester-browser-xhr@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
-
- '@algolia/requester-fetch@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
-
- '@algolia/requester-node-http@5.48.1':
- dependencies:
- '@algolia/client-common': 5.48.1
-
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
- '@angular-devkit/architect@0.2102.13(chokidar@5.0.0)':
+ '@angular-devkit/architect@0.2201.3(chokidar@5.0.0)':
dependencies:
- '@angular-devkit/core': 21.2.13(chokidar@5.0.0)
+ '@angular-devkit/core': 22.1.3(chokidar@5.0.0)
rxjs: 7.8.2
transitivePeerDependencies:
- chokidar
- '@angular-devkit/core@21.2.13(chokidar@5.0.0)':
+ '@angular-devkit/core@22.1.3(chokidar@5.0.0)':
dependencies:
- ajv: 8.18.0
- ajv-formats: 3.0.1(ajv@8.18.0)
+ ajv: 8.20.0
+ ajv-formats: 3.0.1(ajv@8.20.0)
jsonc-parser: 3.3.1
- picomatch: 4.0.4
+ picomatch: 4.0.5
rxjs: 7.8.2
source-map: 0.7.6
optionalDependencies:
chokidar: 5.0.0
- '@angular-devkit/schematics@21.2.13(chokidar@5.0.0)':
+ '@angular-devkit/schematics@22.1.3(chokidar@5.0.0)':
dependencies:
- '@angular-devkit/core': 21.2.13(chokidar@5.0.0)
+ '@angular-devkit/core': 22.1.3(chokidar@5.0.0)
jsonc-parser: 3.3.1
- magic-string: 0.30.21
- ora: 9.3.0
+ magic-string: 1.0.0
+ ora: 9.4.1
rxjs: 7.8.2
transitivePeerDependencies:
- chokidar
- '@angular/build@21.2.13(@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3))(@angular/compiler@21.2.19)(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.7.0)(chokidar@5.0.0)(jiti@2.7.0)(lightningcss@1.32.0)(postcss@8.5.15)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)))(yaml@2.9.0)':
+ '@angular/build@22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.15)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.2102.13(chokidar@5.0.0)
- '@angular/compiler': 21.2.19
- '@angular/compiler-cli': 21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)
- '@babel/core': 7.29.0
- '@babel/helper-annotate-as-pure': 7.27.3
+ '@angular-devkit/architect': 0.2201.3(chokidar@5.0.0)
+ '@angular/compiler': 22.1.0
+ '@angular/compiler-cli': 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
'@babel/helper-split-export-declaration': 7.24.7
- '@inquirer/confirm': 5.1.21(@types/node@25.7.0)
- '@vitejs/plugin-basic-ssl': 2.1.4(vite@7.3.2(@types/node@25.7.0)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.97.3)(yaml@2.9.0))
- beasties: 0.4.1
+ '@inquirer/confirm': 6.1.1(@types/node@26.1.2)
+ '@vitejs/plugin-basic-ssl': 2.3.0(vite@8.1.5(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
+ beasties: 0.4.3
browserslist: 4.28.2
- esbuild: 0.27.3
- https-proxy-agent: 7.0.6
- istanbul-lib-instrument: 6.0.3
+ esbuild: 0.28.1
+ https-proxy-agent: 9.1.0(supports-color@7.2.0)
jsonc-parser: 3.3.1
- listr2: 9.0.5
- magic-string: 0.30.21
+ listr2: 10.2.2
+ magic-string: 1.0.0
mrmime: 2.0.1
- parse5-html-rewriting-stream: 8.0.0
- picomatch: 4.0.4
- piscina: 5.1.4
- rolldown: 1.0.0-rc.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
- sass: 1.97.3
- semver: 7.7.4
+ oxc-parser: 0.142.0
+ parse5-html-rewriting-stream: 8.0.1
+ picomatch: 4.0.5
+ piscina: 5.2.0
+ rolldown: 1.2.0
+ sass: 1.101.0
+ semver: 7.8.5
source-map-support: 0.5.21
- tinyglobby: 0.2.15
+ tinyglobby: 0.2.17
tslib: 2.8.1
typescript: 6.0.3
- undici: 7.24.4
- vite: 7.3.2(@types/node@25.7.0)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.97.3)(yaml@2.9.0)
- watchpack: 2.5.1
+ vite: 8.1.5(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
+ watchpack: 2.5.2
optionalDependencies:
- '@angular/core': 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
- '@angular/platform-browser': 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
- lmdb: 3.5.1
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
+ '@angular/platform-browser': 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
+ istanbul-lib-instrument: 6.0.3(supports-color@7.2.0)
+ lmdb: 3.5.6
postcss: 8.5.15
- vitest: 4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ rollup: 4.60.1
+ vitest: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
transitivePeerDependencies:
- - '@emnapi/core'
- - '@emnapi/runtime'
- '@types/node'
+ - '@vitejs/devtools'
- chokidar
- jiti
- - lightningcss
+ - kerberos
- sass-embedded
- stylus
- sugarss
@@ -10647,42 +10458,92 @@ snapshots:
- tsx
- yaml
- '@angular/cli@21.2.13(@types/node@25.7.0)(chokidar@5.0.0)':
+ '@angular/build@22.1.3(@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3))(@angular/compiler@22.1.0)(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(@types/node@26.1.2)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.7.0)(postcss@8.5.25)(rollup@4.60.1)(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)))(yaml@2.9.0)':
dependencies:
- '@angular-devkit/architect': 0.2102.13(chokidar@5.0.0)
- '@angular-devkit/core': 21.2.13(chokidar@5.0.0)
- '@angular-devkit/schematics': 21.2.13(chokidar@5.0.0)
- '@inquirer/prompts': 7.10.1(@types/node@25.7.0)
- '@listr2/prompt-adapter-inquirer': 3.0.5(@inquirer/prompts@7.10.1(@types/node@25.7.0))(@types/node@25.7.0)(listr2@9.0.5)
- '@modelcontextprotocol/sdk': 1.26.0(zod@4.3.6)
- '@schematics/angular': 21.2.13(chokidar@5.0.0)
- '@yarnpkg/lockfile': 1.1.0
- algoliasearch: 5.48.1
- ini: 6.0.0
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.2201.3(chokidar@5.0.0)
+ '@angular/compiler': 22.1.0
+ '@angular/compiler-cli': 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@inquirer/confirm': 6.1.1(@types/node@26.1.2)
+ '@vitejs/plugin-basic-ssl': 2.3.0(vite@8.1.5(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
+ beasties: 0.4.3
+ browserslist: 4.28.2
+ esbuild: 0.28.1
+ https-proxy-agent: 9.1.0(supports-color@7.2.0)
+ jsonc-parser: 3.3.1
+ listr2: 10.2.2
+ magic-string: 1.0.0
+ mrmime: 2.0.1
+ oxc-parser: 0.142.0
+ parse5-html-rewriting-stream: 8.0.1
+ picomatch: 4.0.5
+ piscina: 5.2.0
+ rolldown: 1.2.0
+ sass: 1.101.0
+ semver: 7.8.5
+ source-map-support: 0.5.21
+ tinyglobby: 0.2.17
+ tslib: 2.8.1
+ typescript: 6.0.3
+ vite: 8.1.5(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
+ watchpack: 2.5.2
+ optionalDependencies:
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
+ '@angular/platform-browser': 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
+ istanbul-lib-instrument: 6.0.3(supports-color@7.2.0)
+ lmdb: 3.5.6
+ postcss: 8.5.25
+ rollup: 4.60.1
+ vitest: 4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
+ transitivePeerDependencies:
+ - '@types/node'
+ - '@vitejs/devtools'
+ - chokidar
+ - jiti
+ - kerberos
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+
+ '@angular/cli@22.1.3(@types/node@26.1.2)(chokidar@5.0.0)(supports-color@7.2.0)':
+ dependencies:
+ '@angular-devkit/architect': 0.2201.3(chokidar@5.0.0)
+ '@angular-devkit/core': 22.1.3(chokidar@5.0.0)
+ '@angular-devkit/schematics': 22.1.3(chokidar@5.0.0)
+ '@inquirer/prompts': 8.5.2(@types/node@26.1.2)
+ '@listr2/prompt-adapter-inquirer': 4.2.4(@inquirer/prompts@8.5.2(@types/node@26.1.2))(@types/node@26.1.2)(listr2@10.2.2)
+ '@modelcontextprotocol/sdk': 1.29.0(supports-color@7.2.0)(zod@4.4.3)
+ '@schematics/angular': 22.1.3(chokidar@5.0.0)
jsonc-parser: 3.3.1
- listr2: 9.0.5
- npm-package-arg: 13.0.2
- pacote: 21.3.1
- parse5-html-rewriting-stream: 8.0.0
- semver: 7.7.4
+ listr2: 10.2.2
+ npm-package-arg: 14.0.0
+ parse5-html-rewriting-stream: 8.0.1
+ semver: 7.8.5
yargs: 18.0.0
- zod: 4.3.6
+ zod: 4.4.3
transitivePeerDependencies:
- '@cfworker/json-schema'
- '@types/node'
- chokidar
- supports-color
- '@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)':
+ '@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)':
dependencies:
- '@angular/core': 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/compiler-cli@21.2.15(@angular/compiler@21.2.19)(typescript@6.0.3)':
+ '@angular/compiler-cli@22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3)':
dependencies:
- '@angular/compiler': 21.2.19
- '@babel/core': 7.29.0
+ '@angular/compiler': 22.1.0
+ '@babel/core': 8.0.1
'@jridgewell/sourcemap-codec': 1.5.5
chokidar: 5.0.0
convert-source-map: 1.9.0
@@ -10692,62 +10553,56 @@ snapshots:
yargs: 18.0.0
optionalDependencies:
typescript: 6.0.3
- transitivePeerDependencies:
- - supports-color
- '@angular/compiler@21.2.19':
+ '@angular/compiler@22.1.0':
dependencies:
tslib: 2.8.1
- '@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)':
+ '@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)':
dependencies:
rxjs: 7.8.2
tslib: 2.8.1
optionalDependencies:
- '@angular/compiler': 21.2.19
+ '@angular/compiler': 22.1.0
- '@angular/forms@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)':
+ '@angular/forms@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
- '@angular/core': 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
- '@angular/platform-browser': 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ '@angular/common': 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
+ '@angular/platform-browser': 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
'@standard-schema/spec': 1.1.0
rxjs: 7.8.2
tslib: 2.8.1
+ zod: 4.4.3
- '@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))':
+ '@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))':
dependencies:
- '@angular/common': 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
- '@angular/core': 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ '@angular/common': 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
tslib: 2.8.1
- '@angular/router@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@angular/platform-browser@21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)))(rxjs@7.8.2)':
+ '@angular/router@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@angular/platform-browser@22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
- '@angular/core': 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
- '@angular/platform-browser': 21.2.15(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))
+ '@angular/common': 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
+ '@angular/platform-browser': 22.1.0(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))
rxjs: 7.8.2
tslib: 2.8.1
- '@asamuzakjp/css-color@5.1.11':
+ '@asamuzakjp/css-color@6.0.5':
dependencies:
- '@asamuzakjp/generational-cache': 1.0.1
- '@csstools/css-calc': 3.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
- '@csstools/css-color-parser': 4.1.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
'@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
'@csstools/css-tokenizer': 4.0.0
+ lru-cache: 11.5.2
- '@asamuzakjp/dom-selector@7.1.1':
+ '@asamuzakjp/dom-selector@8.3.2':
dependencies:
- '@asamuzakjp/generational-cache': 1.0.1
- '@asamuzakjp/nwsapi': 2.3.9
bidi-js: 1.0.3
css-tree: 3.2.1
is-potential-custom-element-name: 1.0.1
-
- '@asamuzakjp/generational-cache@1.0.1': {}
-
- '@asamuzakjp/nwsapi@2.3.9': {}
+ lru-cache: 11.5.2
'@babel/code-frame@7.29.0':
dependencies:
@@ -10755,28 +10610,54 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
+ '@babel/code-frame@8.0.0':
+ dependencies:
+ '@babel/helper-validator-identifier': 8.0.4
+ js-tokens: 10.0.0
+
'@babel/compat-data@7.29.0': {}
- '@babel/core@7.29.0':
+ '@babel/compat-data@8.0.0': {}
+
+ '@babel/core@7.29.0(supports-color@7.2.0)':
dependencies:
'@babel/code-frame': 7.29.0
'@babel/generator': 7.29.1
'@babel/helper-compilation-targets': 7.28.6
- '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
'@babel/helpers': 7.29.2
'@babel/parser': 7.29.2
'@babel/template': 7.28.6
- '@babel/traverse': 7.29.0
+ '@babel/traverse': 7.29.0(supports-color@7.2.0)
'@babel/types': 7.29.0
'@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ '@babel/core@8.0.1':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/generator': 8.0.0
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helpers': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/template': 8.0.0
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+ '@types/gensync': 1.0.5
+ convert-source-map: 2.0.0
+ empathic: 2.0.1
+ gensync: 1.0.0-beta.2
+ import-meta-resolve: 4.2.0
+ json5: 2.2.3
+ obug: 2.1.1
+ semver: 7.8.5
+
'@babel/generator@7.29.1':
dependencies:
'@babel/parser': 7.29.2
@@ -10785,10 +10666,10 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/generator@8.0.0-rc.6':
+ '@babel/generator@8.0.0':
dependencies:
- '@babel/parser': 8.0.0-rc.6
- '@babel/types': 8.0.0-rc.6
+ '@babel/parser': 8.0.4
+ '@babel/types': 8.0.4
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
'@types/jsesc': 2.5.1
@@ -10798,6 +10679,10 @@ snapshots:
dependencies:
'@babel/types': 7.29.0
+ '@babel/helper-annotate-as-pure@8.0.0':
+ dependencies:
+ '@babel/types': 8.0.4
+
'@babel/helper-compilation-targets@7.28.6':
dependencies:
'@babel/compat-data': 7.29.0
@@ -10806,24 +10691,34 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.29.0)':
+ '@babel/helper-compilation-targets@8.0.0':
+ dependencies:
+ '@babel/compat-data': 8.0.0
+ '@babel/helper-validator-option': 8.0.0
+ browserslist: 4.28.2
+ lru-cache: 11.3.5
+ semver: 7.8.5
+
+ '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-member-expression-to-functions': 7.28.5
+ '@babel/helper-member-expression-to-functions': 7.28.5(supports-color@7.2.0)
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0)
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.29.0
+ '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1(supports-color@7.2.0)
+ '@babel/traverse': 7.29.0(supports-color@7.2.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/helper-globals@7.28.0': {}
- '@babel/helper-member-expression-to-functions@7.28.5':
+ '@babel/helper-globals@8.0.0': {}
+
+ '@babel/helper-member-expression-to-functions@7.28.5(supports-color@7.2.0)':
dependencies:
- '@babel/traverse': 7.29.0
+ '@babel/traverse': 7.29.0(supports-color@7.2.0)
'@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
@@ -10832,19 +10727,19 @@ snapshots:
dependencies:
'@babel/types': 7.29.0
- '@babel/helper-module-imports@7.28.6':
+ '@babel/helper-module-imports@7.28.6(supports-color@7.2.0)':
dependencies:
- '@babel/traverse': 7.29.0
+ '@babel/traverse': 7.29.0(supports-color@7.2.0)
'@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-module-imports': 7.28.6
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ '@babel/helper-module-imports': 7.28.6(supports-color@7.2.0)
'@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.29.0
+ '@babel/traverse': 7.29.0(supports-color@7.2.0)
transitivePeerDependencies:
- supports-color
@@ -10854,18 +10749,18 @@ snapshots:
'@babel/helper-plugin-utils@7.28.6': {}
- '@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)':
+ '@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-member-expression-to-functions': 7.28.5
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ '@babel/helper-member-expression-to-functions': 7.28.5(supports-color@7.2.0)
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.29.0
+ '@babel/traverse': 7.29.0(supports-color@7.2.0)
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1(supports-color@7.2.0)':
dependencies:
- '@babel/traverse': 7.29.0
+ '@babel/traverse': 7.29.0(supports-color@7.2.0)
'@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
@@ -10876,90 +10771,97 @@ snapshots:
'@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-string-parser@8.0.0-rc.6': {}
+ '@babel/helper-string-parser@8.0.0': {}
'@babel/helper-validator-identifier@7.28.5': {}
- '@babel/helper-validator-identifier@8.0.0-rc.6': {}
+ '@babel/helper-validator-identifier@8.0.4': {}
'@babel/helper-validator-option@7.27.1': {}
+ '@babel/helper-validator-option@8.0.0': {}
+
'@babel/helpers@7.29.2':
dependencies:
'@babel/template': 7.28.6
'@babel/types': 7.29.0
+ '@babel/helpers@8.0.0':
+ dependencies:
+ '@babel/template': 8.0.0
+ '@babel/types': 8.0.4
+
'@babel/parser@7.29.2':
dependencies:
'@babel/types': 7.29.0
- '@babel/parser@8.0.0-rc.6':
+ '@babel/parser@8.0.4':
dependencies:
- '@babel/types': 8.0.0-rc.6
+ '@babel/types': 8.0.4
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.29.0)':
+ '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
'@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)':
+ '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))':
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)':
+ '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))':
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-modules-commonjs@7.28.6(@babel/core@7.29.0)':
+ '@babel/plugin-transform-modules-commonjs@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
'@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.29.0)':
+ '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
- '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.29.0)':
+ '@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-module-imports': 7.28.6(supports-color@7.2.0)
'@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))
'@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)':
+ '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
'@babel/helper-plugin-utils': 7.28.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1(supports-color@7.2.0)
+ '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.28.5(@babel/core@7.29.0)':
+ '@babel/preset-typescript@7.28.5(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)':
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/helper-plugin-utils': 7.28.6
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))
+ '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
+ '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
transitivePeerDependencies:
- supports-color
@@ -10971,7 +10873,13 @@ snapshots:
'@babel/parser': 7.29.2
'@babel/types': 7.29.0
- '@babel/traverse@7.29.0':
+ '@babel/template@8.0.0':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/types': 8.0.4
+
+ '@babel/traverse@7.29.0(supports-color@7.2.0)':
dependencies:
'@babel/code-frame': 7.29.0
'@babel/generator': 7.29.1
@@ -10979,19 +10887,29 @@ snapshots:
'@babel/parser': 7.29.2
'@babel/template': 7.28.6
'@babel/types': 7.29.0
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@8.0.4':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/generator': 8.0.0
+ '@babel/helper-globals': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/template': 8.0.0
+ '@babel/types': 8.0.4
+ obug: 2.1.1
+
'@babel/types@7.29.0':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
- '@babel/types@8.0.0-rc.6':
+ '@babel/types@8.0.4':
dependencies:
- '@babel/helper-string-parser': 8.0.0-rc.6
- '@babel/helper-validator-identifier': 8.0.0-rc.6
+ '@babel/helper-string-parser': 8.0.0
+ '@babel/helper-validator-identifier': 8.0.4
'@bramus/specificity@2.4.2':
dependencies:
@@ -11011,7 +10929,7 @@ snapshots:
outdent: 0.5.0
prettier: 2.8.8
resolve-from: 5.0.0
- semver: 7.8.1
+ semver: 7.8.5
'@changesets/assemble-release-plan@6.0.10':
dependencies:
@@ -11020,13 +10938,13 @@ snapshots:
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
- semver: 7.8.1
+ semver: 7.8.5
'@changesets/changelog-git@0.2.1':
dependencies:
'@changesets/types': 6.1.0
- '@changesets/cli@2.31.0(@types/node@25.7.0)':
+ '@changesets/cli@2.31.1(@types/node@26.1.2)':
dependencies:
'@changesets/apply-release-plan': 7.1.1
'@changesets/assemble-release-plan': 6.0.10
@@ -11042,7 +10960,7 @@ snapshots:
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@changesets/write': 0.4.0
- '@inquirer/external-editor': 1.0.3(@types/node@25.7.0)
+ '@inquirer/external-editor': 1.0.3(@types/node@26.1.2)
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
enquirer: 2.4.1
@@ -11077,7 +10995,7 @@ snapshots:
'@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
picocolors: 1.1.1
- semver: 7.8.1
+ semver: 7.8.5
'@changesets/get-github-info@0.6.0':
dependencies:
@@ -11147,17 +11065,17 @@ snapshots:
human-id: 4.1.3
prettier: 2.8.8
- '@csstools/color-helpers@6.0.2': {}
+ '@csstools/color-helpers@6.1.0': {}
- '@csstools/css-calc@3.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
+ '@csstools/css-calc@3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
dependencies:
'@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
'@csstools/css-tokenizer': 4.0.0
- '@csstools/css-color-parser@4.1.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
+ '@csstools/css-color-parser@4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
dependencies:
- '@csstools/color-helpers': 6.0.2
- '@csstools/css-calc': 3.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/color-helpers': 6.1.0
+ '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
'@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
'@csstools/css-tokenizer': 4.0.0
@@ -11165,15 +11083,21 @@ snapshots:
dependencies:
'@csstools/css-tokenizer': 4.0.0
- '@csstools/css-syntax-patches-for-csstree@1.1.3(css-tree@3.2.1)':
+ '@csstools/css-syntax-patches-for-csstree@1.1.7(css-tree@3.2.1)':
optionalDependencies:
css-tree: 3.2.1
'@csstools/css-tokenizer@4.0.0': {}
- '@emnapi/core@1.10.0':
+ '@emnapi/core@1.11.1':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.2
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/core@1.11.2':
dependencies:
- '@emnapi/wasi-threads': 1.2.1
+ '@emnapi/wasi-threads': 1.2.2
tslib: 2.8.1
'@emnapi/core@1.4.5':
@@ -11181,7 +11105,12 @@ snapshots:
'@emnapi/wasi-threads': 1.0.4
tslib: 2.8.1
- '@emnapi/runtime@1.10.0':
+ '@emnapi/runtime@1.11.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/runtime@1.11.2':
dependencies:
tslib: 2.8.1
@@ -11193,342 +11122,185 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@emnapi/wasi-threads@1.2.1':
+ '@emnapi/wasi-threads@1.2.2':
dependencies:
tslib: 2.8.1
- '@esbuild/aix-ppc64@0.27.3':
- optional: true
-
- '@esbuild/aix-ppc64@0.27.4':
- optional: true
-
- '@esbuild/aix-ppc64@0.28.0':
- optional: true
-
- '@esbuild/android-arm64@0.27.3':
- optional: true
-
- '@esbuild/android-arm64@0.27.4':
- optional: true
-
- '@esbuild/android-arm64@0.28.0':
- optional: true
-
- '@esbuild/android-arm@0.27.3':
- optional: true
-
- '@esbuild/android-arm@0.27.4':
- optional: true
-
- '@esbuild/android-arm@0.28.0':
- optional: true
-
- '@esbuild/android-x64@0.27.3':
- optional: true
-
- '@esbuild/android-x64@0.27.4':
- optional: true
-
- '@esbuild/android-x64@0.28.0':
- optional: true
-
- '@esbuild/darwin-arm64@0.27.3':
- optional: true
-
- '@esbuild/darwin-arm64@0.27.4':
- optional: true
-
- '@esbuild/darwin-arm64@0.28.0':
- optional: true
-
- '@esbuild/darwin-x64@0.27.3':
- optional: true
-
- '@esbuild/darwin-x64@0.27.4':
- optional: true
-
- '@esbuild/darwin-x64@0.28.0':
- optional: true
-
- '@esbuild/freebsd-arm64@0.27.3':
- optional: true
-
- '@esbuild/freebsd-arm64@0.27.4':
- optional: true
-
- '@esbuild/freebsd-arm64@0.28.0':
- optional: true
-
- '@esbuild/freebsd-x64@0.27.3':
- optional: true
-
- '@esbuild/freebsd-x64@0.27.4':
- optional: true
-
- '@esbuild/freebsd-x64@0.28.0':
- optional: true
-
- '@esbuild/linux-arm64@0.27.3':
- optional: true
-
- '@esbuild/linux-arm64@0.27.4':
- optional: true
-
- '@esbuild/linux-arm64@0.28.0':
- optional: true
-
- '@esbuild/linux-arm@0.27.3':
- optional: true
-
- '@esbuild/linux-arm@0.27.4':
- optional: true
-
- '@esbuild/linux-arm@0.28.0':
- optional: true
-
- '@esbuild/linux-ia32@0.27.3':
- optional: true
-
- '@esbuild/linux-ia32@0.27.4':
- optional: true
-
- '@esbuild/linux-ia32@0.28.0':
- optional: true
-
- '@esbuild/linux-loong64@0.27.3':
- optional: true
-
- '@esbuild/linux-loong64@0.27.4':
- optional: true
-
- '@esbuild/linux-loong64@0.28.0':
- optional: true
-
- '@esbuild/linux-mips64el@0.27.3':
- optional: true
-
- '@esbuild/linux-mips64el@0.27.4':
- optional: true
-
- '@esbuild/linux-mips64el@0.28.0':
- optional: true
-
- '@esbuild/linux-ppc64@0.27.3':
- optional: true
-
- '@esbuild/linux-ppc64@0.27.4':
- optional: true
-
- '@esbuild/linux-ppc64@0.28.0':
- optional: true
-
- '@esbuild/linux-riscv64@0.27.3':
- optional: true
-
- '@esbuild/linux-riscv64@0.27.4':
- optional: true
-
- '@esbuild/linux-riscv64@0.28.0':
- optional: true
-
- '@esbuild/linux-s390x@0.27.3':
- optional: true
-
- '@esbuild/linux-s390x@0.27.4':
- optional: true
-
- '@esbuild/linux-s390x@0.28.0':
- optional: true
-
- '@esbuild/linux-x64@0.27.3':
- optional: true
-
- '@esbuild/linux-x64@0.27.4':
- optional: true
-
- '@esbuild/linux-x64@0.28.0':
- optional: true
-
- '@esbuild/netbsd-arm64@0.27.3':
- optional: true
-
- '@esbuild/netbsd-arm64@0.27.4':
+ '@esbuild/aix-ppc64@0.28.1':
optional: true
- '@esbuild/netbsd-arm64@0.28.0':
+ '@esbuild/android-arm64@0.28.1':
optional: true
- '@esbuild/netbsd-x64@0.27.3':
+ '@esbuild/android-arm@0.28.1':
optional: true
- '@esbuild/netbsd-x64@0.27.4':
+ '@esbuild/android-x64@0.28.1':
optional: true
- '@esbuild/netbsd-x64@0.28.0':
+ '@esbuild/darwin-arm64@0.28.1':
optional: true
- '@esbuild/openbsd-arm64@0.27.3':
+ '@esbuild/darwin-x64@0.28.1':
optional: true
- '@esbuild/openbsd-arm64@0.27.4':
+ '@esbuild/freebsd-arm64@0.28.1':
optional: true
- '@esbuild/openbsd-arm64@0.28.0':
+ '@esbuild/freebsd-x64@0.28.1':
optional: true
- '@esbuild/openbsd-x64@0.27.3':
+ '@esbuild/linux-arm64@0.28.1':
optional: true
- '@esbuild/openbsd-x64@0.27.4':
+ '@esbuild/linux-arm@0.28.1':
optional: true
- '@esbuild/openbsd-x64@0.28.0':
+ '@esbuild/linux-ia32@0.28.1':
optional: true
- '@esbuild/openharmony-arm64@0.27.3':
+ '@esbuild/linux-loong64@0.28.1':
optional: true
- '@esbuild/openharmony-arm64@0.27.4':
+ '@esbuild/linux-mips64el@0.28.1':
optional: true
- '@esbuild/openharmony-arm64@0.28.0':
+ '@esbuild/linux-ppc64@0.28.1':
optional: true
- '@esbuild/sunos-x64@0.27.3':
+ '@esbuild/linux-riscv64@0.28.1':
optional: true
- '@esbuild/sunos-x64@0.27.4':
+ '@esbuild/linux-s390x@0.28.1':
optional: true
- '@esbuild/sunos-x64@0.28.0':
+ '@esbuild/linux-x64@0.28.1':
optional: true
- '@esbuild/win32-arm64@0.27.3':
+ '@esbuild/netbsd-arm64@0.28.1':
optional: true
- '@esbuild/win32-arm64@0.27.4':
+ '@esbuild/netbsd-x64@0.28.1':
optional: true
- '@esbuild/win32-arm64@0.28.0':
+ '@esbuild/openbsd-arm64@0.28.1':
optional: true
- '@esbuild/win32-ia32@0.27.3':
+ '@esbuild/openbsd-x64@0.28.1':
optional: true
- '@esbuild/win32-ia32@0.27.4':
+ '@esbuild/openharmony-arm64@0.28.1':
optional: true
- '@esbuild/win32-ia32@0.28.0':
+ '@esbuild/sunos-x64@0.28.1':
optional: true
- '@esbuild/win32-x64@0.27.3':
+ '@esbuild/win32-arm64@0.28.1':
optional: true
- '@esbuild/win32-x64@0.27.4':
+ '@esbuild/win32-ia32@0.28.1':
optional: true
- '@esbuild/win32-x64@0.28.0':
+ '@esbuild/win32-x64@0.28.1':
optional: true
- '@eslint-community/eslint-utils@4.10.1(eslint@10.8.0(jiti@2.7.0))':
+ '@eslint-community/eslint-utils@4.10.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))':
dependencies:
- eslint: 10.8.0(jiti@2.7.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.2': {}
- '@eslint-react/ast@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@eslint-react/ast@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/typescript-estree': 8.60.0(typescript@6.0.3)
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/typescript-estree': 8.66.0(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
string-ts: 2.3.1
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/core@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@eslint-react/core@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/jsx': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/shared': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/var': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/scope-manager': 8.60.0
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/var': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/scope-manager': 8.66.0
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ts-pattern: 5.9.0
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/eslint-plugin@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@eslint-react/eslint-plugin@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@eslint-react/shared': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
- eslint-plugin-react-dom: 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint-plugin-react-jsx: 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint-plugin-react-naming-convention: 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint-plugin-react-rsc: 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint-plugin-react-web-api: 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint-plugin-react-x: 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
+ eslint-plugin-react-dom: 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint-plugin-react-jsx: 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint-plugin-react-naming-convention: 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint-plugin-react-rsc: 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint-plugin-react-web-api: 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint-plugin-react-x: 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/eslint@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@eslint-react/eslint@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/jsx@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@eslint-react/jsx@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/shared': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/var': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/var': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ts-pattern: 5.9.0
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/shared@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@eslint-react/shared@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ts-pattern: 5.9.0
typescript: 6.0.3
zod: 4.4.3
transitivePeerDependencies:
- supports-color
- '@eslint-react/var@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@eslint-react/var@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/scope-manager': 8.60.0
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/scope-manager': 8.66.0
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ts-pattern: 5.9.0
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@eslint/config-array@0.23.5':
+ '@eslint/config-array@0.23.5(supports-color@7.2.0)':
dependencies:
'@eslint/object-schema': 3.0.5
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
minimatch: 10.2.6
transitivePeerDependencies:
- supports-color
@@ -11541,9 +11313,9 @@ snapshots:
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/js@10.0.1(eslint@10.8.0(jiti@2.7.0))':
+ '@eslint/js@10.0.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))':
optionalDependencies:
- eslint: 10.8.0(jiti@2.7.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
'@eslint/object-schema@3.0.5': {}
@@ -11552,11 +11324,9 @@ snapshots:
'@eslint/core': 1.2.1
levn: 0.4.1
- '@exodus/bytes@1.15.0': {}
+ '@exodus/bytes@1.15.1': {}
- '@faker-js/faker@10.4.0': {}
-
- '@gar/promise-retry@1.0.3': {}
+ '@faker-js/faker@10.5.0': {}
'@gerrit0/mini-shiki@3.23.0':
dependencies:
@@ -11589,136 +11359,134 @@ snapshots:
'@humanwhocodes/retry@0.4.3': {}
- '@inquirer/ansi@1.0.2': {}
+ '@inquirer/ansi@2.0.7': {}
- '@inquirer/checkbox@4.3.2(@types/node@25.7.0)':
+ '@inquirer/checkbox@5.2.1(@types/node@26.1.2)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/confirm@5.1.21(@types/node@25.7.0)':
+ '@inquirer/confirm@6.1.1(@types/node@26.1.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/core@10.3.2(@types/node@25.7.0)':
+ '@inquirer/core@11.2.1(@types/node@26.1.2)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
cli-width: 4.1.0
- mute-stream: 2.0.0
+ fast-wrap-ansi: 0.2.2
+ mute-stream: 3.0.0
signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/editor@4.2.23(@types/node@25.7.0)':
+ '@inquirer/editor@5.2.2(@types/node@26.1.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/external-editor': 1.0.3(@types/node@25.7.0)
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/external-editor': 3.0.3(@types/node@26.1.2)
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/expand@4.0.23(@types/node@25.7.0)':
+ '@inquirer/expand@5.1.1(@types/node@26.1.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/external-editor@1.0.3(@types/node@25.7.0)':
+ '@inquirer/external-editor@1.0.3(@types/node@26.1.2)':
dependencies:
chardet: 2.1.1
iconv-lite: 0.7.2
optionalDependencies:
- '@types/node': 25.7.0
-
- '@inquirer/figures@1.0.15': {}
+ '@types/node': 26.1.2
- '@inquirer/input@4.3.1(@types/node@25.7.0)':
+ '@inquirer/external-editor@3.0.3(@types/node@26.1.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
+ chardet: 2.1.1
+ iconv-lite: 0.7.2
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
+
+ '@inquirer/figures@2.0.7': {}
- '@inquirer/number@3.0.23(@types/node@25.7.0)':
+ '@inquirer/input@5.1.2(@types/node@26.1.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/password@4.0.23(@types/node@25.7.0)':
+ '@inquirer/number@4.1.1(@types/node@26.1.2)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/prompts@7.10.1(@types/node@25.7.0)':
- dependencies:
- '@inquirer/checkbox': 4.3.2(@types/node@25.7.0)
- '@inquirer/confirm': 5.1.21(@types/node@25.7.0)
- '@inquirer/editor': 4.2.23(@types/node@25.7.0)
- '@inquirer/expand': 4.0.23(@types/node@25.7.0)
- '@inquirer/input': 4.3.1(@types/node@25.7.0)
- '@inquirer/number': 3.0.23(@types/node@25.7.0)
- '@inquirer/password': 4.0.23(@types/node@25.7.0)
- '@inquirer/rawlist': 4.1.11(@types/node@25.7.0)
- '@inquirer/search': 3.2.2(@types/node@25.7.0)
- '@inquirer/select': 4.4.2(@types/node@25.7.0)
+ '@inquirer/password@5.1.1(@types/node@26.1.2)':
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
+
+ '@inquirer/prompts@8.5.2(@types/node@26.1.2)':
+ dependencies:
+ '@inquirer/checkbox': 5.2.1(@types/node@26.1.2)
+ '@inquirer/confirm': 6.1.1(@types/node@26.1.2)
+ '@inquirer/editor': 5.2.2(@types/node@26.1.2)
+ '@inquirer/expand': 5.1.1(@types/node@26.1.2)
+ '@inquirer/input': 5.1.2(@types/node@26.1.2)
+ '@inquirer/number': 4.1.1(@types/node@26.1.2)
+ '@inquirer/password': 5.1.1(@types/node@26.1.2)
+ '@inquirer/rawlist': 5.3.1(@types/node@26.1.2)
+ '@inquirer/search': 4.2.1(@types/node@26.1.2)
+ '@inquirer/select': 5.2.1(@types/node@26.1.2)
+ optionalDependencies:
+ '@types/node': 26.1.2
- '@inquirer/rawlist@4.1.11(@types/node@25.7.0)':
+ '@inquirer/rawlist@5.3.1(@types/node@26.1.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/search@3.2.2(@types/node@25.7.0)':
+ '@inquirer/search@4.2.1(@types/node@26.1.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/select@4.4.2(@types/node@25.7.0)':
+ '@inquirer/select@5.2.1(@types/node@26.1.2)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@25.7.0)
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@26.1.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
- '@inquirer/type@3.0.10(@types/node@25.7.0)':
+ '@inquirer/type@4.0.7(@types/node@26.1.2)':
optionalDependencies:
- '@types/node': 25.7.0
-
- '@isaacs/fs-minipass@4.0.1':
- dependencies:
- minipass: 7.1.3
+ '@types/node': 26.1.2
- '@istanbuljs/schema@0.1.3': {}
+ '@istanbuljs/schema@0.1.3':
+ optional: true
'@jest/diff-sequences@30.0.1': {}
@@ -11741,33 +11509,33 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.5
- '@listr2/prompt-adapter-inquirer@3.0.5(@inquirer/prompts@7.10.1(@types/node@25.7.0))(@types/node@25.7.0)(listr2@9.0.5)':
+ '@listr2/prompt-adapter-inquirer@4.2.4(@inquirer/prompts@8.5.2(@types/node@26.1.2))(@types/node@26.1.2)(listr2@10.2.2)':
dependencies:
- '@inquirer/prompts': 7.10.1(@types/node@25.7.0)
- '@inquirer/type': 3.0.10(@types/node@25.7.0)
- listr2: 9.0.5
+ '@inquirer/prompts': 8.5.2(@types/node@26.1.2)
+ '@inquirer/type': 4.0.7(@types/node@26.1.2)
+ listr2: 10.2.2
transitivePeerDependencies:
- '@types/node'
- '@lmdb/lmdb-darwin-arm64@3.5.1':
+ '@lmdb/lmdb-darwin-arm64@3.5.6':
optional: true
- '@lmdb/lmdb-darwin-x64@3.5.1':
+ '@lmdb/lmdb-darwin-x64@3.5.6':
optional: true
- '@lmdb/lmdb-linux-arm64@3.5.1':
+ '@lmdb/lmdb-linux-arm64@3.5.6':
optional: true
- '@lmdb/lmdb-linux-arm@3.5.1':
+ '@lmdb/lmdb-linux-arm@3.5.6':
optional: true
- '@lmdb/lmdb-linux-x64@3.5.1':
+ '@lmdb/lmdb-linux-x64@3.5.6':
optional: true
- '@lmdb/lmdb-win32-arm64@3.5.1':
+ '@lmdb/lmdb-win32-arm64@3.5.6':
optional: true
- '@lmdb/lmdb-win32-x64@3.5.1':
+ '@lmdb/lmdb-win32-x64@3.5.6':
optional: true
'@manypkg/find-root@1.1.0':
@@ -11786,7 +11554,7 @@ snapshots:
globby: 11.1.0
read-yaml-file: 1.1.0
- '@modelcontextprotocol/sdk@1.26.0(zod@4.3.6)':
+ '@modelcontextprotocol/sdk@1.29.0(supports-color@7.2.0)(zod@4.4.3)':
dependencies:
'@hono/node-server': 1.19.12(hono@4.12.9)
ajv: 8.18.0
@@ -11796,15 +11564,15 @@ snapshots:
cross-spawn: 7.0.6
eventsource: 3.0.7
eventsource-parser: 3.0.6
- express: 5.2.1
- express-rate-limit: 8.3.2(express@5.2.1)
+ express: 5.2.1(supports-color@7.2.0)
+ express-rate-limit: 8.3.2(express@5.2.1(supports-color@7.2.0))
hono: 4.12.9
jose: 6.2.2
json-schema-typed: 8.0.2
pkce-challenge: 5.0.1
raw-body: 3.0.2
- zod: 4.3.6
- zod-to-json-schema: 3.25.2(zod@4.3.6)
+ zod: 4.4.3
+ zod-to-json-schema: 3.25.2(zod@4.4.3)
transitivePeerDependencies:
- supports-color
@@ -11900,22 +11668,29 @@ snapshots:
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
- '@emnapi/core': 1.10.0
- '@emnapi/runtime': 1.10.0
- '@tybys/wasm-util': 0.10.1
+ '@emnapi/core': 1.11.2
+ '@emnapi/runtime': 1.11.2
+ '@tybys/wasm-util': 0.10.3
optional: true
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
- '@emnapi/core': 1.10.0
- '@emnapi/runtime': 1.10.0
+ '@emnapi/core': 1.11.2
+ '@emnapi/runtime': 1.11.2
'@tybys/wasm-util': 0.9.0
- '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
+ '@napi-rs/wasm-runtime@1.2.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
dependencies:
- '@emnapi/core': 1.10.0
- '@emnapi/runtime': 1.10.0
- '@tybys/wasm-util': 0.10.1
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
+ '@napi-rs/wasm-runtime@1.2.1(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)':
+ dependencies:
+ '@emnapi/core': 1.11.2
+ '@emnapi/runtime': 1.11.2
+ '@tybys/wasm-util': 0.10.3
optional: true
'@nodelib/fs.scandir@2.1.5':
@@ -11930,221 +11705,167 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.20.1
- '@npmcli/agent@4.0.0':
- dependencies:
- agent-base: 7.1.4
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
- lru-cache: 11.3.5
- socks-proxy-agent: 8.0.5
- transitivePeerDependencies:
- - supports-color
-
- '@npmcli/fs@5.0.0':
- dependencies:
- semver: 7.8.1
-
- '@npmcli/git@7.0.2':
- dependencies:
- '@gar/promise-retry': 1.0.3
- '@npmcli/promise-spawn': 9.0.1
- ini: 6.0.0
- lru-cache: 11.3.5
- npm-pick-manifest: 11.0.3
- proc-log: 6.1.0
- semver: 7.8.1
- which: 6.0.1
-
- '@npmcli/installed-package-contents@4.0.0':
- dependencies:
- npm-bundled: 5.0.0
- npm-normalize-package-bin: 5.0.0
-
- '@npmcli/node-gyp@5.0.0': {}
-
- '@npmcli/package-json@7.0.5':
- dependencies:
- '@npmcli/git': 7.0.2
- glob: 13.0.6
- hosted-git-info: 9.0.2
- json-parse-even-better-errors: 5.0.0
- proc-log: 6.1.0
- semver: 7.8.1
- spdx-expression-parse: 4.0.0
-
- '@npmcli/promise-spawn@9.0.1':
- dependencies:
- which: 6.0.1
-
- '@npmcli/redact@4.0.0': {}
-
- '@npmcli/run-script@10.0.4':
- dependencies:
- '@npmcli/node-gyp': 5.0.0
- '@npmcli/package-json': 7.0.5
- '@npmcli/promise-spawn': 9.0.1
- node-gyp: 12.2.0
- proc-log: 6.1.0
- transitivePeerDependencies:
- - supports-color
-
- '@nx/nx-darwin-arm64@22.7.5':
+ '@nx/nx-darwin-arm64@23.1.1':
optional: true
- '@nx/nx-darwin-x64@22.7.5':
+ '@nx/nx-darwin-x64@23.1.1':
optional: true
- '@nx/nx-freebsd-x64@22.7.5':
+ '@nx/nx-freebsd-x64@23.1.1':
optional: true
- '@nx/nx-linux-arm-gnueabihf@22.7.5':
+ '@nx/nx-linux-arm-gnueabihf@23.1.1':
optional: true
- '@nx/nx-linux-arm64-gnu@22.7.5':
+ '@nx/nx-linux-arm64-gnu@23.1.1':
optional: true
- '@nx/nx-linux-arm64-musl@22.7.5':
+ '@nx/nx-linux-arm64-musl@23.1.1':
optional: true
- '@nx/nx-linux-x64-gnu@22.7.5':
+ '@nx/nx-linux-x64-gnu@23.1.1':
optional: true
- '@nx/nx-linux-x64-musl@22.7.5':
+ '@nx/nx-linux-x64-musl@23.1.1':
optional: true
- '@nx/nx-win32-arm64-msvc@22.7.5':
+ '@nx/nx-win32-arm64-msvc@23.1.1':
optional: true
- '@nx/nx-win32-x64-msvc@22.7.5':
+ '@nx/nx-win32-x64-msvc@23.1.1':
optional: true
- '@oxc-parser/binding-android-arm-eabi@0.133.0':
+ '@oxc-parser/binding-android-arm-eabi@0.142.0':
optional: true
- '@oxc-parser/binding-android-arm64@0.133.0':
+ '@oxc-parser/binding-android-arm64@0.142.0':
optional: true
- '@oxc-parser/binding-darwin-arm64@0.133.0':
+ '@oxc-parser/binding-darwin-arm64@0.142.0':
optional: true
- '@oxc-parser/binding-darwin-x64@0.133.0':
+ '@oxc-parser/binding-darwin-x64@0.142.0':
optional: true
- '@oxc-parser/binding-freebsd-x64@0.133.0':
+ '@oxc-parser/binding-freebsd-x64@0.142.0':
optional: true
- '@oxc-parser/binding-linux-arm-gnueabihf@0.133.0':
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.142.0':
optional: true
- '@oxc-parser/binding-linux-arm-musleabihf@0.133.0':
+ '@oxc-parser/binding-linux-arm-musleabihf@0.142.0':
optional: true
- '@oxc-parser/binding-linux-arm64-gnu@0.133.0':
+ '@oxc-parser/binding-linux-arm64-gnu@0.142.0':
optional: true
- '@oxc-parser/binding-linux-arm64-musl@0.133.0':
+ '@oxc-parser/binding-linux-arm64-musl@0.142.0':
optional: true
- '@oxc-parser/binding-linux-ppc64-gnu@0.133.0':
+ '@oxc-parser/binding-linux-ppc64-gnu@0.142.0':
optional: true
- '@oxc-parser/binding-linux-riscv64-gnu@0.133.0':
+ '@oxc-parser/binding-linux-riscv64-gnu@0.142.0':
optional: true
- '@oxc-parser/binding-linux-riscv64-musl@0.133.0':
+ '@oxc-parser/binding-linux-riscv64-musl@0.142.0':
optional: true
- '@oxc-parser/binding-linux-s390x-gnu@0.133.0':
+ '@oxc-parser/binding-linux-s390x-gnu@0.142.0':
optional: true
- '@oxc-parser/binding-linux-x64-gnu@0.133.0':
+ '@oxc-parser/binding-linux-x64-gnu@0.142.0':
optional: true
- '@oxc-parser/binding-linux-x64-musl@0.133.0':
+ '@oxc-parser/binding-linux-x64-musl@0.142.0':
optional: true
- '@oxc-parser/binding-openharmony-arm64@0.133.0':
+ '@oxc-parser/binding-openharmony-arm64@0.142.0':
optional: true
- '@oxc-parser/binding-wasm32-wasi@0.133.0':
+ '@oxc-parser/binding-wasm32-wasi@0.142.0':
dependencies:
- '@emnapi/core': 1.10.0
- '@emnapi/runtime': 1.10.0
- '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
+ '@emnapi/core': 1.11.2
+ '@emnapi/runtime': 1.11.2
+ '@napi-rs/wasm-runtime': 1.2.1(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)
optional: true
- '@oxc-parser/binding-win32-arm64-msvc@0.133.0':
+ '@oxc-parser/binding-win32-arm64-msvc@0.142.0':
optional: true
- '@oxc-parser/binding-win32-ia32-msvc@0.133.0':
+ '@oxc-parser/binding-win32-ia32-msvc@0.142.0':
optional: true
- '@oxc-parser/binding-win32-x64-msvc@0.133.0':
+ '@oxc-parser/binding-win32-x64-msvc@0.142.0':
optional: true
- '@oxc-project/types@0.113.0': {}
+ '@oxc-project/types@0.139.0': {}
- '@oxc-project/types@0.133.0': {}
+ '@oxc-project/types@0.140.0': {}
- '@oxc-resolver/binding-android-arm-eabi@11.20.0':
+ '@oxc-project/types@0.142.0': {}
+
+ '@oxc-project/types@0.143.0': {}
+
+ '@oxc-resolver/binding-android-arm-eabi@11.24.2':
optional: true
- '@oxc-resolver/binding-android-arm64@11.20.0':
+ '@oxc-resolver/binding-android-arm64@11.24.2':
optional: true
- '@oxc-resolver/binding-darwin-arm64@11.20.0':
+ '@oxc-resolver/binding-darwin-arm64@11.24.2':
optional: true
- '@oxc-resolver/binding-darwin-x64@11.20.0':
+ '@oxc-resolver/binding-darwin-x64@11.24.2':
optional: true
- '@oxc-resolver/binding-freebsd-x64@11.20.0':
+ '@oxc-resolver/binding-freebsd-x64@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0':
+ '@oxc-resolver/binding-linux-arm-gnueabihf@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0':
+ '@oxc-resolver/binding-linux-arm-musleabihf@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-arm64-gnu@11.20.0':
+ '@oxc-resolver/binding-linux-arm64-gnu@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-arm64-musl@11.20.0':
+ '@oxc-resolver/binding-linux-arm64-musl@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0':
+ '@oxc-resolver/binding-linux-ppc64-gnu@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0':
+ '@oxc-resolver/binding-linux-riscv64-gnu@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-riscv64-musl@11.20.0':
+ '@oxc-resolver/binding-linux-riscv64-musl@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-s390x-gnu@11.20.0':
+ '@oxc-resolver/binding-linux-s390x-gnu@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-x64-gnu@11.20.0':
+ '@oxc-resolver/binding-linux-x64-gnu@11.24.2':
optional: true
- '@oxc-resolver/binding-linux-x64-musl@11.20.0':
+ '@oxc-resolver/binding-linux-x64-musl@11.24.2':
optional: true
- '@oxc-resolver/binding-openharmony-arm64@11.20.0':
+ '@oxc-resolver/binding-openharmony-arm64@11.24.2':
optional: true
- '@oxc-resolver/binding-wasm32-wasi@11.20.0':
+ '@oxc-resolver/binding-wasm32-wasi@11.24.2':
dependencies:
- '@emnapi/core': 1.10.0
- '@emnapi/runtime': 1.10.0
- '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
+ '@emnapi/core': 1.11.2
+ '@emnapi/runtime': 1.11.2
+ '@napi-rs/wasm-runtime': 1.2.1(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)
optional: true
- '@oxc-resolver/binding-win32-arm64-msvc@11.20.0':
+ '@oxc-resolver/binding-win32-arm64-msvc@11.24.2':
optional: true
- '@oxc-resolver/binding-win32-x64-msvc@11.20.0':
+ '@oxc-resolver/binding-win32-x64-msvc@11.24.2':
optional: true
'@package-json/types@0.0.12': {}
@@ -12193,7 +11914,7 @@ snapshots:
detect-libc: 2.1.2
is-glob: 4.0.3
node-addon-api: 7.1.1
- picomatch: 4.0.4
+ picomatch: 4.0.5
optionalDependencies:
'@parcel/watcher-android-arm64': 2.5.6
'@parcel/watcher-darwin-arm64': 2.5.6
@@ -12210,19 +11931,19 @@ snapshots:
'@parcel/watcher-win32-x64': 2.5.6
optional: true
- '@preact/preset-vite@2.10.5(@babel/core@7.29.0)(preact@10.29.2)(rollup@4.60.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))':
+ '@preact/preset-vite@2.10.6(@babel/core@7.29.0(supports-color@7.2.0))(preact@10.29.8)(rollup@4.60.1)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))':
dependencies:
- '@babel/core': 7.29.0
- '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.29.0)
- '@prefresh/vite': 2.4.12(preact@10.29.2)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
+ '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
+ '@prefresh/vite': 2.4.12(preact@10.29.8)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
'@rollup/pluginutils': 5.3.0(rollup@4.60.1)
- babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.29.0)
- debug: 4.4.3
+ babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.29.0(supports-color@7.2.0))
+ debug: 4.4.3(supports-color@7.2.0)
magic-string: 0.30.21
picocolors: 1.1.1
- vite: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
- vite-prerender-plugin: 0.5.13(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
+ vite-prerender-plugin: 0.5.13(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
zimmerframe: 1.1.4
transitivePeerDependencies:
- preact
@@ -12231,126 +11952,175 @@ snapshots:
'@prefresh/babel-plugin@0.5.3': {}
- '@prefresh/core@1.5.9(preact@10.29.2)':
+ '@prefresh/core@1.5.9(preact@10.29.8)':
dependencies:
- preact: 10.29.2
+ preact: 10.29.8
'@prefresh/utils@1.2.1': {}
- '@prefresh/vite@2.4.12(preact@10.29.2)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))':
+ '@prefresh/vite@2.4.12(preact@10.29.8)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))':
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@prefresh/babel-plugin': 0.5.3
- '@prefresh/core': 1.5.9(preact@10.29.2)
+ '@prefresh/core': 1.5.9(preact@10.29.8)
'@prefresh/utils': 1.2.1
'@rollup/pluginutils': 4.2.1
- preact: 10.29.2
- vite: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ preact: 10.29.8
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
transitivePeerDependencies:
- supports-color
- '@publint/pack@0.1.4': {}
+ '@publint/pack@0.1.6':
+ dependencies:
+ tinyexec: 1.3.0
'@quansync/fs@1.0.0':
dependencies:
quansync: 1.0.0
- '@rolldown/binding-android-arm64@1.0.0-rc.4':
+ '@rolldown/binding-android-arm64@1.1.5':
optional: true
- '@rolldown/binding-android-arm64@1.0.3':
+ '@rolldown/binding-android-arm64@1.2.0':
optional: true
- '@rolldown/binding-darwin-arm64@1.0.0-rc.4':
+ '@rolldown/binding-android-arm64@1.2.3':
optional: true
- '@rolldown/binding-darwin-arm64@1.0.3':
+ '@rolldown/binding-darwin-arm64@1.1.5':
optional: true
- '@rolldown/binding-darwin-x64@1.0.0-rc.4':
+ '@rolldown/binding-darwin-arm64@1.2.0':
optional: true
- '@rolldown/binding-darwin-x64@1.0.3':
+ '@rolldown/binding-darwin-arm64@1.2.3':
optional: true
- '@rolldown/binding-freebsd-x64@1.0.0-rc.4':
+ '@rolldown/binding-darwin-x64@1.1.5':
optional: true
- '@rolldown/binding-freebsd-x64@1.0.3':
+ '@rolldown/binding-darwin-x64@1.2.0':
optional: true
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.4':
+ '@rolldown/binding-darwin-x64@1.2.3':
optional: true
- '@rolldown/binding-linux-arm-gnueabihf@1.0.3':
+ '@rolldown/binding-freebsd-x64@1.1.5':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.4':
+ '@rolldown/binding-freebsd-x64@1.2.0':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.3':
+ '@rolldown/binding-freebsd-x64@1.2.3':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-rc.4':
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.5':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.3':
+ '@rolldown/binding-linux-arm-gnueabihf@1.2.0':
optional: true
- '@rolldown/binding-linux-ppc64-gnu@1.0.3':
+ '@rolldown/binding-linux-arm-gnueabihf@1.2.3':
optional: true
- '@rolldown/binding-linux-s390x-gnu@1.0.3':
+ '@rolldown/binding-linux-arm64-gnu@1.1.5':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-rc.4':
+ '@rolldown/binding-linux-arm64-gnu@1.2.0':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.3':
+ '@rolldown/binding-linux-arm64-gnu@1.2.3':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-rc.4':
+ '@rolldown/binding-linux-arm64-musl@1.1.5':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.3':
+ '@rolldown/binding-linux-arm64-musl@1.2.0':
optional: true
- '@rolldown/binding-openharmony-arm64@1.0.0-rc.4':
+ '@rolldown/binding-linux-arm64-musl@1.2.3':
optional: true
- '@rolldown/binding-openharmony-arm64@1.0.3':
+ '@rolldown/binding-linux-ppc64-gnu@1.1.5':
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-rc.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
+ '@rolldown/binding-linux-ppc64-gnu@1.2.0':
+ optional: true
+
+ '@rolldown/binding-linux-ppc64-gnu@1.2.3':
+ optional: true
+
+ '@rolldown/binding-linux-s390x-gnu@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-s390x-gnu@1.2.0':
+ optional: true
+
+ '@rolldown/binding-linux-s390x-gnu@1.2.3':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.2.0':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.2.3':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.1.5':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.2.0':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.2.3':
+ optional: true
+
+ '@rolldown/binding-openharmony-arm64@1.1.5':
+ optional: true
+
+ '@rolldown/binding-openharmony-arm64@1.2.0':
+ optional: true
+
+ '@rolldown/binding-openharmony-arm64@1.2.3':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.1.5':
dependencies:
- '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
- transitivePeerDependencies:
- - '@emnapi/core'
- - '@emnapi/runtime'
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@napi-rs/wasm-runtime': 1.2.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.3':
+ '@rolldown/binding-wasm32-wasi@1.2.0':
dependencies:
- '@emnapi/core': 1.10.0
- '@emnapi/runtime': 1.10.0
- '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
+ '@emnapi/core': 1.11.2
+ '@emnapi/runtime': 1.11.2
+ '@napi-rs/wasm-runtime': 1.2.1(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.1.5':
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.2.0':
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.4':
+ '@rolldown/binding-win32-arm64-msvc@1.2.3':
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.3':
+ '@rolldown/binding-win32-x64-msvc@1.1.5':
optional: true
- '@rolldown/binding-win32-x64-msvc@1.0.0-rc.4':
+ '@rolldown/binding-win32-x64-msvc@1.2.0':
optional: true
- '@rolldown/binding-win32-x64-msvc@1.0.3':
+ '@rolldown/binding-win32-x64-msvc@1.2.3':
optional: true
'@rolldown/pluginutils@1.0.0': {}
- '@rolldown/pluginutils@1.0.0-rc.4': {}
+ '@rolldown/pluginutils@1.0.1': {}
'@rollup/pluginutils@4.2.1':
dependencies:
@@ -12440,11 +12210,12 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.60.1':
optional: true
- '@schematics/angular@21.2.13(chokidar@5.0.0)':
+ '@schematics/angular@22.1.3(chokidar@5.0.0)':
dependencies:
- '@angular-devkit/core': 21.2.13(chokidar@5.0.0)
- '@angular-devkit/schematics': 21.2.13(chokidar@5.0.0)
+ '@angular-devkit/core': 22.1.3(chokidar@5.0.0)
+ '@angular-devkit/schematics': 22.1.3(chokidar@5.0.0)
jsonc-parser: 3.3.1
+ typescript: 6.0.3
transitivePeerDependencies:
- chokidar
@@ -12468,95 +12239,63 @@ snapshots:
'@shikijs/vscode-textmate@10.0.2': {}
- '@sigstore/bundle@4.0.0':
- dependencies:
- '@sigstore/protobuf-specs': 0.5.0
-
- '@sigstore/core@3.2.0': {}
-
- '@sigstore/protobuf-specs@0.5.0': {}
-
- '@sigstore/sign@4.1.1':
- dependencies:
- '@gar/promise-retry': 1.0.3
- '@sigstore/bundle': 4.0.0
- '@sigstore/core': 3.2.0
- '@sigstore/protobuf-specs': 0.5.0
- make-fetch-happen: 15.0.5
- proc-log: 6.1.0
- transitivePeerDependencies:
- - supports-color
-
- '@sigstore/tuf@4.0.2':
- dependencies:
- '@sigstore/protobuf-specs': 0.5.0
- tuf-js: 4.1.0
- transitivePeerDependencies:
- - supports-color
-
- '@sigstore/verify@3.1.0':
- dependencies:
- '@sigstore/bundle': 4.0.0
- '@sigstore/core': 3.2.0
- '@sigstore/protobuf-specs': 0.5.0
-
- '@size-limit/esbuild@12.1.0(size-limit@12.1.0(jiti@2.7.0))':
+ '@size-limit/esbuild@13.0.3(size-limit@13.0.3)':
dependencies:
- esbuild: 0.28.0
- nanoid: 5.1.7
- size-limit: 12.1.0(jiti@2.7.0)
+ esbuild: 0.28.1
+ nanoid: 6.0.1
+ size-limit: 13.0.3
- '@size-limit/file@12.1.0(size-limit@12.1.0(jiti@2.7.0))':
+ '@size-limit/file@13.0.3(size-limit@13.0.3)':
dependencies:
- size-limit: 12.1.0(jiti@2.7.0)
+ size-limit: 13.0.3
- '@size-limit/preset-small-lib@12.1.0(size-limit@12.1.0(jiti@2.7.0))':
+ '@size-limit/preset-small-lib@13.0.3(size-limit@13.0.3)':
dependencies:
- '@size-limit/esbuild': 12.1.0(size-limit@12.1.0(jiti@2.7.0))
- '@size-limit/file': 12.1.0(size-limit@12.1.0(jiti@2.7.0))
- size-limit: 12.1.0(jiti@2.7.0)
+ '@size-limit/esbuild': 13.0.3(size-limit@13.0.3)
+ '@size-limit/file': 13.0.3(size-limit@13.0.3)
+ size-limit: 13.0.3
- '@solid-primitives/event-listener@2.4.5(solid-js@1.9.13)':
+ '@solid-primitives/event-listener@2.4.5(solid-js@1.9.14)':
dependencies:
- '@solid-primitives/utils': 6.4.0(solid-js@1.9.13)
- solid-js: 1.9.13
+ '@solid-primitives/utils': 6.4.0(solid-js@1.9.14)
+ solid-js: 1.9.14
- '@solid-primitives/keyboard@1.3.5(solid-js@1.9.13)':
+ '@solid-primitives/keyboard@1.3.5(solid-js@1.9.14)':
dependencies:
- '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13)
- '@solid-primitives/rootless': 1.5.3(solid-js@1.9.13)
- '@solid-primitives/utils': 6.4.0(solid-js@1.9.13)
- solid-js: 1.9.13
+ '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.14)
+ '@solid-primitives/rootless': 1.5.3(solid-js@1.9.14)
+ '@solid-primitives/utils': 6.4.0(solid-js@1.9.14)
+ solid-js: 1.9.14
- '@solid-primitives/resize-observer@2.1.5(solid-js@1.9.13)':
+ '@solid-primitives/resize-observer@2.1.5(solid-js@1.9.14)':
dependencies:
- '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13)
- '@solid-primitives/rootless': 1.5.3(solid-js@1.9.13)
- '@solid-primitives/static-store': 0.1.3(solid-js@1.9.13)
- '@solid-primitives/utils': 6.4.0(solid-js@1.9.13)
- solid-js: 1.9.13
+ '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.14)
+ '@solid-primitives/rootless': 1.5.3(solid-js@1.9.14)
+ '@solid-primitives/static-store': 0.1.3(solid-js@1.9.14)
+ '@solid-primitives/utils': 6.4.0(solid-js@1.9.14)
+ solid-js: 1.9.14
- '@solid-primitives/rootless@1.5.3(solid-js@1.9.13)':
+ '@solid-primitives/rootless@1.5.3(solid-js@1.9.14)':
dependencies:
- '@solid-primitives/utils': 6.4.0(solid-js@1.9.13)
- solid-js: 1.9.13
+ '@solid-primitives/utils': 6.4.0(solid-js@1.9.14)
+ solid-js: 1.9.14
- '@solid-primitives/static-store@0.1.3(solid-js@1.9.13)':
+ '@solid-primitives/static-store@0.1.3(solid-js@1.9.14)':
dependencies:
- '@solid-primitives/utils': 6.4.0(solid-js@1.9.13)
- solid-js: 1.9.13
+ '@solid-primitives/utils': 6.4.0(solid-js@1.9.14)
+ solid-js: 1.9.14
- '@solid-primitives/utils@6.4.0(solid-js@1.9.13)':
+ '@solid-primitives/utils@6.4.0(solid-js@1.9.14)':
dependencies:
- solid-js: 1.9.13
+ solid-js: 1.9.14
'@standard-schema/spec@1.1.0': {}
- '@stylistic/eslint-plugin@5.10.0(eslint@10.8.0(jiti@2.7.0))':
+ '@stylistic/eslint-plugin@5.10.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))':
dependencies:
- '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
'@typescript-eslint/types': 8.60.0
- eslint: 10.8.0(jiti@2.7.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
eslint-visitor-keys: 4.2.1
espree: 10.4.0
estraverse: 5.3.0
@@ -12573,68 +12312,87 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@tanstack/angular-store@0.11.0(@angular/common@21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))':
+ '@tanstack/angular-store@0.11.1(@angular/common@22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))':
dependencies:
- '@angular/common': 21.2.19(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(rxjs@7.8.2)
- '@angular/core': 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
- '@tanstack/store': 0.11.0
+ '@angular/common': 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(rxjs@7.8.2)
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
+ '@tanstack/store': 0.11.1
- '@tanstack/devtools-client@0.0.6':
+ '@tanstack/devtools-client@0.0.8':
dependencies:
- '@tanstack/devtools-event-client': 0.4.3
+ '@tanstack/devtools-event-client': 0.5.0
- '@tanstack/devtools-event-bus@0.4.1':
+ '@tanstack/devtools-event-bus@0.4.2':
dependencies:
ws: 8.20.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@tanstack/devtools-event-client@0.4.3': {}
+ '@tanstack/devtools-event-client@0.5.0': {}
- '@tanstack/devtools-ui@0.5.2(csstype@3.2.3)(solid-js@1.9.13)':
+ '@tanstack/devtools-ui@0.6.0(csstype@3.2.3)(solid-js@1.9.14)':
dependencies:
clsx: 2.1.1
dayjs: 1.11.21
goober: 2.1.19(csstype@3.2.3)
- solid-js: 1.9.13
+ solid-js: 1.9.14
transitivePeerDependencies:
- csstype
- '@tanstack/devtools-utils@0.5.0(@angular/core@21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2))(@types/react@19.2.15)(preact@10.29.2)(react@19.2.6)(solid-js@1.9.13)':
+ '@tanstack/devtools-utils@0.6.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@types/react@19.2.15)(preact@10.29.8)(react@19.2.6)(solid-js@1.9.14)(svelte@5.55.1(@typescript-eslint/types@8.66.0))':
optionalDependencies:
- '@angular/core': 21.2.19(@angular/compiler@21.2.19)(rxjs@7.8.2)
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
'@types/react': 19.2.15
- preact: 10.29.2
+ preact: 10.29.8
react: 19.2.6
+ solid-js: 1.9.14
+ svelte: 5.55.1(@typescript-eslint/types@8.66.0)
+
+ '@tanstack/devtools-utils@0.6.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@types/react@19.2.18)(preact@10.29.8)(react@19.2.8)(solid-js@1.9.13)(svelte@5.55.1(@typescript-eslint/types@8.66.0))':
+ optionalDependencies:
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
+ '@types/react': 19.2.18
+ preact: 10.29.8
+ react: 19.2.8
solid-js: 1.9.13
+ svelte: 5.55.1(@typescript-eslint/types@8.66.0)
- '@tanstack/devtools@0.12.2(csstype@3.2.3)(solid-js@1.9.13)':
- dependencies:
- '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13)
- '@solid-primitives/keyboard': 1.3.5(solid-js@1.9.13)
- '@solid-primitives/resize-observer': 2.1.5(solid-js@1.9.13)
- '@tanstack/devtools-client': 0.0.6
- '@tanstack/devtools-event-bus': 0.4.1
- '@tanstack/devtools-ui': 0.5.2(csstype@3.2.3)(solid-js@1.9.13)
+ '@tanstack/devtools-utils@0.6.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2))(@types/react@19.2.18)(preact@10.29.8)(react@19.2.8)(solid-js@1.9.14)(svelte@5.55.1(@typescript-eslint/types@8.66.0))':
+ optionalDependencies:
+ '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)
+ '@types/react': 19.2.18
+ preact: 10.29.8
+ react: 19.2.8
+ solid-js: 1.9.14
+ svelte: 5.55.1(@typescript-eslint/types@8.66.0)
+
+ '@tanstack/devtools@0.13.0(csstype@3.2.3)(solid-js@1.9.14)':
+ dependencies:
+ '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.14)
+ '@solid-primitives/keyboard': 1.3.5(solid-js@1.9.14)
+ '@solid-primitives/resize-observer': 2.1.5(solid-js@1.9.14)
+ '@tanstack/devtools-client': 0.0.8
+ '@tanstack/devtools-event-bus': 0.4.2
+ '@tanstack/devtools-ui': 0.6.0(csstype@3.2.3)(solid-js@1.9.14)
clsx: 2.1.1
goober: 2.1.19(csstype@3.2.3)
- solid-js: 1.9.13
+ solid-js: 1.9.14
transitivePeerDependencies:
- bufferutil
- csstype
- utf-8-validate
- '@tanstack/eslint-config@0.4.0(@typescript-eslint/utils@8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@tanstack/eslint-config@0.4.0(@typescript-eslint/utils@8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@eslint/js': 10.0.1(eslint@10.8.0(jiti@2.7.0))
- '@stylistic/eslint-plugin': 5.10.0(eslint@10.8.0(jiti@2.7.0))
- eslint: 10.8.0(jiti@2.7.0)
- eslint-plugin-import-x: 4.16.2(@typescript-eslint/utils@8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))
- eslint-plugin-n: 17.24.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ '@eslint/js': 10.0.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
+ '@stylistic/eslint-plugin': 5.10.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
+ eslint-plugin-import-x: 4.16.2(@typescript-eslint/utils@8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
+ eslint-plugin-n: 17.24.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(typescript@6.0.3)
globals: 17.4.0
- typescript-eslint: 8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- vue-eslint-parser: 10.4.0(eslint@10.8.0(jiti@2.7.0))
+ typescript-eslint: 8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ vue-eslint-parser: 10.4.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
transitivePeerDependencies:
- '@typescript-eslint/utils'
- eslint-import-resolver-node
@@ -12643,77 +12401,77 @@ snapshots:
'@tanstack/persister@0.1.1': {}
- '@tanstack/preact-devtools@0.10.5(csstype@3.2.3)(preact@10.29.2)(solid-js@1.9.13)':
+ '@tanstack/preact-devtools@0.10.9(csstype@3.2.3)(preact@10.29.8)(solid-js@1.9.14)':
dependencies:
- '@tanstack/devtools': 0.12.2(csstype@3.2.3)(solid-js@1.9.13)
- preact: 10.29.2
+ '@tanstack/devtools': 0.13.0(csstype@3.2.3)(solid-js@1.9.14)
+ preact: 10.29.8
transitivePeerDependencies:
- bufferutil
- csstype
- solid-js
- utf-8-validate
- '@tanstack/preact-store@0.13.1(preact@10.29.2)':
+ '@tanstack/preact-store@0.13.2(preact@10.29.8)':
dependencies:
- '@tanstack/store': 0.11.0
- preact: 10.29.2
+ '@tanstack/store': 0.11.1
+ preact: 10.29.8
- '@tanstack/query-core@5.100.14': {}
+ '@tanstack/query-core@5.101.4': {}
- '@tanstack/query-devtools@5.100.14': {}
+ '@tanstack/query-devtools@5.101.4': {}
- '@tanstack/react-devtools@0.10.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(csstype@3.2.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(solid-js@1.9.13)':
+ '@tanstack/react-devtools@0.10.9(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(csstype@3.2.3)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(solid-js@1.9.14)':
dependencies:
- '@tanstack/devtools': 0.12.2(csstype@3.2.3)(solid-js@1.9.13)
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@tanstack/devtools': 0.13.0(csstype@3.2.3)(solid-js@1.9.14)
+ '@types/react': 19.2.18
+ '@types/react-dom': 19.2.4(@types/react@19.2.18)
+ react: 19.2.8
+ react-dom: 19.2.8(react@19.2.8)
transitivePeerDependencies:
- bufferutil
- csstype
- solid-js
- utf-8-validate
- '@tanstack/react-persister@0.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@tanstack/react-persister@0.1.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8)':
dependencies:
'@tanstack/persister': 0.1.1
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.8
+ react-dom: 19.2.8(react@19.2.8)
- '@tanstack/react-query-devtools@5.100.14(@tanstack/react-query@5.100.14(react@19.2.6))(react@19.2.6)':
+ '@tanstack/react-query-devtools@5.101.4(@tanstack/react-query@5.101.4(react@19.2.8))(react@19.2.8)':
dependencies:
- '@tanstack/query-devtools': 5.100.14
- '@tanstack/react-query': 5.100.14(react@19.2.6)
- react: 19.2.6
+ '@tanstack/query-devtools': 5.101.4
+ '@tanstack/react-query': 5.101.4(react@19.2.8)
+ react: 19.2.8
- '@tanstack/react-query@5.100.14(react@19.2.6)':
+ '@tanstack/react-query@5.101.4(react@19.2.8)':
dependencies:
- '@tanstack/query-core': 5.100.14
- react: 19.2.6
+ '@tanstack/query-core': 5.101.4
+ react: 19.2.8
- '@tanstack/react-store@0.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@tanstack/react-store@0.11.1(react-dom@19.2.6(react@19.2.8))(react@19.2.8)':
dependencies:
- '@tanstack/store': 0.11.0
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- use-sync-external-store: 1.6.0(react@19.2.6)
+ '@tanstack/store': 0.11.1
+ react: 19.2.8
+ react-dom: 19.2.6(react@19.2.8)
+ use-sync-external-store: 1.6.0(react@19.2.8)
- '@tanstack/solid-devtools@0.8.5(csstype@3.2.3)(solid-js@1.9.13)':
+ '@tanstack/solid-devtools@0.8.9(csstype@3.2.3)(solid-js@1.9.14)':
dependencies:
- '@tanstack/devtools': 0.12.2(csstype@3.2.3)(solid-js@1.9.13)
- solid-js: 1.9.13
+ '@tanstack/devtools': 0.13.0(csstype@3.2.3)(solid-js@1.9.14)
+ solid-js: 1.9.14
transitivePeerDependencies:
- bufferutil
- csstype
- utf-8-validate
- '@tanstack/solid-store@0.11.0(solid-js@1.9.13)':
+ '@tanstack/solid-store@0.11.1(solid-js@1.9.14)':
dependencies:
- '@tanstack/store': 0.11.0
- solid-js: 1.9.13
+ '@tanstack/store': 0.11.1
+ solid-js: 1.9.14
- '@tanstack/store@0.11.0': {}
+ '@tanstack/store@0.11.1': {}
'@tanstack/typedoc-config@0.3.3(typescript@6.0.3)':
dependencies:
@@ -12723,6 +12481,17 @@ snapshots:
transitivePeerDependencies:
- typescript
+ '@testing-library/dom@10.4.1':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/runtime': 7.29.2
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ picocolors: 1.1.1
+ pretty-format: 27.5.1
+
'@testing-library/dom@8.20.1':
dependencies:
'@babel/code-frame': 7.29.0
@@ -12734,28 +12503,22 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/jest-dom@6.9.1':
+ '@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1)':
dependencies:
'@adobe/css-tools': 4.4.4
+ '@testing-library/dom': 10.4.1
aria-query: 5.3.2
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
picocolors: 1.1.1
redent: 3.0.0
- '@testing-library/preact@3.2.4(preact@10.29.2)':
+ '@testing-library/preact@3.2.4(preact@10.29.8)':
dependencies:
'@testing-library/dom': 8.20.1
- preact: 10.29.2
-
- '@tufjs/canonical-json@2.0.0': {}
-
- '@tufjs/models@4.1.0':
- dependencies:
- '@tufjs/canonical-json': 2.0.0
- minimatch: 10.2.6
+ preact: 10.29.8
- '@tybys/wasm-util@0.10.1':
+ '@tybys/wasm-util@0.10.3':
dependencies:
tslib: 2.8.1
optional: true
@@ -12796,10 +12559,13 @@ snapshots:
'@types/esrecurse@4.3.1': {}
- '@types/estree@1.0.8': {}
+ '@types/estree@1.0.8':
+ optional: true
'@types/estree@1.0.9': {}
+ '@types/gensync@1.0.5': {}
+
'@types/hast@3.0.4':
dependencies:
'@types/unist': 3.0.3
@@ -12814,14 +12580,26 @@ snapshots:
dependencies:
undici-types: 7.21.0
+ '@types/node@26.1.2':
+ dependencies:
+ undici-types: 8.3.0
+
'@types/react-dom@19.2.3(@types/react@19.2.15)':
dependencies:
'@types/react': 19.2.15
+ '@types/react-dom@19.2.4(@types/react@19.2.18)':
+ dependencies:
+ '@types/react': 19.2.18
+
'@types/react@19.2.15':
dependencies:
csstype: 3.2.3
+ '@types/react@19.2.18':
+ dependencies:
+ csstype: 3.2.3
+
'@types/trusted-types@2.0.7': {}
'@types/unist@3.0.3': {}
@@ -12832,15 +12610,15 @@ snapshots:
dependencies:
'@types/node': 25.7.0
- '@typescript-eslint/eslint-plugin@8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@typescript-eslint/eslint-plugin@8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ '@typescript-eslint/parser': 8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
'@typescript-eslint/scope-manager': 8.58.0
- '@typescript-eslint/type-utils': 8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/utils': 8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ '@typescript-eslint/type-utils': 8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
'@typescript-eslint/visitor-keys': 8.58.0
- eslint: 10.8.0(jiti@2.7.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ignore: 7.0.5
natural-compare: 1.4.0
ts-api-utils: 2.5.0(typescript@6.0.3)
@@ -12848,32 +12626,32 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.58.0
'@typescript-eslint/types': 8.58.0
- '@typescript-eslint/typescript-estree': 8.58.0(typescript@6.0.3)
+ '@typescript-eslint/typescript-estree': 8.58.0(supports-color@7.2.0)(typescript@6.0.3)
'@typescript-eslint/visitor-keys': 8.58.0
- debug: 4.4.3
- eslint: 10.8.0(jiti@2.7.0)
+ debug: 4.4.3(supports-color@7.2.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.58.0(typescript@6.0.3)':
+ '@typescript-eslint/project-service@8.58.0(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
'@typescript-eslint/tsconfig-utils': 8.60.0(typescript@6.0.3)
'@typescript-eslint/types': 8.60.0
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.60.0(typescript@6.0.3)':
+ '@typescript-eslint/project-service@8.66.0(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.60.0(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- debug: 4.4.3
+ '@typescript-eslint/tsconfig-utils': 8.66.0(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ debug: 4.4.3(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -12883,10 +12661,10 @@ snapshots:
'@typescript-eslint/types': 8.58.0
'@typescript-eslint/visitor-keys': 8.58.0
- '@typescript-eslint/scope-manager@8.60.0':
+ '@typescript-eslint/scope-manager@8.66.0':
dependencies:
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/visitor-keys': 8.60.0
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/visitor-keys': 8.66.0
'@typescript-eslint/tsconfig-utils@8.58.0(typescript@6.0.3)':
dependencies:
@@ -12896,25 +12674,29 @@ snapshots:
dependencies:
typescript: 6.0.3
- '@typescript-eslint/type-utils@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@typescript-eslint/tsconfig-utils@8.66.0(typescript@6.0.3)':
+ dependencies:
+ typescript: 6.0.3
+
+ '@typescript-eslint/type-utils@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
'@typescript-eslint/types': 8.58.0
- '@typescript-eslint/typescript-estree': 8.58.0(typescript@6.0.3)
- '@typescript-eslint/utils': 8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- debug: 4.4.3
- eslint: 10.8.0(jiti@2.7.0)
+ '@typescript-eslint/typescript-estree': 8.58.0(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ debug: 4.4.3(supports-color@7.2.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ts-api-utils: 2.5.0(typescript@6.0.3)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@typescript-eslint/type-utils@8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/typescript-estree': 8.60.0(typescript@6.0.3)
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- debug: 4.4.3
- eslint: 10.8.0(jiti@2.7.0)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/typescript-estree': 8.66.0(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ debug: 4.4.3(supports-color@7.2.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ts-api-utils: 2.5.0(typescript@6.0.3)
typescript: 6.0.3
transitivePeerDependencies:
@@ -12924,54 +12706,56 @@ snapshots:
'@typescript-eslint/types@8.60.0': {}
- '@typescript-eslint/typescript-estree@8.58.0(typescript@6.0.3)':
+ '@typescript-eslint/types@8.66.0': {}
+
+ '@typescript-eslint/typescript-estree@8.58.0(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/project-service': 8.58.0(typescript@6.0.3)
+ '@typescript-eslint/project-service': 8.58.0(supports-color@7.2.0)(typescript@6.0.3)
'@typescript-eslint/tsconfig-utils': 8.58.0(typescript@6.0.3)
'@typescript-eslint/types': 8.58.0
'@typescript-eslint/visitor-keys': 8.58.0
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
minimatch: 10.2.6
- semver: 7.8.1
+ semver: 7.8.5
tinyglobby: 0.2.17
ts-api-utils: 2.5.0(typescript@6.0.3)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.60.0(typescript@6.0.3)':
+ '@typescript-eslint/typescript-estree@8.66.0(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/project-service': 8.60.0(typescript@6.0.3)
- '@typescript-eslint/tsconfig-utils': 8.60.0(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/visitor-keys': 8.60.0
- debug: 4.4.3
+ '@typescript-eslint/project-service': 8.66.0(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/tsconfig-utils': 8.66.0(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/visitor-keys': 8.66.0
+ debug: 4.4.3(supports-color@7.2.0)
minimatch: 10.2.6
- semver: 7.8.1
+ semver: 7.8.5
tinyglobby: 0.2.17
ts-api-utils: 2.5.0(typescript@6.0.3)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@typescript-eslint/utils@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
'@typescript-eslint/scope-manager': 8.58.0
'@typescript-eslint/types': 8.58.0
- '@typescript-eslint/typescript-estree': 8.58.0(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@typescript-eslint/typescript-estree': 8.58.0(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)':
+ '@typescript-eslint/utils@8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
- '@typescript-eslint/scope-manager': 8.60.0
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/typescript-estree': 8.60.0(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
+ '@typescript-eslint/scope-manager': 8.66.0
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/typescript-estree': 8.66.0(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -12981,9 +12765,9 @@ snapshots:
'@typescript-eslint/types': 8.58.0
eslint-visitor-keys: 5.0.1
- '@typescript-eslint/visitor-keys@8.60.0':
+ '@typescript-eslint/visitor-keys@8.66.0':
dependencies:
- '@typescript-eslint/types': 8.60.0
+ '@typescript-eslint/types': 8.66.0
eslint-visitor-keys: 5.0.1
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
@@ -13045,64 +12829,136 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- '@vitejs/plugin-basic-ssl@2.1.4(vite@7.3.2(@types/node@25.7.0)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.97.3)(yaml@2.9.0))':
+ '@vitejs/plugin-basic-ssl@2.3.0(vite@8.1.5(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))':
dependencies:
- vite: 7.3.2(@types/node@25.7.0)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.97.3)(yaml@2.9.0)
+ vite: 8.1.5(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
- '@vitejs/plugin-react@6.0.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))':
+ '@vitejs/plugin-react@6.0.5(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))':
dependencies:
- '@rolldown/pluginutils': 1.0.0
- vite: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ '@rolldown/pluginutils': 1.0.1
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
- '@vitest/expect@4.1.7':
+ '@vitest/expect@4.1.10':
dependencies:
'@standard-schema/spec': 1.1.0
'@types/chai': 5.2.3
- '@vitest/spy': 4.1.7
- '@vitest/utils': 4.1.7
+ '@vitest/spy': 4.1.10
+ '@vitest/utils': 4.1.10
chai: 6.2.2
tinyrainbow: 3.1.0
- '@vitest/mocker@4.1.7(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))':
+ '@vitest/mocker@4.1.10(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))':
dependencies:
- '@vitest/spy': 4.1.7
+ '@vitest/spy': 4.1.10
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
- '@vitest/pretty-format@4.1.7':
+ '@vitest/pretty-format@4.1.10':
dependencies:
tinyrainbow: 3.1.0
- '@vitest/runner@4.1.7':
+ '@vitest/runner@4.1.10':
dependencies:
- '@vitest/utils': 4.1.7
+ '@vitest/utils': 4.1.10
pathe: 2.0.3
- '@vitest/snapshot@4.1.7':
+ '@vitest/snapshot@4.1.10':
dependencies:
- '@vitest/pretty-format': 4.1.7
- '@vitest/utils': 4.1.7
+ '@vitest/pretty-format': 4.1.10
+ '@vitest/utils': 4.1.10
magic-string: 0.30.21
pathe: 2.0.3
- '@vitest/spy@4.1.7': {}
+ '@vitest/spy@4.1.10': {}
- '@vitest/utils@4.1.7':
+ '@vitest/utils@4.1.10':
dependencies:
- '@vitest/pretty-format': 4.1.7
+ '@vitest/pretty-format': 4.1.10
convert-source-map: 2.0.0
tinyrainbow: 3.1.0
'@yarnpkg/lockfile@1.1.0': {}
+ '@yuku-codegen/binding-android-arm64@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-darwin-arm64@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-darwin-x64@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-freebsd-x64@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-linux-arm-gnu@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-linux-arm-musl@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-linux-arm64-gnu@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-linux-arm64-musl@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-linux-x64-gnu@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-linux-x64-musl@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-win32-arm64@0.8.3':
+ optional: true
+
+ '@yuku-codegen/binding-win32-x64@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-android-arm64@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-darwin-arm64@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-darwin-x64@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-freebsd-x64@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-linux-arm-gnu@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-linux-arm-musl@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-linux-arm64-gnu@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-linux-arm64-musl@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-linux-x64-gnu@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-linux-x64-musl@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-win32-arm64@0.8.3':
+ optional: true
+
+ '@yuku-parser/binding-win32-x64@0.8.3':
+ optional: true
+
+ '@yuku-toolchain/types@0.8.3': {}
+
'@zkochan/js-yaml@0.0.7':
dependencies:
argparse: 2.0.1
- abbrev@4.0.0: {}
-
accepts@2.0.0:
dependencies:
mime-types: 3.0.2
@@ -13114,12 +12970,22 @@ snapshots:
acorn@8.18.0: {}
- agent-base@7.1.4: {}
+ agent-base@6.0.2(supports-color@7.2.0):
+ dependencies:
+ debug: 4.4.3(supports-color@7.2.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ agent-base@9.0.0: {}
ajv-formats@3.0.1(ajv@8.18.0):
optionalDependencies:
ajv: 8.18.0
+ ajv-formats@3.0.1(ajv@8.20.0):
+ optionalDependencies:
+ ajv: 8.20.0
+
ajv@6.15.0:
dependencies:
fast-deep-equal: 3.1.3
@@ -13134,22 +13000,12 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.48.1:
- dependencies:
- '@algolia/abtesting': 1.14.1
- '@algolia/client-abtesting': 5.48.1
- '@algolia/client-analytics': 5.48.1
- '@algolia/client-common': 5.48.1
- '@algolia/client-insights': 5.48.1
- '@algolia/client-personalization': 5.48.1
- '@algolia/client-query-suggestions': 5.48.1
- '@algolia/client-search': 5.48.1
- '@algolia/ingestion': 1.48.1
- '@algolia/monitoring': 1.48.1
- '@algolia/recommend': 5.48.1
- '@algolia/requester-browser-xhr': 5.48.1
- '@algolia/requester-fetch': 5.48.1
- '@algolia/requester-node-http': 5.48.1
+ ajv@8.20.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-uri: 3.1.0
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
ansi-colors@4.1.3: {}
@@ -13181,6 +13037,10 @@ snapshots:
dependencies:
deep-equal: 2.2.3
+ aria-query@5.3.0:
+ dependencies:
+ dequal: 2.0.3
+
aria-query@5.3.1: {}
aria-query@5.3.2: {}
@@ -13194,48 +13054,51 @@ snapshots:
assertion-error@2.0.1: {}
- ast-kit@3.0.0-beta.1:
- dependencies:
- '@babel/parser': 8.0.0-rc.6
- estree-walker: 3.0.3
- pathe: 2.0.3
-
asynckit@0.4.0: {}
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.1.0
- axios@1.16.0:
+ axios@1.18.1(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0):
dependencies:
- follow-redirects: 1.16.0
- form-data: 4.0.5
+ follow-redirects: 1.16.0(debug@4.4.3(supports-color@7.2.0))
+ form-data: 4.0.6
+ https-proxy-agent: 5.0.1(supports-color@7.2.0)
proxy-from-env: 2.1.0
transitivePeerDependencies:
- debug
+ - supports-color
axobject-query@4.1.0: {}
- babel-plugin-jsx-dom-expressions@0.40.6(@babel/core@7.29.0):
+ babel-plugin-jsx-dom-expressions@0.40.6(@babel/core@7.29.0(supports-color@7.2.0)):
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))
'@babel/types': 7.29.0
html-entities: 2.3.3
parse5: 7.3.0
- babel-plugin-transform-hook-names@1.0.2(@babel/core@7.29.0):
+ babel-plugin-transform-hook-names@1.0.2(@babel/core@7.29.0(supports-color@7.2.0)):
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
- babel-preset-solid@1.9.12(@babel/core@7.29.0)(solid-js@1.9.13):
+ babel-preset-solid@1.9.12(@babel/core@7.29.0(supports-color@7.2.0))(solid-js@1.9.13):
dependencies:
- '@babel/core': 7.29.0
- babel-plugin-jsx-dom-expressions: 0.40.6(@babel/core@7.29.0)
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ babel-plugin-jsx-dom-expressions: 0.40.6(@babel/core@7.29.0(supports-color@7.2.0))
optionalDependencies:
solid-js: 1.9.13
+ babel-preset-solid@1.9.12(@babel/core@7.29.0(supports-color@7.2.0))(solid-js@1.9.14):
+ dependencies:
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ babel-plugin-jsx-dom-expressions: 0.40.6(@babel/core@7.29.0(supports-color@7.2.0))
+ optionalDependencies:
+ solid-js: 1.9.14
+
balanced-match@1.0.2: {}
balanced-match@4.0.3: {}
@@ -13246,7 +13109,7 @@ snapshots:
baseline-browser-mapping@2.10.13: {}
- beasties@0.4.1:
+ beasties@0.4.3:
dependencies:
css-select: 6.0.0
css-what: 7.0.0
@@ -13266,9 +13129,7 @@ snapshots:
dependencies:
require-from-string: 2.0.2
- birecord@0.1.1: {}
-
- birpc@4.0.0: {}
+ birecord@0.1.2: {}
bl@4.1.0:
dependencies:
@@ -13276,11 +13137,11 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
- body-parser@2.2.2:
+ body-parser@2.2.2(supports-color@7.2.0):
dependencies:
bytes: 3.1.2
content-type: 1.0.5
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
http-errors: 2.0.1
iconv-lite: 0.7.2
on-finished: 2.4.1
@@ -13296,7 +13157,7 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- brace-expansion@5.0.6:
+ brace-expansion@5.0.8:
dependencies:
balanced-match: 4.0.4
@@ -13318,30 +13179,25 @@ snapshots:
buffer-from@1.1.2: {}
+ buffer-image-size@0.6.4:
+ dependencies:
+ '@types/node': 25.7.0
+
buffer@5.7.1:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
+ bundle-name@4.1.0:
+ dependencies:
+ run-applescript: 7.0.0
+
bytes-iec@3.1.1: {}
bytes@3.1.2: {}
cac@7.0.0: {}
- cacache@20.0.4:
- dependencies:
- '@npmcli/fs': 5.0.0
- fs-minipass: 3.0.3
- glob: 13.0.6
- lru-cache: 11.3.5
- minipass: 7.1.3
- minipass-collect: 2.0.1
- minipass-flush: 1.0.7
- minipass-pipeline: 1.2.4
- p-map: 7.0.4
- ssri: 13.0.1
-
call-bind-apply-helpers@1.0.2:
dependencies:
es-errors: 1.3.0
@@ -13395,16 +13251,10 @@ snapshots:
undici: 7.25.0
whatwg-mimetype: 4.0.0
- chokidar@4.0.3:
- dependencies:
- readdirp: 4.1.2
-
chokidar@5.0.0:
dependencies:
readdirp: 5.0.0
- chownr@3.0.0: {}
-
cli-cursor@3.1.0:
dependencies:
restore-cursor: 3.1.0
@@ -13446,8 +13296,6 @@ snapshots:
color-name@1.1.4: {}
- colorette@2.0.20: {}
-
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -13519,9 +13367,11 @@ snapshots:
dayjs@1.11.21: {}
- debug@4.4.3:
+ debug@4.4.3(supports-color@7.2.0):
dependencies:
ms: 2.1.3
+ optionalDependencies:
+ supports-color: 7.2.0
decimal.js@10.6.0: {}
@@ -13548,6 +13398,13 @@ snapshots:
deep-is@0.1.4: {}
+ default-browser-id@5.0.0: {}
+
+ default-browser@5.2.1:
+ dependencies:
+ bundle-name: 4.1.0
+ default-browser-id: 5.0.0
+
defaults@1.0.4:
dependencies:
clone: 1.0.4
@@ -13558,7 +13415,7 @@ snapshots:
es-errors: 1.3.0
gopd: 1.2.0
- define-lazy-prop@2.0.0: {}
+ define-lazy-prop@3.0.0: {}
define-properties@1.2.1:
dependencies:
@@ -13572,6 +13429,8 @@ snapshots:
depd@2.0.0: {}
+ dequal@2.0.3: {}
+
detect-indent@6.1.0: {}
detect-libc@2.1.2: {}
@@ -13612,9 +13471,9 @@ snapshots:
dotenv@16.6.1: {}
- dts-resolver@3.0.0(oxc-resolver@11.20.0):
+ dts-resolver@3.0.0(oxc-resolver@11.24.2):
optionalDependencies:
- oxc-resolver: 11.20.0
+ oxc-resolver: 11.24.2
dunder-proto@1.0.1:
dependencies:
@@ -13667,12 +13526,8 @@ snapshots:
entities@8.0.0: {}
- env-paths@2.2.1: {}
-
environment@1.1.0: {}
- err-code@2.0.3: {}
-
es-define-property@1.0.1: {}
es-errors@1.3.0: {}
@@ -13700,94 +13555,36 @@ snapshots:
es-errors: 1.3.0
get-intrinsic: 1.3.0
has-tostringtag: 1.0.2
- hasown: 2.0.2
+ hasown: 2.0.4
- esbuild@0.27.3:
+ esbuild@0.28.1:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.27.3
- '@esbuild/android-arm': 0.27.3
- '@esbuild/android-arm64': 0.27.3
- '@esbuild/android-x64': 0.27.3
- '@esbuild/darwin-arm64': 0.27.3
- '@esbuild/darwin-x64': 0.27.3
- '@esbuild/freebsd-arm64': 0.27.3
- '@esbuild/freebsd-x64': 0.27.3
- '@esbuild/linux-arm': 0.27.3
- '@esbuild/linux-arm64': 0.27.3
- '@esbuild/linux-ia32': 0.27.3
- '@esbuild/linux-loong64': 0.27.3
- '@esbuild/linux-mips64el': 0.27.3
- '@esbuild/linux-ppc64': 0.27.3
- '@esbuild/linux-riscv64': 0.27.3
- '@esbuild/linux-s390x': 0.27.3
- '@esbuild/linux-x64': 0.27.3
- '@esbuild/netbsd-arm64': 0.27.3
- '@esbuild/netbsd-x64': 0.27.3
- '@esbuild/openbsd-arm64': 0.27.3
- '@esbuild/openbsd-x64': 0.27.3
- '@esbuild/openharmony-arm64': 0.27.3
- '@esbuild/sunos-x64': 0.27.3
- '@esbuild/win32-arm64': 0.27.3
- '@esbuild/win32-ia32': 0.27.3
- '@esbuild/win32-x64': 0.27.3
-
- esbuild@0.27.4:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.27.4
- '@esbuild/android-arm': 0.27.4
- '@esbuild/android-arm64': 0.27.4
- '@esbuild/android-x64': 0.27.4
- '@esbuild/darwin-arm64': 0.27.4
- '@esbuild/darwin-x64': 0.27.4
- '@esbuild/freebsd-arm64': 0.27.4
- '@esbuild/freebsd-x64': 0.27.4
- '@esbuild/linux-arm': 0.27.4
- '@esbuild/linux-arm64': 0.27.4
- '@esbuild/linux-ia32': 0.27.4
- '@esbuild/linux-loong64': 0.27.4
- '@esbuild/linux-mips64el': 0.27.4
- '@esbuild/linux-ppc64': 0.27.4
- '@esbuild/linux-riscv64': 0.27.4
- '@esbuild/linux-s390x': 0.27.4
- '@esbuild/linux-x64': 0.27.4
- '@esbuild/netbsd-arm64': 0.27.4
- '@esbuild/netbsd-x64': 0.27.4
- '@esbuild/openbsd-arm64': 0.27.4
- '@esbuild/openbsd-x64': 0.27.4
- '@esbuild/openharmony-arm64': 0.27.4
- '@esbuild/sunos-x64': 0.27.4
- '@esbuild/win32-arm64': 0.27.4
- '@esbuild/win32-ia32': 0.27.4
- '@esbuild/win32-x64': 0.27.4
-
- esbuild@0.28.0:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.28.0
- '@esbuild/android-arm': 0.28.0
- '@esbuild/android-arm64': 0.28.0
- '@esbuild/android-x64': 0.28.0
- '@esbuild/darwin-arm64': 0.28.0
- '@esbuild/darwin-x64': 0.28.0
- '@esbuild/freebsd-arm64': 0.28.0
- '@esbuild/freebsd-x64': 0.28.0
- '@esbuild/linux-arm': 0.28.0
- '@esbuild/linux-arm64': 0.28.0
- '@esbuild/linux-ia32': 0.28.0
- '@esbuild/linux-loong64': 0.28.0
- '@esbuild/linux-mips64el': 0.28.0
- '@esbuild/linux-ppc64': 0.28.0
- '@esbuild/linux-riscv64': 0.28.0
- '@esbuild/linux-s390x': 0.28.0
- '@esbuild/linux-x64': 0.28.0
- '@esbuild/netbsd-arm64': 0.28.0
- '@esbuild/netbsd-x64': 0.28.0
- '@esbuild/openbsd-arm64': 0.28.0
- '@esbuild/openbsd-x64': 0.28.0
- '@esbuild/openharmony-arm64': 0.28.0
- '@esbuild/sunos-x64': 0.28.0
- '@esbuild/win32-arm64': 0.28.0
- '@esbuild/win32-ia32': 0.28.0
- '@esbuild/win32-x64': 0.28.0
+ '@esbuild/aix-ppc64': 0.28.1
+ '@esbuild/android-arm': 0.28.1
+ '@esbuild/android-arm64': 0.28.1
+ '@esbuild/android-x64': 0.28.1
+ '@esbuild/darwin-arm64': 0.28.1
+ '@esbuild/darwin-x64': 0.28.1
+ '@esbuild/freebsd-arm64': 0.28.1
+ '@esbuild/freebsd-x64': 0.28.1
+ '@esbuild/linux-arm': 0.28.1
+ '@esbuild/linux-arm64': 0.28.1
+ '@esbuild/linux-ia32': 0.28.1
+ '@esbuild/linux-loong64': 0.28.1
+ '@esbuild/linux-mips64el': 0.28.1
+ '@esbuild/linux-ppc64': 0.28.1
+ '@esbuild/linux-riscv64': 0.28.1
+ '@esbuild/linux-s390x': 0.28.1
+ '@esbuild/linux-x64': 0.28.1
+ '@esbuild/netbsd-arm64': 0.28.1
+ '@esbuild/netbsd-x64': 0.28.1
+ '@esbuild/openbsd-arm64': 0.28.1
+ '@esbuild/openbsd-x64': 0.28.1
+ '@esbuild/openharmony-arm64': 0.28.1
+ '@esbuild/sunos-x64': 0.28.1
+ '@esbuild/win32-arm64': 0.28.1
+ '@esbuild/win32-ia32': 0.28.1
+ '@esbuild/win32-x64': 0.28.1
escalade@3.2.0: {}
@@ -13797,10 +13594,10 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-compat-utils@0.5.1(eslint@10.8.0(jiti@2.7.0)):
+ eslint-compat-utils@0.5.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0)):
dependencies:
- eslint: 10.8.0(jiti@2.7.0)
- semver: 7.8.1
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
+ semver: 7.8.5
eslint-import-context@0.1.9(unrs-resolver@1.11.1):
dependencies:
@@ -13809,156 +13606,157 @@ snapshots:
optionalDependencies:
unrs-resolver: 1.11.1
- eslint-plugin-es-x@7.8.0(eslint@10.8.0(jiti@2.7.0)):
+ eslint-plugin-es-x@7.8.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
'@eslint-community/regexpp': 4.12.2
- eslint: 10.8.0(jiti@2.7.0)
- eslint-compat-utils: 0.5.1(eslint@10.8.0(jiti@2.7.0))
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
+ eslint-compat-utils: 0.5.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
- eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)):
+ eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0):
dependencies:
'@package-json/types': 0.0.12
'@typescript-eslint/types': 8.60.0
comment-parser: 1.4.6
- debug: 4.4.3
- eslint: 10.8.0(jiti@2.7.0)
+ debug: 4.4.3(supports-color@7.2.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
is-glob: 4.0.3
minimatch: 10.2.6
- semver: 7.8.1
+ semver: 7.8.5
stable-hash-x: 0.2.0
unrs-resolver: 1.11.1
optionalDependencies:
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
transitivePeerDependencies:
- supports-color
- eslint-plugin-n@17.24.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3):
+ eslint-plugin-n@17.24.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(typescript@6.0.3):
dependencies:
- '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
enhanced-resolve: 5.20.1
- eslint: 10.8.0(jiti@2.7.0)
- eslint-plugin-es-x: 7.8.0(eslint@10.8.0(jiti@2.7.0))
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
+ eslint-plugin-es-x: 7.8.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
get-tsconfig: 4.14.0
globals: 15.15.0
globrex: 0.1.2
ignore: 5.3.2
- semver: 7.8.1
+ semver: 7.8.5
ts-declaration-location: 1.0.7(typescript@6.0.3)
transitivePeerDependencies:
- typescript
- eslint-plugin-react-compiler@19.1.0-rc.2(eslint@10.8.0(jiti@2.7.0)):
+ eslint-plugin-react-compiler@19.1.0-rc.2(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0):
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/parser': 7.29.2
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.29.0)
- eslint: 10.8.0(jiti@2.7.0)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
hermes-parser: 0.25.1
zod: 3.25.76
zod-validation-error: 3.5.4(zod@3.25.76)
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-dom@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3):
+ eslint-plugin-react-dom@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/jsx': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/shared': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/jsx': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
compare-versions: 6.1.1
- eslint: 10.8.0(jiti@2.7.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-hooks@7.1.1(eslint@10.8.0(jiti@2.7.0)):
+ eslint-plugin-react-hooks@7.1.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0):
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/parser': 7.29.2
- eslint: 10.8.0(jiti@2.7.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
hermes-parser: 0.25.1
zod: 4.4.3
zod-validation-error: 4.0.2(zod@4.4.3)
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-jsx@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3):
+ eslint-plugin-react-jsx@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/core': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/jsx': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/shared': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/core': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/jsx': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-naming-convention@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3):
+ eslint-plugin-react-naming-convention@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/core': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/var': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/core': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/var': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ts-pattern: 5.9.0
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-rsc@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3):
+ eslint-plugin-react-rsc@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/core': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/shared': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/var': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/core': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/var': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-web-api@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3):
- dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/core': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/shared': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/var': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- birecord: 0.1.1
- eslint: 10.8.0(jiti@2.7.0)
+ eslint-plugin-react-web-api@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
+ dependencies:
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/core': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/var': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ birecord: 0.1.2
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
ts-pattern: 5.9.0
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-x@5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3):
- dependencies:
- '@eslint-react/ast': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/core': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/eslint': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/jsx': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/shared': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@eslint-react/var': 5.8.8(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/scope-manager': 8.60.0
- '@typescript-eslint/type-utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/types': 8.60.0
- '@typescript-eslint/typescript-estree': 8.60.0(typescript@6.0.3)
- '@typescript-eslint/utils': 8.60.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ eslint-plugin-react-x@5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
+ dependencies:
+ '@eslint-react/ast': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/core': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/eslint': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/jsx': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/shared': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@eslint-react/var': 5.18.3(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/scope-manager': 8.66.0
+ '@typescript-eslint/type-utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/types': 8.66.0
+ '@typescript-eslint/typescript-estree': 8.66.0(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
compare-versions: 6.1.1
- eslint: 10.8.0(jiti@2.7.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
string-ts: 2.3.1
ts-api-utils: 2.5.0(typescript@6.0.3)
ts-pattern: 5.9.0
@@ -13966,11 +13764,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)):
+ eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0)):
dependencies:
- eslint: 10.8.0(jiti@2.7.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
+ '@typescript-eslint/eslint-plugin': 8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
eslint-scope@9.1.2:
dependencies:
@@ -13985,11 +13783,11 @@ snapshots:
eslint-visitor-keys@5.0.1: {}
- eslint@10.8.0(jiti@2.7.0):
+ eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0):
dependencies:
- '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
'@eslint-community/regexpp': 4.12.2
- '@eslint/config-array': 0.23.5
+ '@eslint/config-array': 0.23.5(supports-color@7.2.0)
'@eslint/config-helpers': 0.7.0
'@eslint/core': 1.2.1
'@eslint/plugin-kit': 0.7.2
@@ -13999,7 +13797,7 @@ snapshots:
'@types/estree': 1.0.9
ajv: 6.15.0
cross-spawn: 7.0.6
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
escape-string-regexp: 4.0.0
eslint-scope: 9.1.2
eslint-visitor-keys: 5.0.1
@@ -14042,11 +13840,11 @@ snapshots:
dependencies:
estraverse: 5.3.0
- esrap@2.3.0(@typescript-eslint/types@8.60.0):
+ esrap@2.3.0(@typescript-eslint/types@8.66.0):
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
optionalDependencies:
- '@typescript-eslint/types': 8.60.0
+ '@typescript-eslint/types': 8.66.0
esrecurse@4.3.0:
dependencies:
@@ -14074,27 +13872,25 @@ snapshots:
expect-type@1.3.0: {}
- exponential-backoff@3.1.3: {}
-
- express-rate-limit@8.3.2(express@5.2.1):
+ express-rate-limit@8.3.2(express@5.2.1(supports-color@7.2.0)):
dependencies:
- express: 5.2.1
+ express: 5.2.1(supports-color@7.2.0)
ip-address: 10.1.0
- express@5.2.1:
+ express@5.2.1(supports-color@7.2.0):
dependencies:
accepts: 2.0.0
- body-parser: 2.2.2
+ body-parser: 2.2.2(supports-color@7.2.0)
content-disposition: 1.0.1
content-type: 1.0.5
cookie: 0.7.2
cookie-signature: 1.2.2
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
depd: 2.0.0
encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 2.1.1
+ finalhandler: 2.1.1(supports-color@7.2.0)
fresh: 2.0.0
http-errors: 2.0.1
merge-descriptors: 2.0.0
@@ -14105,9 +13901,9 @@ snapshots:
proxy-addr: 2.0.7
qs: 6.15.0
range-parser: 1.2.1
- router: 2.2.0
- send: 1.2.1
- serve-static: 2.2.1
+ router: 2.2.0(supports-color@7.2.0)
+ send: 1.2.1(supports-color@7.2.0)
+ serve-static: 2.2.1(supports-color@7.2.0)
statuses: 2.0.2
type-is: 2.0.1
vary: 1.1.2
@@ -14130,8 +13926,18 @@ snapshots:
fast-levenshtein@2.0.6: {}
+ fast-string-truncated-width@3.0.3: {}
+
+ fast-string-width@3.0.2:
+ dependencies:
+ fast-string-truncated-width: 3.0.3
+
fast-uri@3.1.0: {}
+ fast-wrap-ansi@0.2.2:
+ dependencies:
+ fast-string-width: 3.0.2
+
fastq@1.20.1:
dependencies:
reusify: 1.1.0
@@ -14144,6 +13950,10 @@ snapshots:
optionalDependencies:
picomatch: 4.0.4
+ fdir@6.5.0(picomatch@4.0.5):
+ optionalDependencies:
+ picomatch: 4.0.5
+
figures@3.2.0:
dependencies:
escape-string-regexp: 1.0.5
@@ -14156,9 +13966,9 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- finalhandler@2.1.1:
+ finalhandler@2.1.1(supports-color@7.2.0):
dependencies:
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
@@ -14186,18 +13996,20 @@ snapshots:
flatted@3.4.2: {}
- follow-redirects@1.16.0: {}
+ follow-redirects@1.16.0(debug@4.4.3(supports-color@7.2.0)):
+ optionalDependencies:
+ debug: 4.4.3(supports-color@7.2.0)
for-each@0.3.5:
dependencies:
is-callable: 1.2.7
- form-data@4.0.5:
+ form-data@4.0.6:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
es-set-tostringtag: 2.1.0
- hasown: 2.0.2
+ hasown: 2.0.4
mime-types: 2.1.35
formatly@0.3.0:
@@ -14222,10 +14034,6 @@ snapshots:
jsonfile: 4.0.0
universalify: 0.1.2
- fs-minipass@3.0.3:
- dependencies:
- minipass: 7.1.3
-
fsevents@2.3.3:
optional: true
@@ -14249,7 +14057,7 @@ snapshots:
get-proto: 1.0.1
gopd: 1.2.0
has-symbols: 1.1.0
- hasown: 2.0.2
+ hasown: 2.0.4
math-intrinsics: 1.1.0
get-proto@1.0.1:
@@ -14261,6 +14069,10 @@ snapshots:
dependencies:
resolve-pkg-maps: 1.0.0
+ get-tsconfig@4.14.1:
+ dependencies:
+ resolve-pkg-maps: 1.0.0
+
get-tsconfig@5.0.0-beta.5:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -14273,14 +14085,6 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob-to-regexp@0.4.1: {}
-
- glob@13.0.6:
- dependencies:
- minimatch: 10.2.6
- minipass: 7.1.3
- path-scurry: 2.0.2
-
globals@15.15.0: {}
globals@17.4.0: {}
@@ -14304,14 +14108,15 @@ snapshots:
graceful-fs@4.2.11: {}
- happy-dom@20.9.0:
+ happy-dom@20.11.1:
dependencies:
'@types/node': 25.7.0
'@types/whatwg-mimetype': 3.0.2
'@types/ws': 8.18.1
+ buffer-image-size: 0.6.4
entities: 7.0.1
whatwg-mimetype: 3.0.0
- ws: 8.20.0
+ ws: 8.21.2
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -14330,7 +14135,7 @@ snapshots:
dependencies:
has-symbols: 1.1.0
- hasown@2.0.2:
+ hasown@2.0.4:
dependencies:
function-bind: 1.1.2
@@ -14346,13 +14151,13 @@ snapshots:
hookable@6.1.1: {}
- hosted-git-info@9.0.2:
+ hosted-git-info@10.1.1:
dependencies:
lru-cache: 11.3.5
html-encoding-sniffer@6.0.0:
dependencies:
- '@exodus/bytes': 1.15.0
+ '@exodus/bytes': 1.15.1
transitivePeerDependencies:
- '@noble/hashes'
@@ -14369,8 +14174,6 @@ snapshots:
domutils: 3.2.2
entities: 7.0.1
- http-cache-semantics@4.2.0: {}
-
http-errors@2.0.1:
dependencies:
depd: 2.0.0
@@ -14379,18 +14182,20 @@ snapshots:
statuses: 2.0.2
toidentifier: 1.0.1
- http-proxy-agent@7.0.2:
+ https-proxy-agent@5.0.1(supports-color@7.2.0):
dependencies:
- agent-base: 7.1.4
- debug: 4.4.3
+ agent-base: 6.0.2(supports-color@7.2.0)
+ debug: 4.4.3(supports-color@7.2.0)
transitivePeerDependencies:
- supports-color
- https-proxy-agent@7.0.6:
+ https-proxy-agent@9.1.0(supports-color@7.2.0):
dependencies:
- agent-base: 7.1.4
- debug: 4.4.3
+ agent-base: 9.0.0
+ debug: 4.4.3(supports-color@7.2.0)
+ proxy-agent-negotiate: 1.1.0
transitivePeerDependencies:
+ - kerberos
- supports-color
human-id@4.1.3: {}
@@ -14405,16 +14210,14 @@ snapshots:
ieee754@1.2.1: {}
- ignore-walk@8.0.0:
- dependencies:
- minimatch: 10.2.6
-
ignore@5.3.2: {}
ignore@7.0.5: {}
immutable@5.1.5: {}
+ import-meta-resolve@4.2.0: {}
+
import-without-cache@0.4.0: {}
imurmurhash@0.1.4: {}
@@ -14423,12 +14226,10 @@ snapshots:
inherits@2.0.4: {}
- ini@6.0.0: {}
-
internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
- hasown: 2.0.2
+ hasown: 2.0.4
side-channel: 1.1.0
ip-address@10.1.0: {}
@@ -14462,7 +14263,7 @@ snapshots:
call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-docker@2.2.1: {}
+ is-docker@3.0.0: {}
is-extglob@2.1.1: {}
@@ -14476,6 +14277,10 @@ snapshots:
dependencies:
is-extglob: 2.1.1
+ is-inside-container@1.0.0:
+ dependencies:
+ is-docker: 3.0.0
+
is-interactive@1.0.0: {}
is-interactive@2.0.0: {}
@@ -14502,7 +14307,7 @@ snapshots:
call-bound: 1.0.4
gopd: 1.2.0
has-tostringtag: 1.0.2
- hasown: 2.0.2
+ hasown: 2.0.4
is-set@2.0.3: {}
@@ -14540,32 +14345,34 @@ snapshots:
is-windows@1.0.2: {}
- is-wsl@2.2.0:
+ is-wsl@3.1.0:
dependencies:
- is-docker: 2.2.1
+ is-inside-container: 1.0.0
isarray@2.0.5: {}
isexe@2.0.0: {}
- isexe@4.0.0: {}
-
- istanbul-lib-coverage@3.2.2: {}
+ istanbul-lib-coverage@3.2.2:
+ optional: true
- istanbul-lib-instrument@6.0.3:
+ istanbul-lib-instrument@6.0.3(supports-color@7.2.0):
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@babel/parser': 7.29.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.8.1
+ semver: 7.8.5
transitivePeerDependencies:
- supports-color
+ optional: true
jiti@2.7.0: {}
jose@6.2.2: {}
+ js-tokens@10.0.0: {}
+
js-tokens@4.0.0: {}
js-yaml@3.14.2:
@@ -14577,28 +14384,28 @@ snapshots:
dependencies:
argparse: 2.0.1
- jsdom@29.1.1:
+ jsdom@30.0.1:
dependencies:
- '@asamuzakjp/css-color': 5.1.11
- '@asamuzakjp/dom-selector': 7.1.1
+ '@asamuzakjp/css-color': 6.0.5
+ '@asamuzakjp/dom-selector': 8.3.2
'@bramus/specificity': 2.4.2
- '@csstools/css-syntax-patches-for-csstree': 1.1.3(css-tree@3.2.1)
- '@exodus/bytes': 1.15.0
+ '@csstools/css-syntax-patches-for-csstree': 1.1.7(css-tree@3.2.1)
+ '@exodus/bytes': 1.15.1
css-tree: 3.2.1
data-urls: 7.0.0
decimal.js: 10.6.0
html-encoding-sniffer: 6.0.0
is-potential-custom-element-name: 1.0.1
- lru-cache: 11.3.5
+ lru-cache: 11.5.2
parse5: 8.0.1
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 6.0.1
- undici: 7.25.0
+ tough-cookie: 6.0.2
+ undici: 8.10.0
w3c-xmlserializer: 5.0.0
webidl-conversions: 8.0.1
whatwg-mimetype: 5.0.0
- whatwg-url: 16.0.1
+ whatwg-url: 17.1.0
xml-name-validator: 5.0.0
transitivePeerDependencies:
- '@noble/hashes'
@@ -14607,8 +14414,6 @@ snapshots:
json-buffer@3.0.1: {}
- json-parse-even-better-errors@5.0.0: {}
-
json-schema-traverse@0.4.1: {}
json-schema-traverse@1.0.0: {}
@@ -14619,34 +14424,29 @@ snapshots:
json5@2.2.3: {}
- jsonc-parser@3.2.0: {}
-
jsonc-parser@3.3.1: {}
jsonfile@4.0.0:
optionalDependencies:
graceful-fs: 4.2.11
- jsonparse@1.3.1: {}
-
keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
- knip@6.15.0:
+ knip@6.32.0:
dependencies:
- fdir: 6.5.0(picomatch@4.0.4)
+ fdir: 6.5.0(picomatch@4.0.5)
formatly: 0.3.0
- get-tsconfig: 4.14.0
+ get-tsconfig: 4.14.1
jiti: 2.7.0
- minimist: 1.2.8
- oxc-parser: 0.133.0
- oxc-resolver: 11.20.0
- picomatch: 4.0.4
- smol-toml: 1.6.1
+ oxc-parser: 0.142.0
+ oxc-resolver: 11.24.2
+ picomatch: 4.0.5
+ smol-toml: 1.7.1
strip-json-comments: 5.0.3
tinyglobby: 0.2.17
- unbash: 3.0.0
+ unbash: 4.0.6
yaml: 2.9.0
zod: 4.4.3
@@ -14660,36 +14460,69 @@ snapshots:
lightningcss-android-arm64@1.32.0:
optional: true
+ lightningcss-android-arm64@1.33.0:
+ optional: true
+
lightningcss-darwin-arm64@1.32.0:
optional: true
+ lightningcss-darwin-arm64@1.33.0:
+ optional: true
+
lightningcss-darwin-x64@1.32.0:
optional: true
+ lightningcss-darwin-x64@1.33.0:
+ optional: true
+
lightningcss-freebsd-x64@1.32.0:
optional: true
+ lightningcss-freebsd-x64@1.33.0:
+ optional: true
+
lightningcss-linux-arm-gnueabihf@1.32.0:
optional: true
+ lightningcss-linux-arm-gnueabihf@1.33.0:
+ optional: true
+
lightningcss-linux-arm64-gnu@1.32.0:
optional: true
+ lightningcss-linux-arm64-gnu@1.33.0:
+ optional: true
+
lightningcss-linux-arm64-musl@1.32.0:
optional: true
+ lightningcss-linux-arm64-musl@1.33.0:
+ optional: true
+
lightningcss-linux-x64-gnu@1.32.0:
optional: true
+ lightningcss-linux-x64-gnu@1.33.0:
+ optional: true
+
lightningcss-linux-x64-musl@1.32.0:
optional: true
+ lightningcss-linux-x64-musl@1.33.0:
+ optional: true
+
lightningcss-win32-arm64-msvc@1.32.0:
optional: true
+ lightningcss-win32-arm64-msvc@1.33.0:
+ optional: true
+
lightningcss-win32-x64-msvc@1.32.0:
optional: true
+ lightningcss-win32-x64-msvc@1.33.0:
+ optional: true
+
lightningcss@1.32.0:
dependencies:
detect-libc: 2.1.2
@@ -14706,6 +14539,22 @@ snapshots:
lightningcss-win32-arm64-msvc: 1.32.0
lightningcss-win32-x64-msvc: 1.32.0
+ lightningcss@1.33.0:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.33.0
+ lightningcss-darwin-arm64: 1.33.0
+ lightningcss-darwin-x64: 1.33.0
+ lightningcss-freebsd-x64: 1.33.0
+ lightningcss-linux-arm-gnueabihf: 1.33.0
+ lightningcss-linux-arm64-gnu: 1.33.0
+ lightningcss-linux-arm64-musl: 1.33.0
+ lightningcss-linux-x64-gnu: 1.33.0
+ lightningcss-linux-x64-musl: 1.33.0
+ lightningcss-win32-arm64-msvc: 1.33.0
+ lightningcss-win32-x64-msvc: 1.33.0
+
lilconfig@3.1.3: {}
lines-and-columns@2.0.3: {}
@@ -14714,16 +14563,15 @@ snapshots:
dependencies:
uc.micro: 2.1.0
- listr2@9.0.5:
+ listr2@10.2.2:
dependencies:
cli-truncate: 5.2.0
- colorette: 2.0.20
eventemitter3: 5.0.4
log-update: 6.1.0
rfdc: 1.4.1
- wrap-ansi: 9.0.2
+ wrap-ansi: 10.0.0
- lmdb@3.5.1:
+ lmdb@3.5.6:
dependencies:
'@harperfast/extended-iterable': 1.0.3
msgpackr: 1.11.9
@@ -14732,13 +14580,13 @@ snapshots:
ordered-binary: 1.6.1
weak-lru-cache: 1.2.2
optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 3.5.1
- '@lmdb/lmdb-darwin-x64': 3.5.1
- '@lmdb/lmdb-linux-arm': 3.5.1
- '@lmdb/lmdb-linux-arm64': 3.5.1
- '@lmdb/lmdb-linux-x64': 3.5.1
- '@lmdb/lmdb-win32-arm64': 3.5.1
- '@lmdb/lmdb-win32-x64': 3.5.1
+ '@lmdb/lmdb-darwin-arm64': 3.5.6
+ '@lmdb/lmdb-darwin-x64': 3.5.6
+ '@lmdb/lmdb-linux-arm': 3.5.6
+ '@lmdb/lmdb-linux-arm64': 3.5.6
+ '@lmdb/lmdb-linux-x64': 3.5.6
+ '@lmdb/lmdb-win32-arm64': 3.5.6
+ '@lmdb/lmdb-win32-x64': 3.5.6
optional: true
locate-character@3.0.0: {}
@@ -14773,6 +14621,8 @@ snapshots:
lru-cache@11.3.5: {}
+ lru-cache@11.5.2: {}
+
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
@@ -14785,22 +14635,9 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
- make-fetch-happen@15.0.5:
- dependencies:
- '@gar/promise-retry': 1.0.3
- '@npmcli/agent': 4.0.0
- '@npmcli/redact': 4.0.0
- cacache: 20.0.4
- http-cache-semantics: 4.2.0
- minipass: 7.1.3
- minipass-fetch: 5.0.2
- minipass-flush: 1.0.7
- minipass-pipeline: 1.2.4
- negotiator: 1.0.0
- proc-log: 6.1.0
- ssri: 13.0.1
- transitivePeerDependencies:
- - supports-color
+ magic-string@1.0.0:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
markdown-it@14.1.1:
dependencies:
@@ -14811,12 +14648,12 @@ snapshots:
punycode.js: 2.3.1
uc.micro: 2.1.0
- markdown-link-extractor@4.0.3:
+ markdown-link-extractor@4.0.4:
dependencies:
html-link-extractor: 1.0.5
- marked: 17.0.5
+ marked: 18.0.9
- marked@17.0.5: {}
+ marked@18.0.9: {}
math-intrinsics@1.1.0: {}
@@ -14871,40 +14708,6 @@ snapshots:
minimist@1.2.8: {}
- minipass-collect@2.0.1:
- dependencies:
- minipass: 7.1.3
-
- minipass-fetch@5.0.2:
- dependencies:
- minipass: 7.1.3
- minipass-sized: 2.0.0
- minizlib: 3.1.0
- optionalDependencies:
- iconv-lite: 0.7.2
-
- minipass-flush@1.0.7:
- dependencies:
- minipass: 3.3.6
-
- minipass-pipeline@1.2.4:
- dependencies:
- minipass: 3.3.6
-
- minipass-sized@2.0.0:
- dependencies:
- minipass: 7.1.3
-
- minipass@3.3.6:
- dependencies:
- yallist: 4.0.0
-
- minipass@7.1.3: {}
-
- minizlib@3.1.0:
- dependencies:
- minipass: 7.1.3
-
mri@1.2.0: {}
mrmime@2.0.1: {}
@@ -14928,11 +14731,13 @@ snapshots:
msgpackr-extract: 3.0.3
optional: true
- mute-stream@2.0.0: {}
+ mute-stream@3.0.0: {}
nanoid@3.3.12: {}
- nanoid@5.1.7: {}
+ nanoid@3.3.17: {}
+
+ nanoid@6.0.1: {}
nanospinner@1.2.2:
dependencies:
@@ -14959,21 +14764,6 @@ snapshots:
detect-libc: 2.1.2
optional: true
- node-gyp@12.2.0:
- dependencies:
- env-paths: 2.2.1
- exponential-backoff: 3.1.3
- graceful-fs: 4.2.11
- make-fetch-happen: 15.0.5
- nopt: 9.0.0
- proc-log: 6.1.0
- semver: 7.8.1
- tar: 7.5.13
- tinyglobby: 0.2.17
- which: 6.0.1
- transitivePeerDependencies:
- - supports-color
-
node-html-parser@6.1.13:
dependencies:
css-select: 5.2.2
@@ -14981,51 +14771,12 @@ snapshots:
node-releases@2.0.36: {}
- nopt@9.0.0:
- dependencies:
- abbrev: 4.0.0
-
- npm-bundled@5.0.0:
- dependencies:
- npm-normalize-package-bin: 5.0.0
-
- npm-install-checks@8.0.0:
- dependencies:
- semver: 7.8.1
-
- npm-normalize-package-bin@5.0.0: {}
-
- npm-package-arg@13.0.2:
- dependencies:
- hosted-git-info: 9.0.2
- proc-log: 6.1.0
- semver: 7.8.1
- validate-npm-package-name: 7.0.2
-
- npm-packlist@10.0.4:
- dependencies:
- ignore-walk: 8.0.0
- proc-log: 6.1.0
-
- npm-pick-manifest@11.0.3:
+ npm-package-arg@14.0.0:
dependencies:
- npm-install-checks: 8.0.0
- npm-normalize-package-bin: 5.0.0
- npm-package-arg: 13.0.2
- semver: 7.8.1
-
- npm-registry-fetch@19.1.1:
- dependencies:
- '@npmcli/redact': 4.0.0
- jsonparse: 1.3.1
- make-fetch-happen: 15.0.5
- minipass: 7.1.3
- minipass-fetch: 5.0.2
- minizlib: 3.1.0
- npm-package-arg: 13.0.2
- proc-log: 6.1.0
- transitivePeerDependencies:
- - supports-color
+ hosted-git-info: 10.1.1
+ proc-log: 7.0.0
+ semver: 7.8.5
+ validate-npm-package-name: 8.0.0
npm-run-path@4.0.1:
dependencies:
@@ -15035,7 +14786,7 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nx@22.7.5:
+ nx@23.1.1:
dependencies:
'@emnapi/core': 1.4.5
'@emnapi/runtime': 1.4.5
@@ -15045,17 +14796,19 @@ snapshots:
'@tybys/wasm-util': 0.9.0
'@yarnpkg/lockfile': 1.1.0
'@zkochan/js-yaml': 0.0.7
+ agent-base: 6.0.2(supports-color@7.2.0)
ansi-colors: 4.1.3
ansi-regex: 5.0.1
ansi-styles: 4.3.0
argparse: 2.0.1
asynckit: 0.4.0
- axios: 1.16.0
+ axios: 1.18.1(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)
balanced-match: 4.0.3
base64-js: 1.5.1
bl: 4.1.0
- brace-expansion: 5.0.6
+ brace-expansion: 5.0.8
buffer: 5.7.1
+ bundle-name: 4.1.0
call-bind-apply-helpers: 1.0.2
chalk: 4.1.2
cli-cursor: 3.1.0
@@ -15065,8 +14818,11 @@ snapshots:
color-convert: 2.0.1
color-name: 1.1.4
combined-stream: 1.0.8
+ debug: 4.4.3(supports-color@7.2.0)
+ default-browser: 5.2.1
+ default-browser-id: 5.0.0
defaults: 1.0.4
- define-lazy-prop: 2.0.0
+ define-lazy-prop: 3.0.0
delayed-stream: 1.0.0
dotenv: 16.4.7
dotenv-expand: 12.0.3
@@ -15083,8 +14839,8 @@ snapshots:
escape-string-regexp: 1.0.5
figures: 3.2.0
flat: 5.0.2
- follow-redirects: 1.16.0
- form-data: 4.0.5
+ follow-redirects: 1.16.0(debug@4.4.3(supports-color@7.2.0))
+ form-data: 4.0.6
fs-constants: 1.0.0
function-bind: 1.1.2
get-caller-file: 2.0.5
@@ -15094,17 +14850,20 @@ snapshots:
has-flag: 4.0.0
has-symbols: 1.1.0
has-tostringtag: 1.0.2
- hasown: 2.0.2
+ hasown: 2.0.4
+ https-proxy-agent: 5.0.1(supports-color@7.2.0)
ieee754: 1.2.1
ignore: 7.0.5
inherits: 2.0.4
- is-docker: 2.2.1
+ is-docker: 3.0.0
is-fullwidth-code-point: 3.0.0
+ is-inside-container: 1.0.0
is-interactive: 1.0.0
is-unicode-supported: 0.1.0
- is-wsl: 2.2.0
+ is-wsl: 3.1.0
+ isexe: 2.0.0
json5: 2.2.3
- jsonc-parser: 3.2.0
+ jsonc-parser: 3.3.1
lines-and-columns: 2.0.3
log-symbols: 4.1.0
math-intrinsics: 1.1.0
@@ -15113,11 +14872,12 @@ snapshots:
mimic-fn: 2.1.0
minimatch: 10.2.5
minimist: 1.2.8
+ ms: 2.1.3
npm-run-path: 4.0.1
once: 1.4.0
onetime: 5.1.2
- open: 8.4.2
- ora: 5.3.0
+ open: 10.1.0
+ ora: 5.4.1
path-key: 3.1.1
picocolors: 1.1.1
proxy-from-env: 2.1.0
@@ -15125,8 +14885,9 @@ snapshots:
require-directory: 2.1.1
resolve.exports: 2.0.3
restore-cursor: 3.1.0
+ run-applescript: 7.0.0
safe-buffer: 5.2.1
- semver: 7.7.4
+ semver: 7.8.4
signal-exit: 3.0.7
smol-toml: 1.6.1
string-width: 4.2.3
@@ -15135,12 +14896,12 @@ snapshots:
strip-bom: 3.0.0
supports-color: 7.2.0
tar-stream: 2.2.0
- tmp: 0.2.6
- tree-kill: 1.2.2
+ tmp: 0.2.7
tsconfig-paths: 4.2.0
tslib: 2.8.1
util-deprecate: 1.0.2
wcwidth: 1.0.1
+ which: 3.0.1
wrap-ansi: 7.0.0
wrappy: 1.0.2
y18n: 5.0.8
@@ -15148,18 +14909,16 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 22.7.5
- '@nx/nx-darwin-x64': 22.7.5
- '@nx/nx-freebsd-x64': 22.7.5
- '@nx/nx-linux-arm-gnueabihf': 22.7.5
- '@nx/nx-linux-arm64-gnu': 22.7.5
- '@nx/nx-linux-arm64-musl': 22.7.5
- '@nx/nx-linux-x64-gnu': 22.7.5
- '@nx/nx-linux-x64-musl': 22.7.5
- '@nx/nx-win32-arm64-msvc': 22.7.5
- '@nx/nx-win32-x64-msvc': 22.7.5
- transitivePeerDependencies:
- - debug
+ '@nx/nx-darwin-arm64': 23.1.1
+ '@nx/nx-darwin-x64': 23.1.1
+ '@nx/nx-freebsd-x64': 23.1.1
+ '@nx/nx-linux-arm-gnueabihf': 23.1.1
+ '@nx/nx-linux-arm64-gnu': 23.1.1
+ '@nx/nx-linux-arm64-musl': 23.1.1
+ '@nx/nx-linux-x64-gnu': 23.1.1
+ '@nx/nx-linux-x64-musl': 23.1.1
+ '@nx/nx-win32-arm64-msvc': 23.1.1
+ '@nx/nx-win32-x64-msvc': 23.1.1
object-assign@4.1.1: {}
@@ -15183,6 +14942,8 @@ snapshots:
obug@2.1.1: {}
+ obug@2.1.4: {}
+
on-finished@2.4.1:
dependencies:
ee-first: 1.1.1
@@ -15199,11 +14960,12 @@ snapshots:
dependencies:
mimic-function: 5.0.1
- open@8.4.2:
+ open@10.1.0:
dependencies:
- define-lazy-prop: 2.0.0
- is-docker: 2.2.1
- is-wsl: 2.2.0
+ default-browser: 5.2.1
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ is-wsl: 3.1.0
optionator@0.9.4:
dependencies:
@@ -15214,18 +14976,19 @@ snapshots:
type-check: 0.4.0
word-wrap: 1.2.5
- ora@5.3.0:
+ ora@5.4.1:
dependencies:
bl: 4.1.0
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
is-interactive: 1.0.0
+ is-unicode-supported: 0.1.0
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
- ora@9.3.0:
+ ora@9.4.1:
dependencies:
chalk: 5.6.2
cli-cursor: 5.0.0
@@ -15233,7 +14996,7 @@ snapshots:
is-interactive: 2.0.0
is-unicode-supported: 2.1.0
log-symbols: 7.0.1
- stdin-discarder: 0.3.1
+ stdin-discarder: 0.3.2
string-width: 8.2.0
ordered-binary@1.6.1:
@@ -15241,52 +15004,52 @@ snapshots:
outdent@0.5.0: {}
- oxc-parser@0.133.0:
+ oxc-parser@0.142.0:
dependencies:
- '@oxc-project/types': 0.133.0
+ '@oxc-project/types': 0.142.0
optionalDependencies:
- '@oxc-parser/binding-android-arm-eabi': 0.133.0
- '@oxc-parser/binding-android-arm64': 0.133.0
- '@oxc-parser/binding-darwin-arm64': 0.133.0
- '@oxc-parser/binding-darwin-x64': 0.133.0
- '@oxc-parser/binding-freebsd-x64': 0.133.0
- '@oxc-parser/binding-linux-arm-gnueabihf': 0.133.0
- '@oxc-parser/binding-linux-arm-musleabihf': 0.133.0
- '@oxc-parser/binding-linux-arm64-gnu': 0.133.0
- '@oxc-parser/binding-linux-arm64-musl': 0.133.0
- '@oxc-parser/binding-linux-ppc64-gnu': 0.133.0
- '@oxc-parser/binding-linux-riscv64-gnu': 0.133.0
- '@oxc-parser/binding-linux-riscv64-musl': 0.133.0
- '@oxc-parser/binding-linux-s390x-gnu': 0.133.0
- '@oxc-parser/binding-linux-x64-gnu': 0.133.0
- '@oxc-parser/binding-linux-x64-musl': 0.133.0
- '@oxc-parser/binding-openharmony-arm64': 0.133.0
- '@oxc-parser/binding-wasm32-wasi': 0.133.0
- '@oxc-parser/binding-win32-arm64-msvc': 0.133.0
- '@oxc-parser/binding-win32-ia32-msvc': 0.133.0
- '@oxc-parser/binding-win32-x64-msvc': 0.133.0
-
- oxc-resolver@11.20.0:
+ '@oxc-parser/binding-android-arm-eabi': 0.142.0
+ '@oxc-parser/binding-android-arm64': 0.142.0
+ '@oxc-parser/binding-darwin-arm64': 0.142.0
+ '@oxc-parser/binding-darwin-x64': 0.142.0
+ '@oxc-parser/binding-freebsd-x64': 0.142.0
+ '@oxc-parser/binding-linux-arm-gnueabihf': 0.142.0
+ '@oxc-parser/binding-linux-arm-musleabihf': 0.142.0
+ '@oxc-parser/binding-linux-arm64-gnu': 0.142.0
+ '@oxc-parser/binding-linux-arm64-musl': 0.142.0
+ '@oxc-parser/binding-linux-ppc64-gnu': 0.142.0
+ '@oxc-parser/binding-linux-riscv64-gnu': 0.142.0
+ '@oxc-parser/binding-linux-riscv64-musl': 0.142.0
+ '@oxc-parser/binding-linux-s390x-gnu': 0.142.0
+ '@oxc-parser/binding-linux-x64-gnu': 0.142.0
+ '@oxc-parser/binding-linux-x64-musl': 0.142.0
+ '@oxc-parser/binding-openharmony-arm64': 0.142.0
+ '@oxc-parser/binding-wasm32-wasi': 0.142.0
+ '@oxc-parser/binding-win32-arm64-msvc': 0.142.0
+ '@oxc-parser/binding-win32-ia32-msvc': 0.142.0
+ '@oxc-parser/binding-win32-x64-msvc': 0.142.0
+
+ oxc-resolver@11.24.2:
optionalDependencies:
- '@oxc-resolver/binding-android-arm-eabi': 11.20.0
- '@oxc-resolver/binding-android-arm64': 11.20.0
- '@oxc-resolver/binding-darwin-arm64': 11.20.0
- '@oxc-resolver/binding-darwin-x64': 11.20.0
- '@oxc-resolver/binding-freebsd-x64': 11.20.0
- '@oxc-resolver/binding-linux-arm-gnueabihf': 11.20.0
- '@oxc-resolver/binding-linux-arm-musleabihf': 11.20.0
- '@oxc-resolver/binding-linux-arm64-gnu': 11.20.0
- '@oxc-resolver/binding-linux-arm64-musl': 11.20.0
- '@oxc-resolver/binding-linux-ppc64-gnu': 11.20.0
- '@oxc-resolver/binding-linux-riscv64-gnu': 11.20.0
- '@oxc-resolver/binding-linux-riscv64-musl': 11.20.0
- '@oxc-resolver/binding-linux-s390x-gnu': 11.20.0
- '@oxc-resolver/binding-linux-x64-gnu': 11.20.0
- '@oxc-resolver/binding-linux-x64-musl': 11.20.0
- '@oxc-resolver/binding-openharmony-arm64': 11.20.0
- '@oxc-resolver/binding-wasm32-wasi': 11.20.0
- '@oxc-resolver/binding-win32-arm64-msvc': 11.20.0
- '@oxc-resolver/binding-win32-x64-msvc': 11.20.0
+ '@oxc-resolver/binding-android-arm-eabi': 11.24.2
+ '@oxc-resolver/binding-android-arm64': 11.24.2
+ '@oxc-resolver/binding-darwin-arm64': 11.24.2
+ '@oxc-resolver/binding-darwin-x64': 11.24.2
+ '@oxc-resolver/binding-freebsd-x64': 11.24.2
+ '@oxc-resolver/binding-linux-arm-gnueabihf': 11.24.2
+ '@oxc-resolver/binding-linux-arm-musleabihf': 11.24.2
+ '@oxc-resolver/binding-linux-arm64-gnu': 11.24.2
+ '@oxc-resolver/binding-linux-arm64-musl': 11.24.2
+ '@oxc-resolver/binding-linux-ppc64-gnu': 11.24.2
+ '@oxc-resolver/binding-linux-riscv64-gnu': 11.24.2
+ '@oxc-resolver/binding-linux-riscv64-musl': 11.24.2
+ '@oxc-resolver/binding-linux-s390x-gnu': 11.24.2
+ '@oxc-resolver/binding-linux-x64-gnu': 11.24.2
+ '@oxc-resolver/binding-linux-x64-musl': 11.24.2
+ '@oxc-resolver/binding-openharmony-arm64': 11.24.2
+ '@oxc-resolver/binding-wasm32-wasi': 11.24.2
+ '@oxc-resolver/binding-win32-arm64-msvc': 11.24.2
+ '@oxc-resolver/binding-win32-x64-msvc': 11.24.2
p-filter@2.1.0:
dependencies:
@@ -15310,41 +15073,17 @@ snapshots:
p-map@2.1.0: {}
- p-map@7.0.4: {}
-
p-try@2.2.0: {}
package-manager-detector@0.2.11:
dependencies:
quansync: 0.2.11
- package-manager-detector@1.6.0: {}
-
- pacote@21.3.1:
- dependencies:
- '@npmcli/git': 7.0.2
- '@npmcli/installed-package-contents': 4.0.0
- '@npmcli/package-json': 7.0.5
- '@npmcli/promise-spawn': 9.0.1
- '@npmcli/run-script': 10.0.4
- cacache: 20.0.4
- fs-minipass: 3.0.3
- minipass: 7.1.3
- npm-package-arg: 13.0.2
- npm-packlist: 10.0.4
- npm-pick-manifest: 11.0.3
- npm-registry-fetch: 19.1.1
- proc-log: 6.1.0
- promise-retry: 2.0.1
- sigstore: 4.1.0
- ssri: 13.0.1
- tar: 7.5.13
- transitivePeerDependencies:
- - supports-color
+ package-manager-detector@1.8.0: {}
- parse5-html-rewriting-stream@8.0.0:
+ parse5-html-rewriting-stream@8.0.1:
dependencies:
- entities: 6.0.1
+ entities: 8.0.0
parse5: 8.0.1
parse5-sax-parser: 8.0.0
@@ -15375,11 +15114,6 @@ snapshots:
path-key@3.1.1: {}
- path-scurry@2.0.2:
- dependencies:
- lru-cache: 11.3.5
- minipass: 7.1.3
-
path-to-regexp@8.4.1: {}
path-type@4.0.0: {}
@@ -15392,9 +15126,11 @@ snapshots:
picomatch@4.0.4: {}
+ picomatch@4.0.5: {}
+
pify@4.0.1: {}
- piscina@5.1.4:
+ piscina@5.2.0:
optionalDependencies:
'@napi-rs/nice': 1.1.1
@@ -15414,20 +15150,26 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.29.2: {}
+ postcss@8.5.25:
+ dependencies:
+ nanoid: 3.3.17
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ preact@10.29.8: {}
prelude-ls@1.2.1: {}
premove@4.0.0: {}
- prettier-plugin-svelte@3.5.2(prettier@3.8.3)(svelte@5.55.1(@typescript-eslint/types@8.60.0)):
+ prettier-plugin-svelte@4.1.1(prettier@3.9.6)(svelte@5.55.1(@typescript-eslint/types@8.66.0)):
dependencies:
- prettier: 3.8.3
- svelte: 5.55.1(@typescript-eslint/types@8.60.0)
+ prettier: 3.9.6
+ svelte: 5.55.1(@typescript-eslint/types@8.66.0)
prettier@2.8.8: {}
- prettier@3.8.3: {}
+ prettier@3.9.6: {}
pretty-format@27.5.1:
dependencies:
@@ -15435,24 +15177,21 @@ snapshots:
ansi-styles: 5.2.0
react-is: 17.0.2
- proc-log@6.1.0: {}
-
- promise-retry@2.0.1:
- dependencies:
- err-code: 2.0.3
- retry: 0.12.0
+ proc-log@7.0.0: {}
proxy-addr@2.0.7:
dependencies:
forwarded: 0.2.0
ipaddr.js: 1.9.1
+ proxy-agent-negotiate@1.1.0: {}
+
proxy-from-env@2.1.0: {}
- publint@0.3.21:
+ publint@0.3.23:
dependencies:
- '@publint/pack': 0.1.4
- package-manager-detector: 1.6.0
+ '@publint/pack': 0.1.6
+ package-manager-detector: 1.8.0
picocolors: 1.1.1
sade: 1.8.1
@@ -15484,10 +15223,22 @@ snapshots:
react: 19.2.6
scheduler: 0.27.0
+ react-dom@19.2.6(react@19.2.8):
+ dependencies:
+ react: 19.2.8
+ scheduler: 0.27.0
+
+ react-dom@19.2.8(react@19.2.8):
+ dependencies:
+ react: 19.2.8
+ scheduler: 0.27.0
+
react-is@17.0.2: {}
react@19.2.6: {}
+ react@19.2.8: {}
+
read-yaml-file@1.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -15501,8 +15252,6 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
- readdirp@4.1.2: {}
-
readdirp@5.0.0: {}
redent@3.0.0:
@@ -15541,80 +15290,95 @@ snapshots:
onetime: 7.0.0
signal-exit: 4.1.0
- retry@0.12.0: {}
-
reusify@1.1.0: {}
rfdc@1.4.1: {}
- rolldown-plugin-dts@0.25.2(oxc-resolver@11.20.0)(rolldown@1.0.3)(typescript@6.0.3):
+ rolldown-plugin-dts@0.27.14(oxc-resolver@11.24.2)(rolldown@1.2.3)(typescript@6.0.3):
dependencies:
- '@babel/generator': 8.0.0-rc.6
- '@babel/helper-validator-identifier': 8.0.0-rc.6
- '@babel/parser': 8.0.0-rc.6
- ast-kit: 3.0.0-beta.1
- birpc: 4.0.0
- dts-resolver: 3.0.0(oxc-resolver@11.20.0)
+ dts-resolver: 3.0.0(oxc-resolver@11.24.2)
get-tsconfig: 5.0.0-beta.5
- obug: 2.1.1
- rolldown: 1.0.3
+ obug: 2.1.4
+ rolldown: 1.2.3
+ yuku-ast: 0.8.3
+ yuku-codegen: 0.8.3
+ yuku-parser: 0.8.3
optionalDependencies:
typescript: 6.0.3
transitivePeerDependencies:
- oxc-resolver
- rolldown-plugin-solid@0.2.1(rolldown@1.0.3)(solid-js@1.9.13):
+ rolldown-plugin-solid@0.2.1(rolldown@1.2.3)(solid-js@1.9.14)(supports-color@7.2.0):
dependencies:
- '@babel/core': 7.29.0
- '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
- babel-preset-solid: 1.9.12(@babel/core@7.29.0)(solid-js@1.9.13)
- rolldown: 1.0.3
- solid-js: 1.9.13
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)
+ babel-preset-solid: 1.9.12(@babel/core@7.29.0(supports-color@7.2.0))(solid-js@1.9.14)
+ rolldown: 1.2.3
+ solid-js: 1.9.14
transitivePeerDependencies:
- supports-color
- rolldown@1.0.0-rc.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0):
+ rolldown@1.1.5:
dependencies:
- '@oxc-project/types': 0.113.0
- '@rolldown/pluginutils': 1.0.0-rc.4
+ '@oxc-project/types': 0.139.0
+ '@rolldown/pluginutils': 1.0.0
optionalDependencies:
- '@rolldown/binding-android-arm64': 1.0.0-rc.4
- '@rolldown/binding-darwin-arm64': 1.0.0-rc.4
- '@rolldown/binding-darwin-x64': 1.0.0-rc.4
- '@rolldown/binding-freebsd-x64': 1.0.0-rc.4
- '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.4
- '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.4
- '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.4
- '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.4
- '@rolldown/binding-linux-x64-musl': 1.0.0-rc.4
- '@rolldown/binding-openharmony-arm64': 1.0.0-rc.4
- '@rolldown/binding-wasm32-wasi': 1.0.0-rc.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
- '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.4
- '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.4
- transitivePeerDependencies:
- - '@emnapi/core'
- - '@emnapi/runtime'
-
- rolldown@1.0.3:
- dependencies:
- '@oxc-project/types': 0.133.0
+ '@rolldown/binding-android-arm64': 1.1.5
+ '@rolldown/binding-darwin-arm64': 1.1.5
+ '@rolldown/binding-darwin-x64': 1.1.5
+ '@rolldown/binding-freebsd-x64': 1.1.5
+ '@rolldown/binding-linux-arm-gnueabihf': 1.1.5
+ '@rolldown/binding-linux-arm64-gnu': 1.1.5
+ '@rolldown/binding-linux-arm64-musl': 1.1.5
+ '@rolldown/binding-linux-ppc64-gnu': 1.1.5
+ '@rolldown/binding-linux-s390x-gnu': 1.1.5
+ '@rolldown/binding-linux-x64-gnu': 1.1.5
+ '@rolldown/binding-linux-x64-musl': 1.1.5
+ '@rolldown/binding-openharmony-arm64': 1.1.5
+ '@rolldown/binding-wasm32-wasi': 1.1.5
+ '@rolldown/binding-win32-arm64-msvc': 1.1.5
+ '@rolldown/binding-win32-x64-msvc': 1.1.5
+
+ rolldown@1.2.0:
+ dependencies:
+ '@oxc-project/types': 0.140.0
'@rolldown/pluginutils': 1.0.0
optionalDependencies:
- '@rolldown/binding-android-arm64': 1.0.3
- '@rolldown/binding-darwin-arm64': 1.0.3
- '@rolldown/binding-darwin-x64': 1.0.3
- '@rolldown/binding-freebsd-x64': 1.0.3
- '@rolldown/binding-linux-arm-gnueabihf': 1.0.3
- '@rolldown/binding-linux-arm64-gnu': 1.0.3
- '@rolldown/binding-linux-arm64-musl': 1.0.3
- '@rolldown/binding-linux-ppc64-gnu': 1.0.3
- '@rolldown/binding-linux-s390x-gnu': 1.0.3
- '@rolldown/binding-linux-x64-gnu': 1.0.3
- '@rolldown/binding-linux-x64-musl': 1.0.3
- '@rolldown/binding-openharmony-arm64': 1.0.3
- '@rolldown/binding-wasm32-wasi': 1.0.3
- '@rolldown/binding-win32-arm64-msvc': 1.0.3
- '@rolldown/binding-win32-x64-msvc': 1.0.3
+ '@rolldown/binding-android-arm64': 1.2.0
+ '@rolldown/binding-darwin-arm64': 1.2.0
+ '@rolldown/binding-darwin-x64': 1.2.0
+ '@rolldown/binding-freebsd-x64': 1.2.0
+ '@rolldown/binding-linux-arm-gnueabihf': 1.2.0
+ '@rolldown/binding-linux-arm64-gnu': 1.2.0
+ '@rolldown/binding-linux-arm64-musl': 1.2.0
+ '@rolldown/binding-linux-ppc64-gnu': 1.2.0
+ '@rolldown/binding-linux-s390x-gnu': 1.2.0
+ '@rolldown/binding-linux-x64-gnu': 1.2.0
+ '@rolldown/binding-linux-x64-musl': 1.2.0
+ '@rolldown/binding-openharmony-arm64': 1.2.0
+ '@rolldown/binding-wasm32-wasi': 1.2.0
+ '@rolldown/binding-win32-arm64-msvc': 1.2.0
+ '@rolldown/binding-win32-x64-msvc': 1.2.0
+
+ rolldown@1.2.3:
+ dependencies:
+ '@oxc-project/types': 0.143.0
+ '@rolldown/pluginutils': 1.0.1
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.2.3
+ '@rolldown/binding-darwin-arm64': 1.2.3
+ '@rolldown/binding-darwin-x64': 1.2.3
+ '@rolldown/binding-freebsd-x64': 1.2.3
+ '@rolldown/binding-linux-arm-gnueabihf': 1.2.3
+ '@rolldown/binding-linux-arm64-gnu': 1.2.3
+ '@rolldown/binding-linux-arm64-musl': 1.2.3
+ '@rolldown/binding-linux-ppc64-gnu': 1.2.3
+ '@rolldown/binding-linux-s390x-gnu': 1.2.3
+ '@rolldown/binding-linux-x64-gnu': 1.2.3
+ '@rolldown/binding-linux-x64-musl': 1.2.3
+ '@rolldown/binding-openharmony-arm64': 1.2.3
+ '@rolldown/binding-win32-arm64-msvc': 1.2.3
+ '@rolldown/binding-win32-x64-msvc': 1.2.3
rollup@4.60.1:
dependencies:
@@ -15646,10 +15410,11 @@ snapshots:
'@rollup/rollup-win32-x64-gnu': 4.60.1
'@rollup/rollup-win32-x64-msvc': 4.60.1
fsevents: 2.3.3
+ optional: true
- router@2.2.0:
+ router@2.2.0(supports-color@7.2.0):
dependencies:
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
depd: 2.0.0
is-promise: 4.0.0
parseurl: 1.3.3
@@ -15657,6 +15422,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ run-applescript@7.0.0: {}
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
@@ -15679,9 +15446,9 @@ snapshots:
safer-buffer@2.1.2: {}
- sass@1.97.3:
+ sass@1.101.0:
dependencies:
- chokidar: 4.0.3
+ chokidar: 5.0.0
immutable: 5.1.5
source-map-js: 1.2.1
optionalDependencies:
@@ -15695,13 +15462,15 @@ snapshots:
semver@6.3.1: {}
- semver@7.7.4: {}
-
semver@7.8.1: {}
- send@1.2.1:
+ semver@7.8.4: {}
+
+ semver@7.8.5: {}
+
+ send@1.2.1(supports-color@7.2.0):
dependencies:
- debug: 4.4.3
+ debug: 4.4.3(supports-color@7.2.0)
encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
@@ -15719,14 +15488,20 @@ snapshots:
dependencies:
seroval: 1.5.1
+ seroval-plugins@1.5.6(seroval@1.5.6):
+ dependencies:
+ seroval: 1.5.6
+
seroval@1.5.1: {}
- serve-static@2.2.1:
+ seroval@1.5.6: {}
+
+ serve-static@2.2.1(supports-color@7.2.0):
dependencies:
encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 1.2.1
+ send: 1.2.1(supports-color@7.2.0)
transitivePeerDependencies:
- supports-color
@@ -15754,40 +15529,40 @@ snapshots:
shebang-regex@3.0.0: {}
- sherif-darwin-arm64@1.11.1:
+ sherif-darwin-arm64@1.13.0:
optional: true
- sherif-darwin-x64@1.11.1:
+ sherif-darwin-x64@1.13.0:
optional: true
- sherif-linux-arm64-musl@1.11.1:
+ sherif-linux-arm64-musl@1.13.0:
optional: true
- sherif-linux-arm64@1.11.1:
+ sherif-linux-arm64@1.13.0:
optional: true
- sherif-linux-x64-musl@1.11.1:
+ sherif-linux-x64-musl@1.13.0:
optional: true
- sherif-linux-x64@1.11.1:
+ sherif-linux-x64@1.13.0:
optional: true
- sherif-windows-arm64@1.11.1:
+ sherif-windows-arm64@1.13.0:
optional: true
- sherif-windows-x64@1.11.1:
+ sherif-windows-x64@1.13.0:
optional: true
- sherif@1.11.1:
+ sherif@1.13.0:
optionalDependencies:
- sherif-darwin-arm64: 1.11.1
- sherif-darwin-x64: 1.11.1
- sherif-linux-arm64: 1.11.1
- sherif-linux-arm64-musl: 1.11.1
- sherif-linux-x64: 1.11.1
- sherif-linux-x64-musl: 1.11.1
- sherif-windows-arm64: 1.11.1
- sherif-windows-x64: 1.11.1
+ sherif-darwin-arm64: 1.13.0
+ sherif-darwin-x64: 1.13.0
+ sherif-linux-arm64: 1.13.0
+ sherif-linux-arm64-musl: 1.13.0
+ sherif-linux-x64: 1.13.0
+ sherif-linux-x64-musl: 1.13.0
+ sherif-windows-arm64: 1.13.0
+ sherif-windows-x64: 1.13.0
side-channel-list@1.0.0:
dependencies:
@@ -15823,30 +15598,15 @@ snapshots:
signal-exit@4.1.0: {}
- sigstore@4.1.0:
- dependencies:
- '@sigstore/bundle': 4.0.0
- '@sigstore/core': 3.2.0
- '@sigstore/protobuf-specs': 0.5.0
- '@sigstore/sign': 4.1.1
- '@sigstore/tuf': 4.0.2
- '@sigstore/verify': 3.1.0
- transitivePeerDependencies:
- - supports-color
-
simple-code-frame@1.3.0:
dependencies:
kolorist: 1.8.0
- size-limit@12.1.0(jiti@2.7.0):
+ size-limit@13.0.3:
dependencies:
bytes-iec: 3.1.1
lilconfig: 3.1.3
nanospinner: 1.2.2
- picocolors: 1.1.1
- tinyglobby: 0.2.17
- optionalDependencies:
- jiti: 2.7.0
slash@3.0.0: {}
@@ -15860,22 +15620,9 @@ snapshots:
ansi-styles: 6.2.3
is-fullwidth-code-point: 5.1.0
- smart-buffer@4.2.0: {}
-
smol-toml@1.6.1: {}
- socks-proxy-agent@8.0.5:
- dependencies:
- agent-base: 7.1.4
- debug: 4.4.3
- socks: 2.8.7
- transitivePeerDependencies:
- - supports-color
-
- socks@2.8.7:
- dependencies:
- ip-address: 10.1.0
- smart-buffer: 4.2.0
+ smol-toml@1.7.1: {}
solid-js@1.9.13:
dependencies:
@@ -15883,15 +15630,30 @@ snapshots:
seroval: 1.5.1
seroval-plugins: 1.5.1(seroval@1.5.1)
- solid-refresh@0.6.3(solid-js@1.9.13):
+ solid-js@1.9.14:
+ dependencies:
+ csstype: 3.2.3
+ seroval: 1.5.6
+ seroval-plugins: 1.5.6(seroval@1.5.6)
+
+ solid-refresh@0.6.3(solid-js@1.9.13)(supports-color@7.2.0):
dependencies:
'@babel/generator': 7.29.1
- '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-module-imports': 7.28.6(supports-color@7.2.0)
'@babel/types': 7.29.0
solid-js: 1.9.13
transitivePeerDependencies:
- supports-color
+ solid-refresh@0.6.3(solid-js@1.9.14)(supports-color@7.2.0):
+ dependencies:
+ '@babel/generator': 7.29.1
+ '@babel/helper-module-imports': 7.28.6(supports-color@7.2.0)
+ '@babel/types': 7.29.0
+ solid-js: 1.9.14
+ transitivePeerDependencies:
+ - supports-color
+
source-map-js@1.2.1: {}
source-map-support@0.5.21:
@@ -15908,21 +15670,8 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- spdx-exceptions@2.5.0: {}
-
- spdx-expression-parse@4.0.0:
- dependencies:
- spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.23
-
- spdx-license-ids@3.0.23: {}
-
sprintf-js@1.0.3: {}
- ssri@13.0.1:
- dependencies:
- minipass: 7.1.3
-
stable-hash-x@0.2.0: {}
stack-trace@1.0.0-pre2: {}
@@ -15933,7 +15682,7 @@ snapshots:
std-env@4.0.0: {}
- stdin-discarder@0.3.1: {}
+ stdin-discarder@0.3.2: {}
stop-iteration-iterator@1.1.0:
dependencies:
@@ -15983,7 +15732,7 @@ snapshots:
dependencies:
has-flag: 4.0.0
- svelte@5.55.1(@typescript-eslint/types@8.60.0):
+ svelte@5.55.1(@typescript-eslint/types@8.66.0):
dependencies:
'@jridgewell/remapping': 2.3.5
'@jridgewell/sourcemap-codec': 1.5.5
@@ -15996,7 +15745,7 @@ snapshots:
clsx: 2.1.1
devalue: 5.9.0
esm-env: 1.2.2
- esrap: 2.3.0(@typescript-eslint/types@8.60.0)
+ esrap: 2.3.0(@typescript-eslint/types@8.66.0)
is-reference: 3.0.3
locate-character: 3.0.0
magic-string: 0.30.21
@@ -16016,24 +15765,13 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
- tar@7.5.13:
- dependencies:
- '@isaacs/fs-minipass': 4.0.1
- chownr: 3.0.0
- minipass: 7.1.3
- minizlib: 3.1.0
- yallist: 5.0.0
-
term-size@2.2.1: {}
tinybench@2.9.0: {}
tinyexec@1.1.2: {}
- tinyglobby@0.2.15:
- dependencies:
- fdir: 6.5.0(picomatch@4.0.4)
- picomatch: 4.0.4
+ tinyexec@1.3.0: {}
tinyglobby@0.2.17:
dependencies:
@@ -16048,7 +15786,7 @@ snapshots:
dependencies:
tldts-core: 7.0.27
- tmp@0.2.6: {}
+ tmp@0.2.7: {}
to-regex-range@5.0.1:
dependencies:
@@ -16056,7 +15794,7 @@ snapshots:
toidentifier@1.0.1: {}
- tough-cookie@6.0.1:
+ tough-cookie@6.0.2:
dependencies:
tldts: 7.0.27
@@ -16085,7 +15823,7 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tsdown@0.22.1(oxc-resolver@11.20.0)(publint@0.3.21)(typescript@6.0.3):
+ tsdown@0.22.14(oxc-resolver@11.24.2)(publint@0.3.23)(typescript@6.0.3):
dependencies:
ansis: 4.3.1
cac: 7.0.0
@@ -16093,34 +15831,26 @@ snapshots:
empathic: 2.0.1
hookable: 6.1.1
import-without-cache: 0.4.0
- obug: 2.1.1
- picomatch: 4.0.4
- rolldown: 1.0.3
- rolldown-plugin-dts: 0.25.2(oxc-resolver@11.20.0)(rolldown@1.0.3)(typescript@6.0.3)
- semver: 7.8.1
- tinyexec: 1.1.2
+ obug: 2.1.4
+ picomatch: 4.0.5
+ rolldown: 1.2.3
+ rolldown-plugin-dts: 0.27.14(oxc-resolver@11.24.2)(rolldown@1.2.3)(typescript@6.0.3)
+ tinyexec: 1.3.0
tinyglobby: 0.2.17
tree-kill: 1.2.2
unconfig-core: 7.5.0
+ verkit: 0.3.2
optionalDependencies:
- publint: 0.3.21
+ publint: 0.3.23
typescript: 6.0.3
transitivePeerDependencies:
- - '@ts-macro/tsc'
- '@typescript/native-preview'
+ - '@volar/typescript'
- oxc-resolver
- vue-tsc
tslib@2.8.1: {}
- tuf-js@4.1.0:
- dependencies:
- '@tufjs/models': 4.1.0
- debug: 4.4.3
- make-fetch-happen: 15.0.5
- transitivePeerDependencies:
- - supports-color
-
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
@@ -16149,13 +15879,13 @@ snapshots:
typescript: 6.0.3
yaml: 2.9.0
- typescript-eslint@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3):
+ typescript-eslint@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/parser': 8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- '@typescript-eslint/typescript-estree': 8.58.0(typescript@6.0.3)
- '@typescript-eslint/utils': 8.58.0(eslint@10.8.0(jiti@2.7.0))(typescript@6.0.3)
- eslint: 10.8.0(jiti@2.7.0)
+ '@typescript-eslint/eslint-plugin': 8.58.0(@typescript-eslint/parser@8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/parser': 8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/typescript-estree': 8.58.0(supports-color@7.2.0)(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.58.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -16164,7 +15894,7 @@ snapshots:
uc.micro@2.1.0: {}
- unbash@3.0.0: {}
+ unbash@4.0.6: {}
unconfig-core@7.5.0:
dependencies:
@@ -16173,10 +15903,12 @@ snapshots:
undici-types@7.21.0: {}
- undici@7.24.4: {}
+ undici-types@8.3.0: {}
undici@7.25.0: {}
+ undici@8.10.0: {}
+
universalify@0.1.2: {}
unpipe@1.0.0: {}
@@ -16215,32 +15947,49 @@ snapshots:
dependencies:
punycode: 2.3.1
- use-sync-external-store@1.6.0(react@19.2.6):
+ use-sync-external-store@1.6.0(react@19.2.8):
dependencies:
- react: 19.2.6
+ react: 19.2.8
util-deprecate@1.0.2: {}
- validate-npm-package-name@7.0.2: {}
+ validate-npm-package-name@8.0.0: {}
vary@1.1.2: {}
- vite-plugin-solid@2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)):
+ verkit@0.3.2: {}
+
+ vite-plugin-solid@2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.13)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)):
dependencies:
- '@babel/core': 7.29.0
+ '@babel/core': 7.29.0(supports-color@7.2.0)
'@types/babel__core': 7.20.5
- babel-preset-solid: 1.9.12(@babel/core@7.29.0)(solid-js@1.9.13)
+ babel-preset-solid: 1.9.12(@babel/core@7.29.0(supports-color@7.2.0))(solid-js@1.9.13)
merge-anything: 5.1.7
solid-js: 1.9.13
- solid-refresh: 0.6.3(solid-js@1.9.13)
- vite: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
- vitefu: 1.1.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
+ solid-refresh: 0.6.3(solid-js@1.9.13)(supports-color@7.2.0)
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
+ vitefu: 1.1.2(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
+ optionalDependencies:
+ '@testing-library/jest-dom': 7.0.0(@testing-library/dom@10.4.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ vite-plugin-solid@2.11.14(@testing-library/jest-dom@7.0.0(@testing-library/dom@10.4.1))(solid-js@1.9.14)(supports-color@7.2.0)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)):
+ dependencies:
+ '@babel/core': 7.29.0(supports-color@7.2.0)
+ '@types/babel__core': 7.20.5
+ babel-preset-solid: 1.9.12(@babel/core@7.29.0(supports-color@7.2.0))(solid-js@1.9.14)
+ merge-anything: 5.1.7
+ solid-js: 1.9.14
+ solid-refresh: 0.6.3(solid-js@1.9.14)(supports-color@7.2.0)
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
+ vitefu: 1.1.2(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
optionalDependencies:
- '@testing-library/jest-dom': 6.9.1
+ '@testing-library/jest-dom': 7.0.0(@testing-library/dom@10.4.1)
transitivePeerDependencies:
- supports-color
- vite-prerender-plugin@0.5.13(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)):
+ vite-prerender-plugin@0.5.13(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)):
dependencies:
kolorist: 1.8.0
magic-string: 0.30.21
@@ -16248,52 +15997,51 @@ snapshots:
simple-code-frame: 1.3.0
source-map: 0.7.6
stack-trace: 1.0.0-pre2
- vite: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
- vite@7.3.2(@types/node@25.7.0)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.97.3)(yaml@2.9.0):
+ vite@8.1.5(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0):
dependencies:
- esbuild: 0.27.4
- fdir: 6.5.0(picomatch@4.0.4)
- picomatch: 4.0.4
- postcss: 8.5.15
- rollup: 4.60.1
+ lightningcss: 1.32.0
+ picomatch: 4.0.5
+ postcss: 8.5.25
+ rolldown: 1.1.5
tinyglobby: 0.2.17
optionalDependencies:
- '@types/node': 25.7.0
+ '@types/node': 26.1.2
+ esbuild: 0.28.1
fsevents: 2.3.3
jiti: 2.7.0
- lightningcss: 1.32.0
- sass: 1.97.3
+ sass: 1.101.0
yaml: 2.9.0
- vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0):
+ vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0):
dependencies:
- lightningcss: 1.32.0
- picomatch: 4.0.4
- postcss: 8.5.15
- rolldown: 1.0.3
+ lightningcss: 1.33.0
+ picomatch: 4.0.5
+ postcss: 8.5.25
+ rolldown: 1.2.3
tinyglobby: 0.2.17
optionalDependencies:
- '@types/node': 25.7.0
- esbuild: 0.28.0
+ '@types/node': 26.1.2
+ esbuild: 0.28.1
fsevents: 2.3.3
jiti: 2.7.0
- sass: 1.97.3
+ sass: 1.101.0
yaml: 2.9.0
- vitefu@1.1.2(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)):
+ vitefu@1.1.2(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)):
optionalDependencies:
- vite: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
- vitest@4.1.7(@types/node@25.7.0)(happy-dom@20.9.0)(jsdom@29.1.1)(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)):
+ vitest@4.1.10(@types/node@26.1.2)(happy-dom@20.11.1)(jsdom@30.0.1)(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)):
dependencies:
- '@vitest/expect': 4.1.7
- '@vitest/mocker': 4.1.7(vite@8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0))
- '@vitest/pretty-format': 4.1.7
- '@vitest/runner': 4.1.7
- '@vitest/snapshot': 4.1.7
- '@vitest/spy': 4.1.7
- '@vitest/utils': 4.1.7
+ '@vitest/expect': 4.1.10
+ '@vitest/mocker': 4.1.10(vite@8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0))
+ '@vitest/pretty-format': 4.1.10
+ '@vitest/runner': 4.1.10
+ '@vitest/snapshot': 4.1.10
+ '@vitest/spy': 4.1.10
+ '@vitest/utils': 4.1.10
es-module-lexer: 2.0.0
expect-type: 1.3.0
magic-string: 0.30.21
@@ -16305,24 +16053,24 @@ snapshots:
tinyexec: 1.1.2
tinyglobby: 0.2.17
tinyrainbow: 3.1.0
- vite: 8.0.16(@types/node@25.7.0)(esbuild@0.28.0)(jiti@2.7.0)(sass@1.97.3)(yaml@2.9.0)
+ vite: 8.2.0(@types/node@26.1.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(yaml@2.9.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 25.7.0
- happy-dom: 20.9.0
- jsdom: 29.1.1
+ '@types/node': 26.1.2
+ happy-dom: 20.11.1
+ jsdom: 30.0.1
transitivePeerDependencies:
- msw
- vue-eslint-parser@10.4.0(eslint@10.8.0(jiti@2.7.0)):
+ vue-eslint-parser@10.4.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0):
dependencies:
- debug: 4.4.3
- eslint: 10.8.0(jiti@2.7.0)
+ debug: 4.4.3(supports-color@7.2.0)
+ eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
eslint-scope: 9.1.2
eslint-visitor-keys: 5.0.1
espree: 11.2.0
esquery: 1.7.0
- semver: 7.8.1
+ semver: 7.8.5
transitivePeerDependencies:
- supports-color
@@ -16332,9 +16080,8 @@ snapshots:
walk-up-path@4.0.0: {}
- watchpack@2.5.1:
+ watchpack@2.5.2:
dependencies:
- glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
wcwidth@1.0.1:
@@ -16360,7 +16107,15 @@ snapshots:
whatwg-url@16.0.1:
dependencies:
- '@exodus/bytes': 1.15.0
+ '@exodus/bytes': 1.15.1
+ tr46: 6.0.0
+ webidl-conversions: 8.0.1
+ transitivePeerDependencies:
+ - '@noble/hashes'
+
+ whatwg-url@17.1.0:
+ dependencies:
+ '@exodus/bytes': 1.15.1
tr46: 6.0.0
webidl-conversions: 8.0.1
transitivePeerDependencies:
@@ -16400,9 +16155,9 @@ snapshots:
dependencies:
isexe: 2.0.0
- which@6.0.1:
+ which@3.0.1:
dependencies:
- isexe: 4.0.0
+ isexe: 2.0.0
why-is-node-running@2.3.0:
dependencies:
@@ -16411,11 +16166,11 @@ snapshots:
word-wrap@1.2.5: {}
- wrap-ansi@6.2.0:
+ wrap-ansi@10.0.0:
dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
+ ansi-styles: 6.2.3
+ string-width: 8.2.0
+ strip-ansi: 7.2.0
wrap-ansi@7.0.0:
dependencies:
@@ -16433,6 +16188,8 @@ snapshots:
ws@8.20.0: {}
+ ws@8.21.2: {}
+
xml-name-validator@5.0.0: {}
xmlchars@2.2.0: {}
@@ -16441,10 +16198,6 @@ snapshots:
yallist@3.1.1: {}
- yallist@4.0.0: {}
-
- yallist@5.0.0: {}
-
yaml@2.9.0: {}
yargs-parser@21.1.1: {}
@@ -16472,15 +16225,52 @@ snapshots:
yocto-queue@0.1.0: {}
- yoctocolors-cjs@2.1.3: {}
-
yoctocolors@2.1.2: {}
+ yuku-ast@0.8.3:
+ dependencies:
+ '@yuku-toolchain/types': 0.8.3
+
+ yuku-codegen@0.8.3:
+ dependencies:
+ '@yuku-toolchain/types': 0.8.3
+ optionalDependencies:
+ '@yuku-codegen/binding-android-arm64': 0.8.3
+ '@yuku-codegen/binding-darwin-arm64': 0.8.3
+ '@yuku-codegen/binding-darwin-x64': 0.8.3
+ '@yuku-codegen/binding-freebsd-x64': 0.8.3
+ '@yuku-codegen/binding-linux-arm-gnu': 0.8.3
+ '@yuku-codegen/binding-linux-arm-musl': 0.8.3
+ '@yuku-codegen/binding-linux-arm64-gnu': 0.8.3
+ '@yuku-codegen/binding-linux-arm64-musl': 0.8.3
+ '@yuku-codegen/binding-linux-x64-gnu': 0.8.3
+ '@yuku-codegen/binding-linux-x64-musl': 0.8.3
+ '@yuku-codegen/binding-win32-arm64': 0.8.3
+ '@yuku-codegen/binding-win32-x64': 0.8.3
+
+ yuku-parser@0.8.3:
+ dependencies:
+ '@yuku-toolchain/types': 0.8.3
+ yuku-ast: 0.8.3
+ optionalDependencies:
+ '@yuku-parser/binding-android-arm64': 0.8.3
+ '@yuku-parser/binding-darwin-arm64': 0.8.3
+ '@yuku-parser/binding-darwin-x64': 0.8.3
+ '@yuku-parser/binding-freebsd-x64': 0.8.3
+ '@yuku-parser/binding-linux-arm-gnu': 0.8.3
+ '@yuku-parser/binding-linux-arm-musl': 0.8.3
+ '@yuku-parser/binding-linux-arm64-gnu': 0.8.3
+ '@yuku-parser/binding-linux-arm64-musl': 0.8.3
+ '@yuku-parser/binding-linux-x64-gnu': 0.8.3
+ '@yuku-parser/binding-linux-x64-musl': 0.8.3
+ '@yuku-parser/binding-win32-arm64': 0.8.3
+ '@yuku-parser/binding-win32-x64': 0.8.3
+
zimmerframe@1.1.4: {}
- zod-to-json-schema@3.25.2(zod@4.3.6):
+ zod-to-json-schema@3.25.2(zod@4.4.3):
dependencies:
- zod: 4.3.6
+ zod: 4.4.3
zod-validation-error@3.5.4(zod@3.25.76):
dependencies:
@@ -16492,6 +16282,4 @@ snapshots:
zod@3.25.76: {}
- zod@4.3.6: {}
-
zod@4.4.3: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 550b12e75..aba00a053 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -3,6 +3,8 @@ linkWorkspacePackages: true
preferWorkspacePackages: true
blockExoticSubdeps: true
trustPolicy: 'no-downgrade'
+trustPolicyExclude:
+ - semver@6.3.1
packages:
- 'examples/**/*'
@@ -31,3 +33,23 @@ allowBuilds:
lmdb: false # optional dep of @angular/build
msgpackr-extract: false # optional dep of @angular/build
+minimumReleaseAgeExclude:
+ - '@eslint-react/ast@5.18.3'
+ - '@eslint-react/core@5.18.3'
+ - '@eslint-react/eslint-plugin@5.18.3'
+ - '@eslint-react/eslint@5.18.3'
+ - '@eslint-react/jsx@5.18.3'
+ - '@eslint-react/shared@5.18.3'
+ - '@eslint-react/var@5.18.3'
+ - '@tanstack/angular-store@0.11.1'
+ - '@tanstack/preact-store@0.13.2'
+ - '@tanstack/react-store@0.11.1'
+ - '@tanstack/solid-store@0.11.1'
+ - '@tanstack/store@0.11.1'
+ - eslint-plugin-react-dom@5.18.3
+ - eslint-plugin-react-jsx@5.18.3
+ - eslint-plugin-react-naming-convention@5.18.3
+ - eslint-plugin-react-rsc@5.18.3
+ - eslint-plugin-react-web-api@5.18.3
+ - eslint-plugin-react-x@5.18.3
+ - knip@6.32.0