@getpara/react-sdk 1.12.0 → 1.12.1-dev.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.
@@ -20,9 +20,9 @@ import { useAddFunds } from "./AddFundsContext.js";
20
20
  import { formatNetworkList } from "../../utils/stringFormatters.js";
21
21
  import { useInternalClient } from "../../../provider/hooks/utils/useInternalClient.js";
22
22
  const GENERIC_WALLET = {
23
- [WalletType.EVM]: "Ethereum or EVM-based L2s",
24
- [WalletType.SOLANA]: "Solana",
25
- [WalletType.COSMOS]: "Cosmos"
23
+ [WalletType.EVM]: "Ethereum or EVM-based networks",
24
+ [WalletType.SOLANA]: "Solana or SVM-based networks",
25
+ [WalletType.COSMOS]: "Cosmos networks"
26
26
  };
27
27
  function AddFundsReceive() {
28
28
  const [isCopied, copy] = useCopyToClipboard();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpara/react-sdk",
3
- "version": "1.12.0",
3
+ "version": "1.12.1-dev.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "*.css"
13
13
  ],
14
14
  "dependencies": {
15
- "@getpara/react-common": "1.12.0",
15
+ "@getpara/react-common": "1.12.0-dev.0",
16
16
  "@getpara/react-components": "1.12.0",
17
17
  "@getpara/web-sdk": "1.12.0",
18
18
  "@tanstack/react-query": "^5.0.0",
@@ -23,12 +23,6 @@
23
23
  "zustand": "^4.5.2",
24
24
  "zustand-sync-tabs": "^0.2.2"
25
25
  },
26
- "scripts": {
27
- "post-build": "./scripts/post-build.sh",
28
- "build": "rm -rf dist && yarn typegen && node ./scripts/build.mjs && yarn post-build",
29
- "typegen": "tsc --emitDeclarationOnly",
30
- "test": "vitest run --coverage"
31
- },
32
26
  "devDependencies": {
33
27
  "@testing-library/dom": "^10.4.0",
34
28
  "@testing-library/react": "^16.3.0",
@@ -41,7 +35,13 @@
41
35
  },
42
36
  "peerDependencies": {
43
37
  "react": "*",
44
- "react-dom": "*"
38
+ "react-dom": "*",
39
+ "styled-components": "^6"
40
+ },
41
+ "peerDependenciesMeta": {
42
+ "styled-components": {
43
+ "optional": true
44
+ }
45
45
  },
46
46
  "files": [
47
47
  "dist",
@@ -51,5 +51,11 @@
51
51
  "resolutions": {
52
52
  "styled-components": "^6"
53
53
  },
54
- "gitHead": "748afcf08c9d307a2d3eaf0716f73132f3eb8529"
55
- }
54
+ "gitHead": "e6e791d4e4f9afd94f2093d6045d686b85e5a682",
55
+ "scripts": {
56
+ "post-build": "./scripts/post-build.sh",
57
+ "build": "rm -rf dist && yarn typegen && node ./scripts/build.mjs && yarn post-build",
58
+ "typegen": "tsc --emitDeclarationOnly",
59
+ "test": "vitest run --coverage"
60
+ }
61
+ }