@meshagent/meshagent-tailwind 0.37.0 → 0.37.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [0.37.1]
2
+ - Added `useAuth` to the React auth package to handle OAuth redirect/callback, token refresh, and profile loading without React Query, plus a `useEnsureLogin` compatibility wrapper.
3
+ - React auth `useMAuthResponse` now deduplicates token exchanges per callback parameters to avoid repeated exchanges on re-renders.
4
+ - Breaking: React auth no longer exports React Query `QueryClient` or `QueryClientProvider`.
5
+ - Breaking: `useLoginScope` now delegates to `useAuth` and defaults the OAuth scope to `email`.
6
+ - Breaking: the `staticAuthorization` helper was removed from the React room connection utilities.
7
+ - React dev terminal hooks now return `RefObject`-typed `containerRef` values for stronger typing.
8
+ - Meshagent TS client now normalizes binary request bodies for fetch and includes TypeScript declarations for runtime entrypoint functions.
9
+
1
10
  ## [0.37.0]
2
11
  - Breaking: Database client now supports `json`, `uuid`, `list`, and `struct` types with typed wrappers (DatabaseJson/DatabaseStruct/DatabaseExpression/DatabaseDate/DatabaseUuid); list/struct values must be wrapped and update now takes `values` only.
3
12
  - Breaking: Containers build now streams build contexts (start/data chunks) with `mountPath`/`chunks` and removes `start_build`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshagent/meshagent-tailwind",
3
- "version": "0.37.0",
3
+ "version": "0.37.1",
4
4
  "description": "Meshagent Tailwind Components",
5
5
  "homepage": "https://github.com/meshagent/meshagent-tailwind",
6
6
  "scripts": {
@@ -30,8 +30,8 @@
30
30
  "CHANGELOG.md"
31
31
  ],
32
32
  "dependencies": {
33
- "@meshagent/meshagent": "^0.37.0",
34
- "@meshagent/meshagent-react": "^0.37.0",
33
+ "@meshagent/meshagent": "^0.37.1",
34
+ "@meshagent/meshagent-react": "^0.37.1",
35
35
  "@radix-ui/react-avatar": "^1.1.10",
36
36
  "@radix-ui/react-checkbox": "^1.3.2",
37
37
  "@radix-ui/react-dialog": "^1.1.14",