@xyo-network/react-wallet 6.1.0 → 6.1.2
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/browser/index.d.ts +4 -323
- package/package.json +23 -23
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,323 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
6
|
-
import * as _xyo_network_wallet_model from '@xyo-network/wallet-model';
|
|
7
|
-
import { WalletInstance } from '@xyo-network/wallet-model';
|
|
8
|
-
import { AddressRenderRowBoxProps } from '@xyo-network/react-address-render';
|
|
9
|
-
import * as _xylabs_react_shared from '@xylabs/react-shared';
|
|
10
|
-
import { ContextExState } from '@xylabs/react-shared';
|
|
11
|
-
import { AccountInstance } from '@xyo-network/account-model';
|
|
12
|
-
import { UsePromiseState } from '@xylabs/react-promise';
|
|
13
|
-
|
|
14
|
-
/** @public */
|
|
15
|
-
interface MaxAccountsTableRow extends TableRowProps {
|
|
16
|
-
activeAccountIndex?: number;
|
|
17
|
-
changeMaxAccounts?: (maxAccounts: number) => void;
|
|
18
|
-
maxAccounts?: number;
|
|
19
|
-
}
|
|
20
|
-
/** @public */
|
|
21
|
-
declare const MaxAccountsTableRow: react__default.FC<MaxAccountsTableRow>;
|
|
22
|
-
|
|
23
|
-
/** @internal */
|
|
24
|
-
declare const SeedPhraseIconButton: react__default.FC<IconButtonProps>;
|
|
25
|
-
|
|
26
|
-
/** @public */
|
|
27
|
-
interface DefaultSeedPhraseProps extends PropsWithChildren {
|
|
28
|
-
changeSeedPhrase?: (seedPhrase: string) => void;
|
|
29
|
-
hideDefaultSeedPhraseMessage?: boolean;
|
|
30
|
-
seedPhrase?: string;
|
|
31
|
-
}
|
|
32
|
-
/** @public */
|
|
33
|
-
declare const DefaultSeedPhrase: react__default.FC<DefaultSeedPhraseProps>;
|
|
34
|
-
|
|
35
|
-
/** @public */
|
|
36
|
-
interface DialogActionButtonsProps extends DialogActionsProps {
|
|
37
|
-
onClose?: DialogProps['onClose'];
|
|
38
|
-
}
|
|
39
|
-
/** @public */
|
|
40
|
-
declare const DialogActionButtons: react__default.FC<DialogActionButtonsProps>;
|
|
41
|
-
|
|
42
|
-
/** @public */
|
|
43
|
-
interface NewPhraseTextFieldProps extends StandardTextFieldProps {
|
|
44
|
-
children?: ReactNode;
|
|
45
|
-
disableColor?: boolean;
|
|
46
|
-
}
|
|
47
|
-
/** @public */
|
|
48
|
-
declare const NewPhraseTextField: react__default.FC<NewPhraseTextFieldProps>;
|
|
49
|
-
|
|
50
|
-
/** @public */
|
|
51
|
-
declare const PhraseDialogActions: () => react_jsx_runtime.JSX.Element;
|
|
52
|
-
|
|
53
|
-
/** @public */
|
|
54
|
-
interface SavedPhraseTextFieldProps extends StandardTextFieldProps {
|
|
55
|
-
fullWidth?: boolean;
|
|
56
|
-
showCopyButton?: boolean;
|
|
57
|
-
showPhraseHeader?: boolean;
|
|
58
|
-
visible?: boolean;
|
|
59
|
-
}
|
|
60
|
-
/** @public */
|
|
61
|
-
declare const SavedPhraseTextField: react__default.FC<SavedPhraseTextFieldProps>;
|
|
62
|
-
|
|
63
|
-
/** @public */
|
|
64
|
-
declare const colorParser: (conditional?: boolean | null) => "error" | "success" | undefined;
|
|
65
|
-
|
|
66
|
-
/** @public */
|
|
67
|
-
declare const InvalidPhraseTypography: react__default.FC<TypographyProps>;
|
|
68
|
-
|
|
69
|
-
/** @public */
|
|
70
|
-
interface PhraseHeaderBoxProps extends FlexBoxProps, PropsWithChildren {
|
|
71
|
-
conditional?: boolean | null;
|
|
72
|
-
}
|
|
73
|
-
/** @public */
|
|
74
|
-
declare const PhraseHeaderBox: react__default.FC<PhraseHeaderBoxProps>;
|
|
75
|
-
|
|
76
|
-
/** @public */
|
|
77
|
-
declare const OverwriteWarning: () => react_jsx_runtime.JSX.Element;
|
|
78
|
-
|
|
79
|
-
/** @public */
|
|
80
|
-
interface SeedPhraseDialogProps extends DialogProps {
|
|
81
|
-
changeSeedPhrase?: (value: string) => void;
|
|
82
|
-
dialogTitle?: ReactNode;
|
|
83
|
-
seedPhrase?: string;
|
|
84
|
-
seedPhraseTextFieldTitle?: ReactNode;
|
|
85
|
-
showCopyButton?: boolean;
|
|
86
|
-
}
|
|
87
|
-
/** @public */
|
|
88
|
-
declare const SeedPhraseDialog: react__default.FC<SeedPhraseDialogProps>;
|
|
89
|
-
/** @public */
|
|
90
|
-
declare const SeedPhraseDialogInner: react__default.FC<SeedPhraseDialogProps>;
|
|
91
|
-
|
|
92
|
-
/** @public */
|
|
93
|
-
interface SeedPhraseTableRowProps extends TableRowProps {
|
|
94
|
-
changeSeedPhrase?: (seedPhrase: string) => void;
|
|
95
|
-
seedPhrase?: string;
|
|
96
|
-
}
|
|
97
|
-
/** @public */
|
|
98
|
-
declare const SeedPhraseTableRow: react__default.FC<SeedPhraseTableRowProps>;
|
|
99
|
-
|
|
100
|
-
/** @public */
|
|
101
|
-
interface WalletAccountDetailsProps extends FlexBoxProps {
|
|
102
|
-
account?: WalletInstance;
|
|
103
|
-
exploreUrl?: string;
|
|
104
|
-
}
|
|
105
|
-
/** @public */
|
|
106
|
-
declare const WalletAccountDetails: react__default.FC<WalletAccountDetailsProps>;
|
|
107
|
-
|
|
108
|
-
type SharedAddressRenderRowBoxProps = Pick<AddressRenderRowBoxProps, 'iconOnly' | 'iconSize' | 'icons' | 'showFavorite'>;
|
|
109
|
-
/** @public */
|
|
110
|
-
type WalletAccountSelectProps = SharedAddressRenderRowBoxProps & Omit<SelectProps<number>, 'variant'> & Partial<SelectProps<number>> & {
|
|
111
|
-
addressNames?: Record<string, string | undefined>;
|
|
112
|
-
maxAccounts?: number;
|
|
113
|
-
};
|
|
114
|
-
/** @public */
|
|
115
|
-
declare const WalletAccountSelect: react__default.FC<WalletAccountSelectProps>;
|
|
116
|
-
|
|
117
|
-
/** @public */
|
|
118
|
-
interface WalletAccountSelectBarProps extends FlexBoxProps {
|
|
119
|
-
addressNames?: Record<string, string | undefined>;
|
|
120
|
-
iconOnly?: boolean;
|
|
121
|
-
iconSize?: number;
|
|
122
|
-
icons?: boolean;
|
|
123
|
-
maxAccounts?: number;
|
|
124
|
-
showFavorite?: boolean;
|
|
125
|
-
size?: 'small' | 'medium';
|
|
126
|
-
}
|
|
127
|
-
/** @public */
|
|
128
|
-
declare const WalletAccountSelectBar: react__default.FC<WalletAccountSelectBarProps>;
|
|
129
|
-
|
|
130
|
-
/** @public */
|
|
131
|
-
declare const SeedPhraseContext: react.Context<({
|
|
132
|
-
handleCancelOverwrite?: () => void;
|
|
133
|
-
handleChangeSeedPhrase?: (value: string) => void;
|
|
134
|
-
handleClear?: () => void;
|
|
135
|
-
handleGenerate?: () => void;
|
|
136
|
-
handleSave?: () => void;
|
|
137
|
-
overwriteWarning?: boolean;
|
|
138
|
-
phrase?: string;
|
|
139
|
-
seedPhrase?: string;
|
|
140
|
-
setOverwriteWarning?: react.Dispatch<react.SetStateAction<boolean>>;
|
|
141
|
-
setPhrase?: react.Dispatch<react.SetStateAction<string | undefined>>;
|
|
142
|
-
validPhrase?: boolean | null;
|
|
143
|
-
validSeedPhrase?: boolean | null;
|
|
144
|
-
validate?: (passedPhrase?: string) => boolean | null;
|
|
145
|
-
} & {
|
|
146
|
-
provided: true;
|
|
147
|
-
}) | (_xylabs_react_shared.FixedValues<_xylabs_react_shared.ProvidedContextExState<{
|
|
148
|
-
handleCancelOverwrite?: () => void;
|
|
149
|
-
handleChangeSeedPhrase?: (value: string) => void;
|
|
150
|
-
handleClear?: () => void;
|
|
151
|
-
handleGenerate?: () => void;
|
|
152
|
-
handleSave?: () => void;
|
|
153
|
-
overwriteWarning?: boolean;
|
|
154
|
-
phrase?: string;
|
|
155
|
-
seedPhrase?: string;
|
|
156
|
-
setOverwriteWarning?: react.Dispatch<react.SetStateAction<boolean>>;
|
|
157
|
-
setPhrase?: react.Dispatch<react.SetStateAction<string | undefined>>;
|
|
158
|
-
validPhrase?: boolean | null;
|
|
159
|
-
validSeedPhrase?: boolean | null;
|
|
160
|
-
validate?: (passedPhrase?: string) => boolean | null;
|
|
161
|
-
}>, never> & {
|
|
162
|
-
provided: false;
|
|
163
|
-
}) | (_xylabs_react_shared.FixedValues<_xylabs_react_shared.NotProvidedContextExState<{
|
|
164
|
-
handleCancelOverwrite?: () => void;
|
|
165
|
-
handleChangeSeedPhrase?: (value: string) => void;
|
|
166
|
-
handleClear?: () => void;
|
|
167
|
-
handleGenerate?: () => void;
|
|
168
|
-
handleSave?: () => void;
|
|
169
|
-
overwriteWarning?: boolean;
|
|
170
|
-
phrase?: string;
|
|
171
|
-
seedPhrase?: string;
|
|
172
|
-
setOverwriteWarning?: react.Dispatch<react.SetStateAction<boolean>>;
|
|
173
|
-
setPhrase?: react.Dispatch<react.SetStateAction<string | undefined>>;
|
|
174
|
-
validPhrase?: boolean | null;
|
|
175
|
-
validSeedPhrase?: boolean | null;
|
|
176
|
-
validate?: (passedPhrase?: string) => boolean | null;
|
|
177
|
-
}>, never> & {
|
|
178
|
-
provided: false;
|
|
179
|
-
})>;
|
|
180
|
-
|
|
181
|
-
/** @public */
|
|
182
|
-
interface SeedPhraseProviderProps extends PropsWithChildren {
|
|
183
|
-
defaultPhrase?: string;
|
|
184
|
-
handleChangeSeedPhrase?: (phrase: string) => void;
|
|
185
|
-
open?: boolean;
|
|
186
|
-
saveCallback?: () => void;
|
|
187
|
-
seedPhrase?: string;
|
|
188
|
-
}
|
|
189
|
-
/** @public */
|
|
190
|
-
declare const SeedPhraseProvider: react__default.FC<SeedPhraseProviderProps>;
|
|
191
|
-
|
|
192
|
-
/** @public */
|
|
193
|
-
type SeedPhraseContextState = ContextExState<{
|
|
194
|
-
handleCancelOverwrite?: () => void;
|
|
195
|
-
handleChangeSeedPhrase?: (value: string) => void;
|
|
196
|
-
handleClear?: () => void;
|
|
197
|
-
handleGenerate?: () => void;
|
|
198
|
-
handleSave?: () => void;
|
|
199
|
-
overwriteWarning?: boolean;
|
|
200
|
-
phrase?: string;
|
|
201
|
-
seedPhrase?: string;
|
|
202
|
-
setOverwriteWarning?: Dispatch<SetStateAction<boolean>>;
|
|
203
|
-
setPhrase?: Dispatch<SetStateAction<string | undefined>>;
|
|
204
|
-
validPhrase?: boolean | null;
|
|
205
|
-
validSeedPhrase?: boolean | null;
|
|
206
|
-
validate?: (passedPhrase?: string) => boolean | null;
|
|
207
|
-
}>;
|
|
208
|
-
|
|
209
|
-
/** @public */
|
|
210
|
-
declare const useSeedPhrase: () => Omit<{
|
|
211
|
-
handleCancelOverwrite?: () => void;
|
|
212
|
-
handleChangeSeedPhrase?: (value: string) => void;
|
|
213
|
-
handleClear?: () => void;
|
|
214
|
-
handleGenerate?: () => void;
|
|
215
|
-
handleSave?: () => void;
|
|
216
|
-
overwriteWarning?: boolean;
|
|
217
|
-
phrase?: string;
|
|
218
|
-
seedPhrase?: string;
|
|
219
|
-
setOverwriteWarning?: react.Dispatch<react.SetStateAction<boolean>>;
|
|
220
|
-
setPhrase?: react.Dispatch<react.SetStateAction<string | undefined>>;
|
|
221
|
-
validPhrase?: boolean | null;
|
|
222
|
-
validSeedPhrase?: boolean | null;
|
|
223
|
-
validate?: (passedPhrase?: string) => boolean | null;
|
|
224
|
-
} & {
|
|
225
|
-
provided: true;
|
|
226
|
-
}, "provided"> | Omit<_xylabs_react_shared.NotProvidedContextExState<SeedPhraseContextState>, "provided">;
|
|
227
|
-
|
|
228
|
-
/** @public */
|
|
229
|
-
declare const WalletContext: react.Context<({
|
|
230
|
-
activeAccount?: _xyo_network_wallet_model.WalletInstance | null;
|
|
231
|
-
activeAccountIndex?: number;
|
|
232
|
-
rootWallet?: _xyo_network_wallet_model.WalletInstance | null;
|
|
233
|
-
setActiveAccountIndex?: react.Dispatch<number>;
|
|
234
|
-
} & {
|
|
235
|
-
provided: true;
|
|
236
|
-
}) | (_xylabs_react_shared.FixedValues<_xylabs_react_shared.ProvidedContextExState<{
|
|
237
|
-
activeAccount?: _xyo_network_wallet_model.WalletInstance | null;
|
|
238
|
-
activeAccountIndex?: number;
|
|
239
|
-
rootWallet?: _xyo_network_wallet_model.WalletInstance | null;
|
|
240
|
-
setActiveAccountIndex?: react.Dispatch<number>;
|
|
241
|
-
}>, never> & {
|
|
242
|
-
provided: false;
|
|
243
|
-
}) | (_xylabs_react_shared.FixedValues<_xylabs_react_shared.NotProvidedContextExState<{
|
|
244
|
-
activeAccount?: _xyo_network_wallet_model.WalletInstance | null;
|
|
245
|
-
activeAccountIndex?: number;
|
|
246
|
-
rootWallet?: _xyo_network_wallet_model.WalletInstance | null;
|
|
247
|
-
setActiveAccountIndex?: react.Dispatch<number>;
|
|
248
|
-
}>, never> & {
|
|
249
|
-
provided: false;
|
|
250
|
-
})>;
|
|
251
|
-
|
|
252
|
-
/** @public */
|
|
253
|
-
interface WalletProviderProps {
|
|
254
|
-
defaultActiveAccountIndex?: number;
|
|
255
|
-
rootWallet?: WalletInstance | null;
|
|
256
|
-
}
|
|
257
|
-
/** @public */
|
|
258
|
-
declare const WalletProvider: react__default.FC<PropsWithChildren<WalletProviderProps>>;
|
|
259
|
-
|
|
260
|
-
/** @public */
|
|
261
|
-
type WalletContextState = ContextExState<{
|
|
262
|
-
/** Currently selected account */
|
|
263
|
-
activeAccount?: WalletInstance | null;
|
|
264
|
-
/** Currently selected index */
|
|
265
|
-
activeAccountIndex?: number;
|
|
266
|
-
/** The root wallet being used */
|
|
267
|
-
rootWallet?: WalletInstance | null;
|
|
268
|
-
/** Set currently selected index */
|
|
269
|
-
setActiveAccountIndex?: Dispatch<number>;
|
|
270
|
-
}>;
|
|
271
|
-
|
|
272
|
-
/** @public */
|
|
273
|
-
declare const useWalletContext: (required?: boolean) => Omit<{
|
|
274
|
-
activeAccount?: WalletInstance | null;
|
|
275
|
-
activeAccountIndex?: number;
|
|
276
|
-
rootWallet?: WalletInstance | null;
|
|
277
|
-
setActiveAccountIndex?: react.Dispatch<number>;
|
|
278
|
-
} & {
|
|
279
|
-
provided: true;
|
|
280
|
-
}, "provided"> | Omit<_xylabs_react_shared.NotProvidedContextExState<WalletContextState>, "provided">;
|
|
281
|
-
/** @public */
|
|
282
|
-
declare const useWalletProvided: () => boolean;
|
|
283
|
-
/** @public */
|
|
284
|
-
declare const useRootWallet: (required?: boolean) => [WalletInstance | null | undefined, Error | undefined];
|
|
285
|
-
/** @public */
|
|
286
|
-
declare const useIndexedWalletFromContext: (index: number, required?: boolean) => [WalletInstance | null | undefined, Error | undefined];
|
|
287
|
-
/** @public */
|
|
288
|
-
declare const useSelectedWalletAccount: (required?: boolean) => [WalletInstance | null | undefined, Error | undefined];
|
|
289
|
-
|
|
290
|
-
/** @public */
|
|
291
|
-
interface AccountHookParams {
|
|
292
|
-
account?: AccountInstance;
|
|
293
|
-
index?: number;
|
|
294
|
-
required?: boolean;
|
|
295
|
-
wallet?: WalletInstance;
|
|
296
|
-
}
|
|
297
|
-
/** @public */
|
|
298
|
-
declare const useAccount: ({ wallet, account, index, required, }?: AccountHookParams) => [AccountInstance | null | undefined, Error | undefined];
|
|
299
|
-
|
|
300
|
-
/** @public */
|
|
301
|
-
interface WalletHookParams {
|
|
302
|
-
mnemonic?: string;
|
|
303
|
-
path?: string;
|
|
304
|
-
required?: boolean;
|
|
305
|
-
seed?: ArrayBufferLike | string;
|
|
306
|
-
wallet?: WalletInstance | null;
|
|
307
|
-
}
|
|
308
|
-
/** @public */
|
|
309
|
-
declare const useWallet: ({ mnemonic, wallet, path, required, seed, }?: WalletHookParams) => [WalletInstance | null | undefined, Error | undefined];
|
|
310
|
-
|
|
311
|
-
/** @public */
|
|
312
|
-
interface WalletsHookParams {
|
|
313
|
-
paths: string[];
|
|
314
|
-
wallet?: WalletInstance | null;
|
|
315
|
-
}
|
|
316
|
-
/** @public */
|
|
317
|
-
declare const useWallets: ({ wallet, paths }: WalletsHookParams) => [WalletInstance[] | null | undefined, Error | undefined];
|
|
318
|
-
|
|
319
|
-
/** @public */
|
|
320
|
-
declare const useWrapperAccount: (account?: AccountInstance | null) => [AccountInstance | null | undefined, Error | undefined, UsePromiseState | undefined];
|
|
321
|
-
|
|
322
|
-
export { DefaultSeedPhrase, DialogActionButtons, InvalidPhraseTypography, MaxAccountsTableRow, NewPhraseTextField, OverwriteWarning, PhraseDialogActions, PhraseHeaderBox, SavedPhraseTextField, SeedPhraseContext, SeedPhraseDialog, SeedPhraseDialogInner, SeedPhraseIconButton, SeedPhraseProvider, SeedPhraseTableRow, WalletAccountDetails, WalletAccountSelect, WalletAccountSelectBar, WalletContext, WalletProvider, colorParser, useAccount, useIndexedWalletFromContext, useRootWallet, useSeedPhrase, useSelectedWalletAccount, useWallet, useWalletContext, useWalletProvided, useWallets, useWrapperAccount };
|
|
323
|
-
export type { AccountHookParams, DefaultSeedPhraseProps, DialogActionButtonsProps, NewPhraseTextFieldProps, PhraseHeaderBoxProps, SavedPhraseTextFieldProps, SeedPhraseContextState, SeedPhraseDialogProps, SeedPhraseProviderProps, SeedPhraseTableRowProps, WalletAccountDetailsProps, WalletAccountSelectBarProps, WalletAccountSelectProps, WalletContextState, WalletHookParams, WalletProviderProps, WalletsHookParams };
|
|
1
|
+
export * from './components/index.ts';
|
|
2
|
+
export * from './contexts/index.ts';
|
|
3
|
+
export * from './hooks/index.ts';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/react-wallet",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.2",
|
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xyo",
|
|
@@ -40,38 +40,38 @@
|
|
|
40
40
|
"types": "dist/browser/index.d.ts",
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@scure/bip39": "^1.6.0",
|
|
43
|
-
"@xylabs/eth-address": "^4.13.
|
|
44
|
-
"@xylabs/react-button": "^6.3.
|
|
45
|
-
"@xylabs/react-crypto": "^6.3.
|
|
46
|
-
"@xylabs/react-flexbox": "^6.3.
|
|
47
|
-
"@xylabs/react-hooks": "^6.3.
|
|
48
|
-
"@xylabs/react-number-status": "^6.3.
|
|
49
|
-
"@xylabs/react-promise": "^6.3.
|
|
50
|
-
"@xylabs/react-select": "^6.3.
|
|
51
|
-
"@xylabs/react-shared": "^6.3.
|
|
52
|
-
"@xyo-network/account-model": "^4.1.
|
|
53
|
-
"@xyo-network/react-address-render": "^6.1.
|
|
54
|
-
"@xyo-network/react-network": "^6.1.
|
|
55
|
-
"@xyo-network/wallet": "^4.1.
|
|
56
|
-
"@xyo-network/wallet-model": "^4.1.
|
|
43
|
+
"@xylabs/eth-address": "^4.13.21",
|
|
44
|
+
"@xylabs/react-button": "^6.3.13",
|
|
45
|
+
"@xylabs/react-crypto": "^6.3.13",
|
|
46
|
+
"@xylabs/react-flexbox": "^6.3.13",
|
|
47
|
+
"@xylabs/react-hooks": "^6.3.13",
|
|
48
|
+
"@xylabs/react-number-status": "^6.3.13",
|
|
49
|
+
"@xylabs/react-promise": "^6.3.13",
|
|
50
|
+
"@xylabs/react-select": "^6.3.13",
|
|
51
|
+
"@xylabs/react-shared": "^6.3.13",
|
|
52
|
+
"@xyo-network/account-model": "^4.1.4",
|
|
53
|
+
"@xyo-network/react-address-render": "^6.1.2",
|
|
54
|
+
"@xyo-network/react-network": "^6.1.2",
|
|
55
|
+
"@xyo-network/wallet": "^4.1.4",
|
|
56
|
+
"@xyo-network/wallet-model": "^4.1.4",
|
|
57
57
|
"async-mutex": "^0.5.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@microsoft/api-extractor": "^7.52.8",
|
|
61
61
|
"@mui/icons-material": "^7.2.0",
|
|
62
62
|
"@mui/material": "^7.2.0",
|
|
63
|
-
"@storybook/react-vite": "^9.0.
|
|
63
|
+
"@storybook/react-vite": "^9.0.17",
|
|
64
64
|
"@types/react": "^19.1.8",
|
|
65
|
-
"@xylabs/enum": "^4.13.
|
|
66
|
-
"@xylabs/react-identicon": "^6.3.
|
|
67
|
-
"@xylabs/react-quick-tip-button": "^6.3.
|
|
68
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0
|
|
65
|
+
"@xylabs/enum": "^4.13.21",
|
|
66
|
+
"@xylabs/react-identicon": "^6.3.13",
|
|
67
|
+
"@xylabs/react-quick-tip-button": "^6.3.13",
|
|
68
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0",
|
|
69
69
|
"@xylabs/tsconfig-react": "^7.0.0-rc.23",
|
|
70
|
-
"@xyo-network/react-storybook": "^6.1.
|
|
70
|
+
"@xyo-network/react-storybook": "^6.1.2",
|
|
71
71
|
"react": "^19.1.0",
|
|
72
72
|
"react-dom": "^19.1.0",
|
|
73
|
-
"react-router-dom": "^7.
|
|
74
|
-
"storybook": "^9.0.
|
|
73
|
+
"react-router-dom": "^7.7.0",
|
|
74
|
+
"storybook": "^9.0.17",
|
|
75
75
|
"typescript": "^5.8.3"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|