@veloxts/web 0.6.104 → 0.6.106
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 +22 -0
- package/README.md +1 -1
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @veloxts/web
|
|
2
2
|
|
|
3
|
+
## 0.6.106
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chores
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @veloxts/auth@0.6.106
|
|
10
|
+
- @veloxts/client@0.6.106
|
|
11
|
+
- @veloxts/core@0.6.106
|
|
12
|
+
- @veloxts/router@0.6.106
|
|
13
|
+
|
|
14
|
+
## 0.6.105
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- fix(create): resolve JSX conditional marker artifacts and add auth route guard & some socumentation updates
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @veloxts/auth@0.6.105
|
|
21
|
+
- @veloxts/client@0.6.105
|
|
22
|
+
- @veloxts/core@0.6.105
|
|
23
|
+
- @veloxts/router@0.6.105
|
|
24
|
+
|
|
3
25
|
## 0.6.104
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @veloxts/web
|
|
2
2
|
|
|
3
|
-
> **
|
|
3
|
+
> **Early Access (v0.6.x)**
|
|
4
4
|
|
|
5
5
|
React Server Components integration for VeloxTS Framework using Vinxi - provides file-based routing, streaming SSR, server actions with Zod validation, and tRPC bridge. Learn more at [@veloxts/velox](https://www.npmjs.com/package/@veloxts/velox).
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/web",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.106",
|
|
4
4
|
"description": "React Server Components integration for VeloxTS framework using Vinxi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -72,10 +72,10 @@
|
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"react": ">=19.2.0",
|
|
74
74
|
"react-dom": ">=19.2.0",
|
|
75
|
-
"@veloxts/
|
|
76
|
-
"@veloxts/
|
|
77
|
-
"@veloxts/core": "0.6.
|
|
78
|
-
"@veloxts/client": "0.6.
|
|
75
|
+
"@veloxts/router": "0.6.106",
|
|
76
|
+
"@veloxts/auth": "0.6.106",
|
|
77
|
+
"@veloxts/core": "0.6.106",
|
|
78
|
+
"@veloxts/client": "0.6.106"
|
|
79
79
|
},
|
|
80
80
|
"peerDependenciesMeta": {
|
|
81
81
|
"@veloxts/auth": {
|
|
@@ -95,13 +95,12 @@
|
|
|
95
95
|
"jsdom": "27.4.0",
|
|
96
96
|
"react": "19.2.4",
|
|
97
97
|
"react-dom": "19.2.4",
|
|
98
|
-
"react-server-dom-webpack": "19.2.4",
|
|
99
98
|
"typescript": "5.9.3",
|
|
100
99
|
"vitest": "4.0.18",
|
|
101
|
-
"@veloxts/
|
|
102
|
-
"@veloxts/
|
|
103
|
-
"@veloxts/
|
|
104
|
-
"@veloxts/
|
|
100
|
+
"@veloxts/client": "0.6.106",
|
|
101
|
+
"@veloxts/router": "0.6.106",
|
|
102
|
+
"@veloxts/core": "0.6.106",
|
|
103
|
+
"@veloxts/auth": "0.6.106"
|
|
105
104
|
},
|
|
106
105
|
"keywords": [
|
|
107
106
|
"velox",
|