@tuwaio/nova-connect 0.3.2 → 0.4.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.
- package/dist/chunk-EYP534IS.js +1 -0
- package/dist/chunk-JCUPHUQU.js +1 -0
- package/dist/chunk-JPZKXXPV.cjs +2 -0
- package/dist/chunk-MPL7RPMZ.js +2 -0
- package/dist/{chunk-PXKZLOYO.cjs → chunk-Q3WXFHOL.cjs} +1 -1
- package/dist/chunk-V6XDFRWV.cjs +1 -0
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.cts +6 -305
- package/dist/components/index.d.ts +6 -305
- package/dist/components/index.js +1 -1
- package/dist/hooks/index.cjs +1 -1
- package/dist/hooks/index.d.cts +3 -2
- package/dist/hooks/index.d.ts +3 -2
- package/dist/hooks/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/satellite/index.cjs +1 -1
- package/dist/satellite/index.js +1 -1
- package/dist/{useWalletNativeBalance-BNbq75Hw.d.ts → useWalletNativeBalance-DIadeXdW.d.ts} +335 -1
- package/dist/{useWalletNativeBalance-C3-mg2mY.d.cts → useWalletNativeBalance-DYd-fWtH.d.cts} +335 -1
- package/package.json +32 -32
- package/dist/chunk-2SFIZVDC.cjs +0 -1
- package/dist/chunk-6EWZWAEF.js +0 -2
- package/dist/chunk-7CLA2EHI.cjs +0 -2
- package/dist/chunk-S3RQJGCL.js +0 -1
- package/dist/chunk-ZD4FCYAW.js +0 -1
package/dist/{useWalletNativeBalance-C3-mg2mY.d.cts → useWalletNativeBalance-DYd-fWtH.d.cts}
RENAMED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
+
import React__default, { ComponentPropsWithoutRef, ComponentType, ReactNode } from 'react';
|
|
2
3
|
import { OrbitAdapter } from '@tuwaio/orbit-core';
|
|
3
4
|
import { TransactionPool, Transaction, TxAdapter } from '@tuwaio/pulsar-core';
|
|
4
5
|
import { N as NovaConnectLabels } from './types-DxUn8qmU.cjs';
|
|
6
|
+
import { Variants, Easing } from 'framer-motion';
|
|
5
7
|
|
|
6
8
|
/**
|
|
7
9
|
* @description
|
|
@@ -42,6 +44,333 @@ interface AllChainConfigs {
|
|
|
42
44
|
*/
|
|
43
45
|
type InitialChains = AllChainConfigs;
|
|
44
46
|
|
|
47
|
+
/**
|
|
48
|
+
* @file ConnectedModalTxHistory component with comprehensive customization options for transaction history display.
|
|
49
|
+
*/
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Local mirror of TxInMemoryPagination from @tuwaio/pulsar-core.
|
|
53
|
+
* Defined inline because pulsar-core is an optional peer dependency in nova-connect.
|
|
54
|
+
*/
|
|
55
|
+
type LocalTxPagination = {
|
|
56
|
+
/** Indicates whether the store is currently loading transaction history. */
|
|
57
|
+
isLoading: boolean;
|
|
58
|
+
/** Indicates whether the last loading request ended with an error. */
|
|
59
|
+
isError: boolean;
|
|
60
|
+
/** Indicates whether more history pages are available. */
|
|
61
|
+
hasMore: boolean;
|
|
62
|
+
/** The current page number in the paginated history. */
|
|
63
|
+
currentPage: number;
|
|
64
|
+
/** Loads the next page of transaction history and appends it to the pool. */
|
|
65
|
+
fetchNextPage: (walletAddress: string) => Promise<void>;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Local customization options for TransactionsHistory component.
|
|
69
|
+
* This is a copy of the type from @tuwaio/nova-transactions to avoid
|
|
70
|
+
* breaking dynamic import logic.
|
|
71
|
+
*/
|
|
72
|
+
type LocalTransactionsHistoryCustomization = {
|
|
73
|
+
/** Custom title for the transactions history section */
|
|
74
|
+
title?: string;
|
|
75
|
+
/** Custom class name generators */
|
|
76
|
+
classNames?: {
|
|
77
|
+
/** Classes for the outer container */
|
|
78
|
+
container?: string;
|
|
79
|
+
/** Classes for the title element */
|
|
80
|
+
titleText?: string;
|
|
81
|
+
/** Classes for the list wrapper container */
|
|
82
|
+
listWrapper?: string;
|
|
83
|
+
/** Classes for the placeholder container */
|
|
84
|
+
placeholderContainer?: string;
|
|
85
|
+
/** Classes for the placeholder title */
|
|
86
|
+
placeholderTitle?: string;
|
|
87
|
+
/** Classes for the placeholder message */
|
|
88
|
+
placeholderMessage?: string;
|
|
89
|
+
/** Classes for the infinite scroll loader container */
|
|
90
|
+
loaderContainer?: string;
|
|
91
|
+
/** Classes for the infinite scroll loader icon (spinner) */
|
|
92
|
+
loaderIcon?: string;
|
|
93
|
+
/** Classes for the error indicator container */
|
|
94
|
+
errorContainer?: string;
|
|
95
|
+
/** Classes for the error indicator icon */
|
|
96
|
+
errorIcon?: string;
|
|
97
|
+
/** Classes for individual transaction item container */
|
|
98
|
+
itemContainer?: string;
|
|
99
|
+
/** Classes for the icon wrapper */
|
|
100
|
+
itemIconWrapper?: string;
|
|
101
|
+
/** Classes for the icon itself */
|
|
102
|
+
itemIcon?: string;
|
|
103
|
+
/** Classes for the content wrapper */
|
|
104
|
+
itemContentWrapper?: string;
|
|
105
|
+
/** Classes for the title text */
|
|
106
|
+
itemTitle?: string;
|
|
107
|
+
/** Classes for the timestamp text */
|
|
108
|
+
itemTimestamp?: string;
|
|
109
|
+
/** Classes for the description text */
|
|
110
|
+
itemDescription?: string;
|
|
111
|
+
/** Classes for the status badge container */
|
|
112
|
+
itemStatusBadge?: string;
|
|
113
|
+
/** Classes for the status badge icon */
|
|
114
|
+
itemStatusBadgeIcon?: string;
|
|
115
|
+
/** Classes for the status badge label */
|
|
116
|
+
itemStatusBadgeLabel?: string;
|
|
117
|
+
/** Classes for the transaction key container */
|
|
118
|
+
itemTxKeyContainer?: string;
|
|
119
|
+
/** Classes for the default hash link label */
|
|
120
|
+
itemHashLabel?: string;
|
|
121
|
+
/** Classes for the default hash link */
|
|
122
|
+
itemHashLink?: string;
|
|
123
|
+
/** Classes for the default hash copy button */
|
|
124
|
+
itemHashCopyButton?: string;
|
|
125
|
+
/** Classes for the original hash link label (replaced transactions) */
|
|
126
|
+
itemOriginalHashLabel?: string;
|
|
127
|
+
/** Classes for the original hash link (replaced transactions) */
|
|
128
|
+
itemOriginalHashLink?: string;
|
|
129
|
+
/** Classes for the original hash copy button (replaced transactions) */
|
|
130
|
+
itemOriginalHashCopyButton?: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
type CustomLoadingContainerProps = {
|
|
134
|
+
labels: Record<string, string>;
|
|
135
|
+
className?: string;
|
|
136
|
+
/** Granular classNames for sub-elements */
|
|
137
|
+
classNames?: {
|
|
138
|
+
spinner?: string;
|
|
139
|
+
text?: string;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
type CustomErrorContainerProps = {
|
|
143
|
+
className?: string;
|
|
144
|
+
/** Granular classNames for sub-elements */
|
|
145
|
+
classNames?: {
|
|
146
|
+
iconContainer?: string;
|
|
147
|
+
icon?: string;
|
|
148
|
+
content?: string;
|
|
149
|
+
title?: string;
|
|
150
|
+
description?: string;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
type CustomNoWalletContainerProps = {
|
|
154
|
+
className?: string;
|
|
155
|
+
/** Granular classNames for sub-elements */
|
|
156
|
+
classNames?: {
|
|
157
|
+
text?: string;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
type CustomTransactionsHistoryWrapperProps = {
|
|
161
|
+
children: ReactNode;
|
|
162
|
+
activeConnectionAddress: string;
|
|
163
|
+
transactionPool: NonNullable<NovaConnectProviderProps['transactionPool']>;
|
|
164
|
+
pulsarAdapter: NonNullable<NovaConnectProviderProps['pulsarAdapter']>;
|
|
165
|
+
labels: Record<string, string>;
|
|
166
|
+
className?: string;
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* Customization options for ConnectedModalTxHistory component
|
|
170
|
+
*/
|
|
171
|
+
type ConnectedModalTxHistoryCustomization = {
|
|
172
|
+
/** Override root container props */
|
|
173
|
+
containerProps?: Partial<Omit<ComponentPropsWithoutRef<'div'>, 'popover' | 'onDrag' | 'onDragEnd' | 'onDragExit' | 'onDragStart' | 'onDragStartCapture' | 'onAnimationStart' | 'onAnimationEnd' | 'onAnimationStartCapture' | 'onAnimationEndCapture' | 'onAnimationIteration' | 'onAnimationIterationCapture'>>;
|
|
174
|
+
/** Custom components */
|
|
175
|
+
components?: {
|
|
176
|
+
/** Custom loading container component */
|
|
177
|
+
LoadingContainer?: ComponentType<CustomLoadingContainerProps>;
|
|
178
|
+
/** Custom error container component */
|
|
179
|
+
ErrorContainer?: ComponentType<CustomErrorContainerProps>;
|
|
180
|
+
/** Custom no wallet container component */
|
|
181
|
+
NoWalletContainer?: ComponentType<CustomNoWalletContainerProps>;
|
|
182
|
+
/** Custom transactions history wrapper component */
|
|
183
|
+
TransactionsHistoryWrapper?: ComponentType<CustomTransactionsHistoryWrapperProps>;
|
|
184
|
+
};
|
|
185
|
+
/** Custom class name generators */
|
|
186
|
+
classNames?: {
|
|
187
|
+
/** Function to generate container classes */
|
|
188
|
+
container?: (params: {
|
|
189
|
+
hasActiveWallet: boolean;
|
|
190
|
+
hasValidAdapter: boolean;
|
|
191
|
+
}) => string;
|
|
192
|
+
/** Function to generate loading container classes */
|
|
193
|
+
loadingContainer?: () => string;
|
|
194
|
+
/** Function to generate loading spinner classes */
|
|
195
|
+
loadingSpinner?: () => string;
|
|
196
|
+
/** Function to generate loading text classes */
|
|
197
|
+
loadingText?: () => string;
|
|
198
|
+
/** Function to generate error container classes */
|
|
199
|
+
errorContainer?: () => string;
|
|
200
|
+
/** Function to generate error icon container classes */
|
|
201
|
+
errorIconContainer?: () => string;
|
|
202
|
+
/** Function to generate error icon classes */
|
|
203
|
+
errorIcon?: () => string;
|
|
204
|
+
/** Function to generate error content classes */
|
|
205
|
+
errorContent?: () => string;
|
|
206
|
+
/** Function to generate error title classes */
|
|
207
|
+
errorTitle?: () => string;
|
|
208
|
+
/** Function to generate error description classes */
|
|
209
|
+
errorDescription?: () => string;
|
|
210
|
+
/** Function to generate no wallet container classes */
|
|
211
|
+
noWalletContainer?: () => string;
|
|
212
|
+
/** Function to generate no wallet text classes */
|
|
213
|
+
noWalletText?: () => string;
|
|
214
|
+
/** Function to generate pulsar required container classes */
|
|
215
|
+
pulsarRequiredContainer?: () => string;
|
|
216
|
+
/** Function to generate pulsar required icon container classes */
|
|
217
|
+
pulsarRequiredIconContainer?: () => string;
|
|
218
|
+
/** Function to generate pulsar required icon classes */
|
|
219
|
+
pulsarRequiredIcon?: () => string;
|
|
220
|
+
/** Function to generate pulsar required content classes */
|
|
221
|
+
pulsarRequiredContent?: () => string;
|
|
222
|
+
/** Function to generate pulsar required title classes */
|
|
223
|
+
pulsarRequiredTitle?: () => string;
|
|
224
|
+
/** Function to generate pulsar required description classes */
|
|
225
|
+
pulsarRequiredDescription?: () => string;
|
|
226
|
+
/** Function to generate transactions history wrapper classes */
|
|
227
|
+
transactionsHistoryWrapper?: () => string;
|
|
228
|
+
};
|
|
229
|
+
/** Custom animation variants */
|
|
230
|
+
variants?: {
|
|
231
|
+
/** Container animation variants */
|
|
232
|
+
container?: Variants;
|
|
233
|
+
/** Error animation variants */
|
|
234
|
+
error?: Variants;
|
|
235
|
+
/** Loading animation variants */
|
|
236
|
+
loading?: Variants;
|
|
237
|
+
};
|
|
238
|
+
/** Custom animation configuration */
|
|
239
|
+
animation?: {
|
|
240
|
+
/** Container animation configuration */
|
|
241
|
+
container?: {
|
|
242
|
+
/** Animation duration in seconds */
|
|
243
|
+
duration?: number;
|
|
244
|
+
/** Animation easing curve */
|
|
245
|
+
ease?: Easing | Easing[];
|
|
246
|
+
/** Animation delay in seconds */
|
|
247
|
+
delay?: number;
|
|
248
|
+
};
|
|
249
|
+
/** Error animation configuration */
|
|
250
|
+
error?: {
|
|
251
|
+
/** Animation duration in seconds */
|
|
252
|
+
duration?: number;
|
|
253
|
+
/** Animation easing curve */
|
|
254
|
+
ease?: Easing | Easing[];
|
|
255
|
+
/** Animation delay in seconds */
|
|
256
|
+
delay?: number;
|
|
257
|
+
};
|
|
258
|
+
/** Loading animation configuration */
|
|
259
|
+
loading?: {
|
|
260
|
+
/** Animation duration in seconds */
|
|
261
|
+
duration?: number;
|
|
262
|
+
/** Animation easing curve */
|
|
263
|
+
ease?: Easing | Easing[];
|
|
264
|
+
/** Animation delay in seconds */
|
|
265
|
+
delay?: number;
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
/** Custom event handlers */
|
|
269
|
+
handlers?: {
|
|
270
|
+
/** Custom handler for error retry actions */
|
|
271
|
+
onErrorRetry?: (error: Error, event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
272
|
+
/** Custom handler for package loading failure */
|
|
273
|
+
onPackageLoadingFailure?: (packageName: string, error: Error) => void;
|
|
274
|
+
};
|
|
275
|
+
/** Configuration options */
|
|
276
|
+
config?: {
|
|
277
|
+
/** Whether to disable animations */
|
|
278
|
+
disableAnimation?: boolean;
|
|
279
|
+
/** Whether to reduce motion for accessibility */
|
|
280
|
+
reduceMotion?: boolean;
|
|
281
|
+
/** Custom package name for error messages */
|
|
282
|
+
packageName?: string;
|
|
283
|
+
/** Custom aria labels for different states */
|
|
284
|
+
ariaLabels?: {
|
|
285
|
+
loading?: string;
|
|
286
|
+
error?: string;
|
|
287
|
+
noWallet?: string;
|
|
288
|
+
pulsarRequired?: string;
|
|
289
|
+
transactionsHistory?: string;
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
/**
|
|
293
|
+
* Customization for the TransactionsHistory component (from @tuwaio/nova-transactions).
|
|
294
|
+
* Passed through to the dynamically loaded component.
|
|
295
|
+
*/
|
|
296
|
+
transactionsHistory?: LocalTransactionsHistoryCustomization;
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
* Props for the ConnectedModalTxHistory component
|
|
300
|
+
*/
|
|
301
|
+
interface ConnectedModalTxHistoryProps extends Pick<NovaConnectProviderProps, 'transactionPool' | 'pulsarAdapter'> {
|
|
302
|
+
/** Additional CSS classes for the container */
|
|
303
|
+
className?: string;
|
|
304
|
+
/** Custom aria-label for the container */
|
|
305
|
+
'aria-label'?: string;
|
|
306
|
+
/** Customization options */
|
|
307
|
+
customization?: ConnectedModalTxHistoryCustomization;
|
|
308
|
+
/** Pagination state for infinite scroll, forwarded to TransactionsHistory. */
|
|
309
|
+
pagination?: LocalTxPagination;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* Component for displaying transaction history with comprehensive customization options.
|
|
313
|
+
*
|
|
314
|
+
* This component provides comprehensive transaction history functionality:
|
|
315
|
+
* - Conditional loading of the @tuwaio/nova-transactions package
|
|
316
|
+
* - Graceful fallback when the package is not available
|
|
317
|
+
* - Loading states with proper accessibility support
|
|
318
|
+
* - Error handling for missing configuration
|
|
319
|
+
* - Full WCAG compliance with ARIA labels
|
|
320
|
+
* - Comprehensive customization for all UI elements and behaviors
|
|
321
|
+
* - Animation support with reduced motion options
|
|
322
|
+
* - Custom event handlers for enhanced interactivity
|
|
323
|
+
* - Performance-optimized with memoized calculations
|
|
324
|
+
*
|
|
325
|
+
* The component automatically detects if the required dependencies are available
|
|
326
|
+
* and provides appropriate fallbacks for different scenarios.
|
|
327
|
+
*
|
|
328
|
+
* @example Basic usage
|
|
329
|
+
* ```tsx
|
|
330
|
+
* <ConnectedModalTxHistory
|
|
331
|
+
* transactionPool={txPool}
|
|
332
|
+
* pulsarAdapter={adapter}
|
|
333
|
+
* className="custom-styling"
|
|
334
|
+
* />
|
|
335
|
+
* ```
|
|
336
|
+
*
|
|
337
|
+
* @example With full customization
|
|
338
|
+
* ```tsx
|
|
339
|
+
* <ConnectedModalTxHistory
|
|
340
|
+
* transactionPool={txPool}
|
|
341
|
+
* pulsarAdapter={adapter}
|
|
342
|
+
* customization={{
|
|
343
|
+
* classNames: {
|
|
344
|
+
* container: ({ hasActiveWallet }) =>
|
|
345
|
+
* `custom-container ${hasActiveWallet ? 'has-wallet' : 'no-wallet'}`,
|
|
346
|
+
* loadingContainer: () => "custom-loading bg-blue-100",
|
|
347
|
+
* errorContainer: () => "custom-error bg-red-100",
|
|
348
|
+
* },
|
|
349
|
+
* components: {
|
|
350
|
+
* LoadingContainer: ({ className }) =>
|
|
351
|
+
* <div className={cn("custom-spinner", className)} />,
|
|
352
|
+
* },
|
|
353
|
+
* handlers: {
|
|
354
|
+
* onPackageLoadingFailure: (packageName, error) =>
|
|
355
|
+
* console.error(`Failed to load ${packageName}:`, error),
|
|
356
|
+
* },
|
|
357
|
+
* config: {
|
|
358
|
+
* packageName: '@custom/transactions',
|
|
359
|
+
* ariaLabels: {
|
|
360
|
+
* loading: 'Loading transaction history...',
|
|
361
|
+
* error: 'Error loading transactions',
|
|
362
|
+
* },
|
|
363
|
+
* },
|
|
364
|
+
* animation: {
|
|
365
|
+
* container: { duration: 0.3, ease: 'easeOut' },
|
|
366
|
+
* error: { duration: 0.2, ease: 'easeIn' },
|
|
367
|
+
* },
|
|
368
|
+
* }}
|
|
369
|
+
* />
|
|
370
|
+
* ```
|
|
371
|
+
*/
|
|
372
|
+
declare const ConnectedModalTxHistory: React__default.ForwardRefExoticComponent<ConnectedModalTxHistoryProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
373
|
+
|
|
45
374
|
type ButtonTxStatus = 'idle' | 'loading' | 'succeed' | 'failed' | 'replaced';
|
|
46
375
|
type ConnectContentType = 'network' | 'connectors' | 'about' | 'getWallet' | 'connecting' | 'impersonate';
|
|
47
376
|
type ConnectedContentType = 'main' | 'transactions' | 'chains' | 'connections';
|
|
@@ -67,6 +396,11 @@ interface NovaConnectProviderProps extends InitialChains {
|
|
|
67
396
|
customConnectorGroups?: Record<string, string[]>;
|
|
68
397
|
/** Legal configuration for Terms of Service and Privacy Policy links */
|
|
69
398
|
legal?: LegalConfig;
|
|
399
|
+
/**
|
|
400
|
+
* Pagination state for infinite scroll, forwarded to ConnectedModalTxHistory and TransactionsHistory.
|
|
401
|
+
* Mirrors TxInMemoryPagination from @tuwaio/pulsar-core (optional peer dependency).
|
|
402
|
+
*/
|
|
403
|
+
pagination?: LocalTxPagination;
|
|
70
404
|
children: React.ReactNode;
|
|
71
405
|
labels?: Partial<NovaConnectLabels>;
|
|
72
406
|
}
|
|
@@ -371,4 +705,4 @@ interface NativeBalanceData {
|
|
|
371
705
|
*/
|
|
372
706
|
declare function useWalletNativeBalance(): NativeBalanceData;
|
|
373
707
|
|
|
374
|
-
export { type AllChainConfigs as A, type ButtonTxStatus as B, type ConnectContentType as C, type InitialChains as I, type LegalConfig as L, type NovaConnectProviderType as N, type WalletBalance as W, type ConnectedContentType as a, type NovaConnectProviderProps as b, NovaConnectProviderError as c, NovaConnectProviderContext as d, useHasNovaConnectContext as e, useNovaConnectOptional as f, NovaConnectLabelsContext as g, useNovaConnectLabels as h, useNovaConnectLabel as i, useNovaConnectLabelsSubset as j, hasLabel as k, type LabelCategory as l, useLabelsByCategory as m, isDefaultLabels as n, getLabelWithFallback as o, createLabelsSubset as p, type NativeBalanceResult as q, useWalletNativeBalance as r, useNovaConnect as u };
|
|
708
|
+
export { type AllChainConfigs as A, type ButtonTxStatus as B, type ConnectContentType as C, type InitialChains as I, type LegalConfig as L, type NovaConnectProviderType as N, type WalletBalance as W, type ConnectedContentType as a, type NovaConnectProviderProps as b, NovaConnectProviderError as c, NovaConnectProviderContext as d, useHasNovaConnectContext as e, useNovaConnectOptional as f, NovaConnectLabelsContext as g, useNovaConnectLabels as h, useNovaConnectLabel as i, useNovaConnectLabelsSubset as j, hasLabel as k, type LabelCategory as l, useLabelsByCategory as m, isDefaultLabels as n, getLabelWithFallback as o, createLabelsSubset as p, type NativeBalanceResult as q, useWalletNativeBalance as r, type ConnectedModalTxHistoryProps as s, type ConnectedModalTxHistoryCustomization as t, useNovaConnect as u, type LocalTxPagination as v, type LocalTransactionsHistoryCustomization as w, ConnectedModalTxHistory as x };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tuwaio/nova-connect",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Oleksandr Tkach",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -88,14 +88,14 @@
|
|
|
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.
|
|
92
|
-
"@tuwaio/orbit-evm": ">=0.2.
|
|
93
|
-
"@tuwaio/orbit-solana": ">=0.2.
|
|
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.
|
|
91
|
+
"@tuwaio/orbit-core": ">=0.2.8",
|
|
92
|
+
"@tuwaio/orbit-evm": ">=0.2.11",
|
|
93
|
+
"@tuwaio/orbit-solana": ">=0.2.4",
|
|
94
|
+
"@tuwaio/satellite-core": ">=0.3.2",
|
|
95
|
+
"@tuwaio/satellite-evm": ">=0.3.2",
|
|
96
|
+
"@tuwaio/satellite-solana": ">=0.3.2",
|
|
97
|
+
"@tuwaio/satellite-react": ">=0.3.2",
|
|
98
|
+
"@tuwaio/pulsar-core": ">=0.6",
|
|
99
99
|
"@tuwaio/nova-core": ">=0.3",
|
|
100
100
|
"@tuwaio/nova-transactions": ">=0.3",
|
|
101
101
|
"@wallet-standard/react": "1.x.x",
|
|
@@ -200,42 +200,42 @@
|
|
|
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.
|
|
204
|
-
"@tuwaio/orbit-evm": "^0.2.
|
|
205
|
-
"@tuwaio/orbit-solana": "^0.2.
|
|
206
|
-
"@tuwaio/satellite-react": "^0.3.
|
|
207
|
-
"@tuwaio/satellite-core": "^0.3.
|
|
208
|
-
"@tuwaio/satellite-evm": "^0.3.
|
|
209
|
-
"@tuwaio/satellite-solana": "^0.3.
|
|
210
|
-
"@tuwaio/pulsar-core": "^0.
|
|
203
|
+
"@tuwaio/orbit-core": "^0.2.8",
|
|
204
|
+
"@tuwaio/orbit-evm": "^0.2.11",
|
|
205
|
+
"@tuwaio/orbit-solana": "^0.2.4",
|
|
206
|
+
"@tuwaio/satellite-react": "^0.3.2",
|
|
207
|
+
"@tuwaio/satellite-core": "^0.3.2",
|
|
208
|
+
"@tuwaio/satellite-evm": "^0.3.2",
|
|
209
|
+
"@tuwaio/satellite-solana": "^0.3.2",
|
|
210
|
+
"@tuwaio/pulsar-core": "^0.6.0",
|
|
211
211
|
"@wallet-standard/react": "^1.0.1",
|
|
212
|
-
"@wagmi/core": "^3.4.
|
|
212
|
+
"@wagmi/core": "^3.4.6",
|
|
213
213
|
"@web3icons/react": "^4.1.17",
|
|
214
214
|
"@web3icons/common": "^0.11.46",
|
|
215
215
|
"gill": "^0.14.0",
|
|
216
216
|
"clsx": "^2.1.1",
|
|
217
|
-
"dayjs": "^1.11.
|
|
217
|
+
"dayjs": "^1.11.20",
|
|
218
218
|
"immer": "^11.1.4",
|
|
219
219
|
"ethereum-blockies-base64": "^1.0.2",
|
|
220
|
-
"framer-motion": "^12.
|
|
221
|
-
"react": "^19.2.
|
|
222
|
-
"react-toastify": "^11.0
|
|
220
|
+
"framer-motion": "^12.38.0",
|
|
221
|
+
"react": "^19.2.5",
|
|
222
|
+
"react-toastify": "^11.1.0",
|
|
223
223
|
"tailwind-merge": "^3.5.0",
|
|
224
|
-
"viem": "^2.
|
|
225
|
-
"zustand": "^5.0.
|
|
226
|
-
"@tailwindcss/postcss": "^4.2.
|
|
227
|
-
"@tailwindcss/vite": "^4.2.
|
|
224
|
+
"viem": "^2.48.4",
|
|
225
|
+
"zustand": "^5.0.12",
|
|
226
|
+
"@tailwindcss/postcss": "^4.2.4",
|
|
227
|
+
"@tailwindcss/vite": "^4.2.4",
|
|
228
228
|
"@types/react": "^19.2.14",
|
|
229
|
-
"autoprefixer": "^10.
|
|
230
|
-
"postcss": "^8.5.
|
|
229
|
+
"autoprefixer": "^10.5.0",
|
|
230
|
+
"postcss": "^8.5.12",
|
|
231
231
|
"postcss-cli": "^11.0.1",
|
|
232
|
-
"tailwindcss": "^4.2.
|
|
232
|
+
"tailwindcss": "^4.2.4",
|
|
233
233
|
"@emotion/is-prop-valid": "^1.4.0",
|
|
234
234
|
"tw-animate-css": "^1.4.0",
|
|
235
|
-
"typescript": "^
|
|
235
|
+
"typescript": "^6.0.3",
|
|
236
236
|
"tsup": "^8.5.1",
|
|
237
|
-
"@tuwaio/nova-core": "^0.
|
|
238
|
-
"@tuwaio/nova-transactions": "^0.
|
|
237
|
+
"@tuwaio/nova-core": "^0.4.1",
|
|
238
|
+
"@tuwaio/nova-transactions": "^0.4.1"
|
|
239
239
|
},
|
|
240
240
|
"scripts": {
|
|
241
241
|
"start": "tsup src/index.ts --watch",
|
package/dist/chunk-2SFIZVDC.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
'use strict';var satelliteReact=require('@tuwaio/satellite-react');Object.defineProperty(exports,"a",{enumerable:true,get:function(){return satelliteReact.AllConnectors}});Object.defineProperty(exports,"b",{enumerable:true,get:function(){return satelliteReact.Connection}});Object.defineProperty(exports,"c",{enumerable:true,get:function(){return satelliteReact.Connector}});Object.defineProperty(exports,"d",{enumerable:true,get:function(){return satelliteReact.SatelliteConnectProvider}});Object.defineProperty(exports,"e",{enumerable:true,get:function(){return satelliteReact.SatelliteConnectProviderProps}});Object.defineProperty(exports,"f",{enumerable:true,get:function(){return satelliteReact.SatelliteStoreContext}});Object.defineProperty(exports,"g",{enumerable:true,get:function(){return satelliteReact.useInitializeAutoConnect}});Object.defineProperty(exports,"h",{enumerable:true,get:function(){return satelliteReact.useSatelliteConnectStore}});
|