@valve-tech/tx-flight-react 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,16 @@ this file.
|
|
|
6
6
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
7
7
|
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
8
8
|
|
|
9
|
+
## [0.13.0] — 2026-05-12
|
|
10
|
+
|
|
11
|
+
### Notes
|
|
12
|
+
|
|
13
|
+
- Synchronized release — no changes to this package. Republished at
|
|
14
|
+
0.13.0 alongside the rest of the toolkit; the substantive change
|
|
15
|
+
is in `@valve-tech/tx-tracker` (new `TrackOptions.probeMined`
|
|
16
|
+
consumer-supplied mined-detection probe). See
|
|
17
|
+
`@valve-tech/tx-tracker`'s CHANGELOG for details.
|
|
18
|
+
|
|
9
19
|
## [0.12.0] — 2026-05-11
|
|
10
20
|
|
|
11
21
|
### Notes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valve-tech/tx-flight-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "React UI primitives for rendering an in-flight transaction strip. Provider with multi-instance scoping (id + storage key), three add methods (addWithWalletAdapter for callers using @valve-tech/wallet-adapter, addByHash for raw hash + chain via @valve-tech/tx-tracker, addManual for back-fill), pluggable storage (localStorage default, IndexedDB and memory adapters included), atomic + layout components for headless composition, SSR-safe (the package's React-side hooks are client-only; storage adapters no-op on the server). Part of the valve-tech/evm-toolkit synchronized release line.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/valve-tech/evm-toolkit/tree/main/packages/tx-flight-react#readme",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"prepare": "yarn build"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"@valve-tech/chain-source": "^0.
|
|
58
|
-
"@valve-tech/tx-tracker": "^0.
|
|
59
|
-
"@valve-tech/wallet-adapter": "^0.
|
|
57
|
+
"@valve-tech/chain-source": "^0.13.0",
|
|
58
|
+
"@valve-tech/tx-tracker": "^0.13.0",
|
|
59
|
+
"@valve-tech/wallet-adapter": "^0.13.0",
|
|
60
60
|
"react": "^18.2.0 || ^19.0.0",
|
|
61
61
|
"react-dom": "^18.2.0 || ^19.0.0",
|
|
62
62
|
"viem": "^2.0.0"
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"@testing-library/react": "^16.1.0",
|
|
78
78
|
"@types/react": "^18.3.0",
|
|
79
79
|
"@types/react-dom": "^18.3.0",
|
|
80
|
-
"@valve-tech/chain-source": "^0.
|
|
81
|
-
"@valve-tech/tx-tracker": "^0.
|
|
82
|
-
"@valve-tech/wallet-adapter": "^0.
|
|
80
|
+
"@valve-tech/chain-source": "^0.13.0",
|
|
81
|
+
"@valve-tech/tx-tracker": "^0.13.0",
|
|
82
|
+
"@valve-tech/wallet-adapter": "^0.13.0",
|
|
83
83
|
"fake-indexeddb": "^6.0.0",
|
|
84
84
|
"happy-dom": "^15.0.0",
|
|
85
85
|
"react": "^18.3.1",
|