@tuwaio/nova-connect 0.2.10 → 0.3.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.
@@ -61,6 +61,10 @@ interface NovaConnectProviderProps extends InitialChains {
61
61
  withChain?: boolean;
62
62
  /** Whether impersonated wallets are enabled */
63
63
  withImpersonated?: boolean;
64
+ /** Custom list of popular connector names to show in the popular section */
65
+ popularConnectors?: string[];
66
+ /** Custom connector groups to show in the modal */
67
+ customConnectorGroups?: Record<string, string[]>;
64
68
  /** Legal configuration for Terms of Service and Privacy Policy links */
65
69
  legal?: LegalConfig;
66
70
  children: React.ReactNode;
package/package.json CHANGED
@@ -1,49 +1,49 @@
1
1
  {
2
2
  "name": "@tuwaio/nova-connect",
3
- "version": "0.2.10",
3
+ "version": "0.3.0",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
7
7
  "description": "React components, hooks and providers for wallet connection and blockchain interactions across multiple chains and wallet types. Build on @tuwaio/satellite-react",
8
8
  "type": "module",
9
- "main": "./dist/index.js",
10
- "module": "./dist/index.cjs",
9
+ "main": "./dist/index.cjs",
10
+ "module": "./dist/index.js",
11
11
  "types": "./dist/index.d.ts",
12
12
  "exports": {
13
13
  ".": {
14
14
  "types": "./dist/index.d.ts",
15
- "import": "./dist/index.cjs",
16
- "default": "./dist/index.js"
15
+ "import": "./dist/index.js",
16
+ "require": "./dist/index.cjs"
17
17
  },
18
18
  "./components": {
19
19
  "types": "./dist/components/index.d.ts",
20
- "import": "./dist/components/index.cjs",
21
- "default": "./dist/components/index.js"
20
+ "import": "./dist/components/index.js",
21
+ "require": "./dist/components/index.cjs"
22
22
  },
23
23
  "./hooks": {
24
24
  "types": "./dist/hooks/index.d.ts",
25
- "import": "./dist/hooks/index.cjs",
26
- "default": "./dist/hooks/index.js"
25
+ "import": "./dist/hooks/index.js",
26
+ "require": "./dist/hooks/index.cjs"
27
27
  },
28
28
  "./i18n": {
29
29
  "types": "./dist/i18n/index.d.ts",
30
- "import": "./dist/i18n/index.cjs",
31
- "default": "./dist/i18n/index.js"
30
+ "import": "./dist/i18n/index.js",
31
+ "require": "./dist/i18n/index.cjs"
32
32
  },
33
33
  "./satellite": {
34
34
  "types": "./dist/satellite/index.d.ts",
35
- "import": "./dist/satellite/index.cjs",
36
- "default": "./dist/satellite/index.js"
35
+ "import": "./dist/satellite/index.js",
36
+ "require": "./dist/satellite/index.cjs"
37
37
  },
38
38
  "./evm": {
39
39
  "types": "./dist/evm/index.d.ts",
40
- "import": "./dist/evm/index.cjs",
41
- "default": "./dist/evm/index.js"
40
+ "import": "./dist/evm/index.js",
41
+ "require": "./dist/evm/index.cjs"
42
42
  },
43
43
  "./solana": {
44
44
  "types": "./dist/solana/index.d.ts",
45
- "import": "./dist/solana/index.cjs",
46
- "default": "./dist/solana/index.js"
45
+ "import": "./dist/solana/index.js",
46
+ "require": "./dist/solana/index.cjs"
47
47
  },
48
48
  "./dist/index.css": "./dist/index.css"
49
49
  },
@@ -88,16 +88,16 @@
88
88
  "@heroicons/react": "2.x.x",
89
89
  "@radix-ui/react-dialog": "1.x.x",
90
90
  "@radix-ui/react-select": "2.x.x",
91
- "@tuwaio/orbit-core": ">=0.2.1",
92
- "@tuwaio/orbit-evm": ">=0.2.3",
93
- "@tuwaio/orbit-solana": ">=0.2.1",
94
- "@tuwaio/satellite-core": ">=0.2.1",
95
- "@tuwaio/satellite-evm": ">=0.2.3",
96
- "@tuwaio/satellite-solana": ">=0.2.3",
97
- "@tuwaio/satellite-react": ">=0.2.3",
98
- "@tuwaio/pulsar-core": ">=0.4",
99
- "@tuwaio/nova-core": ">=0.2.2",
100
- "@tuwaio/nova-transactions": ">=0.2.3",
91
+ "@tuwaio/orbit-core": ">=0.2.7",
92
+ "@tuwaio/orbit-evm": ">=0.2.9",
93
+ "@tuwaio/orbit-solana": ">=0.2.3",
94
+ "@tuwaio/satellite-core": ">=0.3",
95
+ "@tuwaio/satellite-evm": ">=0.3",
96
+ "@tuwaio/satellite-solana": ">=0.3",
97
+ "@tuwaio/satellite-react": ">=0.3",
98
+ "@tuwaio/pulsar-core": ">=0.5",
99
+ "@tuwaio/nova-core": ">=0.3",
100
+ "@tuwaio/nova-transactions": ">=0.3",
101
101
  "@wallet-standard/react": "1.x.x",
102
102
  "@wagmi/core": "3.x.x",
103
103
  "@web3icons/react": ">=4",
@@ -200,33 +200,33 @@
200
200
  "@heroicons/react": "^2.2.0",
201
201
  "@radix-ui/react-dialog": "^1.1.15",
202
202
  "@radix-ui/react-select": "^2.2.6",
203
- "@tuwaio/orbit-core": "^0.2.4",
204
- "@tuwaio/orbit-evm": "^0.2.7",
205
- "@tuwaio/orbit-solana": "^0.2.2",
206
- "@tuwaio/satellite-react": "^0.2.6",
207
- "@tuwaio/satellite-core": "^0.2.3",
208
- "@tuwaio/satellite-evm": "^0.2.7",
209
- "@tuwaio/satellite-solana": "^0.2.6",
210
- "@tuwaio/pulsar-core": "^0.4.0",
203
+ "@tuwaio/orbit-core": "^0.2.7",
204
+ "@tuwaio/orbit-evm": "^0.2.9",
205
+ "@tuwaio/orbit-solana": "^0.2.3",
206
+ "@tuwaio/satellite-react": "^0.3.0",
207
+ "@tuwaio/satellite-core": "^0.3.0",
208
+ "@tuwaio/satellite-evm": "^0.3.0",
209
+ "@tuwaio/satellite-solana": "^0.3.0",
210
+ "@tuwaio/pulsar-core": "^0.5.0",
211
211
  "@wallet-standard/react": "^1.0.1",
212
- "@wagmi/core": "^3.3.1",
213
- "@web3icons/react": "^4.1.14",
214
- "@web3icons/common": "^0.11.43",
212
+ "@wagmi/core": "^3.3.2",
213
+ "@web3icons/react": "^4.1.16",
214
+ "@web3icons/common": "^0.11.45",
215
215
  "gill": "^0.14.0",
216
216
  "clsx": "^2.1.1",
217
217
  "dayjs": "^1.11.19",
218
218
  "immer": "^11.1.3",
219
219
  "ethereum-blockies-base64": "^1.0.2",
220
- "framer-motion": "^12.29.0",
221
- "react": "^19.2.3",
220
+ "framer-motion": "^12.29.2",
221
+ "react": "^19.2.4",
222
222
  "react-toastify": "^11.0.5",
223
223
  "tailwind-merge": "^3.4.0",
224
- "viem": "^2.44.4",
225
- "zustand": "^5.0.10",
224
+ "viem": "^2.45.1",
225
+ "zustand": "^5.0.11",
226
226
  "@tailwindcss/postcss": "^4.1.18",
227
227
  "@tailwindcss/vite": "^4.1.18",
228
- "@types/react": "^19.2.9",
229
- "autoprefixer": "^10.4.23",
228
+ "@types/react": "^19.2.10",
229
+ "autoprefixer": "^10.4.24",
230
230
  "postcss": "^8.5.6",
231
231
  "postcss-cli": "^11.0.1",
232
232
  "tailwindcss": "^4.1.18",
@@ -234,8 +234,8 @@
234
234
  "tw-animate-css": "^1.4.0",
235
235
  "typescript": "^5.9.3",
236
236
  "tsup": "^8.5.1",
237
- "@tuwaio/nova-core": "^0.2.6",
238
- "@tuwaio/nova-transactions": "^0.2.7"
237
+ "@tuwaio/nova-transactions": "^0.3.0",
238
+ "@tuwaio/nova-core": "^0.3.0"
239
239
  },
240
240
  "scripts": {
241
241
  "start": "tsup src/index.ts --watch",