@strivacity/sdk-remix 2.0.0-beta → 2.0.0-beta.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/CHANGELOG.md +16 -0
- package/README.md +4 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 2.0.0-beta.3 (2025-08-01)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- documentation updates ([3549d61](https://github.com/strivacity/sdk-js/commit/3549d61))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated sdk-core to 2.0.0-beta.3
|
|
10
|
+
|
|
11
|
+
## 2.0.0-beta.2 (2025-07-24)
|
|
12
|
+
|
|
13
|
+
### 🧱 Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated sdk-core to 2.0.0-beta.2
|
|
16
|
+
|
|
1
17
|
## 2.0.0-beta (2025-07-24)
|
|
2
18
|
|
|
3
19
|
### 🚀 Features
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ npm install @strivacity/sdk-remix
|
|
|
16
16
|
|
|
17
17
|
### Wrap your app with `StyAuthProvider`
|
|
18
18
|
|
|
19
|
-
Add the `StyAuthProvider` to your `
|
|
19
|
+
Add the `StyAuthProvider` to your `main.tsx` file.
|
|
20
20
|
|
|
21
21
|
```tsx
|
|
22
22
|
import { BrowserRouter, Navigate, Route, Routes } from 'react-router';
|
|
@@ -34,7 +34,9 @@ createRoot(document.getElementById('app')!).render(
|
|
|
34
34
|
<BrowserRouter>
|
|
35
35
|
<StyAuthProvider options={options}>
|
|
36
36
|
<Routes>
|
|
37
|
-
<Route element={<App />}
|
|
37
|
+
<Route path="/" element={<App />}>
|
|
38
|
+
...
|
|
39
|
+
</Route>
|
|
38
40
|
</Routes>
|
|
39
41
|
</StyAuthProvider>
|
|
40
42
|
</BrowserRouter>,
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strivacity/sdk-remix",
|
|
3
|
-
"version": "2.0.0-beta",
|
|
3
|
+
"version": "2.0.0-beta.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Strivacity Remix SDK client",
|
|
7
7
|
"author": "strivacity <info@strivacity.com>",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@strivacity/sdk-core": "2.0.0-beta"
|
|
9
|
+
"@strivacity/sdk-core": "2.0.0-beta.3"
|
|
10
10
|
},
|
|
11
11
|
"peerDependencies": {
|
|
12
12
|
"react": ">=18"
|