@xyo-network/react-chain-provider 1.16.13 → 1.16.15

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.
Files changed (2) hide show
  1. package/README.md +2883 -63
  2. package/package.json +9 -10
package/README.md CHANGED
@@ -18,15 +18,40 @@ XYO Layer One API
18
18
 
19
19
  ***
20
20
 
21
+ ## Classes
22
+
23
+ - [TransactionConfirmationStatus](#classes/TransactionConfirmationStatus)
24
+
25
+ ## Interfaces
26
+
27
+ - [ConnectClientAccountsStackProps](#interfaces/ConnectClientAccountsStackProps)
28
+ - [AccountBalanceHistoryItemFormatted](#interfaces/AccountBalanceHistoryItemFormatted)
29
+
30
+ ## Type Aliases
31
+
32
+ - [BalanceTransactionType](#type-aliases/BalanceTransactionType)
33
+ - [ConfirmationStatusUpdate](#type-aliases/ConfirmationStatusUpdate)
34
+ - [TransactionConfirmationParams](#type-aliases/TransactionConfirmationParams)
35
+
36
+ ## Variables
37
+
38
+ - [ConnectAccountsStack](#variables/ConnectAccountsStack)
39
+ - [ConnectedAccount](#variables/ConnectedAccount)
40
+
21
41
  ## Functions
22
42
 
43
+ - [formatAccountBalanceHistory](#functions/formatAccountBalanceHistory)
44
+ - [useAccountBalanceHistory](#functions/useAccountBalanceHistory)
45
+ - [usePermissions](#functions/usePermissions)
46
+ - [useAccountPermissions](#functions/useAccountPermissions)
47
+ - [useClient](#functions/useClient)
48
+ - [useGateway](#functions/useGateway)
23
49
  - [listenForClientInjection](#functions/listenForClientInjection)
24
50
  - [getXyoClient](#functions/getXyoClient)
25
51
  - [useAddressBalance](#functions/useAddressBalance)
26
- - [useClient](#functions/useClient)
52
+ - [useConfirmTransactionBase](#functions/useConfirmTransactionBase)
27
53
  - [useConnectAccount](#functions/useConnectAccount)
28
54
  - [useCurrentBlock](#functions/useCurrentBlock)
29
- - [useGateway](#functions/useGateway)
30
55
  - [useHttpRpcRunner](#functions/useHttpRpcRunner)
31
56
  - [useNetwork](#functions/useNetwork)
32
57
  - [useSigner](#functions/useSigner)
@@ -35,9 +60,245 @@ XYO Layer One API
35
60
  - [useCheckRpc](#functions/useCheckRpc)
36
61
  - [useHttpRpcViewer](#functions/useHttpRpcViewer)
37
62
  - [useViewerFromWallet](#functions/useViewerFromWallet)
63
+ - [balanceForRange](#functions/balanceForRange)
64
+ - [findMinimumBlock](#functions/findMinimumBlock)
65
+
66
+ ### classes
67
+
68
+ ### <a id="TransactionConfirmationStatus"></a>TransactionConfirmationStatus
69
+
70
+ [**@xyo-network/react-chain-provider**](#../README)
71
+
72
+ ***
73
+
74
+ ## Constructors
75
+
76
+ ### Constructor
77
+
78
+ ```ts
79
+ new TransactionConfirmationStatus(params): TransactionConfirmationStatus;
80
+ ```
81
+
82
+ ### Parameters
83
+
84
+ #### params
85
+
86
+ [`TransactionConfirmationParams`](#../type-aliases/TransactionConfirmationParams)
87
+
88
+ ### Returns
89
+
90
+ `TransactionConfirmationStatus`
91
+
92
+ ## Accessors
93
+
94
+ ### exp
95
+
96
+ ### Get Signature
97
+
98
+ ```ts
99
+ get exp(): number;
100
+ ```
101
+
102
+ #### Returns
103
+
104
+ `number`
105
+
106
+ ***
107
+
108
+ ### nbf
109
+
110
+ ### Get Signature
111
+
112
+ ```ts
113
+ get nbf(): number;
114
+ ```
115
+
116
+ #### Returns
117
+
118
+ `number`
119
+
120
+ ***
121
+
122
+ ### onStatusUpdate
123
+
124
+ ### Get Signature
125
+
126
+ ```ts
127
+ get onStatusUpdate(): (status) => void | undefined;
128
+ ```
129
+
130
+ #### Returns
131
+
132
+ (`status`) => `void` \| `undefined`
133
+
134
+ ***
135
+
136
+ ### params
137
+
138
+ ### Get Signature
139
+
140
+ ```ts
141
+ get params(): TransactionConfirmationParams;
142
+ ```
143
+
144
+ #### Returns
145
+
146
+ [`TransactionConfirmationParams`](#../type-aliases/TransactionConfirmationParams)
147
+
148
+ ***
149
+
150
+ ### transaction
151
+
152
+ ### Get Signature
153
+
154
+ ```ts
155
+ get transaction(): SignedHydratedTransaction;
156
+ ```
157
+
158
+ #### Returns
159
+
160
+ `SignedHydratedTransaction`
161
+
162
+ ***
163
+
164
+ ### txHash
165
+
166
+ ### Get Signature
167
+
168
+ ```ts
169
+ get txHash(): Hash;
170
+ ```
171
+
172
+ #### Returns
173
+
174
+ `Hash`
175
+
176
+ ***
177
+
178
+ ### viewer
179
+
180
+ ### Get Signature
181
+
182
+ ```ts
183
+ get viewer(): XyoViewer;
184
+ ```
185
+
186
+ #### Returns
187
+
188
+ `XyoViewer`
189
+
190
+ ## Methods
191
+
192
+ ### create()
193
+
194
+ ```ts
195
+ static create(params): Promisable<TransactionConfirmationStatus>;
196
+ ```
197
+
198
+ ### Parameters
199
+
200
+ #### params
201
+
202
+ [`TransactionConfirmationParams`](#../type-aliases/TransactionConfirmationParams)
203
+
204
+ ### Returns
205
+
206
+ `Promisable`\<`TransactionConfirmationStatus`\>
207
+
208
+ ***
209
+
210
+ ### start()
211
+
212
+ ```ts
213
+ start(): Promise<void>;
214
+ ```
215
+
216
+ ### Returns
217
+
218
+ `Promise`\<`void`\>
219
+
220
+ ***
221
+
222
+ ### stop()
223
+
224
+ ```ts
225
+ stop(): Promisable<void>;
226
+ ```
227
+
228
+ ### Returns
229
+
230
+ `Promisable`\<`void`\>
38
231
 
39
232
  ### functions
40
233
 
234
+ ### <a id="balanceForRange"></a>balanceForRange
235
+
236
+ [**@xyo-network/react-chain-provider**](#../README)
237
+
238
+ ***
239
+
240
+ ```ts
241
+ function balanceForRange(address, results): [AttoXL1, AttoXL1];
242
+ ```
243
+
244
+ ## Parameters
245
+
246
+ ### address
247
+
248
+ `Address`
249
+
250
+ ### results
251
+
252
+ `AccountBalanceHistoryItem`[]
253
+
254
+ ## Returns
255
+
256
+ \[`AttoXL1`, `AttoXL1`\]
257
+
258
+ ### <a id="findMinimumBlock"></a>findMinimumBlock
259
+
260
+ [**@xyo-network/react-chain-provider**](#../README)
261
+
262
+ ***
263
+
264
+ ```ts
265
+ function findMinimumBlock(history): number;
266
+ ```
267
+
268
+ ## Parameters
269
+
270
+ ### history
271
+
272
+ `AccountBalanceHistoryItem`[]
273
+
274
+ ## Returns
275
+
276
+ `number`
277
+
278
+ ### <a id="formatAccountBalanceHistory"></a>formatAccountBalanceHistory
279
+
280
+ [**@xyo-network/react-chain-provider**](#../README)
281
+
282
+ ***
283
+
284
+ ```ts
285
+ function formatAccountBalanceHistory(address, history): AccountBalanceHistoryItemFormatted[];
286
+ ```
287
+
288
+ ## Parameters
289
+
290
+ ### address
291
+
292
+ `Address`
293
+
294
+ ### history
295
+
296
+ `AccountBalanceHistoryItem`[]
297
+
298
+ ## Returns
299
+
300
+ [`AccountBalanceHistoryItemFormatted`](#../interfaces/AccountBalanceHistoryItemFormatted)[]
301
+
41
302
  ### <a id="getXyoClient"></a>getXyoClient
42
303
 
43
304
  [**@xyo-network/react-chain-provider**](#../README)
@@ -45,12 +306,18 @@ XYO Layer One API
45
306
  ***
46
307
 
47
308
  ```ts
48
- function getXyoClient(): Promise<undefined | XyoClient>;
309
+ function getXyoClient(timeout): Promise<ReturnType>;
49
310
  ```
50
311
 
312
+ ## Parameters
313
+
314
+ ### timeout
315
+
316
+ `number` = `CLIENT_LISTENER_TIMEOUT`
317
+
51
318
  ## Returns
52
319
 
53
- `Promise`\<`undefined` \| `XyoClient`\>
320
+ `Promise`\<`ReturnType`\>
54
321
 
55
322
  ### <a id="listenForClientInjection"></a>listenForClientInjection
56
323
 
@@ -59,7 +326,10 @@ function getXyoClient(): Promise<undefined | XyoClient>;
59
326
  ***
60
327
 
61
328
  ```ts
62
- function listenForClientInjection(onClientReady, onTimeout): void;
329
+ function listenForClientInjection(
330
+ onClientReady,
331
+ timeout,
332
+ onTimeout): void;
63
333
  ```
64
334
 
65
335
  ## Parameters
@@ -68,6 +338,10 @@ function listenForClientInjection(onClientReady, onTimeout): void;
68
338
 
69
339
  () => `void`
70
340
 
341
+ ### timeout
342
+
343
+ `number`
344
+
71
345
  ### onTimeout
72
346
 
73
347
  () => `void`
@@ -76,6 +350,63 @@ function listenForClientInjection(onClientReady, onTimeout): void;
76
350
 
77
351
  `void`
78
352
 
353
+ ### <a id="useAccountBalanceHistory"></a>useAccountBalanceHistory
354
+
355
+ [**@xyo-network/react-chain-provider**](#../README)
356
+
357
+ ***
358
+
359
+ ```ts
360
+ function useAccountBalanceHistory(
361
+ address?,
362
+ viewer?,
363
+ refresh?): [
364
+ | {
365
+ history: AccountBalanceHistoryItemFormatted[];
366
+ balance: [AttoXL1, AttoXL1];
367
+ truncated: boolean;
368
+ }
369
+ | undefined, Error | undefined, UsePromiseState | undefined];
370
+ ```
371
+
372
+ ## Parameters
373
+
374
+ ### address?
375
+
376
+ `Address`
377
+
378
+ ### viewer?
379
+
380
+ `XyoViewer`
381
+
382
+ ### refresh?
383
+
384
+ `number`
385
+
386
+ ## Returns
387
+
388
+ \[
389
+ \| \{
390
+ `history`: [`AccountBalanceHistoryItemFormatted`](#../interfaces/AccountBalanceHistoryItemFormatted)[];
391
+ `balance`: \[`AttoXL1`, `AttoXL1`\];
392
+ `truncated`: `boolean`;
393
+ \}
394
+ \| `undefined`, `Error` \| `undefined`, `UsePromiseState` \| `undefined`\]
395
+
396
+ ### <a id="useAccountPermissions"></a>useAccountPermissions
397
+
398
+ [**@xyo-network/react-chain-provider**](#../README)
399
+
400
+ ***
401
+
402
+ ```ts
403
+ function useAccountPermissions(): [readonly string[] | undefined, Error | undefined, UsePromiseState | undefined];
404
+ ```
405
+
406
+ ## Returns
407
+
408
+ \[readonly `string`[] \| `undefined`, `Error` \| `undefined`, `UsePromiseState` \| `undefined`\]
409
+
79
410
  ### <a id="useAddressBalance"></a>useAddressBalance
80
411
 
81
412
  [**@xyo-network/react-chain-provider**](#../README)
@@ -93,9 +424,7 @@ function useAddressBalance(
93
424
 
94
425
  ### address?
95
426
 
96
- `Brand`\<`Brand`\<`Lowercase`\<`string`\>, \{
97
- \}\>, \{
98
- \}\>
427
+ `Address`
99
428
 
100
429
  ### viewer?
101
430
 
@@ -112,35 +441,31 @@ function useAddressBalance(
112
441
  ### address
113
442
 
114
443
  ```ts
115
- address:
116
- | undefined
117
- | Brand<Brand<Lowercase<string>, {
118
- }>, {
119
- }>;
444
+ address: Address | undefined;
120
445
  ```
121
446
 
122
447
  ### balanceForAddress
123
448
 
124
449
  ```ts
125
- balanceForAddress: undefined | null | AttoXL1 = balancesResult;
450
+ balanceForAddress: AttoXL1 | null | undefined = balancesResult;
126
451
  ```
127
452
 
128
453
  ### balanceIntlFriendly
129
454
 
130
455
  ```ts
131
- balanceIntlFriendly: undefined | string;
456
+ balanceIntlFriendly: string | undefined;
132
457
  ```
133
458
 
134
459
  ### shortBalanceIntlFriendly
135
460
 
136
461
  ```ts
137
- shortBalanceIntlFriendly: undefined | string;
462
+ shortBalanceIntlFriendly: string | undefined;
138
463
  ```
139
464
 
140
465
  ### error
141
466
 
142
467
  ```ts
143
- error: undefined | Error = balancesError;
468
+ error: Error | undefined = balancesError;
144
469
  ```
145
470
 
146
471
  ### loading
@@ -172,7 +497,7 @@ isLocalProducer: boolean;
172
497
  ### error
173
498
 
174
499
  ```ts
175
- error: undefined | Error;
500
+ error: Error | undefined;
176
501
  ```
177
502
 
178
503
  ### <a id="useCheckRpc"></a>useCheckRpc
@@ -204,7 +529,7 @@ isLocalProducer: boolean;
204
529
  ### error
205
530
 
206
531
  ```ts
207
- error: undefined | Error;
532
+ error: Error | undefined;
208
533
  ```
209
534
 
210
535
  ### <a id="useCheckSequenceRpc"></a>useCheckSequenceRpc
@@ -230,7 +555,7 @@ isLocalProducer: boolean;
230
555
  ### error
231
556
 
232
557
  ```ts
233
- error: undefined | Error;
558
+ error: Error | undefined;
234
559
  ```
235
560
 
236
561
  ### <a id="useClient"></a>useClient
@@ -240,82 +565,155 @@ error: undefined | Error;
240
565
  ***
241
566
 
242
567
  ```ts
243
- function useClient(): ClientState;
568
+ function useClient(timeout?): ClientState;
244
569
  ```
245
570
 
571
+ ## Parameters
572
+
573
+ ### timeout?
574
+
575
+ `number`
576
+
246
577
  ## Returns
247
578
 
248
579
  `ClientState`
249
580
 
250
- ### <a id="useConnectAccount"></a>useConnectAccount
581
+ ### <a id="useConfirmTransactionBase"></a>useConfirmTransactionBase
251
582
 
252
583
  [**@xyo-network/react-chain-provider**](#../README)
253
584
 
254
585
  ***
255
586
 
256
587
  ```ts
257
- function useConnectAccount(gatewayName): object;
588
+ function useConfirmTransactionBase(
589
+ transaction?,
590
+ onBroadcast?,
591
+ onStatusUpdate?,
592
+ runner?,
593
+ viewer?): object;
258
594
  ```
259
595
 
260
596
  ## Parameters
261
597
 
262
- ### gatewayName
598
+ ### transaction?
263
599
 
264
- `GatewayName` = `MainNetwork.id`
600
+ `SignedHydratedTransaction`
265
601
 
266
- ## Returns
602
+ ### onBroadcast?
267
603
 
268
- `object`
604
+ (`hash`) => `void`
269
605
 
270
- ### address
606
+ ### onStatusUpdate?
271
607
 
272
- ```ts
273
- address: undefined | string;
274
- ```
608
+ (`status`) => `void`
275
609
 
276
- ### connectSigner()
610
+ ### runner?
277
611
 
278
- ```ts
279
- connectSigner: () => Promise<Brand<Brand<Lowercase<string>, {
280
- }>, {
281
- }>>;
282
- ```
612
+ `XyoRunner`
283
613
 
284
- ### Returns
614
+ ### viewer?
285
615
 
286
- `Promise`\<`Brand`\<`Brand`\<`Lowercase`\<`string`\>, \{
287
- \}\>, \{
288
- \}\>\>
616
+ `XyoViewer`
289
617
 
290
- ### error
618
+ ## Returns
619
+
620
+ `object`
621
+
622
+ ### status
291
623
 
292
624
  ```ts
293
- error: null | Error;
625
+ status:
626
+ | ConfirmationStatusUpdate
627
+ | undefined;
294
628
  ```
295
629
 
296
- ### <a id="useCurrentBlock"></a>useCurrentBlock
630
+ ### transactionConfirmationError
631
+
632
+ ```ts
633
+ transactionConfirmationError: Error | undefined;
634
+ ```
635
+
636
+ ### <a id="useConnectAccount"></a>useConnectAccount
297
637
 
298
638
  [**@xyo-network/react-chain-provider**](#../README)
299
639
 
300
640
  ***
301
641
 
302
642
  ```ts
303
- function useCurrentBlock(refresh, viewer?): [undefined | HydratedBlock, undefined | Error, undefined | UsePromiseState];
643
+ function useConnectAccount(gatewayName, timeout?): object;
304
644
  ```
305
645
 
306
646
  ## Parameters
307
647
 
308
- ### refresh
648
+ ### gatewayName
309
649
 
310
- `number` = `1`
650
+ `GatewayName` = `MainNetwork.id`
311
651
 
312
- ### viewer?
652
+ ### timeout?
313
653
 
314
- `XyoViewer`
654
+ `number`
655
+
656
+ ## Returns
657
+
658
+ `object`
659
+
660
+ ### address
661
+
662
+ ```ts
663
+ address: Address | undefined;
664
+ ```
665
+
666
+ ### connectSigner()
667
+
668
+ ```ts
669
+ connectSigner: () => Promise<Address | undefined>;
670
+ ```
671
+
672
+ ### Returns
673
+
674
+ `Promise`\<`Address` \| `undefined`\>
675
+
676
+ ### error
677
+
678
+ ```ts
679
+ error: Error | undefined;
680
+ ```
681
+
682
+ ### gateway
683
+
684
+ ```ts
685
+ gateway: XyoGateway | null | undefined;
686
+ ```
687
+
688
+ ### timedout
689
+
690
+ ```ts
691
+ timedout: boolean;
692
+ ```
693
+
694
+ ### <a id="useCurrentBlock"></a>useCurrentBlock
695
+
696
+ [**@xyo-network/react-chain-provider**](#../README)
697
+
698
+ ***
699
+
700
+ ```ts
701
+ function useCurrentBlock(refresh, viewer?): [HydratedBlock | undefined, Error | undefined, UsePromiseState | undefined];
702
+ ```
703
+
704
+ ## Parameters
705
+
706
+ ### refresh
707
+
708
+ `number` = `1`
709
+
710
+ ### viewer?
711
+
712
+ `XyoViewer` | `null`
315
713
 
316
714
  ## Returns
317
715
 
318
- \[`undefined` \| `HydratedBlock`, `undefined` \| `Error`, `undefined` \| `UsePromiseState`\]
716
+ \[`HydratedBlock` \| `undefined`, `Error` \| `undefined`, `UsePromiseState` \| `undefined`\]
319
717
 
320
718
  ### <a id="useGateway"></a>useGateway
321
719
 
@@ -324,7 +722,7 @@ function useCurrentBlock(refresh, viewer?): [undefined | HydratedBlock, undefine
324
722
  ***
325
723
 
326
724
  ```ts
327
- function useGateway(gatewayName?): object;
725
+ function useGateway(gatewayName?, timeout?): object;
328
726
  ```
329
727
 
330
728
  ## Parameters
@@ -333,6 +731,10 @@ function useGateway(gatewayName?): object;
333
731
 
334
732
  `GatewayName`
335
733
 
734
+ ### timeout?
735
+
736
+ `number`
737
+
336
738
  ## Returns
337
739
 
338
740
  `object`
@@ -340,7 +742,7 @@ function useGateway(gatewayName?): object;
340
742
  ### gateway
341
743
 
342
744
  ```ts
343
- gateway: undefined | XyoGatewayProvider;
745
+ gateway: XyoGateway | null | undefined;
344
746
  ```
345
747
 
346
748
  ### isLoading
@@ -352,7 +754,13 @@ isLoading: boolean;
352
754
  ### error
353
755
 
354
756
  ```ts
355
- error: null | Error;
757
+ error: Error | null;
758
+ ```
759
+
760
+ ### timedout
761
+
762
+ ```ts
763
+ timedout: boolean;
356
764
  ```
357
765
 
358
766
  ### <a id="useHttpRpcRunner"></a>useHttpRpcRunner
@@ -362,7 +770,7 @@ error: null | Error;
362
770
  ***
363
771
 
364
772
  ```ts
365
- function useHttpRpcRunner(url?): undefined | JsonRpcXyoRunner;
773
+ function useHttpRpcRunner(url?): JsonRpcXyoRunner | undefined;
366
774
  ```
367
775
 
368
776
  ## Parameters
@@ -373,7 +781,7 @@ function useHttpRpcRunner(url?): undefined | JsonRpcXyoRunner;
373
781
 
374
782
  ## Returns
375
783
 
376
- `undefined` \| `JsonRpcXyoRunner`
784
+ `JsonRpcXyoRunner` \| `undefined`
377
785
 
378
786
  ### <a id="useHttpRpcViewer"></a>useHttpRpcViewer
379
787
 
@@ -382,7 +790,7 @@ function useHttpRpcRunner(url?): undefined | JsonRpcXyoRunner;
382
790
  ***
383
791
 
384
792
  ```ts
385
- function useHttpRpcViewer(url?): undefined | JsonRpcXyoViewer;
793
+ function useHttpRpcViewer(url?): JsonRpcXyoViewer | undefined;
386
794
  ```
387
795
 
388
796
  ## Parameters
@@ -393,7 +801,7 @@ function useHttpRpcViewer(url?): undefined | JsonRpcXyoViewer;
393
801
 
394
802
  ## Returns
395
803
 
396
- `undefined` \| `JsonRpcXyoViewer`
804
+ `JsonRpcXyoViewer` \| `undefined`
397
805
 
398
806
  ### <a id="useNetwork"></a>useNetwork
399
807
 
@@ -402,7 +810,7 @@ function useHttpRpcViewer(url?): undefined | JsonRpcXyoViewer;
402
810
  ***
403
811
 
404
812
  ```ts
405
- function useNetwork(id?): undefined | MemoryXyoNetwork;
813
+ function useNetwork(id?): SimpleXyoNetwork | undefined;
406
814
  ```
407
815
 
408
816
  ## Parameters
@@ -413,7 +821,45 @@ function useNetwork(id?): undefined | MemoryXyoNetwork;
413
821
 
414
822
  ## Returns
415
823
 
416
- `undefined` \| `MemoryXyoNetwork`
824
+ `SimpleXyoNetwork` \| `undefined`
825
+
826
+ ### <a id="usePermissions"></a>usePermissions
827
+
828
+ [**@xyo-network/react-chain-provider**](#../README)
829
+
830
+ ***
831
+
832
+ ```ts
833
+ function usePermissions(): object;
834
+ ```
835
+
836
+ ## Returns
837
+
838
+ `object`
839
+
840
+ ### permissions
841
+
842
+ ```ts
843
+ permissions: XyoPermissions | undefined;
844
+ ```
845
+
846
+ ### isLoading
847
+
848
+ ```ts
849
+ isLoading: boolean;
850
+ ```
851
+
852
+ ### error
853
+
854
+ ```ts
855
+ error: Error | null;
856
+ ```
857
+
858
+ ### timedout
859
+
860
+ ```ts
861
+ timedout: boolean;
862
+ ```
417
863
 
418
864
  ### <a id="useSigner"></a>useSigner
419
865
 
@@ -422,7 +868,7 @@ function useNetwork(id?): undefined | MemoryXyoNetwork;
422
868
  ***
423
869
 
424
870
  ```ts
425
- function useSigner(_provider?, account?): undefined | XyoSigner;
871
+ function useSigner(_provider?, account?): XyoSigner | undefined;
426
872
  ```
427
873
 
428
874
  ## Parameters
@@ -437,7 +883,7 @@ function useSigner(_provider?, account?): undefined | XyoSigner;
437
883
 
438
884
  ## Returns
439
885
 
440
- `undefined` \| `XyoSigner`
886
+ `XyoSigner` \| `undefined`
441
887
 
442
888
  ### <a id="useViewerFromWallet"></a>useViewerFromWallet
443
889
 
@@ -446,7 +892,7 @@ function useSigner(_provider?, account?): undefined | XyoSigner;
446
892
  ***
447
893
 
448
894
  ```ts
449
- function useViewerFromWallet(networkId?): any;
895
+ function useViewerFromWallet(networkId?, timeout?): [XyoViewer | null | undefined, Error | undefined, UsePromiseState | undefined];
450
896
  ```
451
897
 
452
898
  Creates a JsonRpcXyoViewer instance based on the provided networkId.
@@ -459,13 +905,2387 @@ Creates a JsonRpcXyoViewer instance based on the provided networkId.
459
905
 
460
906
  a network id like 'sequence', 'local', etc.
461
907
 
908
+ ### timeout?
909
+
910
+ `number`
911
+
462
912
  ## Returns
463
913
 
464
- `any`
914
+ \[`XyoViewer` \| `null` \| `undefined`, `Error` \| `undefined`, `UsePromiseState` \| `undefined`\]
465
915
 
466
916
  An instance of XyoViewer if the networkId is found in wallet gateways
467
917
  otherwise undefined.
468
918
 
919
+ ### interfaces
920
+
921
+ ### <a id="AccountBalanceHistoryItemFormatted"></a>AccountBalanceHistoryItemFormatted
922
+
923
+ [**@xyo-network/react-chain-provider**](#../README)
924
+
925
+ ***
926
+
927
+ ## Properties
928
+
929
+ ### amount
930
+
931
+ ```ts
932
+ amount: bigint;
933
+ ```
934
+
935
+ ***
936
+
937
+ ### blockNumber
938
+
939
+ ```ts
940
+ blockNumber: number;
941
+ ```
942
+
943
+ ***
944
+
945
+ ### debug
946
+
947
+ ```ts
948
+ debug: AccountBalanceHistoryItem;
949
+ ```
950
+
951
+ ***
952
+
953
+ ### from
954
+
955
+ ```ts
956
+ from: Address;
957
+ ```
958
+
959
+ ***
960
+
961
+ ### key
962
+
963
+ ```ts
964
+ key: string;
965
+ ```
966
+
967
+ ***
968
+
969
+ ### timestamp
970
+
971
+ ```ts
972
+ timestamp: number;
973
+ ```
974
+
975
+ ***
976
+
977
+ ### to
978
+
979
+ ```ts
980
+ to: Address;
981
+ ```
982
+
983
+ ***
984
+
985
+ ### txHash
986
+
987
+ ```ts
988
+ txHash: Hash | undefined;
989
+ ```
990
+
991
+ ***
992
+
993
+ ### type
994
+
995
+ ```ts
996
+ type: BalanceTransactionType;
997
+ ```
998
+
999
+ ### <a id="ConnectClientAccountsStackProps"></a>ConnectClientAccountsStackProps
1000
+
1001
+ [**@xyo-network/react-chain-provider**](#../README)
1002
+
1003
+ ***
1004
+
1005
+ ## Extends
1006
+
1007
+ - `StackProps`
1008
+
1009
+ ## Properties
1010
+
1011
+ ### border?
1012
+
1013
+ ```ts
1014
+ optional border:
1015
+ | ResponsiveStyleValue<
1016
+ | number
1017
+ | string & object
1018
+ | "inset"
1019
+ | "hidden"
1020
+ | "-moz-initial"
1021
+ | "inherit"
1022
+ | "initial"
1023
+ | "revert"
1024
+ | "revert-layer"
1025
+ | "unset"
1026
+ | "medium"
1027
+ | "thick"
1028
+ | "thin"
1029
+ | "dashed"
1030
+ | "dotted"
1031
+ | "double"
1032
+ | "groove"
1033
+ | "none"
1034
+ | "outset"
1035
+ | "ridge"
1036
+ | "solid"
1037
+ | "aliceblue"
1038
+ | "antiquewhite"
1039
+ | "aqua"
1040
+ | "aquamarine"
1041
+ | "azure"
1042
+ | "beige"
1043
+ | "bisque"
1044
+ | "black"
1045
+ | "blanchedalmond"
1046
+ | "blue"
1047
+ | "blueviolet"
1048
+ | "brown"
1049
+ | "burlywood"
1050
+ | "cadetblue"
1051
+ | "chartreuse"
1052
+ | "chocolate"
1053
+ | "coral"
1054
+ | "cornflowerblue"
1055
+ | "cornsilk"
1056
+ | "crimson"
1057
+ | "cyan"
1058
+ | "darkblue"
1059
+ | "darkcyan"
1060
+ | "darkgoldenrod"
1061
+ | "darkgray"
1062
+ | "darkgreen"
1063
+ | "darkgrey"
1064
+ | "darkkhaki"
1065
+ | "darkmagenta"
1066
+ | "darkolivegreen"
1067
+ | "darkorange"
1068
+ | "darkorchid"
1069
+ | "darkred"
1070
+ | "darksalmon"
1071
+ | "darkseagreen"
1072
+ | "darkslateblue"
1073
+ | "darkslategray"
1074
+ | "darkslategrey"
1075
+ | "darkturquoise"
1076
+ | "darkviolet"
1077
+ | "deeppink"
1078
+ | "deepskyblue"
1079
+ | "dimgray"
1080
+ | "dimgrey"
1081
+ | "dodgerblue"
1082
+ | "firebrick"
1083
+ | "floralwhite"
1084
+ | "forestgreen"
1085
+ | "fuchsia"
1086
+ | "gainsboro"
1087
+ | "ghostwhite"
1088
+ | "gold"
1089
+ | "goldenrod"
1090
+ | "gray"
1091
+ | "green"
1092
+ | "greenyellow"
1093
+ | "grey"
1094
+ | "honeydew"
1095
+ | "hotpink"
1096
+ | "indianred"
1097
+ | "indigo"
1098
+ | "ivory"
1099
+ | "khaki"
1100
+ | "lavender"
1101
+ | "lavenderblush"
1102
+ | "lawngreen"
1103
+ | "lemonchiffon"
1104
+ | "lightblue"
1105
+ | "lightcoral"
1106
+ | "lightcyan"
1107
+ | "lightgoldenrodyellow"
1108
+ | "lightgray"
1109
+ | "lightgreen"
1110
+ | "lightgrey"
1111
+ | "lightpink"
1112
+ | "lightsalmon"
1113
+ | "lightseagreen"
1114
+ | "lightskyblue"
1115
+ | "lightslategray"
1116
+ | "lightslategrey"
1117
+ | "lightsteelblue"
1118
+ | "lightyellow"
1119
+ | "lime"
1120
+ | "limegreen"
1121
+ | "linen"
1122
+ | "magenta"
1123
+ | "maroon"
1124
+ | "mediumaquamarine"
1125
+ | "mediumblue"
1126
+ | "mediumorchid"
1127
+ | "mediumpurple"
1128
+ | "mediumseagreen"
1129
+ | "mediumslateblue"
1130
+ | "mediumspringgreen"
1131
+ | "mediumturquoise"
1132
+ | "mediumvioletred"
1133
+ | "midnightblue"
1134
+ | "mintcream"
1135
+ | "mistyrose"
1136
+ | "moccasin"
1137
+ | "navajowhite"
1138
+ | "navy"
1139
+ | "oldlace"
1140
+ | "olive"
1141
+ | "olivedrab"
1142
+ | "orange"
1143
+ | "orangered"
1144
+ | "orchid"
1145
+ | "palegoldenrod"
1146
+ | "palegreen"
1147
+ | "paleturquoise"
1148
+ | "palevioletred"
1149
+ | "papayawhip"
1150
+ | "peachpuff"
1151
+ | "peru"
1152
+ | "pink"
1153
+ | "plum"
1154
+ | "powderblue"
1155
+ | "purple"
1156
+ | "rebeccapurple"
1157
+ | "red"
1158
+ | "rosybrown"
1159
+ | "royalblue"
1160
+ | "saddlebrown"
1161
+ | "salmon"
1162
+ | "sandybrown"
1163
+ | "seagreen"
1164
+ | "seashell"
1165
+ | "sienna"
1166
+ | "silver"
1167
+ | "skyblue"
1168
+ | "slateblue"
1169
+ | "slategray"
1170
+ | "slategrey"
1171
+ | "snow"
1172
+ | "springgreen"
1173
+ | "steelblue"
1174
+ | "tan"
1175
+ | "teal"
1176
+ | "thistle"
1177
+ | "tomato"
1178
+ | "turquoise"
1179
+ | "violet"
1180
+ | "wheat"
1181
+ | "white"
1182
+ | "whitesmoke"
1183
+ | "yellow"
1184
+ | "yellowgreen"
1185
+ | "transparent"
1186
+ | "AccentColor"
1187
+ | "AccentColorText"
1188
+ | "ActiveText"
1189
+ | "ButtonBorder"
1190
+ | "ButtonFace"
1191
+ | "ButtonText"
1192
+ | "Canvas"
1193
+ | "CanvasText"
1194
+ | "Field"
1195
+ | "FieldText"
1196
+ | "GrayText"
1197
+ | "Highlight"
1198
+ | "HighlightText"
1199
+ | "LinkText"
1200
+ | "Mark"
1201
+ | "MarkText"
1202
+ | "SelectedItem"
1203
+ | "SelectedItemText"
1204
+ | "VisitedText"
1205
+ | "ActiveBorder"
1206
+ | "ActiveCaption"
1207
+ | "AppWorkspace"
1208
+ | "Background"
1209
+ | "ButtonHighlight"
1210
+ | "ButtonShadow"
1211
+ | "CaptionText"
1212
+ | "InactiveBorder"
1213
+ | "InactiveCaption"
1214
+ | "InactiveCaptionText"
1215
+ | "InfoBackground"
1216
+ | "InfoText"
1217
+ | "Menu"
1218
+ | "MenuText"
1219
+ | "Scrollbar"
1220
+ | "ThreeDDarkShadow"
1221
+ | "ThreeDFace"
1222
+ | "ThreeDHighlight"
1223
+ | "ThreeDLightShadow"
1224
+ | "ThreeDShadow"
1225
+ | "Window"
1226
+ | "WindowFrame"
1227
+ | "WindowText"
1228
+ | "currentColor"
1229
+ | undefined>
1230
+ | (theme) => ResponsiveStyleValue<
1231
+ | number
1232
+ | string & object
1233
+ | "inset"
1234
+ | "hidden"
1235
+ | "-moz-initial"
1236
+ | "inherit"
1237
+ | "initial"
1238
+ | "revert"
1239
+ | "revert-layer"
1240
+ | "unset"
1241
+ | "medium"
1242
+ | "thick"
1243
+ | "thin"
1244
+ | "dashed"
1245
+ | "dotted"
1246
+ | "double"
1247
+ | "groove"
1248
+ | "none"
1249
+ | "outset"
1250
+ | "ridge"
1251
+ | "solid"
1252
+ | "aliceblue"
1253
+ | "antiquewhite"
1254
+ | "aqua"
1255
+ | "aquamarine"
1256
+ | "azure"
1257
+ | "beige"
1258
+ | "bisque"
1259
+ | "black"
1260
+ | "blanchedalmond"
1261
+ | "blue"
1262
+ | "blueviolet"
1263
+ | "brown"
1264
+ | "burlywood"
1265
+ | "cadetblue"
1266
+ | "chartreuse"
1267
+ | "chocolate"
1268
+ | "coral"
1269
+ | "cornflowerblue"
1270
+ | "cornsilk"
1271
+ | "crimson"
1272
+ | "cyan"
1273
+ | "darkblue"
1274
+ | "darkcyan"
1275
+ | "darkgoldenrod"
1276
+ | "darkgray"
1277
+ | "darkgreen"
1278
+ | "darkgrey"
1279
+ | "darkkhaki"
1280
+ | "darkmagenta"
1281
+ | "darkolivegreen"
1282
+ | "darkorange"
1283
+ | "darkorchid"
1284
+ | "darkred"
1285
+ | "darksalmon"
1286
+ | "darkseagreen"
1287
+ | "darkslateblue"
1288
+ | "darkslategray"
1289
+ | "darkslategrey"
1290
+ | "darkturquoise"
1291
+ | "darkviolet"
1292
+ | "deeppink"
1293
+ | "deepskyblue"
1294
+ | "dimgray"
1295
+ | "dimgrey"
1296
+ | "dodgerblue"
1297
+ | "firebrick"
1298
+ | "floralwhite"
1299
+ | "forestgreen"
1300
+ | "fuchsia"
1301
+ | "gainsboro"
1302
+ | "ghostwhite"
1303
+ | "gold"
1304
+ | "goldenrod"
1305
+ | "gray"
1306
+ | "green"
1307
+ | "greenyellow"
1308
+ | "grey"
1309
+ | "honeydew"
1310
+ | "hotpink"
1311
+ | "indianred"
1312
+ | "indigo"
1313
+ | "ivory"
1314
+ | "khaki"
1315
+ | "lavender"
1316
+ | "lavenderblush"
1317
+ | "lawngreen"
1318
+ | "lemonchiffon"
1319
+ | "lightblue"
1320
+ | "lightcoral"
1321
+ | "lightcyan"
1322
+ | "lightgoldenrodyellow"
1323
+ | "lightgray"
1324
+ | "lightgreen"
1325
+ | "lightgrey"
1326
+ | "lightpink"
1327
+ | "lightsalmon"
1328
+ | "lightseagreen"
1329
+ | "lightskyblue"
1330
+ | "lightslategray"
1331
+ | "lightslategrey"
1332
+ | "lightsteelblue"
1333
+ | "lightyellow"
1334
+ | "lime"
1335
+ | "limegreen"
1336
+ | "linen"
1337
+ | "magenta"
1338
+ | "maroon"
1339
+ | "mediumaquamarine"
1340
+ | "mediumblue"
1341
+ | "mediumorchid"
1342
+ | "mediumpurple"
1343
+ | "mediumseagreen"
1344
+ | "mediumslateblue"
1345
+ | "mediumspringgreen"
1346
+ | "mediumturquoise"
1347
+ | "mediumvioletred"
1348
+ | "midnightblue"
1349
+ | "mintcream"
1350
+ | "mistyrose"
1351
+ | "moccasin"
1352
+ | "navajowhite"
1353
+ | "navy"
1354
+ | "oldlace"
1355
+ | "olive"
1356
+ | "olivedrab"
1357
+ | "orange"
1358
+ | "orangered"
1359
+ | "orchid"
1360
+ | "palegoldenrod"
1361
+ | "palegreen"
1362
+ | "paleturquoise"
1363
+ | "palevioletred"
1364
+ | "papayawhip"
1365
+ | "peachpuff"
1366
+ | "peru"
1367
+ | "pink"
1368
+ | "plum"
1369
+ | "powderblue"
1370
+ | "purple"
1371
+ | "rebeccapurple"
1372
+ | "red"
1373
+ | "rosybrown"
1374
+ | "royalblue"
1375
+ | "saddlebrown"
1376
+ | "salmon"
1377
+ | "sandybrown"
1378
+ | "seagreen"
1379
+ | "seashell"
1380
+ | "sienna"
1381
+ | "silver"
1382
+ | "skyblue"
1383
+ | "slateblue"
1384
+ | "slategray"
1385
+ | "slategrey"
1386
+ | "snow"
1387
+ | "springgreen"
1388
+ | "steelblue"
1389
+ | "tan"
1390
+ | "teal"
1391
+ | "thistle"
1392
+ | "tomato"
1393
+ | "turquoise"
1394
+ | "violet"
1395
+ | "wheat"
1396
+ | "white"
1397
+ | "whitesmoke"
1398
+ | "yellow"
1399
+ | "yellowgreen"
1400
+ | "transparent"
1401
+ | "AccentColor"
1402
+ | "AccentColorText"
1403
+ | "ActiveText"
1404
+ | "ButtonBorder"
1405
+ | "ButtonFace"
1406
+ | "ButtonText"
1407
+ | "Canvas"
1408
+ | "CanvasText"
1409
+ | "Field"
1410
+ | "FieldText"
1411
+ | "GrayText"
1412
+ | "Highlight"
1413
+ | "HighlightText"
1414
+ | "LinkText"
1415
+ | "Mark"
1416
+ | "MarkText"
1417
+ | "SelectedItem"
1418
+ | "SelectedItemText"
1419
+ | "VisitedText"
1420
+ | "ActiveBorder"
1421
+ | "ActiveCaption"
1422
+ | "AppWorkspace"
1423
+ | "Background"
1424
+ | "ButtonHighlight"
1425
+ | "ButtonShadow"
1426
+ | "CaptionText"
1427
+ | "InactiveBorder"
1428
+ | "InactiveCaption"
1429
+ | "InactiveCaptionText"
1430
+ | "InfoBackground"
1431
+ | "InfoText"
1432
+ | "Menu"
1433
+ | "MenuText"
1434
+ | "Scrollbar"
1435
+ | "ThreeDDarkShadow"
1436
+ | "ThreeDFace"
1437
+ | "ThreeDHighlight"
1438
+ | "ThreeDLightShadow"
1439
+ | "ThreeDShadow"
1440
+ | "Window"
1441
+ | "WindowFrame"
1442
+ | "WindowText"
1443
+ | "currentColor"
1444
+ | undefined>;
1445
+ ```
1446
+
1447
+ ### Inherited from
1448
+
1449
+ ```ts
1450
+ StackProps.border
1451
+ ```
1452
+
1453
+ ***
1454
+
1455
+ ### borderTop?
1456
+
1457
+ ```ts
1458
+ optional borderTop:
1459
+ | ResponsiveStyleValue<BorderTop<string | number> | readonly NonNullable<BorderTop<string | number> | undefined>[] | undefined>
1460
+ | (theme) => ResponsiveStyleValue<BorderTop<string | number> | readonly NonNullable<BorderTop<string | number> | undefined>[] | undefined>;
1461
+ ```
1462
+
1463
+ ### Inherited from
1464
+
1465
+ ```ts
1466
+ StackProps.borderTop
1467
+ ```
1468
+
1469
+ ***
1470
+
1471
+ ### borderRight?
1472
+
1473
+ ```ts
1474
+ optional borderRight:
1475
+ | ResponsiveStyleValue<BorderRight<string | number> | readonly NonNullable<BorderRight<string | number> | undefined>[] | undefined>
1476
+ | (theme) => ResponsiveStyleValue<BorderRight<string | number> | readonly NonNullable<BorderRight<string | number> | undefined>[] | undefined>;
1477
+ ```
1478
+
1479
+ ### Inherited from
1480
+
1481
+ ```ts
1482
+ StackProps.borderRight
1483
+ ```
1484
+
1485
+ ***
1486
+
1487
+ ### borderBottom?
1488
+
1489
+ ```ts
1490
+ optional borderBottom:
1491
+ | ResponsiveStyleValue<BorderBottom<string | number> | readonly NonNullable<BorderBottom<string | number> | undefined>[] | undefined>
1492
+ | (theme) => ResponsiveStyleValue<BorderBottom<string | number> | readonly NonNullable<BorderBottom<string | number> | undefined>[] | undefined>;
1493
+ ```
1494
+
1495
+ ### Inherited from
1496
+
1497
+ ```ts
1498
+ StackProps.borderBottom
1499
+ ```
1500
+
1501
+ ***
1502
+
1503
+ ### borderLeft?
1504
+
1505
+ ```ts
1506
+ optional borderLeft:
1507
+ | ResponsiveStyleValue<BorderLeft<string | number> | readonly NonNullable<BorderLeft<string | number> | undefined>[] | undefined>
1508
+ | (theme) => ResponsiveStyleValue<BorderLeft<string | number> | readonly NonNullable<BorderLeft<string | number> | undefined>[] | undefined>;
1509
+ ```
1510
+
1511
+ ### Inherited from
1512
+
1513
+ ```ts
1514
+ StackProps.borderLeft
1515
+ ```
1516
+
1517
+ ***
1518
+
1519
+ ### borderColor?
1520
+
1521
+ ```ts
1522
+ optional borderColor:
1523
+ | ResponsiveStyleValue<BorderColor | readonly string[] | undefined>
1524
+ | (theme) => ResponsiveStyleValue<BorderColor | readonly string[] | undefined>;
1525
+ ```
1526
+
1527
+ ### Inherited from
1528
+
1529
+ ```ts
1530
+ StackProps.borderColor
1531
+ ```
1532
+
1533
+ ***
1534
+
1535
+ ### borderRadius?
1536
+
1537
+ ```ts
1538
+ optional borderRadius:
1539
+ | ResponsiveStyleValue<BorderRadius<string | number> | readonly NonNullable<BorderRadius<string | number> | undefined>[] | undefined>
1540
+ | (theme) => ResponsiveStyleValue<BorderRadius<string | number> | readonly NonNullable<BorderRadius<string | number> | undefined>[] | undefined>;
1541
+ ```
1542
+
1543
+ ### Inherited from
1544
+
1545
+ ```ts
1546
+ StackProps.borderRadius
1547
+ ```
1548
+
1549
+ ***
1550
+
1551
+ ### display?
1552
+
1553
+ ```ts
1554
+ optional display:
1555
+ | ResponsiveStyleValue<readonly string[] | Display | undefined>
1556
+ | (theme) => ResponsiveStyleValue<readonly string[] | Display | undefined>;
1557
+ ```
1558
+
1559
+ ### Inherited from
1560
+
1561
+ ```ts
1562
+ StackProps.display
1563
+ ```
1564
+
1565
+ ***
1566
+
1567
+ ### displayPrint?
1568
+
1569
+ ```ts
1570
+ optional displayPrint:
1571
+ | ResponsiveStyleValue<readonly string[] | Display | undefined>
1572
+ | (theme) => ResponsiveStyleValue<readonly string[] | Display | undefined>;
1573
+ ```
1574
+
1575
+ ### Inherited from
1576
+
1577
+ ```ts
1578
+ StackProps.displayPrint
1579
+ ```
1580
+
1581
+ ***
1582
+
1583
+ ### overflow?
1584
+
1585
+ ```ts
1586
+ optional overflow:
1587
+ | ResponsiveStyleValue<readonly string[] | Overflow | undefined>
1588
+ | (theme) => ResponsiveStyleValue<readonly string[] | Overflow | undefined>;
1589
+ ```
1590
+
1591
+ ### Inherited from
1592
+
1593
+ ```ts
1594
+ StackProps.overflow
1595
+ ```
1596
+
1597
+ ***
1598
+
1599
+ ### textOverflow?
1600
+
1601
+ ```ts
1602
+ optional textOverflow:
1603
+ | ResponsiveStyleValue<readonly string[] | TextOverflow | undefined>
1604
+ | (theme) => ResponsiveStyleValue<readonly string[] | TextOverflow | undefined>;
1605
+ ```
1606
+
1607
+ ### Inherited from
1608
+
1609
+ ```ts
1610
+ StackProps.textOverflow
1611
+ ```
1612
+
1613
+ ***
1614
+
1615
+ ### visibility?
1616
+
1617
+ ```ts
1618
+ optional visibility:
1619
+ | ResponsiveStyleValue<Visibility | readonly NonNullable<Visibility | undefined>[] | undefined>
1620
+ | (theme) => ResponsiveStyleValue<Visibility | readonly NonNullable<Visibility | undefined>[] | undefined>;
1621
+ ```
1622
+
1623
+ ### Inherited from
1624
+
1625
+ ```ts
1626
+ StackProps.visibility
1627
+ ```
1628
+
1629
+ ***
1630
+
1631
+ ### whiteSpace?
1632
+
1633
+ ```ts
1634
+ optional whiteSpace:
1635
+ | ResponsiveStyleValue<readonly string[] | WhiteSpace | undefined>
1636
+ | (theme) => ResponsiveStyleValue<readonly string[] | WhiteSpace | undefined>;
1637
+ ```
1638
+
1639
+ ### Inherited from
1640
+
1641
+ ```ts
1642
+ StackProps.whiteSpace
1643
+ ```
1644
+
1645
+ ***
1646
+
1647
+ ### flexBasis?
1648
+
1649
+ ```ts
1650
+ optional flexBasis:
1651
+ | ResponsiveStyleValue<FlexBasis<string | number> | readonly NonNullable<FlexBasis<string | number> | undefined>[] | undefined>
1652
+ | (theme) => ResponsiveStyleValue<FlexBasis<string | number> | readonly NonNullable<FlexBasis<string | number> | undefined>[] | undefined>;
1653
+ ```
1654
+
1655
+ ### Inherited from
1656
+
1657
+ ```ts
1658
+ StackProps.flexBasis
1659
+ ```
1660
+
1661
+ ***
1662
+
1663
+ ### flexDirection?
1664
+
1665
+ ```ts
1666
+ optional flexDirection:
1667
+ | ResponsiveStyleValue<FlexDirection | readonly NonNullable<FlexDirection | undefined>[] | undefined>
1668
+ | (theme) => ResponsiveStyleValue<FlexDirection | readonly NonNullable<FlexDirection | undefined>[] | undefined>;
1669
+ ```
1670
+
1671
+ ### Inherited from
1672
+
1673
+ ```ts
1674
+ StackProps.flexDirection
1675
+ ```
1676
+
1677
+ ***
1678
+
1679
+ ### flexWrap?
1680
+
1681
+ ```ts
1682
+ optional flexWrap:
1683
+ | ResponsiveStyleValue<FlexWrap | readonly NonNullable<FlexWrap | undefined>[] | undefined>
1684
+ | (theme) => ResponsiveStyleValue<FlexWrap | readonly NonNullable<FlexWrap | undefined>[] | undefined>;
1685
+ ```
1686
+
1687
+ ### Inherited from
1688
+
1689
+ ```ts
1690
+ StackProps.flexWrap
1691
+ ```
1692
+
1693
+ ***
1694
+
1695
+ ### justifyContent?
1696
+
1697
+ ```ts
1698
+ optional justifyContent:
1699
+ | ResponsiveStyleValue<readonly string[] | JustifyContent | undefined>
1700
+ | (theme) => ResponsiveStyleValue<readonly string[] | JustifyContent | undefined>;
1701
+ ```
1702
+
1703
+ ### Inherited from
1704
+
1705
+ ```ts
1706
+ StackProps.justifyContent
1707
+ ```
1708
+
1709
+ ***
1710
+
1711
+ ### alignItems?
1712
+
1713
+ ```ts
1714
+ optional alignItems:
1715
+ | ResponsiveStyleValue<readonly string[] | AlignItems | undefined>
1716
+ | (theme) => ResponsiveStyleValue<readonly string[] | AlignItems | undefined>;
1717
+ ```
1718
+
1719
+ ### Inherited from
1720
+
1721
+ ```ts
1722
+ StackProps.alignItems
1723
+ ```
1724
+
1725
+ ***
1726
+
1727
+ ### alignContent?
1728
+
1729
+ ```ts
1730
+ optional alignContent:
1731
+ | ResponsiveStyleValue<readonly string[] | AlignContent | undefined>
1732
+ | (theme) => ResponsiveStyleValue<readonly string[] | AlignContent | undefined>;
1733
+ ```
1734
+
1735
+ ### Inherited from
1736
+
1737
+ ```ts
1738
+ StackProps.alignContent
1739
+ ```
1740
+
1741
+ ***
1742
+
1743
+ ### order?
1744
+
1745
+ ```ts
1746
+ optional order:
1747
+ | ResponsiveStyleValue<Order | readonly NonNullable<Order | undefined>[] | undefined>
1748
+ | (theme) => ResponsiveStyleValue<Order | readonly NonNullable<Order | undefined>[] | undefined>;
1749
+ ```
1750
+
1751
+ ### Inherited from
1752
+
1753
+ ```ts
1754
+ StackProps.order
1755
+ ```
1756
+
1757
+ ***
1758
+
1759
+ ### flex?
1760
+
1761
+ ```ts
1762
+ optional flex:
1763
+ | ResponsiveStyleValue<Flex<string | number> | readonly NonNullable<Flex<string | number> | undefined>[] | undefined>
1764
+ | (theme) => ResponsiveStyleValue<Flex<string | number> | readonly NonNullable<Flex<string | number> | undefined>[] | undefined>;
1765
+ ```
1766
+
1767
+ ### Inherited from
1768
+
1769
+ ```ts
1770
+ StackProps.flex
1771
+ ```
1772
+
1773
+ ***
1774
+
1775
+ ### flexGrow?
1776
+
1777
+ ```ts
1778
+ optional flexGrow:
1779
+ | ResponsiveStyleValue<FlexGrow | readonly NonNullable<FlexGrow | undefined>[] | undefined>
1780
+ | (theme) => ResponsiveStyleValue<FlexGrow | readonly NonNullable<FlexGrow | undefined>[] | undefined>;
1781
+ ```
1782
+
1783
+ ### Inherited from
1784
+
1785
+ ```ts
1786
+ StackProps.flexGrow
1787
+ ```
1788
+
1789
+ ***
1790
+
1791
+ ### flexShrink?
1792
+
1793
+ ```ts
1794
+ optional flexShrink:
1795
+ | ResponsiveStyleValue<FlexShrink | readonly NonNullable<FlexShrink | undefined>[] | undefined>
1796
+ | (theme) => ResponsiveStyleValue<FlexShrink | readonly NonNullable<FlexShrink | undefined>[] | undefined>;
1797
+ ```
1798
+
1799
+ ### Inherited from
1800
+
1801
+ ```ts
1802
+ StackProps.flexShrink
1803
+ ```
1804
+
1805
+ ***
1806
+
1807
+ ### alignSelf?
1808
+
1809
+ ```ts
1810
+ optional alignSelf:
1811
+ | ResponsiveStyleValue<readonly string[] | AlignSelf | undefined>
1812
+ | (theme) => ResponsiveStyleValue<readonly string[] | AlignSelf | undefined>;
1813
+ ```
1814
+
1815
+ ### Inherited from
1816
+
1817
+ ```ts
1818
+ StackProps.alignSelf
1819
+ ```
1820
+
1821
+ ***
1822
+
1823
+ ### justifyItems?
1824
+
1825
+ ```ts
1826
+ optional justifyItems:
1827
+ | ResponsiveStyleValue<readonly string[] | JustifyItems | undefined>
1828
+ | (theme) => ResponsiveStyleValue<readonly string[] | JustifyItems | undefined>;
1829
+ ```
1830
+
1831
+ ### Inherited from
1832
+
1833
+ ```ts
1834
+ StackProps.justifyItems
1835
+ ```
1836
+
1837
+ ***
1838
+
1839
+ ### justifySelf?
1840
+
1841
+ ```ts
1842
+ optional justifySelf:
1843
+ | ResponsiveStyleValue<readonly string[] | JustifySelf | undefined>
1844
+ | (theme) => ResponsiveStyleValue<readonly string[] | JustifySelf | undefined>;
1845
+ ```
1846
+
1847
+ ### Inherited from
1848
+
1849
+ ```ts
1850
+ StackProps.justifySelf
1851
+ ```
1852
+
1853
+ ***
1854
+
1855
+ ### gap?
1856
+
1857
+ ```ts
1858
+ optional gap:
1859
+ | ResponsiveStyleValue<Gap<string | number> | readonly NonNullable<Gap<string | number> | undefined>[] | undefined>
1860
+ | (theme) => ResponsiveStyleValue<Gap<string | number> | readonly NonNullable<Gap<string | number> | undefined>[] | undefined>;
1861
+ ```
1862
+
1863
+ ### Inherited from
1864
+
1865
+ ```ts
1866
+ StackProps.gap
1867
+ ```
1868
+
1869
+ ***
1870
+
1871
+ ### columnGap?
1872
+
1873
+ ```ts
1874
+ optional columnGap:
1875
+ | ResponsiveStyleValue<ColumnGap<string | number> | readonly NonNullable<ColumnGap<string | number> | undefined>[] | undefined>
1876
+ | (theme) => ResponsiveStyleValue<ColumnGap<string | number> | readonly NonNullable<ColumnGap<string | number> | undefined>[] | undefined>;
1877
+ ```
1878
+
1879
+ ### Inherited from
1880
+
1881
+ ```ts
1882
+ StackProps.columnGap
1883
+ ```
1884
+
1885
+ ***
1886
+
1887
+ ### rowGap?
1888
+
1889
+ ```ts
1890
+ optional rowGap:
1891
+ | ResponsiveStyleValue<RowGap<string | number> | readonly NonNullable<RowGap<string | number> | undefined>[] | undefined>
1892
+ | (theme) => ResponsiveStyleValue<RowGap<string | number> | readonly NonNullable<RowGap<string | number> | undefined>[] | undefined>;
1893
+ ```
1894
+
1895
+ ### Inherited from
1896
+
1897
+ ```ts
1898
+ StackProps.rowGap
1899
+ ```
1900
+
1901
+ ***
1902
+
1903
+ ### gridColumn?
1904
+
1905
+ ```ts
1906
+ optional gridColumn:
1907
+ | ResponsiveStyleValue<GridColumn | readonly NonNullable<GridColumn | undefined>[] | undefined>
1908
+ | (theme) => ResponsiveStyleValue<GridColumn | readonly NonNullable<GridColumn | undefined>[] | undefined>;
1909
+ ```
1910
+
1911
+ ### Inherited from
1912
+
1913
+ ```ts
1914
+ StackProps.gridColumn
1915
+ ```
1916
+
1917
+ ***
1918
+
1919
+ ### gridRow?
1920
+
1921
+ ```ts
1922
+ optional gridRow:
1923
+ | ResponsiveStyleValue<GridRow | readonly NonNullable<GridRow | undefined>[] | undefined>
1924
+ | (theme) => ResponsiveStyleValue<GridRow | readonly NonNullable<GridRow | undefined>[] | undefined>;
1925
+ ```
1926
+
1927
+ ### Inherited from
1928
+
1929
+ ```ts
1930
+ StackProps.gridRow
1931
+ ```
1932
+
1933
+ ***
1934
+
1935
+ ### gridAutoFlow?
1936
+
1937
+ ```ts
1938
+ optional gridAutoFlow:
1939
+ | ResponsiveStyleValue<readonly string[] | GridAutoFlow | undefined>
1940
+ | (theme) => ResponsiveStyleValue<readonly string[] | GridAutoFlow | undefined>;
1941
+ ```
1942
+
1943
+ ### Inherited from
1944
+
1945
+ ```ts
1946
+ StackProps.gridAutoFlow
1947
+ ```
1948
+
1949
+ ***
1950
+
1951
+ ### gridAutoColumns?
1952
+
1953
+ ```ts
1954
+ optional gridAutoColumns:
1955
+ | ResponsiveStyleValue<GridAutoColumns<string | number> | readonly NonNullable<GridAutoColumns<string | number> | undefined>[] | undefined>
1956
+ | (theme) => ResponsiveStyleValue<GridAutoColumns<string | number> | readonly NonNullable<GridAutoColumns<string | number> | undefined>[] | undefined>;
1957
+ ```
1958
+
1959
+ ### Inherited from
1960
+
1961
+ ```ts
1962
+ StackProps.gridAutoColumns
1963
+ ```
1964
+
1965
+ ***
1966
+
1967
+ ### gridAutoRows?
1968
+
1969
+ ```ts
1970
+ optional gridAutoRows:
1971
+ | ResponsiveStyleValue<GridAutoRows<string | number> | readonly NonNullable<GridAutoRows<string | number> | undefined>[] | undefined>
1972
+ | (theme) => ResponsiveStyleValue<GridAutoRows<string | number> | readonly NonNullable<GridAutoRows<string | number> | undefined>[] | undefined>;
1973
+ ```
1974
+
1975
+ ### Inherited from
1976
+
1977
+ ```ts
1978
+ StackProps.gridAutoRows
1979
+ ```
1980
+
1981
+ ***
1982
+
1983
+ ### gridTemplateColumns?
1984
+
1985
+ ```ts
1986
+ optional gridTemplateColumns:
1987
+ | ResponsiveStyleValue<GridTemplateColumns<string | number> | readonly NonNullable<GridTemplateColumns<string | number> | undefined>[] | undefined>
1988
+ | (theme) => ResponsiveStyleValue<GridTemplateColumns<string | number> | readonly NonNullable<GridTemplateColumns<string | number> | undefined>[] | undefined>;
1989
+ ```
1990
+
1991
+ ### Inherited from
1992
+
1993
+ ```ts
1994
+ StackProps.gridTemplateColumns
1995
+ ```
1996
+
1997
+ ***
1998
+
1999
+ ### gridTemplateRows?
2000
+
2001
+ ```ts
2002
+ optional gridTemplateRows:
2003
+ | ResponsiveStyleValue<GridTemplateRows<string | number> | readonly NonNullable<GridTemplateRows<string | number> | undefined>[] | undefined>
2004
+ | (theme) => ResponsiveStyleValue<GridTemplateRows<string | number> | readonly NonNullable<GridTemplateRows<string | number> | undefined>[] | undefined>;
2005
+ ```
2006
+
2007
+ ### Inherited from
2008
+
2009
+ ```ts
2010
+ StackProps.gridTemplateRows
2011
+ ```
2012
+
2013
+ ***
2014
+
2015
+ ### gridTemplateAreas?
2016
+
2017
+ ```ts
2018
+ optional gridTemplateAreas:
2019
+ | ResponsiveStyleValue<readonly string[] | GridTemplateAreas | undefined>
2020
+ | (theme) => ResponsiveStyleValue<readonly string[] | GridTemplateAreas | undefined>;
2021
+ ```
2022
+
2023
+ ### Inherited from
2024
+
2025
+ ```ts
2026
+ StackProps.gridTemplateAreas
2027
+ ```
2028
+
2029
+ ***
2030
+
2031
+ ### gridArea?
2032
+
2033
+ ```ts
2034
+ optional gridArea:
2035
+ | ResponsiveStyleValue<GridArea | readonly NonNullable<GridArea | undefined>[] | undefined>
2036
+ | (theme) => ResponsiveStyleValue<GridArea | readonly NonNullable<GridArea | undefined>[] | undefined>;
2037
+ ```
2038
+
2039
+ ### Inherited from
2040
+
2041
+ ```ts
2042
+ StackProps.gridArea
2043
+ ```
2044
+
2045
+ ***
2046
+
2047
+ ### bgcolor?
2048
+
2049
+ ```ts
2050
+ optional bgcolor:
2051
+ | ResponsiveStyleValue<readonly string[] | BackgroundColor | undefined>
2052
+ | (theme) => ResponsiveStyleValue<readonly string[] | BackgroundColor | undefined>;
2053
+ ```
2054
+
2055
+ ### Inherited from
2056
+
2057
+ ```ts
2058
+ StackProps.bgcolor
2059
+ ```
2060
+
2061
+ ***
2062
+
2063
+ ### color?
2064
+
2065
+ ```ts
2066
+ optional color:
2067
+ | ResponsiveStyleValue<readonly string[] | Color | undefined>
2068
+ | (theme) => ResponsiveStyleValue<readonly string[] | Color | undefined>;
2069
+ ```
2070
+
2071
+ ### Inherited from
2072
+
2073
+ ```ts
2074
+ StackProps.color
2075
+ ```
2076
+
2077
+ ***
2078
+
2079
+ ### zIndex?
2080
+
2081
+ ```ts
2082
+ optional zIndex:
2083
+ | ResponsiveStyleValue<string | string & object | number & object | undefined>
2084
+ | (theme) => ResponsiveStyleValue<string | string & object | number & object | undefined>;
2085
+ ```
2086
+
2087
+ ### Inherited from
2088
+
2089
+ ```ts
2090
+ StackProps.zIndex
2091
+ ```
2092
+
2093
+ ***
2094
+
2095
+ ### position?
2096
+
2097
+ ```ts
2098
+ optional position:
2099
+ | ResponsiveStyleValue<Position | readonly NonNullable<Position | undefined>[] | undefined>
2100
+ | (theme) => ResponsiveStyleValue<Position | readonly NonNullable<Position | undefined>[] | undefined>;
2101
+ ```
2102
+
2103
+ ### Inherited from
2104
+
2105
+ ```ts
2106
+ StackProps.position
2107
+ ```
2108
+
2109
+ ***
2110
+
2111
+ ### top?
2112
+
2113
+ ```ts
2114
+ optional top:
2115
+ | ResponsiveStyleValue<Top<string | number> | readonly NonNullable<Top<string | number> | undefined>[] | undefined>
2116
+ | (theme) => ResponsiveStyleValue<Top<string | number> | readonly NonNullable<Top<string | number> | undefined>[] | undefined>;
2117
+ ```
2118
+
2119
+ ### Inherited from
2120
+
2121
+ ```ts
2122
+ StackProps.top
2123
+ ```
2124
+
2125
+ ***
2126
+
2127
+ ### right?
2128
+
2129
+ ```ts
2130
+ optional right:
2131
+ | ResponsiveStyleValue<Right<string | number> | readonly NonNullable<Right<string | number> | undefined>[] | undefined>
2132
+ | (theme) => ResponsiveStyleValue<Right<string | number> | readonly NonNullable<Right<string | number> | undefined>[] | undefined>;
2133
+ ```
2134
+
2135
+ ### Inherited from
2136
+
2137
+ ```ts
2138
+ StackProps.right
2139
+ ```
2140
+
2141
+ ***
2142
+
2143
+ ### bottom?
2144
+
2145
+ ```ts
2146
+ optional bottom:
2147
+ | ResponsiveStyleValue<Bottom<string | number> | readonly NonNullable<Bottom<string | number> | undefined>[] | undefined>
2148
+ | (theme) => ResponsiveStyleValue<Bottom<string | number> | readonly NonNullable<Bottom<string | number> | undefined>[] | undefined>;
2149
+ ```
2150
+
2151
+ ### Inherited from
2152
+
2153
+ ```ts
2154
+ StackProps.bottom
2155
+ ```
2156
+
2157
+ ***
2158
+
2159
+ ### left?
2160
+
2161
+ ```ts
2162
+ optional left:
2163
+ | ResponsiveStyleValue<Left<string | number> | readonly NonNullable<Left<string | number> | undefined>[] | undefined>
2164
+ | (theme) => ResponsiveStyleValue<Left<string | number> | readonly NonNullable<Left<string | number> | undefined>[] | undefined>;
2165
+ ```
2166
+
2167
+ ### Inherited from
2168
+
2169
+ ```ts
2170
+ StackProps.left
2171
+ ```
2172
+
2173
+ ***
2174
+
2175
+ ### boxShadow?
2176
+
2177
+ ```ts
2178
+ optional boxShadow:
2179
+ | ResponsiveStyleValue<number | BoxShadow | undefined>
2180
+ | (theme) => ResponsiveStyleValue<number | BoxShadow | undefined>;
2181
+ ```
2182
+
2183
+ ### Inherited from
2184
+
2185
+ ```ts
2186
+ StackProps.boxShadow
2187
+ ```
2188
+
2189
+ ***
2190
+
2191
+ ### width?
2192
+
2193
+ ```ts
2194
+ optional width:
2195
+ | ResponsiveStyleValue<Width<string | number> | readonly NonNullable<Width<string | number> | undefined>[] | undefined>
2196
+ | (theme) => ResponsiveStyleValue<Width<string | number> | readonly NonNullable<Width<string | number> | undefined>[] | undefined>;
2197
+ ```
2198
+
2199
+ ### Inherited from
2200
+
2201
+ ```ts
2202
+ StackProps.width
2203
+ ```
2204
+
2205
+ ***
2206
+
2207
+ ### maxWidth?
2208
+
2209
+ ```ts
2210
+ optional maxWidth:
2211
+ | ResponsiveStyleValue<MaxWidth<string | number> | readonly NonNullable<MaxWidth<string | number> | undefined>[] | undefined>
2212
+ | (theme) => ResponsiveStyleValue<MaxWidth<string | number> | readonly NonNullable<MaxWidth<string | number> | undefined>[] | undefined>;
2213
+ ```
2214
+
2215
+ ### Inherited from
2216
+
2217
+ ```ts
2218
+ StackProps.maxWidth
2219
+ ```
2220
+
2221
+ ***
2222
+
2223
+ ### minWidth?
2224
+
2225
+ ```ts
2226
+ optional minWidth:
2227
+ | ResponsiveStyleValue<MinWidth<string | number> | readonly NonNullable<MinWidth<string | number> | undefined>[] | undefined>
2228
+ | (theme) => ResponsiveStyleValue<MinWidth<string | number> | readonly NonNullable<MinWidth<string | number> | undefined>[] | undefined>;
2229
+ ```
2230
+
2231
+ ### Inherited from
2232
+
2233
+ ```ts
2234
+ StackProps.minWidth
2235
+ ```
2236
+
2237
+ ***
2238
+
2239
+ ### height?
2240
+
2241
+ ```ts
2242
+ optional height:
2243
+ | ResponsiveStyleValue<Height<string | number> | readonly NonNullable<Height<string | number> | undefined>[] | undefined>
2244
+ | (theme) => ResponsiveStyleValue<Height<string | number> | readonly NonNullable<Height<string | number> | undefined>[] | undefined>;
2245
+ ```
2246
+
2247
+ ### Inherited from
2248
+
2249
+ ```ts
2250
+ StackProps.height
2251
+ ```
2252
+
2253
+ ***
2254
+
2255
+ ### maxHeight?
2256
+
2257
+ ```ts
2258
+ optional maxHeight:
2259
+ | ResponsiveStyleValue<MaxHeight<string | number> | readonly NonNullable<MaxHeight<string | number> | undefined>[] | undefined>
2260
+ | (theme) => ResponsiveStyleValue<MaxHeight<string | number> | readonly NonNullable<MaxHeight<string | number> | undefined>[] | undefined>;
2261
+ ```
2262
+
2263
+ ### Inherited from
2264
+
2265
+ ```ts
2266
+ StackProps.maxHeight
2267
+ ```
2268
+
2269
+ ***
2270
+
2271
+ ### minHeight?
2272
+
2273
+ ```ts
2274
+ optional minHeight:
2275
+ | ResponsiveStyleValue<MinHeight<string | number> | readonly NonNullable<MinHeight<string | number> | undefined>[] | undefined>
2276
+ | (theme) => ResponsiveStyleValue<MinHeight<string | number> | readonly NonNullable<MinHeight<string | number> | undefined>[] | undefined>;
2277
+ ```
2278
+
2279
+ ### Inherited from
2280
+
2281
+ ```ts
2282
+ StackProps.minHeight
2283
+ ```
2284
+
2285
+ ***
2286
+
2287
+ ### boxSizing?
2288
+
2289
+ ```ts
2290
+ optional boxSizing:
2291
+ | ResponsiveStyleValue<BoxSizing | readonly NonNullable<BoxSizing | undefined>[] | undefined>
2292
+ | (theme) => ResponsiveStyleValue<BoxSizing | readonly NonNullable<BoxSizing | undefined>[] | undefined>;
2293
+ ```
2294
+
2295
+ ### Inherited from
2296
+
2297
+ ```ts
2298
+ StackProps.boxSizing
2299
+ ```
2300
+
2301
+ ***
2302
+
2303
+ ### m?
2304
+
2305
+ ```ts
2306
+ optional m:
2307
+ | ResponsiveStyleValue<Margin<string | number> | readonly NonNullable<Margin<string | number> | undefined>[] | undefined>
2308
+ | (theme) => ResponsiveStyleValue<Margin<string | number> | readonly NonNullable<Margin<string | number> | undefined>[] | undefined>;
2309
+ ```
2310
+
2311
+ ### Inherited from
2312
+
2313
+ ```ts
2314
+ StackProps.m
2315
+ ```
2316
+
2317
+ ***
2318
+
2319
+ ### mt?
2320
+
2321
+ ```ts
2322
+ optional mt:
2323
+ | ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>
2324
+ | (theme) => ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>;
2325
+ ```
2326
+
2327
+ ### Inherited from
2328
+
2329
+ ```ts
2330
+ StackProps.mt
2331
+ ```
2332
+
2333
+ ***
2334
+
2335
+ ### mr?
2336
+
2337
+ ```ts
2338
+ optional mr:
2339
+ | ResponsiveStyleValue<MarginRight<string | number> | readonly NonNullable<MarginRight<string | number> | undefined>[] | undefined>
2340
+ | (theme) => ResponsiveStyleValue<MarginRight<string | number> | readonly NonNullable<MarginRight<string | number> | undefined>[] | undefined>;
2341
+ ```
2342
+
2343
+ ### Inherited from
2344
+
2345
+ ```ts
2346
+ StackProps.mr
2347
+ ```
2348
+
2349
+ ***
2350
+
2351
+ ### mb?
2352
+
2353
+ ```ts
2354
+ optional mb:
2355
+ | ResponsiveStyleValue<MarginBottom<string | number> | readonly NonNullable<MarginBottom<string | number> | undefined>[] | undefined>
2356
+ | (theme) => ResponsiveStyleValue<MarginBottom<string | number> | readonly NonNullable<MarginBottom<string | number> | undefined>[] | undefined>;
2357
+ ```
2358
+
2359
+ ### Inherited from
2360
+
2361
+ ```ts
2362
+ StackProps.mb
2363
+ ```
2364
+
2365
+ ***
2366
+
2367
+ ### ml?
2368
+
2369
+ ```ts
2370
+ optional ml:
2371
+ | ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>
2372
+ | (theme) => ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>;
2373
+ ```
2374
+
2375
+ ### Inherited from
2376
+
2377
+ ```ts
2378
+ StackProps.ml
2379
+ ```
2380
+
2381
+ ***
2382
+
2383
+ ### mx?
2384
+
2385
+ ```ts
2386
+ optional mx:
2387
+ | ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>
2388
+ | (theme) => ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>;
2389
+ ```
2390
+
2391
+ ### Inherited from
2392
+
2393
+ ```ts
2394
+ StackProps.mx
2395
+ ```
2396
+
2397
+ ***
2398
+
2399
+ ### my?
2400
+
2401
+ ```ts
2402
+ optional my:
2403
+ | ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>
2404
+ | (theme) => ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>;
2405
+ ```
2406
+
2407
+ ### Inherited from
2408
+
2409
+ ```ts
2410
+ StackProps.my
2411
+ ```
2412
+
2413
+ ***
2414
+
2415
+ ### p?
2416
+
2417
+ ```ts
2418
+ optional p:
2419
+ | ResponsiveStyleValue<Padding<string | number> | readonly NonNullable<Padding<string | number> | undefined>[] | undefined>
2420
+ | (theme) => ResponsiveStyleValue<Padding<string | number> | readonly NonNullable<Padding<string | number> | undefined>[] | undefined>;
2421
+ ```
2422
+
2423
+ ### Inherited from
2424
+
2425
+ ```ts
2426
+ StackProps.p
2427
+ ```
2428
+
2429
+ ***
2430
+
2431
+ ### pt?
2432
+
2433
+ ```ts
2434
+ optional pt:
2435
+ | ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>
2436
+ | (theme) => ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>;
2437
+ ```
2438
+
2439
+ ### Inherited from
2440
+
2441
+ ```ts
2442
+ StackProps.pt
2443
+ ```
2444
+
2445
+ ***
2446
+
2447
+ ### pr?
2448
+
2449
+ ```ts
2450
+ optional pr:
2451
+ | ResponsiveStyleValue<PaddingRight<string | number> | readonly NonNullable<PaddingRight<string | number> | undefined>[] | undefined>
2452
+ | (theme) => ResponsiveStyleValue<PaddingRight<string | number> | readonly NonNullable<PaddingRight<string | number> | undefined>[] | undefined>;
2453
+ ```
2454
+
2455
+ ### Inherited from
2456
+
2457
+ ```ts
2458
+ StackProps.pr
2459
+ ```
2460
+
2461
+ ***
2462
+
2463
+ ### pb?
2464
+
2465
+ ```ts
2466
+ optional pb:
2467
+ | ResponsiveStyleValue<PaddingBottom<string | number> | readonly NonNullable<PaddingBottom<string | number> | undefined>[] | undefined>
2468
+ | (theme) => ResponsiveStyleValue<PaddingBottom<string | number> | readonly NonNullable<PaddingBottom<string | number> | undefined>[] | undefined>;
2469
+ ```
2470
+
2471
+ ### Inherited from
2472
+
2473
+ ```ts
2474
+ StackProps.pb
2475
+ ```
2476
+
2477
+ ***
2478
+
2479
+ ### pl?
2480
+
2481
+ ```ts
2482
+ optional pl:
2483
+ | ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>
2484
+ | (theme) => ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>;
2485
+ ```
2486
+
2487
+ ### Inherited from
2488
+
2489
+ ```ts
2490
+ StackProps.pl
2491
+ ```
2492
+
2493
+ ***
2494
+
2495
+ ### px?
2496
+
2497
+ ```ts
2498
+ optional px:
2499
+ | ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>
2500
+ | (theme) => ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>;
2501
+ ```
2502
+
2503
+ ### Inherited from
2504
+
2505
+ ```ts
2506
+ StackProps.px
2507
+ ```
2508
+
2509
+ ***
2510
+
2511
+ ### py?
2512
+
2513
+ ```ts
2514
+ optional py:
2515
+ | ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>
2516
+ | (theme) => ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>;
2517
+ ```
2518
+
2519
+ ### Inherited from
2520
+
2521
+ ```ts
2522
+ StackProps.py
2523
+ ```
2524
+
2525
+ ***
2526
+
2527
+ ### margin?
2528
+
2529
+ ```ts
2530
+ optional margin:
2531
+ | ResponsiveStyleValue<Margin<string | number> | readonly NonNullable<Margin<string | number> | undefined>[] | undefined>
2532
+ | (theme) => ResponsiveStyleValue<Margin<string | number> | readonly NonNullable<Margin<string | number> | undefined>[] | undefined>;
2533
+ ```
2534
+
2535
+ ### Inherited from
2536
+
2537
+ ```ts
2538
+ StackProps.margin
2539
+ ```
2540
+
2541
+ ***
2542
+
2543
+ ### marginTop?
2544
+
2545
+ ```ts
2546
+ optional marginTop:
2547
+ | ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>
2548
+ | (theme) => ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>;
2549
+ ```
2550
+
2551
+ ### Inherited from
2552
+
2553
+ ```ts
2554
+ StackProps.marginTop
2555
+ ```
2556
+
2557
+ ***
2558
+
2559
+ ### marginRight?
2560
+
2561
+ ```ts
2562
+ optional marginRight:
2563
+ | ResponsiveStyleValue<MarginRight<string | number> | readonly NonNullable<MarginRight<string | number> | undefined>[] | undefined>
2564
+ | (theme) => ResponsiveStyleValue<MarginRight<string | number> | readonly NonNullable<MarginRight<string | number> | undefined>[] | undefined>;
2565
+ ```
2566
+
2567
+ ### Inherited from
2568
+
2569
+ ```ts
2570
+ StackProps.marginRight
2571
+ ```
2572
+
2573
+ ***
2574
+
2575
+ ### marginBottom?
2576
+
2577
+ ```ts
2578
+ optional marginBottom:
2579
+ | ResponsiveStyleValue<MarginBottom<string | number> | readonly NonNullable<MarginBottom<string | number> | undefined>[] | undefined>
2580
+ | (theme) => ResponsiveStyleValue<MarginBottom<string | number> | readonly NonNullable<MarginBottom<string | number> | undefined>[] | undefined>;
2581
+ ```
2582
+
2583
+ ### Inherited from
2584
+
2585
+ ```ts
2586
+ StackProps.marginBottom
2587
+ ```
2588
+
2589
+ ***
2590
+
2591
+ ### marginLeft?
2592
+
2593
+ ```ts
2594
+ optional marginLeft:
2595
+ | ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>
2596
+ | (theme) => ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>;
2597
+ ```
2598
+
2599
+ ### Inherited from
2600
+
2601
+ ```ts
2602
+ StackProps.marginLeft
2603
+ ```
2604
+
2605
+ ***
2606
+
2607
+ ### marginX?
2608
+
2609
+ ```ts
2610
+ optional marginX:
2611
+ | ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>
2612
+ | (theme) => ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>;
2613
+ ```
2614
+
2615
+ ### Inherited from
2616
+
2617
+ ```ts
2618
+ StackProps.marginX
2619
+ ```
2620
+
2621
+ ***
2622
+
2623
+ ### marginY?
2624
+
2625
+ ```ts
2626
+ optional marginY:
2627
+ | ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>
2628
+ | (theme) => ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>;
2629
+ ```
2630
+
2631
+ ### Inherited from
2632
+
2633
+ ```ts
2634
+ StackProps.marginY
2635
+ ```
2636
+
2637
+ ***
2638
+
2639
+ ### marginInline?
2640
+
2641
+ ```ts
2642
+ optional marginInline:
2643
+ | ResponsiveStyleValue<MarginInline<string | number> | readonly NonNullable<MarginInline<string | number> | undefined>[] | undefined>
2644
+ | (theme) => ResponsiveStyleValue<MarginInline<string | number> | readonly NonNullable<MarginInline<string | number> | undefined>[] | undefined>;
2645
+ ```
2646
+
2647
+ ### Inherited from
2648
+
2649
+ ```ts
2650
+ StackProps.marginInline
2651
+ ```
2652
+
2653
+ ***
2654
+
2655
+ ### marginInlineStart?
2656
+
2657
+ ```ts
2658
+ optional marginInlineStart:
2659
+ | ResponsiveStyleValue<MarginInlineStart<string | number> | readonly NonNullable<MarginInlineStart<string | number> | undefined>[] | undefined>
2660
+ | (theme) => ResponsiveStyleValue<MarginInlineStart<string | number> | readonly NonNullable<MarginInlineStart<string | number> | undefined>[] | undefined>;
2661
+ ```
2662
+
2663
+ ### Inherited from
2664
+
2665
+ ```ts
2666
+ StackProps.marginInlineStart
2667
+ ```
2668
+
2669
+ ***
2670
+
2671
+ ### marginInlineEnd?
2672
+
2673
+ ```ts
2674
+ optional marginInlineEnd:
2675
+ | ResponsiveStyleValue<MarginInlineEnd<string | number> | readonly NonNullable<MarginInlineEnd<string | number> | undefined>[] | undefined>
2676
+ | (theme) => ResponsiveStyleValue<MarginInlineEnd<string | number> | readonly NonNullable<MarginInlineEnd<string | number> | undefined>[] | undefined>;
2677
+ ```
2678
+
2679
+ ### Inherited from
2680
+
2681
+ ```ts
2682
+ StackProps.marginInlineEnd
2683
+ ```
2684
+
2685
+ ***
2686
+
2687
+ ### marginBlock?
2688
+
2689
+ ```ts
2690
+ optional marginBlock:
2691
+ | ResponsiveStyleValue<MarginBlock<string | number> | readonly NonNullable<MarginBlock<string | number> | undefined>[] | undefined>
2692
+ | (theme) => ResponsiveStyleValue<MarginBlock<string | number> | readonly NonNullable<MarginBlock<string | number> | undefined>[] | undefined>;
2693
+ ```
2694
+
2695
+ ### Inherited from
2696
+
2697
+ ```ts
2698
+ StackProps.marginBlock
2699
+ ```
2700
+
2701
+ ***
2702
+
2703
+ ### marginBlockStart?
2704
+
2705
+ ```ts
2706
+ optional marginBlockStart:
2707
+ | ResponsiveStyleValue<MarginBlockStart<string | number> | readonly NonNullable<MarginBlockStart<string | number> | undefined>[] | undefined>
2708
+ | (theme) => ResponsiveStyleValue<MarginBlockStart<string | number> | readonly NonNullable<MarginBlockStart<string | number> | undefined>[] | undefined>;
2709
+ ```
2710
+
2711
+ ### Inherited from
2712
+
2713
+ ```ts
2714
+ StackProps.marginBlockStart
2715
+ ```
2716
+
2717
+ ***
2718
+
2719
+ ### marginBlockEnd?
2720
+
2721
+ ```ts
2722
+ optional marginBlockEnd:
2723
+ | ResponsiveStyleValue<MarginBlockEnd<string | number> | readonly NonNullable<MarginBlockEnd<string | number> | undefined>[] | undefined>
2724
+ | (theme) => ResponsiveStyleValue<MarginBlockEnd<string | number> | readonly NonNullable<MarginBlockEnd<string | number> | undefined>[] | undefined>;
2725
+ ```
2726
+
2727
+ ### Inherited from
2728
+
2729
+ ```ts
2730
+ StackProps.marginBlockEnd
2731
+ ```
2732
+
2733
+ ***
2734
+
2735
+ ### padding?
2736
+
2737
+ ```ts
2738
+ optional padding:
2739
+ | ResponsiveStyleValue<Padding<string | number> | readonly NonNullable<Padding<string | number> | undefined>[] | undefined>
2740
+ | (theme) => ResponsiveStyleValue<Padding<string | number> | readonly NonNullable<Padding<string | number> | undefined>[] | undefined>;
2741
+ ```
2742
+
2743
+ ### Inherited from
2744
+
2745
+ ```ts
2746
+ StackProps.padding
2747
+ ```
2748
+
2749
+ ***
2750
+
2751
+ ### paddingTop?
2752
+
2753
+ ```ts
2754
+ optional paddingTop:
2755
+ | ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>
2756
+ | (theme) => ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>;
2757
+ ```
2758
+
2759
+ ### Inherited from
2760
+
2761
+ ```ts
2762
+ StackProps.paddingTop
2763
+ ```
2764
+
2765
+ ***
2766
+
2767
+ ### paddingRight?
2768
+
2769
+ ```ts
2770
+ optional paddingRight:
2771
+ | ResponsiveStyleValue<PaddingRight<string | number> | readonly NonNullable<PaddingRight<string | number> | undefined>[] | undefined>
2772
+ | (theme) => ResponsiveStyleValue<PaddingRight<string | number> | readonly NonNullable<PaddingRight<string | number> | undefined>[] | undefined>;
2773
+ ```
2774
+
2775
+ ### Inherited from
2776
+
2777
+ ```ts
2778
+ StackProps.paddingRight
2779
+ ```
2780
+
2781
+ ***
2782
+
2783
+ ### paddingBottom?
2784
+
2785
+ ```ts
2786
+ optional paddingBottom:
2787
+ | ResponsiveStyleValue<PaddingBottom<string | number> | readonly NonNullable<PaddingBottom<string | number> | undefined>[] | undefined>
2788
+ | (theme) => ResponsiveStyleValue<PaddingBottom<string | number> | readonly NonNullable<PaddingBottom<string | number> | undefined>[] | undefined>;
2789
+ ```
2790
+
2791
+ ### Inherited from
2792
+
2793
+ ```ts
2794
+ StackProps.paddingBottom
2795
+ ```
2796
+
2797
+ ***
2798
+
2799
+ ### paddingLeft?
2800
+
2801
+ ```ts
2802
+ optional paddingLeft:
2803
+ | ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>
2804
+ | (theme) => ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>;
2805
+ ```
2806
+
2807
+ ### Inherited from
2808
+
2809
+ ```ts
2810
+ StackProps.paddingLeft
2811
+ ```
2812
+
2813
+ ***
2814
+
2815
+ ### paddingX?
2816
+
2817
+ ```ts
2818
+ optional paddingX:
2819
+ | ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>
2820
+ | (theme) => ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>;
2821
+ ```
2822
+
2823
+ ### Inherited from
2824
+
2825
+ ```ts
2826
+ StackProps.paddingX
2827
+ ```
2828
+
2829
+ ***
2830
+
2831
+ ### paddingY?
2832
+
2833
+ ```ts
2834
+ optional paddingY:
2835
+ | ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>
2836
+ | (theme) => ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>;
2837
+ ```
2838
+
2839
+ ### Inherited from
2840
+
2841
+ ```ts
2842
+ StackProps.paddingY
2843
+ ```
2844
+
2845
+ ***
2846
+
2847
+ ### paddingInline?
2848
+
2849
+ ```ts
2850
+ optional paddingInline:
2851
+ | ResponsiveStyleValue<PaddingInline<string | number> | readonly NonNullable<PaddingInline<string | number> | undefined>[] | undefined>
2852
+ | (theme) => ResponsiveStyleValue<PaddingInline<string | number> | readonly NonNullable<PaddingInline<string | number> | undefined>[] | undefined>;
2853
+ ```
2854
+
2855
+ ### Inherited from
2856
+
2857
+ ```ts
2858
+ StackProps.paddingInline
2859
+ ```
2860
+
2861
+ ***
2862
+
2863
+ ### paddingInlineStart?
2864
+
2865
+ ```ts
2866
+ optional paddingInlineStart:
2867
+ | ResponsiveStyleValue<PaddingInlineStart<string | number> | readonly NonNullable<PaddingInlineStart<string | number> | undefined>[] | undefined>
2868
+ | (theme) => ResponsiveStyleValue<PaddingInlineStart<string | number> | readonly NonNullable<PaddingInlineStart<string | number> | undefined>[] | undefined>;
2869
+ ```
2870
+
2871
+ ### Inherited from
2872
+
2873
+ ```ts
2874
+ StackProps.paddingInlineStart
2875
+ ```
2876
+
2877
+ ***
2878
+
2879
+ ### paddingInlineEnd?
2880
+
2881
+ ```ts
2882
+ optional paddingInlineEnd:
2883
+ | ResponsiveStyleValue<PaddingInlineEnd<string | number> | readonly NonNullable<PaddingInlineEnd<string | number> | undefined>[] | undefined>
2884
+ | (theme) => ResponsiveStyleValue<PaddingInlineEnd<string | number> | readonly NonNullable<PaddingInlineEnd<string | number> | undefined>[] | undefined>;
2885
+ ```
2886
+
2887
+ ### Inherited from
2888
+
2889
+ ```ts
2890
+ StackProps.paddingInlineEnd
2891
+ ```
2892
+
2893
+ ***
2894
+
2895
+ ### paddingBlock?
2896
+
2897
+ ```ts
2898
+ optional paddingBlock:
2899
+ | ResponsiveStyleValue<PaddingBlock<string | number> | readonly NonNullable<PaddingBlock<string | number> | undefined>[] | undefined>
2900
+ | (theme) => ResponsiveStyleValue<PaddingBlock<string | number> | readonly NonNullable<PaddingBlock<string | number> | undefined>[] | undefined>;
2901
+ ```
2902
+
2903
+ ### Inherited from
2904
+
2905
+ ```ts
2906
+ StackProps.paddingBlock
2907
+ ```
2908
+
2909
+ ***
2910
+
2911
+ ### paddingBlockStart?
2912
+
2913
+ ```ts
2914
+ optional paddingBlockStart:
2915
+ | ResponsiveStyleValue<PaddingBlockStart<string | number> | readonly NonNullable<PaddingBlockStart<string | number> | undefined>[] | undefined>
2916
+ | (theme) => ResponsiveStyleValue<PaddingBlockStart<string | number> | readonly NonNullable<PaddingBlockStart<string | number> | undefined>[] | undefined>;
2917
+ ```
2918
+
2919
+ ### Inherited from
2920
+
2921
+ ```ts
2922
+ StackProps.paddingBlockStart
2923
+ ```
2924
+
2925
+ ***
2926
+
2927
+ ### paddingBlockEnd?
2928
+
2929
+ ```ts
2930
+ optional paddingBlockEnd:
2931
+ | ResponsiveStyleValue<PaddingBlockEnd<string | number> | readonly NonNullable<PaddingBlockEnd<string | number> | undefined>[] | undefined>
2932
+ | (theme) => ResponsiveStyleValue<PaddingBlockEnd<string | number> | readonly NonNullable<PaddingBlockEnd<string | number> | undefined>[] | undefined>;
2933
+ ```
2934
+
2935
+ ### Inherited from
2936
+
2937
+ ```ts
2938
+ StackProps.paddingBlockEnd
2939
+ ```
2940
+
2941
+ ***
2942
+
2943
+ ### typography?
2944
+
2945
+ ```ts
2946
+ optional typography:
2947
+ | ResponsiveStyleValue<string | undefined>
2948
+ | (theme) => ResponsiveStyleValue<string | undefined>;
2949
+ ```
2950
+
2951
+ ### Inherited from
2952
+
2953
+ ```ts
2954
+ StackProps.typography
2955
+ ```
2956
+
2957
+ ***
2958
+
2959
+ ### fontFamily?
2960
+
2961
+ ```ts
2962
+ optional fontFamily:
2963
+ | ResponsiveStyleValue<readonly string[] | FontFamily | undefined>
2964
+ | (theme) => ResponsiveStyleValue<readonly string[] | FontFamily | undefined>;
2965
+ ```
2966
+
2967
+ ### Inherited from
2968
+
2969
+ ```ts
2970
+ StackProps.fontFamily
2971
+ ```
2972
+
2973
+ ***
2974
+
2975
+ ### fontSize?
2976
+
2977
+ ```ts
2978
+ optional fontSize:
2979
+ | ResponsiveStyleValue<FontSize<string | number> | readonly NonNullable<FontSize<string | number> | undefined>[] | undefined>
2980
+ | (theme) => ResponsiveStyleValue<FontSize<string | number> | readonly NonNullable<FontSize<string | number> | undefined>[] | undefined>;
2981
+ ```
2982
+
2983
+ ### Inherited from
2984
+
2985
+ ```ts
2986
+ StackProps.fontSize
2987
+ ```
2988
+
2989
+ ***
2990
+
2991
+ ### fontStyle?
2992
+
2993
+ ```ts
2994
+ optional fontStyle:
2995
+ | ResponsiveStyleValue<readonly string[] | FontStyle | undefined>
2996
+ | (theme) => ResponsiveStyleValue<readonly string[] | FontStyle | undefined>;
2997
+ ```
2998
+
2999
+ ### Inherited from
3000
+
3001
+ ```ts
3002
+ StackProps.fontStyle
3003
+ ```
3004
+
3005
+ ***
3006
+
3007
+ ### fontWeight?
3008
+
3009
+ ```ts
3010
+ optional fontWeight:
3011
+ | ResponsiveStyleValue<string | string & object | number & object | undefined>
3012
+ | (theme) => ResponsiveStyleValue<string | string & object | number & object | undefined>;
3013
+ ```
3014
+
3015
+ ### Inherited from
3016
+
3017
+ ```ts
3018
+ StackProps.fontWeight
3019
+ ```
3020
+
3021
+ ***
3022
+
3023
+ ### letterSpacing?
3024
+
3025
+ ```ts
3026
+ optional letterSpacing:
3027
+ | ResponsiveStyleValue<LetterSpacing<string | number> | readonly NonNullable<LetterSpacing<string | number> | undefined>[] | undefined>
3028
+ | (theme) => ResponsiveStyleValue<LetterSpacing<string | number> | readonly NonNullable<LetterSpacing<string | number> | undefined>[] | undefined>;
3029
+ ```
3030
+
3031
+ ### Inherited from
3032
+
3033
+ ```ts
3034
+ StackProps.letterSpacing
3035
+ ```
3036
+
3037
+ ***
3038
+
3039
+ ### lineHeight?
3040
+
3041
+ ```ts
3042
+ optional lineHeight:
3043
+ | ResponsiveStyleValue<LineHeight<string | number> | readonly NonNullable<LineHeight<string | number> | undefined>[] | undefined>
3044
+ | (theme) => ResponsiveStyleValue<LineHeight<string | number> | readonly NonNullable<LineHeight<string | number> | undefined>[] | undefined>;
3045
+ ```
3046
+
3047
+ ### Inherited from
3048
+
3049
+ ```ts
3050
+ StackProps.lineHeight
3051
+ ```
3052
+
3053
+ ***
3054
+
3055
+ ### textAlign?
3056
+
3057
+ ```ts
3058
+ optional textAlign:
3059
+ | ResponsiveStyleValue<TextAlign | readonly NonNullable<TextAlign | undefined>[] | undefined>
3060
+ | (theme) => ResponsiveStyleValue<TextAlign | readonly NonNullable<TextAlign | undefined>[] | undefined>;
3061
+ ```
3062
+
3063
+ ### Inherited from
3064
+
3065
+ ```ts
3066
+ StackProps.textAlign
3067
+ ```
3068
+
3069
+ ***
3070
+
3071
+ ### textTransform?
3072
+
3073
+ ```ts
3074
+ optional textTransform:
3075
+ | ResponsiveStyleValue<readonly string[] | TextTransform | undefined>
3076
+ | (theme) => ResponsiveStyleValue<readonly string[] | TextTransform | undefined>;
3077
+ ```
3078
+
3079
+ ### Inherited from
3080
+
3081
+ ```ts
3082
+ StackProps.textTransform
3083
+ ```
3084
+
3085
+ ***
3086
+
3087
+ ### AccountComponent?
3088
+
3089
+ ```ts
3090
+ optional AccountComponent: ComponentType<{
3091
+ account?: string;
3092
+ }>;
3093
+ ```
3094
+
3095
+ ***
3096
+
3097
+ ### ConnectComponent?
3098
+
3099
+ ```ts
3100
+ optional ConnectComponent: ComponentType<{
3101
+ onClick?: MouseEventHandler<HTMLElement>;
3102
+ }>;
3103
+ ```
3104
+
3105
+ ***
3106
+
3107
+ ### NoWalletInstalledComponent?
3108
+
3109
+ ```ts
3110
+ optional NoWalletInstalledComponent: ComponentType;
3111
+ ```
3112
+
3113
+ ***
3114
+
3115
+ ### onAccountConnected()?
3116
+
3117
+ ```ts
3118
+ optional onAccountConnected: (account) => void;
3119
+ ```
3120
+
3121
+ ### Parameters
3122
+
3123
+ #### account
3124
+
3125
+ `Address`
3126
+
3127
+ ### Returns
3128
+
3129
+ `void`
3130
+
3131
+ ***
3132
+
3133
+ ### onCancel()?
3134
+
3135
+ ```ts
3136
+ optional onCancel: () => void;
3137
+ ```
3138
+
3139
+ ### Returns
3140
+
3141
+ `void`
3142
+
3143
+ ***
3144
+
3145
+ ### timeout?
3146
+
3147
+ ```ts
3148
+ optional timeout: number;
3149
+ ```
3150
+
3151
+ ### type-aliases
3152
+
3153
+ ### <a id="BalanceTransactionType"></a>BalanceTransactionType
3154
+
3155
+ [**@xyo-network/react-chain-provider**](#../README)
3156
+
3157
+ ***
3158
+
3159
+ ```ts
3160
+ type BalanceTransactionType = "send" | "receive";
3161
+ ```
3162
+
3163
+ ### <a id="ConfirmationStatusUpdate"></a>ConfirmationStatusUpdate
3164
+
3165
+ [**@xyo-network/react-chain-provider**](#../README)
3166
+
3167
+ ***
3168
+
3169
+ ```ts
3170
+ type ConfirmationStatusUpdate = object;
3171
+ ```
3172
+
3173
+ ## Properties
3174
+
3175
+ ### blockNumber
3176
+
3177
+ ```ts
3178
+ blockNumber: number;
3179
+ ```
3180
+
3181
+ ***
3182
+
3183
+ ### confirmed
3184
+
3185
+ ```ts
3186
+ confirmed: boolean;
3187
+ ```
3188
+
3189
+ ***
3190
+
3191
+ ### error?
3192
+
3193
+ ```ts
3194
+ optional error: Error;
3195
+ ```
3196
+
3197
+ ***
3198
+
3199
+ ### progress?
3200
+
3201
+ ```ts
3202
+ optional progress: number;
3203
+ ```
3204
+
3205
+ ***
3206
+
3207
+ ### remainingBlocks?
3208
+
3209
+ ```ts
3210
+ optional remainingBlocks: number;
3211
+ ```
3212
+
3213
+ ### <a id="TransactionConfirmationParams"></a>TransactionConfirmationParams
3214
+
3215
+ [**@xyo-network/react-chain-provider**](#../README)
3216
+
3217
+ ***
3218
+
3219
+ ```ts
3220
+ type TransactionConfirmationParams = object;
3221
+ ```
3222
+
3223
+ ## Properties
3224
+
3225
+ ### onStatusUpdate()?
3226
+
3227
+ ```ts
3228
+ optional onStatusUpdate: (status) => void;
3229
+ ```
3230
+
3231
+ ### Parameters
3232
+
3233
+ #### status
3234
+
3235
+ [`ConfirmationStatusUpdate`](#ConfirmationStatusUpdate)
3236
+
3237
+ ### Returns
3238
+
3239
+ `void`
3240
+
3241
+ ***
3242
+
3243
+ ### transaction
3244
+
3245
+ ```ts
3246
+ transaction: SignedHydratedTransaction;
3247
+ ```
3248
+
3249
+ ***
3250
+
3251
+ ### txHash
3252
+
3253
+ ```ts
3254
+ txHash: Hash;
3255
+ ```
3256
+
3257
+ ***
3258
+
3259
+ ### viewer
3260
+
3261
+ ```ts
3262
+ viewer: XyoViewer;
3263
+ ```
3264
+
3265
+ ### variables
3266
+
3267
+ ### <a id="ConnectAccountsStack"></a>ConnectAccountsStack
3268
+
3269
+ [**@xyo-network/react-chain-provider**](#../README)
3270
+
3271
+ ***
3272
+
3273
+ ```ts
3274
+ const ConnectAccountsStack: React.FC<ConnectClientAccountsStackProps>;
3275
+ ```
3276
+
3277
+ ### <a id="ConnectedAccount"></a>ConnectedAccount
3278
+
3279
+ [**@xyo-network/react-chain-provider**](#../README)
3280
+
3281
+ ***
3282
+
3283
+ ```ts
3284
+ const ConnectedAccount: React.FC<{
3285
+ address: string;
3286
+ }>;
3287
+ ```
3288
+
469
3289
 
470
3290
  ## Maintainers
471
3291