@pollar/react 0.9.0-rc.3 → 0.9.0

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 CHANGED
@@ -3,6 +3,11 @@
3
3
  React bindings for [Pollar](https://pollar.xyz) — drop-in authentication UI, transaction modals, and hooks for
4
4
  Stellar-based applications.
5
5
 
6
+ > **0.9.0** requires `@pollar/core@^0.9.0`. `usePollar().walletAddress` is
7
+ > unchanged (now derived from `session.wallet.address` internally — no consumer
8
+ > change), and provider/modal logs route through the client's configured
9
+ > `logLevel` / `logger`. Read the [CHANGELOG](../../CHANGELOG.md) before upgrading.
10
+ >
6
11
  > **0.8.0 reshapes `<PollarProvider>` props (breaking).** `config` → `client`
7
12
  > (now accepts a `PollarClient` instance or a `PollarClientConfig`); `styles`
8
13
  > moves under `appConfig.styles`; new `appConfig` prop is the opt-out switch
package/dist/index.js CHANGED
@@ -1035,7 +1035,7 @@ var PollarModalFooter = () => {
1035
1035
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "pollar-footer-name", children: "Pollar" }),
1036
1036
  /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "pollar-footer-version", children: [
1037
1037
  "v",
1038
- "0.9.0-rc.3"
1038
+ "0.9.0"
1039
1039
  ] })
1040
1040
  ] })
1041
1041
  ] });
package/dist/index.mjs CHANGED
@@ -1033,7 +1033,7 @@ var PollarModalFooter = () => {
1033
1033
  /* @__PURE__ */ jsx("span", { className: "pollar-footer-name", children: "Pollar" }),
1034
1034
  /* @__PURE__ */ jsxs("span", { className: "pollar-footer-version", children: [
1035
1035
  "v",
1036
- "0.9.0-rc.3"
1036
+ "0.9.0"
1037
1037
  ] })
1038
1038
  ] })
1039
1039
  ] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pollar/react",
3
- "version": "0.9.0-rc.3",
3
+ "version": "0.9.0",
4
4
  "description": "React components for Pollar authentication",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -34,12 +34,12 @@
34
34
  "node": ">=20"
35
35
  },
36
36
  "peerDependencies": {
37
- "@pollar/core": "0.9.0-rc.3",
37
+ "@pollar/core": "^0.9.0",
38
38
  "react": ">=18",
39
39
  "react-dom": ">=18"
40
40
  },
41
41
  "dependencies": {
42
- "@pollar/core": "0.9.0-rc.3",
42
+ "@pollar/core": "^0.9.0",
43
43
  "@simplewebauthn/browser": "^13.3.0",
44
44
  "qr.js": "^0.0.0"
45
45
  },