reqwise-react 1.2.0 → 1.2.1
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/.turbo/turbo-build.log +5 -5
- package/README.md +5 -2
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> reqwise-react@1.2.
|
|
2
|
+
> reqwise-react@1.2.1 build C:\Users\PC\Desktop\Code\reqwise\packages\react
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[34mESM[39m Build start
|
|
13
|
-
[32mCJS[39m [1mdist\index.js [22m[32m4.92 KB[39m
|
|
14
|
-
[32mCJS[39m [1mdist\index.js.map [22m[32m5.62 KB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in 10ms
|
|
16
13
|
[32mESM[39m [1mdist\index.mjs [22m[32m2.96 KB[39m
|
|
17
14
|
[32mESM[39m [1mdist\index.mjs.map [22m[32m5.45 KB[39m
|
|
18
|
-
[32mESM[39m ⚡️ Build success in
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 10ms
|
|
16
|
+
[32mCJS[39m [1mdist\index.js [22m[32m4.92 KB[39m
|
|
17
|
+
[32mCJS[39m [1mdist\index.js.map [22m[32m5.62 KB[39m
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 11ms
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
It operates like a mini **Postman** or **Chrome DevTools Network** panel embedded directly inside your React app. Through a floating aside panel, developers can inspect requests in real-time, browse page history, analyze API endpoints, and send manual test requests with a single click.
|
|
6
6
|
|
|
7
|
-
**Version:** 1.2.
|
|
7
|
+
**Version:** 1.2.1 | **Status:** Production Ready | **React:** 17+
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -550,7 +550,10 @@ i18n.getLanguage() // Get current language
|
|
|
550
550
|
|
|
551
551
|
## 📝 Changelog
|
|
552
552
|
|
|
553
|
-
### v1.2.
|
|
553
|
+
### v1.2.1 (Current)
|
|
554
|
+
- Fixed npm registry compatibility: replaced workspace:^ with explicit version for reqwise-core dependency
|
|
555
|
+
|
|
556
|
+
### v1.2.0
|
|
554
557
|
- Fixed scroll functionality in all tabs with proper flex layout constraints
|
|
555
558
|
- Fixed panel sizing for top/bottom placements (100vw width)
|
|
556
559
|
- Fixed toggle button positioning for all placement types (left, right, top, bottom)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reqwise-react",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"reqwise-core": "
|
|
28
|
+
"reqwise-core": "^1.2.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^25.8.0",
|