@stoker-platform/web-app 0.5.172 → 0.5.173
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 +9 -0
- package/package.json +4 -4
- package/src/Record.tsx +1 -0
- package/src/Tenant.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @stoker-platform/web-app
|
|
2
2
|
|
|
3
|
+
## 0.5.173
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat: add props option to custom record pages
|
|
8
|
+
- @stoker-platform/node-client@0.5.70
|
|
9
|
+
- @stoker-platform/utils@0.5.61
|
|
10
|
+
- @stoker-platform/web-client@0.5.72
|
|
11
|
+
|
|
3
12
|
## 0.5.172
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stoker-platform/web-app",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.173",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"scripts": {
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
52
52
|
"@react-google-maps/api": "^2.20.8",
|
|
53
53
|
"@sentry/react": "^10.56.0",
|
|
54
|
-
"@stoker-platform/node-client": "0.5.
|
|
55
|
-
"@stoker-platform/utils": "0.5.
|
|
56
|
-
"@stoker-platform/web-client": "0.5.
|
|
54
|
+
"@stoker-platform/node-client": "0.5.70",
|
|
55
|
+
"@stoker-platform/utils": "0.5.61",
|
|
56
|
+
"@stoker-platform/web-client": "0.5.72",
|
|
57
57
|
"@tanstack/react-table": "^8.21.3",
|
|
58
58
|
"@types/react": "18.3.13",
|
|
59
59
|
"@types/react-dom": "18.3.1",
|
package/src/Record.tsx
CHANGED
|
@@ -311,6 +311,7 @@ export const Record = ({ collection }: { collection: CollectionSchema }) => {
|
|
|
311
311
|
}),
|
|
312
312
|
hooks: import.meta.glob("./hooks/*.{ts,tsx}", { eager: true }),
|
|
313
313
|
utils: import.meta.glob("./lib/*.{ts,tsx}", { eager: true }),
|
|
314
|
+
...page.props,
|
|
314
315
|
})}
|
|
315
316
|
</main>
|
|
316
317
|
}
|
package/src/Tenant.tsx
CHANGED
|
@@ -591,7 +591,7 @@ function Tenant() {
|
|
|
591
591
|
runViewTransition(() => navigate("/"))
|
|
592
592
|
}}
|
|
593
593
|
>
|
|
594
|
-
<img src={logo || defaultLogo} alt="Logo" className="h-8 mr-2" />
|
|
594
|
+
<img src={logo || defaultLogo} alt="Logo" className="h-8 mr-2 object-contain" />
|
|
595
595
|
</button>
|
|
596
596
|
{links}
|
|
597
597
|
</nav>
|