@tenxyte/react 0.5.2 → 0.5.3
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/README.md +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,6 +20,8 @@ import App from './App';
|
|
|
20
20
|
const tx = new TenxyteClient({
|
|
21
21
|
baseUrl: 'https://api.example.com',
|
|
22
22
|
headers: { 'X-Access-Key': 'your-api-key' },
|
|
23
|
+
// Enable if backend uses HttpOnly cookie refresh tokens
|
|
24
|
+
// cookieMode: true,
|
|
23
25
|
});
|
|
24
26
|
|
|
25
27
|
function Root() {
|
|
@@ -183,7 +185,7 @@ function AdminPanel() {
|
|
|
183
185
|
|
|
184
186
|
| Package | Version |
|
|
185
187
|
|---|---|
|
|
186
|
-
| `@tenxyte/core` | `^0.
|
|
188
|
+
| `@tenxyte/core` | `^0.10.0` |
|
|
187
189
|
| `react` | `^18.0.0 \|\| ^19.0.0` |
|
|
188
190
|
|
|
189
191
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tenxyte/react",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "React bindings for the Tenxyte SDK",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"type": "module",
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@tenxyte/core": "^0.9.
|
|
46
|
+
"@tenxyte/core": "^0.9.4",
|
|
47
47
|
"react": "^18.0.0 || ^19.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|