@xyo-network/react-chain 1.15.1 → 1.15.3

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 +2702 -307
  2. package/package.json +20 -20
package/README.md CHANGED
@@ -79,6 +79,8 @@ XYO Layer One React SDK
79
79
  - [ContractDetails](#interfaces/ContractDetails)
80
80
  - [Erc20ContractConstants](#interfaces/Erc20ContractConstants)
81
81
  - [TransactionResponse](#interfaces/TransactionResponse)
82
+ - [TransferRenderBoxDetailsProps](#interfaces/TransferRenderBoxDetailsProps)
83
+ - [TransferRenderCardProps](#interfaces/TransferRenderCardProps)
82
84
 
83
85
  ## Type Aliases
84
86
 
@@ -171,11 +173,18 @@ XYO Layer One React SDK
171
173
  - [useViewerInPage](#variables/useViewerInPage)
172
174
  - [useViewerInWallet](#variables/useViewerInWallet)
173
175
  - [usePollNetworkStatus](#variables/usePollNetworkStatus)
176
+ - [listenForClientInjection](#variables/listenForClientInjection)
174
177
  - [useAddressBalance](#variables/useAddressBalance)
178
+ - [useClient](#variables/useClient)
179
+ - [useConnectAccount](#variables/useConnectAccount)
175
180
  - [useCurrentBlock](#variables/useCurrentBlock)
181
+ - [useGateway](#variables/useGateway)
176
182
  - [useHttpRpcRunner](#variables/useHttpRpcRunner)
177
183
  - [useNetwork](#variables/useNetwork)
178
184
  - [useSigner](#variables/useSigner)
185
+ - [useCheckLocalRpc](#variables/useCheckLocalRpc)
186
+ - [useCheckSequenceRpc](#variables/useCheckSequenceRpc)
187
+ - [useCheckRpc](#variables/useCheckRpc)
179
188
  - [useHttpRpcViewer](#variables/useHttpRpcViewer)
180
189
  - [useViewerFromWallet](#variables/useViewerFromWallet)
181
190
  - [ActiveMenuItem](#variables/ActiveMenuItem)
@@ -220,6 +229,9 @@ XYO Layer One React SDK
220
229
  - [ERC20\_SEPOLIA\_CONTRACT\_CONSTANTS](#variables/ERC20_SEPOLIA_CONTRACT_CONSTANTS)
221
230
  - [ERC20\_MAINNET\_CONTRACT\_CONSTANTS](#variables/ERC20_MAINNET_CONTRACT_CONSTANTS)
222
231
  - [a11yProps](#variables/a11yProps)
232
+ - [TransferRenderPlugin](#variables/TransferRenderPlugin)
233
+ - [TransferRenderBoxDetails](#variables/TransferRenderBoxDetails)
234
+ - [TransferRenderCard](#variables/TransferRenderCard)
223
235
 
224
236
  ## Functions
225
237
 
@@ -227,6 +239,7 @@ XYO Layer One React SDK
227
239
  - [renderIcon](#functions/renderIcon)
228
240
  - [createIcon](#functions/createIcon)
229
241
  - [getXyoProvider](#functions/getXyoProvider)
242
+ - [getXyoClient](#functions/getXyoClient)
230
243
 
231
244
  ### classes
232
245
 
@@ -255,12 +268,12 @@ new ChainIteratorStore(): ChainIteratorStore;
255
268
  ### Get Signature
256
269
 
257
270
  ```ts
258
- get chainIterator(): EventingChainBlockNumberIterator;
271
+ get chainIterator(): EventingChainBlockNumberIteratorService;
259
272
  ```
260
273
 
261
274
  #### Returns
262
275
 
263
- `EventingChainBlockNumberIterator`
276
+ `EventingChainBlockNumberIteratorService`
264
277
 
265
278
  ***
266
279
 
@@ -384,6 +397,20 @@ function createIcon(opts): HTMLCanvasElement;
384
397
 
385
398
  `HTMLCanvasElement`
386
399
 
400
+ ### <a id="getXyoClient"></a>getXyoClient
401
+
402
+ [**@xyo-network/react-chain**](#../README)
403
+
404
+ ***
405
+
406
+ ```ts
407
+ function getXyoClient(): Promise<undefined | XyoClient>;
408
+ ```
409
+
410
+ ## Returns
411
+
412
+ `Promise`\<`undefined` \| `XyoClient`\>
413
+
387
414
  ### <a id="getXyoProvider"></a>getXyoProvider
388
415
 
389
416
  [**@xyo-network/react-chain**](#../README)
@@ -391,7 +418,7 @@ function createIcon(opts): HTMLCanvasElement;
391
418
  ***
392
419
 
393
420
  ```ts
394
- function getXyoProvider(options): XyoConnectionProvider;
421
+ function getXyoProvider(options): XyoConnection;
395
422
  ```
396
423
 
397
424
  ## Parameters
@@ -404,7 +431,7 @@ function getXyoProvider(options): XyoConnectionProvider;
404
431
 
405
432
  ## Returns
406
433
 
407
- `XyoConnectionProvider`
434
+ `XyoConnection`
408
435
 
409
436
  ### <a id="renderIcon"></a>renderIcon
410
437
 
@@ -667,7 +694,7 @@ BlockTableCellProps.linked
667
694
  ### block
668
695
 
669
696
  ```ts
670
- block: Lowercase<string>;
697
+ block: Brand;
671
698
  ```
672
699
 
673
700
  ***
@@ -821,7 +848,7 @@ optional evmBlockRewardService: EvmBlockRewardService;
821
848
  ### block
822
849
 
823
850
  ```ts
824
- block: Lowercase<string>;
851
+ block: Brand;
825
852
  ```
826
853
 
827
854
  ***
@@ -936,9 +963,7 @@ optional bgcolor: string;
936
963
 
937
964
  ### Inherited from
938
965
 
939
- ```ts
940
- Partial.bgcolor
941
- ```
966
+ [`BlockiesOptions`](#BlockiesOptions).[`bgcolor`](BlockiesOptions.md#bgcolor)
942
967
 
943
968
  ***
944
969
 
@@ -950,9 +975,7 @@ optional color: string;
950
975
 
951
976
  ### Inherited from
952
977
 
953
- ```ts
954
- Partial.color
955
- ```
978
+ [`BlockiesOptions`](#BlockiesOptions).[`color`](BlockiesOptions.md#color)
956
979
 
957
980
  ***
958
981
 
@@ -964,9 +987,7 @@ optional scale: number;
964
987
 
965
988
  ### Inherited from
966
989
 
967
- ```ts
968
- Partial.scale
969
- ```
990
+ [`BlockiesOptions`](#BlockiesOptions).[`scale`](BlockiesOptions.md#scale)
970
991
 
971
992
  ***
972
993
 
@@ -978,9 +999,7 @@ optional seed: string;
978
999
 
979
1000
  ### Inherited from
980
1001
 
981
- ```ts
982
- Partial.seed
983
- ```
1002
+ [`BlockiesOptions`](#BlockiesOptions).[`seed`](BlockiesOptions.md#seed)
984
1003
 
985
1004
  ***
986
1005
 
@@ -992,9 +1011,7 @@ optional size: number;
992
1011
 
993
1012
  ### Inherited from
994
1013
 
995
- ```ts
996
- Partial.size
997
- ```
1014
+ [`BlockiesOptions`](#BlockiesOptions).[`size`](BlockiesOptions.md#size)
998
1015
 
999
1016
  ***
1000
1017
 
@@ -1006,9 +1023,7 @@ optional spotcolor: string;
1006
1023
 
1007
1024
  ### Inherited from
1008
1025
 
1009
- ```ts
1010
- Partial.spotcolor
1011
- ```
1026
+ [`BlockiesOptions`](#BlockiesOptions).[`spotcolor`](BlockiesOptions.md#spotcolor)
1012
1027
 
1013
1028
  ### <a id="BlockiesAvatarAddressProps"></a>BlockiesAvatarAddressProps
1014
1029
 
@@ -1074,6 +1089,8 @@ optional blockiesOptions: Partial<BlockiesOptions>;
1074
1089
 
1075
1090
  ***
1076
1091
 
1092
+ inspired by https://github.com/download13/blockies/blob/master/src/blockies.mjs
1093
+
1077
1094
  ## Properties
1078
1095
 
1079
1096
  ### bgcolor
@@ -1151,7 +1168,7 @@ optional chainArchivist: ArchivistInstance<ArchivistParams<AnyConfigSchema<Archi
1151
1168
  ### chainIterator?
1152
1169
 
1153
1170
  ```ts
1154
- optional chainIterator: ChainBlockNumberIterator;
1171
+ optional chainIterator: ChainBlockNumberIteratorService;
1155
1172
  ```
1156
1173
 
1157
1174
  ***
@@ -1293,7 +1310,7 @@ optional onNetworkChange: (url) => void;
1293
1310
  ### address?
1294
1311
 
1295
1312
  ```ts
1296
- optional address: string;
1313
+ optional address: EthAddress;
1297
1314
  ```
1298
1315
 
1299
1316
  ***
@@ -5497,7 +5514,7 @@ optional activeStake: bigint;
5497
5514
  ### chainId?
5498
5515
 
5499
5516
  ```ts
5500
- optional chainId: string;
5517
+ optional chainId: Chain;
5501
5518
  ```
5502
5519
 
5503
5520
  ***
@@ -5551,7 +5568,7 @@ optional withdrawnStake: bigint;
5551
5568
  ### firstBlockHash
5552
5569
 
5553
5570
  ```ts
5554
- firstBlockHash: Lowercase<string>;
5571
+ firstBlockHash: Brand;
5555
5572
  ```
5556
5573
 
5557
5574
  ***
@@ -5559,7 +5576,7 @@ firstBlockHash: Lowercase<string>;
5559
5576
  ### forkFromChainId
5560
5577
 
5561
5578
  ```ts
5562
- forkFromChainId: Lowercase<string>;
5579
+ forkFromChainId: EthAddress;
5563
5580
  ```
5564
5581
 
5565
5582
  ***
@@ -5567,7 +5584,7 @@ forkFromChainId: Lowercase<string>;
5567
5584
  ### forkFromLastBlockNumber
5568
5585
 
5569
5586
  ```ts
5570
- forkFromLastBlockNumber: Lowercase<string>;
5587
+ forkFromLastBlockNumber: number;
5571
5588
  ```
5572
5589
 
5573
5590
  ***
@@ -5575,7 +5592,7 @@ forkFromLastBlockNumber: Lowercase<string>;
5575
5592
  ### forkFromLastHash
5576
5593
 
5577
5594
  ```ts
5578
- forkFromLastHash: Lowercase<string>;
5595
+ forkFromLastHash: Brand;
5579
5596
  ```
5580
5597
 
5581
5598
  ***
@@ -5583,7 +5600,7 @@ forkFromLastHash: Lowercase<string>;
5583
5600
  ### genesisBlockRewardAddress
5584
5601
 
5585
5602
  ```ts
5586
- genesisBlockRewardAddress: Lowercase<string>;
5603
+ genesisBlockRewardAddress: Brand;
5587
5604
  ```
5588
5605
 
5589
5606
  ***
@@ -5591,7 +5608,7 @@ genesisBlockRewardAddress: Lowercase<string>;
5591
5608
  ### genesisBlockRewardAmount
5592
5609
 
5593
5610
  ```ts
5594
- genesisBlockRewardAmount: Lowercase<string>;
5611
+ genesisBlockRewardAmount: Brand;
5595
5612
  ```
5596
5613
 
5597
5614
  ***
@@ -5607,7 +5624,7 @@ initialProducerKey: string;
5607
5624
  ### minWithdrawalBlocks
5608
5625
 
5609
5626
  ```ts
5610
- minWithdrawalBlocks: Lowercase<string>;
5627
+ minWithdrawalBlocks: Brand;
5611
5628
  ```
5612
5629
 
5613
5630
  ***
@@ -5615,7 +5632,7 @@ minWithdrawalBlocks: Lowercase<string>;
5615
5632
  ### rewardsContractAddress
5616
5633
 
5617
5634
  ```ts
5618
- rewardsContractAddress: Lowercase<string>;
5635
+ rewardsContractAddress: Brand;
5619
5636
  ```
5620
5637
 
5621
5638
  ***
@@ -5623,7 +5640,7 @@ rewardsContractAddress: Lowercase<string>;
5623
5640
  ### stakingTokenAddress
5624
5641
 
5625
5642
  ```ts
5626
- stakingTokenAddress: Lowercase<string>;
5643
+ stakingTokenAddress: Brand;
5627
5644
  ```
5628
5645
 
5629
5646
  ### <a id="DeployStakeContractProps"></a>DeployStakeContractProps
@@ -7707,7 +7724,7 @@ optional signer: Signer;
7707
7724
  ### contractAddress?
7708
7725
 
7709
7726
  ```ts
7710
- optional contractAddress: Lowercase<string>;
7727
+ optional contractAddress: EthAddress;
7711
7728
  ```
7712
7729
 
7713
7730
  ***
@@ -9811,7 +9828,15 @@ optional tooltipTitle: string;
9811
9828
  ### address
9812
9829
 
9813
9830
  ```ts
9814
- address: Lowercase<string>;
9831
+ address: Brand;
9832
+ ```
9833
+
9834
+ ***
9835
+
9836
+ ### chainId
9837
+
9838
+ ```ts
9839
+ chainId: Brand;
9815
9840
  ```
9816
9841
 
9817
9842
  ***
@@ -16357,7 +16382,7 @@ $timestamp: number;
16357
16382
  ### contractAddress
16358
16383
 
16359
16384
  ```ts
16360
- contractAddress: Lowercase<string>;
16385
+ contractAddress: EthAddress;
16361
16386
  ```
16362
16387
 
16363
16388
  ***
@@ -16421,7 +16446,9 @@ optional showDivider: boolean;
16421
16446
  ### transactions?
16422
16447
 
16423
16448
  ```ts
16424
- optional transactions: Lowercase<string>[];
16449
+ optional transactions: Brand<Brand<Lowercase<string>, {
16450
+ }>, {
16451
+ }>[];
16425
16452
  ```
16426
16453
 
16427
16454
  ### <a id="TransactionResponse"></a>TransactionResponse
@@ -16520,268 +16547,2400 @@ optional onBuild: (payload) => void;
16520
16547
 
16521
16548
  [`PayloadBuilderComponentProps`](#PayloadBuilderComponentProps).[`onBuild`](PayloadBuilderComponentProps.md#onbuild)
16522
16549
 
16523
- ### <a id="XyoGlobal"></a>XyoGlobal
16550
+ ### <a id="TransferRenderBoxDetailsProps"></a>TransferRenderBoxDetailsProps
16524
16551
 
16525
16552
  [**@xyo-network/react-chain**](#../README)
16526
16553
 
16527
16554
  ***
16528
16555
 
16529
- ## Properties
16530
-
16531
- ### \_debug()
16532
-
16533
- ```ts
16534
- _debug: () => void;
16535
- ```
16536
-
16537
- ### Returns
16538
-
16539
- `void`
16540
-
16541
- ***
16542
-
16543
- ### connections
16544
-
16545
- ```ts
16546
- connections: object;
16547
- ```
16548
-
16549
- ### Index Signature
16550
-
16551
- ```ts
16552
- [chainId: string]: ChainConnection
16553
- ```
16554
-
16555
- ***
16556
-
16557
- ### errors
16558
-
16559
- ```ts
16560
- errors: Error[];
16561
- ```
16562
-
16563
- ***
16564
-
16565
- ### gateway?
16566
-
16567
- ```ts
16568
- optional gateway: XyoGatewayProvider;
16569
- ```
16570
-
16571
- ***
16572
-
16573
- ### provider?
16556
+ ## Extends
16574
16557
 
16575
- ```ts
16576
- optional provider: XyoConnectionProvider;
16577
- ```
16558
+ - `PayloadDetailsRenderProps`.`FlexBoxProps`
16578
16559
 
16579
- ***
16560
+ ## Properties
16580
16561
 
16581
- ### walletExtensionId()
16562
+ ### height?
16582
16563
 
16583
16564
  ```ts
16584
- walletExtensionId: () => string;
16565
+ optional height:
16566
+ | ResponsiveStyleValue<Height<string | number> | readonly NonNullable<Height<string | number> | undefined>[] | undefined>
16567
+ | (theme) => ResponsiveStyleValue<Height<string | number> | readonly NonNullable<Height<string | number> | undefined>[] | undefined>;
16585
16568
  ```
16586
16569
 
16587
- ### Returns
16588
-
16589
- `string`
16590
-
16591
- ### type-aliases
16592
-
16593
- ### <a id="BlockHeaderEventNouns"></a>BlockHeaderEventNouns
16594
-
16595
- [**@xyo-network/react-chain**](#../README)
16596
-
16597
- ***
16570
+ ### Inherited from
16598
16571
 
16599
16572
  ```ts
16600
- type BlockHeaderEventNouns =
16601
- | "transaction-count"
16602
- | "block-hash"
16603
- | "block-number"
16604
- | "block-producer"
16605
- | "block-verification"
16606
- | "payload-counts";
16573
+ FlexBoxProps.height
16607
16574
  ```
16608
16575
 
16609
- ### <a id="ChainIteratorStoreValues"></a>ChainIteratorStoreValues
16610
-
16611
- [**@xyo-network/react-chain**](#../README)
16612
-
16613
16576
  ***
16614
16577
 
16615
- ```ts
16616
- type ChainIteratorStoreValues = object;
16617
- ```
16618
-
16619
- ## Properties
16620
-
16621
- ### chainIterator
16578
+ ### width?
16622
16579
 
16623
16580
  ```ts
16624
- chainIterator: ChainBlockNumberIterationService;
16581
+ optional width:
16582
+ | ResponsiveStyleValue<Width<string | number> | readonly NonNullable<Width<string | number> | undefined>[] | undefined>
16583
+ | (theme) => ResponsiveStyleValue<Width<string | number> | readonly NonNullable<Width<string | number> | undefined>[] | undefined>;
16625
16584
  ```
16626
16585
 
16627
- ***
16628
-
16629
- ### error?
16586
+ ### Inherited from
16630
16587
 
16631
16588
  ```ts
16632
- optional error: Error;
16589
+ FlexBoxProps.width
16633
16590
  ```
16634
16591
 
16635
16592
  ***
16636
16593
 
16637
- ### head
16594
+ ### p?
16638
16595
 
16639
16596
  ```ts
16640
- head: HydratedBlock;
16597
+ optional p:
16598
+ | ResponsiveStyleValue<Padding<string | number> | readonly NonNullable<Padding<string | number> | undefined>[] | undefined>
16599
+ | (theme) => ResponsiveStyleValue<Padding<string | number> | readonly NonNullable<Padding<string | number> | undefined>[] | undefined>;
16641
16600
  ```
16642
16601
 
16643
- ### <a id="ChainNetworkState"></a>ChainNetworkState
16644
-
16645
- [**@xyo-network/react-chain**](#../README)
16646
-
16647
- ***
16602
+ ### Inherited from
16648
16603
 
16649
16604
  ```ts
16650
- type ChainNetworkState = ContextExState<{
16651
- activeNetwork?: NetworkBootstrap;
16652
- chainNetworkError?: Error;
16653
- networks?: NetworkBootstrap[];
16654
- updateActiveNetwork?: (networkId) => void;
16655
- }>;
16605
+ FlexBoxProps.p
16656
16606
  ```
16657
16607
 
16658
- ### <a id="Listener"></a>Listener
16659
-
16660
- [**@xyo-network/react-chain**](#../README)
16661
-
16662
16608
  ***
16663
16609
 
16664
- ```ts
16665
- type Listener = (...args) => void;
16666
- ```
16667
-
16668
- ## Parameters
16669
-
16670
- ### args
16671
-
16672
- ...`unknown`[]
16673
-
16674
- ## Returns
16675
-
16676
- `void`
16677
-
16678
- ### <a id="PollingState"></a>PollingState
16679
-
16680
- [**@xyo-network/react-chain**](#../README)
16681
-
16682
- ***
16610
+ ### color?
16683
16611
 
16684
16612
  ```ts
16685
- type PollingState = "paused" | "running";
16613
+ optional color:
16614
+ | ResponsiveStyleValue<readonly string[] | Color | undefined>
16615
+ | (theme) => ResponsiveStyleValue<readonly string[] | Color | undefined>;
16686
16616
  ```
16687
16617
 
16688
- ### <a id="SmartContractDeploy"></a>SmartContractDeploy
16689
-
16690
- [**@xyo-network/react-chain**](#../README)
16691
-
16692
- ***
16618
+ ### Inherited from
16693
16619
 
16694
16620
  ```ts
16695
- type SmartContractDeploy = Payload<SmartContractDeployFields, SmartContractDeploySchema>;
16621
+ FlexBoxProps.color
16696
16622
  ```
16697
16623
 
16698
- ### <a id="SmartContractDeploySchema"></a>SmartContractDeploySchema
16699
-
16700
- [**@xyo-network/react-chain**](#../README)
16701
-
16702
16624
  ***
16703
16625
 
16704
- ```ts
16705
- type SmartContractDeploySchema = typeof SmartContractDeploySchema;
16706
- ```
16707
-
16708
- ### variables
16709
-
16710
- ### <a id="ActiveMenuItem"></a>ActiveMenuItem
16711
-
16712
- [**@xyo-network/react-chain**](#../README)
16713
-
16714
- ***
16626
+ ### left?
16715
16627
 
16716
16628
  ```ts
16717
- const ActiveMenuItem: React.FC<MenuItemProps & object>;
16629
+ optional left:
16630
+ | ResponsiveStyleValue<Left<string | number> | readonly NonNullable<Left<string | number> | undefined>[] | undefined>
16631
+ | (theme) => ResponsiveStyleValue<Left<string | number> | readonly NonNullable<Left<string | number> | undefined>[] | undefined>;
16718
16632
  ```
16719
16633
 
16720
- ### <a id="ActiveNetworkAvatar"></a>ActiveNetworkAvatar
16721
-
16722
- [**@xyo-network/react-chain**](#../README)
16723
-
16724
- ***
16634
+ ### Inherited from
16725
16635
 
16726
16636
  ```ts
16727
- const ActiveNetworkAvatar: React.FC<AvatarProps>;
16637
+ FlexBoxProps.left
16728
16638
  ```
16729
16639
 
16730
- ### <a id="BlockChainPagination"></a>BlockChainPagination
16731
-
16732
- [**@xyo-network/react-chain**](#../README)
16733
-
16734
16640
  ***
16735
16641
 
16736
- ```ts
16737
- const BlockChainPagination: React.FC<BlockChainPaginationProps>;
16738
- ```
16739
-
16740
- ### <a id="BlockChainTableRow"></a>BlockChainTableRow
16741
-
16742
- [**@xyo-network/react-chain**](#../README)
16743
-
16744
- ***
16642
+ ### right?
16745
16643
 
16746
16644
  ```ts
16747
- const BlockChainTableRow: React.FC<BlockChainTableRowProps>;
16645
+ optional right:
16646
+ | ResponsiveStyleValue<Right<string | number> | readonly NonNullable<Right<string | number> | undefined>[] | undefined>
16647
+ | (theme) => ResponsiveStyleValue<Right<string | number> | readonly NonNullable<Right<string | number> | undefined>[] | undefined>;
16748
16648
  ```
16749
16649
 
16750
- ### <a id="BlockEpochTableCell"></a>BlockEpochTableCell
16751
-
16752
- [**@xyo-network/react-chain**](#../README)
16753
-
16754
- ***
16650
+ ### Inherited from
16755
16651
 
16756
16652
  ```ts
16757
- const BlockEpochTableCell: React.FC<BlockEpochTableCellProps>;
16653
+ FlexBoxProps.right
16758
16654
  ```
16759
16655
 
16760
- ### <a id="BlockHashTableCell"></a>BlockHashTableCell
16761
-
16762
- [**@xyo-network/react-chain**](#../README)
16763
-
16764
16656
  ***
16765
16657
 
16766
- ```ts
16767
- const BlockHashTableCell: React.FC<BlockHashTableCellProps>;
16768
- ```
16769
-
16770
- ### <a id="BlockHeadingFlexbox"></a>BlockHeadingFlexbox
16771
-
16772
- [**@xyo-network/react-chain**](#../README)
16773
-
16774
- ***
16658
+ ### border?
16775
16659
 
16776
16660
  ```ts
16777
- const BlockHeadingFlexbox: React.FC<BlockComponentWithTxsProps>;
16778
- ```
16779
-
16780
- ### <a id="BlockJsonViewTableCell"></a>BlockJsonViewTableCell
16781
-
16782
- [**@xyo-network/react-chain**](#../README)
16783
-
16784
- ***
16661
+ optional border:
16662
+ | ResponsiveStyleValue<
16663
+ | undefined
16664
+ | number
16665
+ | "hidden"
16666
+ | "none"
16667
+ | string & object
16668
+ | "inherit"
16669
+ | "inset"
16670
+ | "-moz-initial"
16671
+ | "initial"
16672
+ | "revert"
16673
+ | "revert-layer"
16674
+ | "unset"
16675
+ | "aliceblue"
16676
+ | "antiquewhite"
16677
+ | "aqua"
16678
+ | "aquamarine"
16679
+ | "azure"
16680
+ | "beige"
16681
+ | "bisque"
16682
+ | "black"
16683
+ | "blanchedalmond"
16684
+ | "blue"
16685
+ | "blueviolet"
16686
+ | "brown"
16687
+ | "burlywood"
16688
+ | "cadetblue"
16689
+ | "chartreuse"
16690
+ | "chocolate"
16691
+ | "coral"
16692
+ | "cornflowerblue"
16693
+ | "cornsilk"
16694
+ | "crimson"
16695
+ | "cyan"
16696
+ | "darkblue"
16697
+ | "darkcyan"
16698
+ | "darkgoldenrod"
16699
+ | "darkgray"
16700
+ | "darkgreen"
16701
+ | "darkgrey"
16702
+ | "darkkhaki"
16703
+ | "darkmagenta"
16704
+ | "darkolivegreen"
16705
+ | "darkorange"
16706
+ | "darkorchid"
16707
+ | "darkred"
16708
+ | "darksalmon"
16709
+ | "darkseagreen"
16710
+ | "darkslateblue"
16711
+ | "darkslategray"
16712
+ | "darkslategrey"
16713
+ | "darkturquoise"
16714
+ | "darkviolet"
16715
+ | "deeppink"
16716
+ | "deepskyblue"
16717
+ | "dimgray"
16718
+ | "dimgrey"
16719
+ | "dodgerblue"
16720
+ | "firebrick"
16721
+ | "floralwhite"
16722
+ | "forestgreen"
16723
+ | "fuchsia"
16724
+ | "gainsboro"
16725
+ | "ghostwhite"
16726
+ | "gold"
16727
+ | "goldenrod"
16728
+ | "gray"
16729
+ | "green"
16730
+ | "greenyellow"
16731
+ | "grey"
16732
+ | "honeydew"
16733
+ | "hotpink"
16734
+ | "indianred"
16735
+ | "indigo"
16736
+ | "ivory"
16737
+ | "khaki"
16738
+ | "lavender"
16739
+ | "lavenderblush"
16740
+ | "lawngreen"
16741
+ | "lemonchiffon"
16742
+ | "lightblue"
16743
+ | "lightcoral"
16744
+ | "lightcyan"
16745
+ | "lightgoldenrodyellow"
16746
+ | "lightgray"
16747
+ | "lightgreen"
16748
+ | "lightgrey"
16749
+ | "lightpink"
16750
+ | "lightsalmon"
16751
+ | "lightseagreen"
16752
+ | "lightskyblue"
16753
+ | "lightslategray"
16754
+ | "lightslategrey"
16755
+ | "lightsteelblue"
16756
+ | "lightyellow"
16757
+ | "lime"
16758
+ | "limegreen"
16759
+ | "linen"
16760
+ | "magenta"
16761
+ | "maroon"
16762
+ | "mediumaquamarine"
16763
+ | "mediumblue"
16764
+ | "mediumorchid"
16765
+ | "mediumpurple"
16766
+ | "mediumseagreen"
16767
+ | "mediumslateblue"
16768
+ | "mediumspringgreen"
16769
+ | "mediumturquoise"
16770
+ | "mediumvioletred"
16771
+ | "midnightblue"
16772
+ | "mintcream"
16773
+ | "mistyrose"
16774
+ | "moccasin"
16775
+ | "navajowhite"
16776
+ | "navy"
16777
+ | "oldlace"
16778
+ | "olive"
16779
+ | "olivedrab"
16780
+ | "orange"
16781
+ | "orangered"
16782
+ | "orchid"
16783
+ | "palegoldenrod"
16784
+ | "palegreen"
16785
+ | "paleturquoise"
16786
+ | "palevioletred"
16787
+ | "papayawhip"
16788
+ | "peachpuff"
16789
+ | "peru"
16790
+ | "pink"
16791
+ | "plum"
16792
+ | "powderblue"
16793
+ | "purple"
16794
+ | "rebeccapurple"
16795
+ | "red"
16796
+ | "rosybrown"
16797
+ | "royalblue"
16798
+ | "saddlebrown"
16799
+ | "salmon"
16800
+ | "sandybrown"
16801
+ | "seagreen"
16802
+ | "seashell"
16803
+ | "sienna"
16804
+ | "silver"
16805
+ | "skyblue"
16806
+ | "slateblue"
16807
+ | "slategray"
16808
+ | "slategrey"
16809
+ | "snow"
16810
+ | "springgreen"
16811
+ | "steelblue"
16812
+ | "tan"
16813
+ | "teal"
16814
+ | "thistle"
16815
+ | "tomato"
16816
+ | "transparent"
16817
+ | "turquoise"
16818
+ | "violet"
16819
+ | "wheat"
16820
+ | "white"
16821
+ | "whitesmoke"
16822
+ | "yellow"
16823
+ | "yellowgreen"
16824
+ | "ActiveBorder"
16825
+ | "ActiveCaption"
16826
+ | "AppWorkspace"
16827
+ | "Background"
16828
+ | "ButtonFace"
16829
+ | "ButtonHighlight"
16830
+ | "ButtonShadow"
16831
+ | "ButtonText"
16832
+ | "CaptionText"
16833
+ | "GrayText"
16834
+ | "Highlight"
16835
+ | "HighlightText"
16836
+ | "InactiveBorder"
16837
+ | "InactiveCaption"
16838
+ | "InactiveCaptionText"
16839
+ | "InfoBackground"
16840
+ | "InfoText"
16841
+ | "Menu"
16842
+ | "MenuText"
16843
+ | "Scrollbar"
16844
+ | "ThreeDDarkShadow"
16845
+ | "ThreeDFace"
16846
+ | "ThreeDHighlight"
16847
+ | "ThreeDLightShadow"
16848
+ | "ThreeDShadow"
16849
+ | "Window"
16850
+ | "WindowFrame"
16851
+ | "WindowText"
16852
+ | "currentcolor"
16853
+ | "medium"
16854
+ | "thick"
16855
+ | "thin"
16856
+ | "dashed"
16857
+ | "dotted"
16858
+ | "double"
16859
+ | "groove"
16860
+ | "outset"
16861
+ | "ridge"
16862
+ | "solid">
16863
+ | (theme) => ResponsiveStyleValue<
16864
+ | undefined
16865
+ | number
16866
+ | "hidden"
16867
+ | "none"
16868
+ | string & object
16869
+ | "inherit"
16870
+ | "inset"
16871
+ | "-moz-initial"
16872
+ | "initial"
16873
+ | "revert"
16874
+ | "revert-layer"
16875
+ | "unset"
16876
+ | "aliceblue"
16877
+ | "antiquewhite"
16878
+ | "aqua"
16879
+ | "aquamarine"
16880
+ | "azure"
16881
+ | "beige"
16882
+ | "bisque"
16883
+ | "black"
16884
+ | "blanchedalmond"
16885
+ | "blue"
16886
+ | "blueviolet"
16887
+ | "brown"
16888
+ | "burlywood"
16889
+ | "cadetblue"
16890
+ | "chartreuse"
16891
+ | "chocolate"
16892
+ | "coral"
16893
+ | "cornflowerblue"
16894
+ | "cornsilk"
16895
+ | "crimson"
16896
+ | "cyan"
16897
+ | "darkblue"
16898
+ | "darkcyan"
16899
+ | "darkgoldenrod"
16900
+ | "darkgray"
16901
+ | "darkgreen"
16902
+ | "darkgrey"
16903
+ | "darkkhaki"
16904
+ | "darkmagenta"
16905
+ | "darkolivegreen"
16906
+ | "darkorange"
16907
+ | "darkorchid"
16908
+ | "darkred"
16909
+ | "darksalmon"
16910
+ | "darkseagreen"
16911
+ | "darkslateblue"
16912
+ | "darkslategray"
16913
+ | "darkslategrey"
16914
+ | "darkturquoise"
16915
+ | "darkviolet"
16916
+ | "deeppink"
16917
+ | "deepskyblue"
16918
+ | "dimgray"
16919
+ | "dimgrey"
16920
+ | "dodgerblue"
16921
+ | "firebrick"
16922
+ | "floralwhite"
16923
+ | "forestgreen"
16924
+ | "fuchsia"
16925
+ | "gainsboro"
16926
+ | "ghostwhite"
16927
+ | "gold"
16928
+ | "goldenrod"
16929
+ | "gray"
16930
+ | "green"
16931
+ | "greenyellow"
16932
+ | "grey"
16933
+ | "honeydew"
16934
+ | "hotpink"
16935
+ | "indianred"
16936
+ | "indigo"
16937
+ | "ivory"
16938
+ | "khaki"
16939
+ | "lavender"
16940
+ | "lavenderblush"
16941
+ | "lawngreen"
16942
+ | "lemonchiffon"
16943
+ | "lightblue"
16944
+ | "lightcoral"
16945
+ | "lightcyan"
16946
+ | "lightgoldenrodyellow"
16947
+ | "lightgray"
16948
+ | "lightgreen"
16949
+ | "lightgrey"
16950
+ | "lightpink"
16951
+ | "lightsalmon"
16952
+ | "lightseagreen"
16953
+ | "lightskyblue"
16954
+ | "lightslategray"
16955
+ | "lightslategrey"
16956
+ | "lightsteelblue"
16957
+ | "lightyellow"
16958
+ | "lime"
16959
+ | "limegreen"
16960
+ | "linen"
16961
+ | "magenta"
16962
+ | "maroon"
16963
+ | "mediumaquamarine"
16964
+ | "mediumblue"
16965
+ | "mediumorchid"
16966
+ | "mediumpurple"
16967
+ | "mediumseagreen"
16968
+ | "mediumslateblue"
16969
+ | "mediumspringgreen"
16970
+ | "mediumturquoise"
16971
+ | "mediumvioletred"
16972
+ | "midnightblue"
16973
+ | "mintcream"
16974
+ | "mistyrose"
16975
+ | "moccasin"
16976
+ | "navajowhite"
16977
+ | "navy"
16978
+ | "oldlace"
16979
+ | "olive"
16980
+ | "olivedrab"
16981
+ | "orange"
16982
+ | "orangered"
16983
+ | "orchid"
16984
+ | "palegoldenrod"
16985
+ | "palegreen"
16986
+ | "paleturquoise"
16987
+ | "palevioletred"
16988
+ | "papayawhip"
16989
+ | "peachpuff"
16990
+ | "peru"
16991
+ | "pink"
16992
+ | "plum"
16993
+ | "powderblue"
16994
+ | "purple"
16995
+ | "rebeccapurple"
16996
+ | "red"
16997
+ | "rosybrown"
16998
+ | "royalblue"
16999
+ | "saddlebrown"
17000
+ | "salmon"
17001
+ | "sandybrown"
17002
+ | "seagreen"
17003
+ | "seashell"
17004
+ | "sienna"
17005
+ | "silver"
17006
+ | "skyblue"
17007
+ | "slateblue"
17008
+ | "slategray"
17009
+ | "slategrey"
17010
+ | "snow"
17011
+ | "springgreen"
17012
+ | "steelblue"
17013
+ | "tan"
17014
+ | "teal"
17015
+ | "thistle"
17016
+ | "tomato"
17017
+ | "transparent"
17018
+ | "turquoise"
17019
+ | "violet"
17020
+ | "wheat"
17021
+ | "white"
17022
+ | "whitesmoke"
17023
+ | "yellow"
17024
+ | "yellowgreen"
17025
+ | "ActiveBorder"
17026
+ | "ActiveCaption"
17027
+ | "AppWorkspace"
17028
+ | "Background"
17029
+ | "ButtonFace"
17030
+ | "ButtonHighlight"
17031
+ | "ButtonShadow"
17032
+ | "ButtonText"
17033
+ | "CaptionText"
17034
+ | "GrayText"
17035
+ | "Highlight"
17036
+ | "HighlightText"
17037
+ | "InactiveBorder"
17038
+ | "InactiveCaption"
17039
+ | "InactiveCaptionText"
17040
+ | "InfoBackground"
17041
+ | "InfoText"
17042
+ | "Menu"
17043
+ | "MenuText"
17044
+ | "Scrollbar"
17045
+ | "ThreeDDarkShadow"
17046
+ | "ThreeDFace"
17047
+ | "ThreeDHighlight"
17048
+ | "ThreeDLightShadow"
17049
+ | "ThreeDShadow"
17050
+ | "Window"
17051
+ | "WindowFrame"
17052
+ | "WindowText"
17053
+ | "currentcolor"
17054
+ | "medium"
17055
+ | "thick"
17056
+ | "thin"
17057
+ | "dashed"
17058
+ | "dotted"
17059
+ | "double"
17060
+ | "groove"
17061
+ | "outset"
17062
+ | "ridge"
17063
+ | "solid">;
17064
+ ```
17065
+
17066
+ ### Inherited from
17067
+
17068
+ ```ts
17069
+ FlexBoxProps.border
17070
+ ```
17071
+
17072
+ ***
17073
+
17074
+ ### borderTop?
17075
+
17076
+ ```ts
17077
+ optional borderTop:
17078
+ | ResponsiveStyleValue<BorderTop<string | number> | readonly NonNullable<BorderTop<string | number> | undefined>[] | undefined>
17079
+ | (theme) => ResponsiveStyleValue<BorderTop<string | number> | readonly NonNullable<BorderTop<string | number> | undefined>[] | undefined>;
17080
+ ```
17081
+
17082
+ ### Inherited from
17083
+
17084
+ ```ts
17085
+ FlexBoxProps.borderTop
17086
+ ```
17087
+
17088
+ ***
17089
+
17090
+ ### borderRight?
17091
+
17092
+ ```ts
17093
+ optional borderRight:
17094
+ | ResponsiveStyleValue<BorderRight<string | number> | readonly NonNullable<BorderRight<string | number> | undefined>[] | undefined>
17095
+ | (theme) => ResponsiveStyleValue<BorderRight<string | number> | readonly NonNullable<BorderRight<string | number> | undefined>[] | undefined>;
17096
+ ```
17097
+
17098
+ ### Inherited from
17099
+
17100
+ ```ts
17101
+ FlexBoxProps.borderRight
17102
+ ```
17103
+
17104
+ ***
17105
+
17106
+ ### borderBottom?
17107
+
17108
+ ```ts
17109
+ optional borderBottom:
17110
+ | ResponsiveStyleValue<BorderBottom<string | number> | readonly NonNullable<BorderBottom<string | number> | undefined>[] | undefined>
17111
+ | (theme) => ResponsiveStyleValue<BorderBottom<string | number> | readonly NonNullable<BorderBottom<string | number> | undefined>[] | undefined>;
17112
+ ```
17113
+
17114
+ ### Inherited from
17115
+
17116
+ ```ts
17117
+ FlexBoxProps.borderBottom
17118
+ ```
17119
+
17120
+ ***
17121
+
17122
+ ### borderLeft?
17123
+
17124
+ ```ts
17125
+ optional borderLeft:
17126
+ | ResponsiveStyleValue<BorderLeft<string | number> | readonly NonNullable<BorderLeft<string | number> | undefined>[] | undefined>
17127
+ | (theme) => ResponsiveStyleValue<BorderLeft<string | number> | readonly NonNullable<BorderLeft<string | number> | undefined>[] | undefined>;
17128
+ ```
17129
+
17130
+ ### Inherited from
17131
+
17132
+ ```ts
17133
+ FlexBoxProps.borderLeft
17134
+ ```
17135
+
17136
+ ***
17137
+
17138
+ ### borderColor?
17139
+
17140
+ ```ts
17141
+ optional borderColor:
17142
+ | ResponsiveStyleValue<readonly string[] | BorderColor | undefined>
17143
+ | (theme) => ResponsiveStyleValue<readonly string[] | BorderColor | undefined>;
17144
+ ```
17145
+
17146
+ ### Inherited from
17147
+
17148
+ ```ts
17149
+ FlexBoxProps.borderColor
17150
+ ```
17151
+
17152
+ ***
17153
+
17154
+ ### borderRadius?
17155
+
17156
+ ```ts
17157
+ optional borderRadius:
17158
+ | ResponsiveStyleValue<BorderRadius<string | number> | readonly NonNullable<BorderRadius<string | number> | undefined>[] | undefined>
17159
+ | (theme) => ResponsiveStyleValue<BorderRadius<string | number> | readonly NonNullable<BorderRadius<string | number> | undefined>[] | undefined>;
17160
+ ```
17161
+
17162
+ ### Inherited from
17163
+
17164
+ ```ts
17165
+ FlexBoxProps.borderRadius
17166
+ ```
17167
+
17168
+ ***
17169
+
17170
+ ### display?
17171
+
17172
+ ```ts
17173
+ optional display:
17174
+ | ResponsiveStyleValue<readonly string[] | Display | undefined>
17175
+ | (theme) => ResponsiveStyleValue<readonly string[] | Display | undefined>;
17176
+ ```
17177
+
17178
+ ### Inherited from
17179
+
17180
+ ```ts
17181
+ FlexBoxProps.display
17182
+ ```
17183
+
17184
+ ***
17185
+
17186
+ ### displayPrint?
17187
+
17188
+ ```ts
17189
+ optional displayPrint:
17190
+ | ResponsiveStyleValue<readonly string[] | Display | undefined>
17191
+ | (theme) => ResponsiveStyleValue<readonly string[] | Display | undefined>;
17192
+ ```
17193
+
17194
+ ### Inherited from
17195
+
17196
+ ```ts
17197
+ FlexBoxProps.displayPrint
17198
+ ```
17199
+
17200
+ ***
17201
+
17202
+ ### overflow?
17203
+
17204
+ ```ts
17205
+ optional overflow:
17206
+ | ResponsiveStyleValue<readonly string[] | Overflow | undefined>
17207
+ | (theme) => ResponsiveStyleValue<readonly string[] | Overflow | undefined>;
17208
+ ```
17209
+
17210
+ ### Inherited from
17211
+
17212
+ ```ts
17213
+ FlexBoxProps.overflow
17214
+ ```
17215
+
17216
+ ***
17217
+
17218
+ ### textOverflow?
17219
+
17220
+ ```ts
17221
+ optional textOverflow:
17222
+ | ResponsiveStyleValue<readonly string[] | TextOverflow | undefined>
17223
+ | (theme) => ResponsiveStyleValue<readonly string[] | TextOverflow | undefined>;
17224
+ ```
17225
+
17226
+ ### Inherited from
17227
+
17228
+ ```ts
17229
+ FlexBoxProps.textOverflow
17230
+ ```
17231
+
17232
+ ***
17233
+
17234
+ ### visibility?
17235
+
17236
+ ```ts
17237
+ optional visibility:
17238
+ | ResponsiveStyleValue<Visibility | readonly NonNullable<Visibility | undefined>[] | undefined>
17239
+ | (theme) => ResponsiveStyleValue<Visibility | readonly NonNullable<Visibility | undefined>[] | undefined>;
17240
+ ```
17241
+
17242
+ ### Inherited from
17243
+
17244
+ ```ts
17245
+ FlexBoxProps.visibility
17246
+ ```
17247
+
17248
+ ***
17249
+
17250
+ ### whiteSpace?
17251
+
17252
+ ```ts
17253
+ optional whiteSpace:
17254
+ | ResponsiveStyleValue<readonly string[] | WhiteSpace | undefined>
17255
+ | (theme) => ResponsiveStyleValue<readonly string[] | WhiteSpace | undefined>;
17256
+ ```
17257
+
17258
+ ### Inherited from
17259
+
17260
+ ```ts
17261
+ FlexBoxProps.whiteSpace
17262
+ ```
17263
+
17264
+ ***
17265
+
17266
+ ### flexBasis?
17267
+
17268
+ ```ts
17269
+ optional flexBasis:
17270
+ | ResponsiveStyleValue<FlexBasis<string | number> | readonly NonNullable<FlexBasis<string | number> | undefined>[] | undefined>
17271
+ | (theme) => ResponsiveStyleValue<FlexBasis<string | number> | readonly NonNullable<FlexBasis<string | number> | undefined>[] | undefined>;
17272
+ ```
17273
+
17274
+ ### Inherited from
17275
+
17276
+ ```ts
17277
+ FlexBoxProps.flexBasis
17278
+ ```
17279
+
17280
+ ***
17281
+
17282
+ ### flexDirection?
17283
+
17284
+ ```ts
17285
+ optional flexDirection:
17286
+ | ResponsiveStyleValue<FlexDirection | readonly NonNullable<FlexDirection | undefined>[] | undefined>
17287
+ | (theme) => ResponsiveStyleValue<FlexDirection | readonly NonNullable<FlexDirection | undefined>[] | undefined>;
17288
+ ```
17289
+
17290
+ ### Inherited from
17291
+
17292
+ ```ts
17293
+ FlexBoxProps.flexDirection
17294
+ ```
17295
+
17296
+ ***
17297
+
17298
+ ### flexWrap?
17299
+
17300
+ ```ts
17301
+ optional flexWrap:
17302
+ | ResponsiveStyleValue<FlexWrap | readonly NonNullable<FlexWrap | undefined>[] | undefined>
17303
+ | (theme) => ResponsiveStyleValue<FlexWrap | readonly NonNullable<FlexWrap | undefined>[] | undefined>;
17304
+ ```
17305
+
17306
+ ### Inherited from
17307
+
17308
+ ```ts
17309
+ FlexBoxProps.flexWrap
17310
+ ```
17311
+
17312
+ ***
17313
+
17314
+ ### justifyContent?
17315
+
17316
+ ```ts
17317
+ optional justifyContent:
17318
+ | ResponsiveStyleValue<readonly string[] | JustifyContent | undefined>
17319
+ | (theme) => ResponsiveStyleValue<readonly string[] | JustifyContent | undefined>;
17320
+ ```
17321
+
17322
+ ### Inherited from
17323
+
17324
+ ```ts
17325
+ FlexBoxProps.justifyContent
17326
+ ```
17327
+
17328
+ ***
17329
+
17330
+ ### alignItems?
17331
+
17332
+ ```ts
17333
+ optional alignItems:
17334
+ | ResponsiveStyleValue<readonly string[] | AlignItems | undefined>
17335
+ | (theme) => ResponsiveStyleValue<readonly string[] | AlignItems | undefined>;
17336
+ ```
17337
+
17338
+ ### Inherited from
17339
+
17340
+ ```ts
17341
+ FlexBoxProps.alignItems
17342
+ ```
17343
+
17344
+ ***
17345
+
17346
+ ### alignContent?
17347
+
17348
+ ```ts
17349
+ optional alignContent:
17350
+ | ResponsiveStyleValue<readonly string[] | AlignContent | undefined>
17351
+ | (theme) => ResponsiveStyleValue<readonly string[] | AlignContent | undefined>;
17352
+ ```
17353
+
17354
+ ### Inherited from
17355
+
17356
+ ```ts
17357
+ FlexBoxProps.alignContent
17358
+ ```
17359
+
17360
+ ***
17361
+
17362
+ ### order?
17363
+
17364
+ ```ts
17365
+ optional order:
17366
+ | ResponsiveStyleValue<Order | readonly NonNullable<Order | undefined>[] | undefined>
17367
+ | (theme) => ResponsiveStyleValue<Order | readonly NonNullable<Order | undefined>[] | undefined>;
17368
+ ```
17369
+
17370
+ ### Inherited from
17371
+
17372
+ ```ts
17373
+ FlexBoxProps.order
17374
+ ```
17375
+
17376
+ ***
17377
+
17378
+ ### flex?
17379
+
17380
+ ```ts
17381
+ optional flex:
17382
+ | ResponsiveStyleValue<Flex<string | number> | readonly NonNullable<Flex<string | number> | undefined>[] | undefined>
17383
+ | (theme) => ResponsiveStyleValue<Flex<string | number> | readonly NonNullable<Flex<string | number> | undefined>[] | undefined>;
17384
+ ```
17385
+
17386
+ ### Inherited from
17387
+
17388
+ ```ts
17389
+ FlexBoxProps.flex
17390
+ ```
17391
+
17392
+ ***
17393
+
17394
+ ### flexGrow?
17395
+
17396
+ ```ts
17397
+ optional flexGrow:
17398
+ | ResponsiveStyleValue<FlexGrow | readonly NonNullable<FlexGrow | undefined>[] | undefined>
17399
+ | (theme) => ResponsiveStyleValue<FlexGrow | readonly NonNullable<FlexGrow | undefined>[] | undefined>;
17400
+ ```
17401
+
17402
+ ### Inherited from
17403
+
17404
+ ```ts
17405
+ FlexBoxProps.flexGrow
17406
+ ```
17407
+
17408
+ ***
17409
+
17410
+ ### flexShrink?
17411
+
17412
+ ```ts
17413
+ optional flexShrink:
17414
+ | ResponsiveStyleValue<FlexShrink | readonly NonNullable<FlexShrink | undefined>[] | undefined>
17415
+ | (theme) => ResponsiveStyleValue<FlexShrink | readonly NonNullable<FlexShrink | undefined>[] | undefined>;
17416
+ ```
17417
+
17418
+ ### Inherited from
17419
+
17420
+ ```ts
17421
+ FlexBoxProps.flexShrink
17422
+ ```
17423
+
17424
+ ***
17425
+
17426
+ ### alignSelf?
17427
+
17428
+ ```ts
17429
+ optional alignSelf:
17430
+ | ResponsiveStyleValue<readonly string[] | AlignSelf | undefined>
17431
+ | (theme) => ResponsiveStyleValue<readonly string[] | AlignSelf | undefined>;
17432
+ ```
17433
+
17434
+ ### Inherited from
17435
+
17436
+ ```ts
17437
+ FlexBoxProps.alignSelf
17438
+ ```
17439
+
17440
+ ***
17441
+
17442
+ ### justifyItems?
17443
+
17444
+ ```ts
17445
+ optional justifyItems:
17446
+ | ResponsiveStyleValue<readonly string[] | JustifyItems | undefined>
17447
+ | (theme) => ResponsiveStyleValue<readonly string[] | JustifyItems | undefined>;
17448
+ ```
17449
+
17450
+ ### Inherited from
17451
+
17452
+ ```ts
17453
+ FlexBoxProps.justifyItems
17454
+ ```
17455
+
17456
+ ***
17457
+
17458
+ ### justifySelf?
17459
+
17460
+ ```ts
17461
+ optional justifySelf:
17462
+ | ResponsiveStyleValue<readonly string[] | JustifySelf | undefined>
17463
+ | (theme) => ResponsiveStyleValue<readonly string[] | JustifySelf | undefined>;
17464
+ ```
17465
+
17466
+ ### Inherited from
17467
+
17468
+ ```ts
17469
+ FlexBoxProps.justifySelf
17470
+ ```
17471
+
17472
+ ***
17473
+
17474
+ ### gap?
17475
+
17476
+ ```ts
17477
+ optional gap:
17478
+ | ResponsiveStyleValue<Gap<string | number> | readonly NonNullable<Gap<string | number> | undefined>[] | undefined>
17479
+ | (theme) => ResponsiveStyleValue<Gap<string | number> | readonly NonNullable<Gap<string | number> | undefined>[] | undefined>;
17480
+ ```
17481
+
17482
+ ### Inherited from
17483
+
17484
+ ```ts
17485
+ FlexBoxProps.gap
17486
+ ```
17487
+
17488
+ ***
17489
+
17490
+ ### columnGap?
17491
+
17492
+ ```ts
17493
+ optional columnGap:
17494
+ | ResponsiveStyleValue<ColumnGap<string | number> | readonly NonNullable<ColumnGap<string | number> | undefined>[] | undefined>
17495
+ | (theme) => ResponsiveStyleValue<ColumnGap<string | number> | readonly NonNullable<ColumnGap<string | number> | undefined>[] | undefined>;
17496
+ ```
17497
+
17498
+ ### Inherited from
17499
+
17500
+ ```ts
17501
+ FlexBoxProps.columnGap
17502
+ ```
17503
+
17504
+ ***
17505
+
17506
+ ### rowGap?
17507
+
17508
+ ```ts
17509
+ optional rowGap:
17510
+ | ResponsiveStyleValue<RowGap<string | number> | readonly NonNullable<RowGap<string | number> | undefined>[] | undefined>
17511
+ | (theme) => ResponsiveStyleValue<RowGap<string | number> | readonly NonNullable<RowGap<string | number> | undefined>[] | undefined>;
17512
+ ```
17513
+
17514
+ ### Inherited from
17515
+
17516
+ ```ts
17517
+ FlexBoxProps.rowGap
17518
+ ```
17519
+
17520
+ ***
17521
+
17522
+ ### gridColumn?
17523
+
17524
+ ```ts
17525
+ optional gridColumn:
17526
+ | ResponsiveStyleValue<GridColumn | readonly NonNullable<GridColumn | undefined>[] | undefined>
17527
+ | (theme) => ResponsiveStyleValue<GridColumn | readonly NonNullable<GridColumn | undefined>[] | undefined>;
17528
+ ```
17529
+
17530
+ ### Inherited from
17531
+
17532
+ ```ts
17533
+ FlexBoxProps.gridColumn
17534
+ ```
17535
+
17536
+ ***
17537
+
17538
+ ### gridRow?
17539
+
17540
+ ```ts
17541
+ optional gridRow:
17542
+ | ResponsiveStyleValue<GridRow | readonly NonNullable<GridRow | undefined>[] | undefined>
17543
+ | (theme) => ResponsiveStyleValue<GridRow | readonly NonNullable<GridRow | undefined>[] | undefined>;
17544
+ ```
17545
+
17546
+ ### Inherited from
17547
+
17548
+ ```ts
17549
+ FlexBoxProps.gridRow
17550
+ ```
17551
+
17552
+ ***
17553
+
17554
+ ### gridAutoFlow?
17555
+
17556
+ ```ts
17557
+ optional gridAutoFlow:
17558
+ | ResponsiveStyleValue<readonly string[] | GridAutoFlow | undefined>
17559
+ | (theme) => ResponsiveStyleValue<readonly string[] | GridAutoFlow | undefined>;
17560
+ ```
17561
+
17562
+ ### Inherited from
17563
+
17564
+ ```ts
17565
+ FlexBoxProps.gridAutoFlow
17566
+ ```
17567
+
17568
+ ***
17569
+
17570
+ ### gridAutoColumns?
17571
+
17572
+ ```ts
17573
+ optional gridAutoColumns:
17574
+ | ResponsiveStyleValue<GridAutoColumns<string | number> | readonly NonNullable<GridAutoColumns<string | number> | undefined>[] | undefined>
17575
+ | (theme) => ResponsiveStyleValue<GridAutoColumns<string | number> | readonly NonNullable<GridAutoColumns<string | number> | undefined>[] | undefined>;
17576
+ ```
17577
+
17578
+ ### Inherited from
17579
+
17580
+ ```ts
17581
+ FlexBoxProps.gridAutoColumns
17582
+ ```
17583
+
17584
+ ***
17585
+
17586
+ ### gridAutoRows?
17587
+
17588
+ ```ts
17589
+ optional gridAutoRows:
17590
+ | ResponsiveStyleValue<GridAutoRows<string | number> | readonly NonNullable<GridAutoRows<string | number> | undefined>[] | undefined>
17591
+ | (theme) => ResponsiveStyleValue<GridAutoRows<string | number> | readonly NonNullable<GridAutoRows<string | number> | undefined>[] | undefined>;
17592
+ ```
17593
+
17594
+ ### Inherited from
17595
+
17596
+ ```ts
17597
+ FlexBoxProps.gridAutoRows
17598
+ ```
17599
+
17600
+ ***
17601
+
17602
+ ### gridTemplateColumns?
17603
+
17604
+ ```ts
17605
+ optional gridTemplateColumns:
17606
+ | ResponsiveStyleValue<GridTemplateColumns<string | number> | readonly NonNullable<GridTemplateColumns<string | number> | undefined>[] | undefined>
17607
+ | (theme) => ResponsiveStyleValue<GridTemplateColumns<string | number> | readonly NonNullable<GridTemplateColumns<string | number> | undefined>[] | undefined>;
17608
+ ```
17609
+
17610
+ ### Inherited from
17611
+
17612
+ ```ts
17613
+ FlexBoxProps.gridTemplateColumns
17614
+ ```
17615
+
17616
+ ***
17617
+
17618
+ ### gridTemplateRows?
17619
+
17620
+ ```ts
17621
+ optional gridTemplateRows:
17622
+ | ResponsiveStyleValue<GridTemplateRows<string | number> | readonly NonNullable<GridTemplateRows<string | number> | undefined>[] | undefined>
17623
+ | (theme) => ResponsiveStyleValue<GridTemplateRows<string | number> | readonly NonNullable<GridTemplateRows<string | number> | undefined>[] | undefined>;
17624
+ ```
17625
+
17626
+ ### Inherited from
17627
+
17628
+ ```ts
17629
+ FlexBoxProps.gridTemplateRows
17630
+ ```
17631
+
17632
+ ***
17633
+
17634
+ ### gridTemplateAreas?
17635
+
17636
+ ```ts
17637
+ optional gridTemplateAreas:
17638
+ | ResponsiveStyleValue<readonly string[] | GridTemplateAreas | undefined>
17639
+ | (theme) => ResponsiveStyleValue<readonly string[] | GridTemplateAreas | undefined>;
17640
+ ```
17641
+
17642
+ ### Inherited from
17643
+
17644
+ ```ts
17645
+ FlexBoxProps.gridTemplateAreas
17646
+ ```
17647
+
17648
+ ***
17649
+
17650
+ ### gridArea?
17651
+
17652
+ ```ts
17653
+ optional gridArea:
17654
+ | ResponsiveStyleValue<GridArea | readonly NonNullable<GridArea | undefined>[] | undefined>
17655
+ | (theme) => ResponsiveStyleValue<GridArea | readonly NonNullable<GridArea | undefined>[] | undefined>;
17656
+ ```
17657
+
17658
+ ### Inherited from
17659
+
17660
+ ```ts
17661
+ FlexBoxProps.gridArea
17662
+ ```
17663
+
17664
+ ***
17665
+
17666
+ ### bgcolor?
17667
+
17668
+ ```ts
17669
+ optional bgcolor:
17670
+ | ResponsiveStyleValue<readonly string[] | BackgroundColor | undefined>
17671
+ | (theme) => ResponsiveStyleValue<readonly string[] | BackgroundColor | undefined>;
17672
+ ```
17673
+
17674
+ ### Inherited from
17675
+
17676
+ ```ts
17677
+ FlexBoxProps.bgcolor
17678
+ ```
17679
+
17680
+ ***
17681
+
17682
+ ### zIndex?
17683
+
17684
+ ```ts
17685
+ optional zIndex:
17686
+ | ResponsiveStyleValue<undefined | string | string & object | number & object>
17687
+ | (theme) => ResponsiveStyleValue<undefined | string | string & object | number & object>;
17688
+ ```
17689
+
17690
+ ### Inherited from
17691
+
17692
+ ```ts
17693
+ FlexBoxProps.zIndex
17694
+ ```
17695
+
17696
+ ***
17697
+
17698
+ ### position?
17699
+
17700
+ ```ts
17701
+ optional position:
17702
+ | ResponsiveStyleValue<Position | readonly NonNullable<Position | undefined>[] | undefined>
17703
+ | (theme) => ResponsiveStyleValue<Position | readonly NonNullable<Position | undefined>[] | undefined>;
17704
+ ```
17705
+
17706
+ ### Inherited from
17707
+
17708
+ ```ts
17709
+ FlexBoxProps.position
17710
+ ```
17711
+
17712
+ ***
17713
+
17714
+ ### top?
17715
+
17716
+ ```ts
17717
+ optional top:
17718
+ | ResponsiveStyleValue<Top<string | number> | readonly NonNullable<Top<string | number> | undefined>[] | undefined>
17719
+ | (theme) => ResponsiveStyleValue<Top<string | number> | readonly NonNullable<Top<string | number> | undefined>[] | undefined>;
17720
+ ```
17721
+
17722
+ ### Inherited from
17723
+
17724
+ ```ts
17725
+ FlexBoxProps.top
17726
+ ```
17727
+
17728
+ ***
17729
+
17730
+ ### bottom?
17731
+
17732
+ ```ts
17733
+ optional bottom:
17734
+ | ResponsiveStyleValue<Bottom<string | number> | readonly NonNullable<Bottom<string | number> | undefined>[] | undefined>
17735
+ | (theme) => ResponsiveStyleValue<Bottom<string | number> | readonly NonNullable<Bottom<string | number> | undefined>[] | undefined>;
17736
+ ```
17737
+
17738
+ ### Inherited from
17739
+
17740
+ ```ts
17741
+ FlexBoxProps.bottom
17742
+ ```
17743
+
17744
+ ***
17745
+
17746
+ ### boxShadow?
17747
+
17748
+ ```ts
17749
+ optional boxShadow:
17750
+ | ResponsiveStyleValue<number | BoxShadow | undefined>
17751
+ | (theme) => ResponsiveStyleValue<number | BoxShadow | undefined>;
17752
+ ```
17753
+
17754
+ ### Inherited from
17755
+
17756
+ ```ts
17757
+ FlexBoxProps.boxShadow
17758
+ ```
17759
+
17760
+ ***
17761
+
17762
+ ### maxWidth?
17763
+
17764
+ ```ts
17765
+ optional maxWidth:
17766
+ | ResponsiveStyleValue<MaxWidth<string | number> | readonly NonNullable<MaxWidth<string | number> | undefined>[] | undefined>
17767
+ | (theme) => ResponsiveStyleValue<MaxWidth<string | number> | readonly NonNullable<MaxWidth<string | number> | undefined>[] | undefined>;
17768
+ ```
17769
+
17770
+ ### Inherited from
17771
+
17772
+ ```ts
17773
+ FlexBoxProps.maxWidth
17774
+ ```
17775
+
17776
+ ***
17777
+
17778
+ ### minWidth?
17779
+
17780
+ ```ts
17781
+ optional minWidth:
17782
+ | ResponsiveStyleValue<MinWidth<string | number> | readonly NonNullable<MinWidth<string | number> | undefined>[] | undefined>
17783
+ | (theme) => ResponsiveStyleValue<MinWidth<string | number> | readonly NonNullable<MinWidth<string | number> | undefined>[] | undefined>;
17784
+ ```
17785
+
17786
+ ### Inherited from
17787
+
17788
+ ```ts
17789
+ FlexBoxProps.minWidth
17790
+ ```
17791
+
17792
+ ***
17793
+
17794
+ ### maxHeight?
17795
+
17796
+ ```ts
17797
+ optional maxHeight:
17798
+ | ResponsiveStyleValue<MaxHeight<string | number> | readonly NonNullable<MaxHeight<string | number> | undefined>[] | undefined>
17799
+ | (theme) => ResponsiveStyleValue<MaxHeight<string | number> | readonly NonNullable<MaxHeight<string | number> | undefined>[] | undefined>;
17800
+ ```
17801
+
17802
+ ### Inherited from
17803
+
17804
+ ```ts
17805
+ FlexBoxProps.maxHeight
17806
+ ```
17807
+
17808
+ ***
17809
+
17810
+ ### minHeight?
17811
+
17812
+ ```ts
17813
+ optional minHeight:
17814
+ | ResponsiveStyleValue<MinHeight<string | number> | readonly NonNullable<MinHeight<string | number> | undefined>[] | undefined>
17815
+ | (theme) => ResponsiveStyleValue<MinHeight<string | number> | readonly NonNullable<MinHeight<string | number> | undefined>[] | undefined>;
17816
+ ```
17817
+
17818
+ ### Inherited from
17819
+
17820
+ ```ts
17821
+ FlexBoxProps.minHeight
17822
+ ```
17823
+
17824
+ ***
17825
+
17826
+ ### boxSizing?
17827
+
17828
+ ```ts
17829
+ optional boxSizing:
17830
+ | ResponsiveStyleValue<BoxSizing | readonly NonNullable<BoxSizing | undefined>[] | undefined>
17831
+ | (theme) => ResponsiveStyleValue<BoxSizing | readonly NonNullable<BoxSizing | undefined>[] | undefined>;
17832
+ ```
17833
+
17834
+ ### Inherited from
17835
+
17836
+ ```ts
17837
+ FlexBoxProps.boxSizing
17838
+ ```
17839
+
17840
+ ***
17841
+
17842
+ ### m?
17843
+
17844
+ ```ts
17845
+ optional m:
17846
+ | ResponsiveStyleValue<Margin<string | number> | readonly NonNullable<Margin<string | number> | undefined>[] | undefined>
17847
+ | (theme) => ResponsiveStyleValue<Margin<string | number> | readonly NonNullable<Margin<string | number> | undefined>[] | undefined>;
17848
+ ```
17849
+
17850
+ ### Inherited from
17851
+
17852
+ ```ts
17853
+ FlexBoxProps.m
17854
+ ```
17855
+
17856
+ ***
17857
+
17858
+ ### mt?
17859
+
17860
+ ```ts
17861
+ optional mt:
17862
+ | ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>
17863
+ | (theme) => ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>;
17864
+ ```
17865
+
17866
+ ### Inherited from
17867
+
17868
+ ```ts
17869
+ FlexBoxProps.mt
17870
+ ```
17871
+
17872
+ ***
17873
+
17874
+ ### mr?
17875
+
17876
+ ```ts
17877
+ optional mr:
17878
+ | ResponsiveStyleValue<MarginRight<string | number> | readonly NonNullable<MarginRight<string | number> | undefined>[] | undefined>
17879
+ | (theme) => ResponsiveStyleValue<MarginRight<string | number> | readonly NonNullable<MarginRight<string | number> | undefined>[] | undefined>;
17880
+ ```
17881
+
17882
+ ### Inherited from
17883
+
17884
+ ```ts
17885
+ FlexBoxProps.mr
17886
+ ```
17887
+
17888
+ ***
17889
+
17890
+ ### mb?
17891
+
17892
+ ```ts
17893
+ optional mb:
17894
+ | ResponsiveStyleValue<MarginBottom<string | number> | readonly NonNullable<MarginBottom<string | number> | undefined>[] | undefined>
17895
+ | (theme) => ResponsiveStyleValue<MarginBottom<string | number> | readonly NonNullable<MarginBottom<string | number> | undefined>[] | undefined>;
17896
+ ```
17897
+
17898
+ ### Inherited from
17899
+
17900
+ ```ts
17901
+ FlexBoxProps.mb
17902
+ ```
17903
+
17904
+ ***
17905
+
17906
+ ### ml?
17907
+
17908
+ ```ts
17909
+ optional ml:
17910
+ | ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>
17911
+ | (theme) => ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>;
17912
+ ```
17913
+
17914
+ ### Inherited from
17915
+
17916
+ ```ts
17917
+ FlexBoxProps.ml
17918
+ ```
17919
+
17920
+ ***
17921
+
17922
+ ### mx?
17923
+
17924
+ ```ts
17925
+ optional mx:
17926
+ | ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>
17927
+ | (theme) => ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>;
17928
+ ```
17929
+
17930
+ ### Inherited from
17931
+
17932
+ ```ts
17933
+ FlexBoxProps.mx
17934
+ ```
17935
+
17936
+ ***
17937
+
17938
+ ### my?
17939
+
17940
+ ```ts
17941
+ optional my:
17942
+ | ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>
17943
+ | (theme) => ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>;
17944
+ ```
17945
+
17946
+ ### Inherited from
17947
+
17948
+ ```ts
17949
+ FlexBoxProps.my
17950
+ ```
17951
+
17952
+ ***
17953
+
17954
+ ### pt?
17955
+
17956
+ ```ts
17957
+ optional pt:
17958
+ | ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>
17959
+ | (theme) => ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>;
17960
+ ```
17961
+
17962
+ ### Inherited from
17963
+
17964
+ ```ts
17965
+ FlexBoxProps.pt
17966
+ ```
17967
+
17968
+ ***
17969
+
17970
+ ### pr?
17971
+
17972
+ ```ts
17973
+ optional pr:
17974
+ | ResponsiveStyleValue<PaddingRight<string | number> | readonly NonNullable<PaddingRight<string | number> | undefined>[] | undefined>
17975
+ | (theme) => ResponsiveStyleValue<PaddingRight<string | number> | readonly NonNullable<PaddingRight<string | number> | undefined>[] | undefined>;
17976
+ ```
17977
+
17978
+ ### Inherited from
17979
+
17980
+ ```ts
17981
+ FlexBoxProps.pr
17982
+ ```
17983
+
17984
+ ***
17985
+
17986
+ ### pb?
17987
+
17988
+ ```ts
17989
+ optional pb:
17990
+ | ResponsiveStyleValue<PaddingBottom<string | number> | readonly NonNullable<PaddingBottom<string | number> | undefined>[] | undefined>
17991
+ | (theme) => ResponsiveStyleValue<PaddingBottom<string | number> | readonly NonNullable<PaddingBottom<string | number> | undefined>[] | undefined>;
17992
+ ```
17993
+
17994
+ ### Inherited from
17995
+
17996
+ ```ts
17997
+ FlexBoxProps.pb
17998
+ ```
17999
+
18000
+ ***
18001
+
18002
+ ### pl?
18003
+
18004
+ ```ts
18005
+ optional pl:
18006
+ | ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>
18007
+ | (theme) => ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>;
18008
+ ```
18009
+
18010
+ ### Inherited from
18011
+
18012
+ ```ts
18013
+ FlexBoxProps.pl
18014
+ ```
18015
+
18016
+ ***
18017
+
18018
+ ### px?
18019
+
18020
+ ```ts
18021
+ optional px:
18022
+ | ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>
18023
+ | (theme) => ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>;
18024
+ ```
18025
+
18026
+ ### Inherited from
18027
+
18028
+ ```ts
18029
+ FlexBoxProps.px
18030
+ ```
18031
+
18032
+ ***
18033
+
18034
+ ### py?
18035
+
18036
+ ```ts
18037
+ optional py:
18038
+ | ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>
18039
+ | (theme) => ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>;
18040
+ ```
18041
+
18042
+ ### Inherited from
18043
+
18044
+ ```ts
18045
+ FlexBoxProps.py
18046
+ ```
18047
+
18048
+ ***
18049
+
18050
+ ### margin?
18051
+
18052
+ ```ts
18053
+ optional margin:
18054
+ | ResponsiveStyleValue<Margin<string | number> | readonly NonNullable<Margin<string | number> | undefined>[] | undefined>
18055
+ | (theme) => ResponsiveStyleValue<Margin<string | number> | readonly NonNullable<Margin<string | number> | undefined>[] | undefined>;
18056
+ ```
18057
+
18058
+ ### Inherited from
18059
+
18060
+ ```ts
18061
+ FlexBoxProps.margin
18062
+ ```
18063
+
18064
+ ***
18065
+
18066
+ ### marginTop?
18067
+
18068
+ ```ts
18069
+ optional marginTop:
18070
+ | ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>
18071
+ | (theme) => ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>;
18072
+ ```
18073
+
18074
+ ### Inherited from
18075
+
18076
+ ```ts
18077
+ FlexBoxProps.marginTop
18078
+ ```
18079
+
18080
+ ***
18081
+
18082
+ ### marginRight?
18083
+
18084
+ ```ts
18085
+ optional marginRight:
18086
+ | ResponsiveStyleValue<MarginRight<string | number> | readonly NonNullable<MarginRight<string | number> | undefined>[] | undefined>
18087
+ | (theme) => ResponsiveStyleValue<MarginRight<string | number> | readonly NonNullable<MarginRight<string | number> | undefined>[] | undefined>;
18088
+ ```
18089
+
18090
+ ### Inherited from
18091
+
18092
+ ```ts
18093
+ FlexBoxProps.marginRight
18094
+ ```
18095
+
18096
+ ***
18097
+
18098
+ ### marginBottom?
18099
+
18100
+ ```ts
18101
+ optional marginBottom:
18102
+ | ResponsiveStyleValue<MarginBottom<string | number> | readonly NonNullable<MarginBottom<string | number> | undefined>[] | undefined>
18103
+ | (theme) => ResponsiveStyleValue<MarginBottom<string | number> | readonly NonNullable<MarginBottom<string | number> | undefined>[] | undefined>;
18104
+ ```
18105
+
18106
+ ### Inherited from
18107
+
18108
+ ```ts
18109
+ FlexBoxProps.marginBottom
18110
+ ```
18111
+
18112
+ ***
18113
+
18114
+ ### marginLeft?
18115
+
18116
+ ```ts
18117
+ optional marginLeft:
18118
+ | ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>
18119
+ | (theme) => ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>;
18120
+ ```
18121
+
18122
+ ### Inherited from
18123
+
18124
+ ```ts
18125
+ FlexBoxProps.marginLeft
18126
+ ```
18127
+
18128
+ ***
18129
+
18130
+ ### marginX?
18131
+
18132
+ ```ts
18133
+ optional marginX:
18134
+ | ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>
18135
+ | (theme) => ResponsiveStyleValue<MarginLeft<string | number> | readonly NonNullable<MarginLeft<string | number> | undefined>[] | undefined>;
18136
+ ```
18137
+
18138
+ ### Inherited from
18139
+
18140
+ ```ts
18141
+ FlexBoxProps.marginX
18142
+ ```
18143
+
18144
+ ***
18145
+
18146
+ ### marginY?
18147
+
18148
+ ```ts
18149
+ optional marginY:
18150
+ | ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>
18151
+ | (theme) => ResponsiveStyleValue<MarginTop<string | number> | readonly NonNullable<MarginTop<string | number> | undefined>[] | undefined>;
18152
+ ```
18153
+
18154
+ ### Inherited from
18155
+
18156
+ ```ts
18157
+ FlexBoxProps.marginY
18158
+ ```
18159
+
18160
+ ***
18161
+
18162
+ ### marginInline?
18163
+
18164
+ ```ts
18165
+ optional marginInline:
18166
+ | ResponsiveStyleValue<MarginInline<string | number> | readonly NonNullable<MarginInline<string | number> | undefined>[] | undefined>
18167
+ | (theme) => ResponsiveStyleValue<MarginInline<string | number> | readonly NonNullable<MarginInline<string | number> | undefined>[] | undefined>;
18168
+ ```
18169
+
18170
+ ### Inherited from
18171
+
18172
+ ```ts
18173
+ FlexBoxProps.marginInline
18174
+ ```
18175
+
18176
+ ***
18177
+
18178
+ ### marginInlineStart?
18179
+
18180
+ ```ts
18181
+ optional marginInlineStart:
18182
+ | ResponsiveStyleValue<MarginInlineStart<string | number> | readonly NonNullable<MarginInlineStart<string | number> | undefined>[] | undefined>
18183
+ | (theme) => ResponsiveStyleValue<MarginInlineStart<string | number> | readonly NonNullable<MarginInlineStart<string | number> | undefined>[] | undefined>;
18184
+ ```
18185
+
18186
+ ### Inherited from
18187
+
18188
+ ```ts
18189
+ FlexBoxProps.marginInlineStart
18190
+ ```
18191
+
18192
+ ***
18193
+
18194
+ ### marginInlineEnd?
18195
+
18196
+ ```ts
18197
+ optional marginInlineEnd:
18198
+ | ResponsiveStyleValue<MarginInlineEnd<string | number> | readonly NonNullable<MarginInlineEnd<string | number> | undefined>[] | undefined>
18199
+ | (theme) => ResponsiveStyleValue<MarginInlineEnd<string | number> | readonly NonNullable<MarginInlineEnd<string | number> | undefined>[] | undefined>;
18200
+ ```
18201
+
18202
+ ### Inherited from
18203
+
18204
+ ```ts
18205
+ FlexBoxProps.marginInlineEnd
18206
+ ```
18207
+
18208
+ ***
18209
+
18210
+ ### marginBlock?
18211
+
18212
+ ```ts
18213
+ optional marginBlock:
18214
+ | ResponsiveStyleValue<MarginBlock<string | number> | readonly NonNullable<MarginBlock<string | number> | undefined>[] | undefined>
18215
+ | (theme) => ResponsiveStyleValue<MarginBlock<string | number> | readonly NonNullable<MarginBlock<string | number> | undefined>[] | undefined>;
18216
+ ```
18217
+
18218
+ ### Inherited from
18219
+
18220
+ ```ts
18221
+ FlexBoxProps.marginBlock
18222
+ ```
18223
+
18224
+ ***
18225
+
18226
+ ### marginBlockStart?
18227
+
18228
+ ```ts
18229
+ optional marginBlockStart:
18230
+ | ResponsiveStyleValue<MarginBlockStart<string | number> | readonly NonNullable<MarginBlockStart<string | number> | undefined>[] | undefined>
18231
+ | (theme) => ResponsiveStyleValue<MarginBlockStart<string | number> | readonly NonNullable<MarginBlockStart<string | number> | undefined>[] | undefined>;
18232
+ ```
18233
+
18234
+ ### Inherited from
18235
+
18236
+ ```ts
18237
+ FlexBoxProps.marginBlockStart
18238
+ ```
18239
+
18240
+ ***
18241
+
18242
+ ### marginBlockEnd?
18243
+
18244
+ ```ts
18245
+ optional marginBlockEnd:
18246
+ | ResponsiveStyleValue<MarginBlockEnd<string | number> | readonly NonNullable<MarginBlockEnd<string | number> | undefined>[] | undefined>
18247
+ | (theme) => ResponsiveStyleValue<MarginBlockEnd<string | number> | readonly NonNullable<MarginBlockEnd<string | number> | undefined>[] | undefined>;
18248
+ ```
18249
+
18250
+ ### Inherited from
18251
+
18252
+ ```ts
18253
+ FlexBoxProps.marginBlockEnd
18254
+ ```
18255
+
18256
+ ***
18257
+
18258
+ ### padding?
18259
+
18260
+ ```ts
18261
+ optional padding:
18262
+ | ResponsiveStyleValue<Padding<string | number> | readonly NonNullable<Padding<string | number> | undefined>[] | undefined>
18263
+ | (theme) => ResponsiveStyleValue<Padding<string | number> | readonly NonNullable<Padding<string | number> | undefined>[] | undefined>;
18264
+ ```
18265
+
18266
+ ### Inherited from
18267
+
18268
+ ```ts
18269
+ FlexBoxProps.padding
18270
+ ```
18271
+
18272
+ ***
18273
+
18274
+ ### paddingTop?
18275
+
18276
+ ```ts
18277
+ optional paddingTop:
18278
+ | ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>
18279
+ | (theme) => ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>;
18280
+ ```
18281
+
18282
+ ### Inherited from
18283
+
18284
+ ```ts
18285
+ FlexBoxProps.paddingTop
18286
+ ```
18287
+
18288
+ ***
18289
+
18290
+ ### paddingRight?
18291
+
18292
+ ```ts
18293
+ optional paddingRight:
18294
+ | ResponsiveStyleValue<PaddingRight<string | number> | readonly NonNullable<PaddingRight<string | number> | undefined>[] | undefined>
18295
+ | (theme) => ResponsiveStyleValue<PaddingRight<string | number> | readonly NonNullable<PaddingRight<string | number> | undefined>[] | undefined>;
18296
+ ```
18297
+
18298
+ ### Inherited from
18299
+
18300
+ ```ts
18301
+ FlexBoxProps.paddingRight
18302
+ ```
18303
+
18304
+ ***
18305
+
18306
+ ### paddingBottom?
18307
+
18308
+ ```ts
18309
+ optional paddingBottom:
18310
+ | ResponsiveStyleValue<PaddingBottom<string | number> | readonly NonNullable<PaddingBottom<string | number> | undefined>[] | undefined>
18311
+ | (theme) => ResponsiveStyleValue<PaddingBottom<string | number> | readonly NonNullable<PaddingBottom<string | number> | undefined>[] | undefined>;
18312
+ ```
18313
+
18314
+ ### Inherited from
18315
+
18316
+ ```ts
18317
+ FlexBoxProps.paddingBottom
18318
+ ```
18319
+
18320
+ ***
18321
+
18322
+ ### paddingLeft?
18323
+
18324
+ ```ts
18325
+ optional paddingLeft:
18326
+ | ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>
18327
+ | (theme) => ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>;
18328
+ ```
18329
+
18330
+ ### Inherited from
18331
+
18332
+ ```ts
18333
+ FlexBoxProps.paddingLeft
18334
+ ```
18335
+
18336
+ ***
18337
+
18338
+ ### paddingX?
18339
+
18340
+ ```ts
18341
+ optional paddingX:
18342
+ | ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>
18343
+ | (theme) => ResponsiveStyleValue<PaddingLeft<string | number> | readonly NonNullable<PaddingLeft<string | number> | undefined>[] | undefined>;
18344
+ ```
18345
+
18346
+ ### Inherited from
18347
+
18348
+ ```ts
18349
+ FlexBoxProps.paddingX
18350
+ ```
18351
+
18352
+ ***
18353
+
18354
+ ### paddingY?
18355
+
18356
+ ```ts
18357
+ optional paddingY:
18358
+ | ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>
18359
+ | (theme) => ResponsiveStyleValue<PaddingTop<string | number> | readonly NonNullable<PaddingTop<string | number> | undefined>[] | undefined>;
18360
+ ```
18361
+
18362
+ ### Inherited from
18363
+
18364
+ ```ts
18365
+ FlexBoxProps.paddingY
18366
+ ```
18367
+
18368
+ ***
18369
+
18370
+ ### paddingInline?
18371
+
18372
+ ```ts
18373
+ optional paddingInline:
18374
+ | ResponsiveStyleValue<PaddingInline<string | number> | readonly NonNullable<PaddingInline<string | number> | undefined>[] | undefined>
18375
+ | (theme) => ResponsiveStyleValue<PaddingInline<string | number> | readonly NonNullable<PaddingInline<string | number> | undefined>[] | undefined>;
18376
+ ```
18377
+
18378
+ ### Inherited from
18379
+
18380
+ ```ts
18381
+ FlexBoxProps.paddingInline
18382
+ ```
18383
+
18384
+ ***
18385
+
18386
+ ### paddingInlineStart?
18387
+
18388
+ ```ts
18389
+ optional paddingInlineStart:
18390
+ | ResponsiveStyleValue<PaddingInlineStart<string | number> | readonly NonNullable<PaddingInlineStart<string | number> | undefined>[] | undefined>
18391
+ | (theme) => ResponsiveStyleValue<PaddingInlineStart<string | number> | readonly NonNullable<PaddingInlineStart<string | number> | undefined>[] | undefined>;
18392
+ ```
18393
+
18394
+ ### Inherited from
18395
+
18396
+ ```ts
18397
+ FlexBoxProps.paddingInlineStart
18398
+ ```
18399
+
18400
+ ***
18401
+
18402
+ ### paddingInlineEnd?
18403
+
18404
+ ```ts
18405
+ optional paddingInlineEnd:
18406
+ | ResponsiveStyleValue<PaddingInlineEnd<string | number> | readonly NonNullable<PaddingInlineEnd<string | number> | undefined>[] | undefined>
18407
+ | (theme) => ResponsiveStyleValue<PaddingInlineEnd<string | number> | readonly NonNullable<PaddingInlineEnd<string | number> | undefined>[] | undefined>;
18408
+ ```
18409
+
18410
+ ### Inherited from
18411
+
18412
+ ```ts
18413
+ FlexBoxProps.paddingInlineEnd
18414
+ ```
18415
+
18416
+ ***
18417
+
18418
+ ### paddingBlock?
18419
+
18420
+ ```ts
18421
+ optional paddingBlock:
18422
+ | ResponsiveStyleValue<PaddingBlock<string | number> | readonly NonNullable<PaddingBlock<string | number> | undefined>[] | undefined>
18423
+ | (theme) => ResponsiveStyleValue<PaddingBlock<string | number> | readonly NonNullable<PaddingBlock<string | number> | undefined>[] | undefined>;
18424
+ ```
18425
+
18426
+ ### Inherited from
18427
+
18428
+ ```ts
18429
+ FlexBoxProps.paddingBlock
18430
+ ```
18431
+
18432
+ ***
18433
+
18434
+ ### paddingBlockStart?
18435
+
18436
+ ```ts
18437
+ optional paddingBlockStart:
18438
+ | ResponsiveStyleValue<PaddingBlockStart<string | number> | readonly NonNullable<PaddingBlockStart<string | number> | undefined>[] | undefined>
18439
+ | (theme) => ResponsiveStyleValue<PaddingBlockStart<string | number> | readonly NonNullable<PaddingBlockStart<string | number> | undefined>[] | undefined>;
18440
+ ```
18441
+
18442
+ ### Inherited from
18443
+
18444
+ ```ts
18445
+ FlexBoxProps.paddingBlockStart
18446
+ ```
18447
+
18448
+ ***
18449
+
18450
+ ### paddingBlockEnd?
18451
+
18452
+ ```ts
18453
+ optional paddingBlockEnd:
18454
+ | ResponsiveStyleValue<PaddingBlockEnd<string | number> | readonly NonNullable<PaddingBlockEnd<string | number> | undefined>[] | undefined>
18455
+ | (theme) => ResponsiveStyleValue<PaddingBlockEnd<string | number> | readonly NonNullable<PaddingBlockEnd<string | number> | undefined>[] | undefined>;
18456
+ ```
18457
+
18458
+ ### Inherited from
18459
+
18460
+ ```ts
18461
+ FlexBoxProps.paddingBlockEnd
18462
+ ```
18463
+
18464
+ ***
18465
+
18466
+ ### typography?
18467
+
18468
+ ```ts
18469
+ optional typography:
18470
+ | ResponsiveStyleValue<undefined | string>
18471
+ | (theme) => ResponsiveStyleValue<undefined | string>;
18472
+ ```
18473
+
18474
+ ### Inherited from
18475
+
18476
+ ```ts
18477
+ FlexBoxProps.typography
18478
+ ```
18479
+
18480
+ ***
18481
+
18482
+ ### fontFamily?
18483
+
18484
+ ```ts
18485
+ optional fontFamily:
18486
+ | ResponsiveStyleValue<readonly string[] | FontFamily | undefined>
18487
+ | (theme) => ResponsiveStyleValue<readonly string[] | FontFamily | undefined>;
18488
+ ```
18489
+
18490
+ ### Inherited from
18491
+
18492
+ ```ts
18493
+ FlexBoxProps.fontFamily
18494
+ ```
18495
+
18496
+ ***
18497
+
18498
+ ### fontSize?
18499
+
18500
+ ```ts
18501
+ optional fontSize:
18502
+ | ResponsiveStyleValue<FontSize<string | number> | readonly NonNullable<FontSize<string | number> | undefined>[] | undefined>
18503
+ | (theme) => ResponsiveStyleValue<FontSize<string | number> | readonly NonNullable<FontSize<string | number> | undefined>[] | undefined>;
18504
+ ```
18505
+
18506
+ ### Inherited from
18507
+
18508
+ ```ts
18509
+ FlexBoxProps.fontSize
18510
+ ```
18511
+
18512
+ ***
18513
+
18514
+ ### fontStyle?
18515
+
18516
+ ```ts
18517
+ optional fontStyle:
18518
+ | ResponsiveStyleValue<readonly string[] | FontStyle | undefined>
18519
+ | (theme) => ResponsiveStyleValue<readonly string[] | FontStyle | undefined>;
18520
+ ```
18521
+
18522
+ ### Inherited from
18523
+
18524
+ ```ts
18525
+ FlexBoxProps.fontStyle
18526
+ ```
18527
+
18528
+ ***
18529
+
18530
+ ### fontWeight?
18531
+
18532
+ ```ts
18533
+ optional fontWeight:
18534
+ | ResponsiveStyleValue<undefined | string | string & object | number & object>
18535
+ | (theme) => ResponsiveStyleValue<undefined | string | string & object | number & object>;
18536
+ ```
18537
+
18538
+ ### Inherited from
18539
+
18540
+ ```ts
18541
+ FlexBoxProps.fontWeight
18542
+ ```
18543
+
18544
+ ***
18545
+
18546
+ ### letterSpacing?
18547
+
18548
+ ```ts
18549
+ optional letterSpacing:
18550
+ | ResponsiveStyleValue<LetterSpacing<string | number> | readonly NonNullable<LetterSpacing<string | number> | undefined>[] | undefined>
18551
+ | (theme) => ResponsiveStyleValue<LetterSpacing<string | number> | readonly NonNullable<LetterSpacing<string | number> | undefined>[] | undefined>;
18552
+ ```
18553
+
18554
+ ### Inherited from
18555
+
18556
+ ```ts
18557
+ FlexBoxProps.letterSpacing
18558
+ ```
18559
+
18560
+ ***
18561
+
18562
+ ### lineHeight?
18563
+
18564
+ ```ts
18565
+ optional lineHeight:
18566
+ | ResponsiveStyleValue<LineHeight<string | number> | readonly NonNullable<LineHeight<string | number> | undefined>[] | undefined>
18567
+ | (theme) => ResponsiveStyleValue<LineHeight<string | number> | readonly NonNullable<LineHeight<string | number> | undefined>[] | undefined>;
18568
+ ```
18569
+
18570
+ ### Inherited from
18571
+
18572
+ ```ts
18573
+ FlexBoxProps.lineHeight
18574
+ ```
18575
+
18576
+ ***
18577
+
18578
+ ### textAlign?
18579
+
18580
+ ```ts
18581
+ optional textAlign:
18582
+ | ResponsiveStyleValue<TextAlign | readonly NonNullable<TextAlign | undefined>[] | undefined>
18583
+ | (theme) => ResponsiveStyleValue<TextAlign | readonly NonNullable<TextAlign | undefined>[] | undefined>;
18584
+ ```
18585
+
18586
+ ### Inherited from
18587
+
18588
+ ```ts
18589
+ FlexBoxProps.textAlign
18590
+ ```
18591
+
18592
+ ***
18593
+
18594
+ ### textTransform?
18595
+
18596
+ ```ts
18597
+ optional textTransform:
18598
+ | ResponsiveStyleValue<TextTransform | readonly NonNullable<TextTransform | undefined>[] | undefined>
18599
+ | (theme) => ResponsiveStyleValue<TextTransform | readonly NonNullable<TextTransform | undefined>[] | undefined>;
18600
+ ```
18601
+
18602
+ ### Inherited from
18603
+
18604
+ ```ts
18605
+ FlexBoxProps.textTransform
18606
+ ```
18607
+
18608
+ ***
18609
+
18610
+ ### options?
18611
+
18612
+ ```ts
18613
+ optional options: TransferRenderOptions;
18614
+ ```
18615
+
18616
+ ***
18617
+
18618
+ ### payload?
18619
+
18620
+ ```ts
18621
+ optional payload: Payload;
18622
+ ```
18623
+
18624
+ ### Overrides
18625
+
18626
+ ```ts
18627
+ PayloadDetailsRenderProps.payload
18628
+ ```
18629
+
18630
+ ### <a id="TransferRenderCardProps"></a>TransferRenderCardProps
18631
+
18632
+ [**@xyo-network/react-chain**](#../README)
18633
+
18634
+ ***
18635
+
18636
+ ## Extends
18637
+
18638
+ - `PayloadDetailsRenderProps`.`CardProps`
18639
+
18640
+ ## Properties
18641
+
18642
+ ### options?
18643
+
18644
+ ```ts
18645
+ optional options: TransferRenderOptions;
18646
+ ```
18647
+
18648
+ ***
18649
+
18650
+ ### payload?
18651
+
18652
+ ```ts
18653
+ optional payload: Payload;
18654
+ ```
18655
+
18656
+ ### Overrides
18657
+
18658
+ ```ts
18659
+ PayloadDetailsRenderProps.payload
18660
+ ```
18661
+
18662
+ ### <a id="XyoGlobal"></a>XyoGlobal
18663
+
18664
+ [**@xyo-network/react-chain**](#../README)
18665
+
18666
+ ***
18667
+
18668
+ ## Properties
18669
+
18670
+ ### client?
18671
+
18672
+ ```ts
18673
+ optional client: XyoClient;
18674
+ ```
18675
+
18676
+ ***
18677
+
18678
+ ### ~~connections~~
18679
+
18680
+ ```ts
18681
+ connections: object;
18682
+ ```
18683
+
18684
+ ### Index Signature
18685
+
18686
+ ```ts
18687
+ [chainId: string]: ChainConnection
18688
+ ```
18689
+
18690
+ ### Deprecated
18691
+
18692
+ - use client gateways instead
18693
+
18694
+ ***
18695
+
18696
+ ### errors?
18697
+
18698
+ ```ts
18699
+ optional errors: Error[];
18700
+ ```
18701
+
18702
+ ***
18703
+
18704
+ ### gateway?
18705
+
18706
+ ```ts
18707
+ optional gateway: XyoGatewayProvider;
18708
+ ```
18709
+
18710
+ ***
18711
+
18712
+ ### ~~provider?~~
18713
+
18714
+ ```ts
18715
+ optional provider: XyoConnection;
18716
+ ```
18717
+
18718
+ ### Deprecated
18719
+
18720
+ - use client gateways instead
18721
+
18722
+ ***
18723
+
18724
+ ### sessionId()
18725
+
18726
+ ```ts
18727
+ sessionId: () => string;
18728
+ ```
18729
+
18730
+ ### Returns
18731
+
18732
+ `string`
18733
+
18734
+ ***
18735
+
18736
+ ### ~~walletExtensionId()~~
18737
+
18738
+ ```ts
18739
+ walletExtensionId: () => string;
18740
+ ```
18741
+
18742
+ ### Returns
18743
+
18744
+ `string`
18745
+
18746
+ ### Deprecated
18747
+
18748
+ - use session id instead
18749
+
18750
+ ### type-aliases
18751
+
18752
+ ### <a id="BlockHeaderEventNouns"></a>BlockHeaderEventNouns
18753
+
18754
+ [**@xyo-network/react-chain**](#../README)
18755
+
18756
+ ***
18757
+
18758
+ ```ts
18759
+ type BlockHeaderEventNouns =
18760
+ | "transaction-count"
18761
+ | "block-hash"
18762
+ | "block-number"
18763
+ | "block-producer"
18764
+ | "block-verification"
18765
+ | "payload-counts";
18766
+ ```
18767
+
18768
+ ### <a id="ChainIteratorStoreValues"></a>ChainIteratorStoreValues
18769
+
18770
+ [**@xyo-network/react-chain**](#../README)
18771
+
18772
+ ***
18773
+
18774
+ ```ts
18775
+ type ChainIteratorStoreValues = object;
18776
+ ```
18777
+
18778
+ ## Properties
18779
+
18780
+ ### chainIterator
18781
+
18782
+ ```ts
18783
+ chainIterator: ChainBlockNumberIterationService;
18784
+ ```
18785
+
18786
+ ***
18787
+
18788
+ ### error?
18789
+
18790
+ ```ts
18791
+ optional error: Error;
18792
+ ```
18793
+
18794
+ ***
18795
+
18796
+ ### head
18797
+
18798
+ ```ts
18799
+ head: HydratedBlock;
18800
+ ```
18801
+
18802
+ ### <a id="ChainNetworkState"></a>ChainNetworkState
18803
+
18804
+ [**@xyo-network/react-chain**](#../README)
18805
+
18806
+ ***
18807
+
18808
+ ```ts
18809
+ type ChainNetworkState = ContextExState<{
18810
+ activeNetwork?: NetworkBootstrap;
18811
+ chainNetworkError?: Error;
18812
+ networks?: NetworkBootstrap[];
18813
+ updateActiveNetwork?: (networkId) => void;
18814
+ }>;
18815
+ ```
18816
+
18817
+ ### <a id="Listener"></a>Listener
18818
+
18819
+ [**@xyo-network/react-chain**](#../README)
18820
+
18821
+ ***
18822
+
18823
+ ```ts
18824
+ type Listener = (...args) => void;
18825
+ ```
18826
+
18827
+ ## Parameters
18828
+
18829
+ ### args
18830
+
18831
+ ...`unknown`[]
18832
+
18833
+ ## Returns
18834
+
18835
+ `void`
18836
+
18837
+ ### <a id="PollingState"></a>PollingState
18838
+
18839
+ [**@xyo-network/react-chain**](#../README)
18840
+
18841
+ ***
18842
+
18843
+ ```ts
18844
+ type PollingState = "paused" | "running";
18845
+ ```
18846
+
18847
+ ### <a id="SmartContractDeploy"></a>SmartContractDeploy
18848
+
18849
+ [**@xyo-network/react-chain**](#../README)
18850
+
18851
+ ***
18852
+
18853
+ ```ts
18854
+ type SmartContractDeploy = Payload<SmartContractDeployFields, SmartContractDeploySchema>;
18855
+ ```
18856
+
18857
+ ### <a id="SmartContractDeploySchema"></a>SmartContractDeploySchema
18858
+
18859
+ [**@xyo-network/react-chain**](#../README)
18860
+
18861
+ ***
18862
+
18863
+ ```ts
18864
+ type SmartContractDeploySchema = typeof SmartContractDeploySchema;
18865
+ ```
18866
+
18867
+ ### variables
18868
+
18869
+ ### <a id="ActiveMenuItem"></a>ActiveMenuItem
18870
+
18871
+ [**@xyo-network/react-chain**](#../README)
18872
+
18873
+ ***
18874
+
18875
+ ```ts
18876
+ const ActiveMenuItem: React.FC<MenuItemProps & object>;
18877
+ ```
18878
+
18879
+ ### <a id="ActiveNetworkAvatar"></a>ActiveNetworkAvatar
18880
+
18881
+ [**@xyo-network/react-chain**](#../README)
18882
+
18883
+ ***
18884
+
18885
+ ```ts
18886
+ const ActiveNetworkAvatar: React.FC<AvatarProps>;
18887
+ ```
18888
+
18889
+ ### <a id="BlockChainPagination"></a>BlockChainPagination
18890
+
18891
+ [**@xyo-network/react-chain**](#../README)
18892
+
18893
+ ***
18894
+
18895
+ ```ts
18896
+ const BlockChainPagination: React.FC<BlockChainPaginationProps>;
18897
+ ```
18898
+
18899
+ ### <a id="BlockChainTableRow"></a>BlockChainTableRow
18900
+
18901
+ [**@xyo-network/react-chain**](#../README)
18902
+
18903
+ ***
18904
+
18905
+ ```ts
18906
+ const BlockChainTableRow: React.FC<BlockChainTableRowProps>;
18907
+ ```
18908
+
18909
+ ### <a id="BlockEpochTableCell"></a>BlockEpochTableCell
18910
+
18911
+ [**@xyo-network/react-chain**](#../README)
18912
+
18913
+ ***
18914
+
18915
+ ```ts
18916
+ const BlockEpochTableCell: React.FC<BlockEpochTableCellProps>;
18917
+ ```
18918
+
18919
+ ### <a id="BlockHashTableCell"></a>BlockHashTableCell
18920
+
18921
+ [**@xyo-network/react-chain**](#../README)
18922
+
18923
+ ***
18924
+
18925
+ ```ts
18926
+ const BlockHashTableCell: React.FC<BlockHashTableCellProps>;
18927
+ ```
18928
+
18929
+ ### <a id="BlockHeadingFlexbox"></a>BlockHeadingFlexbox
18930
+
18931
+ [**@xyo-network/react-chain**](#../README)
18932
+
18933
+ ***
18934
+
18935
+ ```ts
18936
+ const BlockHeadingFlexbox: React.FC<BlockComponentWithTxsProps>;
18937
+ ```
18938
+
18939
+ ### <a id="BlockJsonViewTableCell"></a>BlockJsonViewTableCell
18940
+
18941
+ [**@xyo-network/react-chain**](#../README)
18942
+
18943
+ ***
16785
18944
 
16786
18945
  ```ts
16787
18946
  const BlockJsonViewTableCell: React.FC<BlockJsonViewTableCellProps>;
@@ -16890,7 +19049,7 @@ const BlockchainTableEx: {
16890
19049
  };
16891
19050
  ```
16892
19051
 
16893
- ## Type declaration
19052
+ ## Type Declaration
16894
19053
 
16895
19054
  ## Parameters
16896
19055
 
@@ -17188,7 +19347,7 @@ const DetailsStack: React.FC<DetailsStackProps>;
17188
19347
  const DynamicBlockchainRenderFlexbox: object;
17189
19348
  ```
17190
19349
 
17191
- ## Type declaration
19350
+ ## Type Declaration
17192
19351
 
17193
19352
  ### Base
17194
19353
 
@@ -17408,7 +19567,7 @@ const ProducerIntentBuilderForm: React.FC<ProducerIntentBuilderFormProps>;
17408
19567
  const PulseSvgIcon: OverridableComponent & object;
17409
19568
  ```
17410
19569
 
17411
- ## Type declaration
19570
+ ## Type Declaration
17412
19571
 
17413
19572
  ### muiName
17414
19573
 
@@ -17446,7 +19605,7 @@ const StakingTokenAddress: React.FC<EvmContractChainStakeProps>;
17446
19605
  const StaticBlockchainRenderFlexBox: object;
17447
19606
  ```
17448
19607
 
17449
- ## Type declaration
19608
+ ## Type Declaration
17450
19609
 
17451
19610
  ### Base
17452
19611
 
@@ -17480,64 +19639,94 @@ const StyledPulseSvgIcon: StyledComponent;
17480
19639
  const SubmitChainTransaction: React.FC;
17481
19640
  ```
17482
19641
 
17483
- ### <a id="SuccessfulDeploy"></a>SuccessfulDeploy
19642
+ ### <a id="SuccessfulDeploy"></a>SuccessfulDeploy
19643
+
19644
+ [**@xyo-network/react-chain**](#../README)
19645
+
19646
+ ***
19647
+
19648
+ ```ts
19649
+ const SuccessfulDeploy: React.FC<SuccessfulDeployProps>;
19650
+ ```
19651
+
19652
+ ### <a id="TransactionCountChip"></a>TransactionCountChip
19653
+
19654
+ [**@xyo-network/react-chain**](#../README)
19655
+
19656
+ ***
19657
+
19658
+ ```ts
19659
+ const TransactionCountChip: React.FC<TransactionCountChipProps>;
19660
+ ```
19661
+
19662
+ ### <a id="TransactionsDialog"></a>TransactionsDialog
19663
+
19664
+ [**@xyo-network/react-chain**](#../README)
19665
+
19666
+ ***
19667
+
19668
+ ```ts
19669
+ const TransactionsDialog: React.FC<TransactionsDialogProps>;
19670
+ ```
19671
+
19672
+ ### <a id="TransactionsQuickTipButton"></a>TransactionsQuickTipButton
17484
19673
 
17485
19674
  [**@xyo-network/react-chain**](#../README)
17486
19675
 
17487
19676
  ***
17488
19677
 
17489
19678
  ```ts
17490
- const SuccessfulDeploy: React.FC<SuccessfulDeployProps>;
19679
+ const TransactionsQuickTipButton: React.FC<TransactionsQuickTipButtonQuickTipButtonProps>;
17491
19680
  ```
17492
19681
 
17493
- ### <a id="TransactionCountChip"></a>TransactionCountChip
19682
+ ### <a id="TransferBuilderFlexbox"></a>TransferBuilderFlexbox
17494
19683
 
17495
19684
  [**@xyo-network/react-chain**](#../README)
17496
19685
 
17497
19686
  ***
17498
19687
 
17499
19688
  ```ts
17500
- const TransactionCountChip: React.FC<TransactionCountChipProps>;
19689
+ const TransferBuilderFlexbox: React.FC<PayloadBuilderComponentProps>;
17501
19690
  ```
17502
19691
 
17503
- ### <a id="TransactionsDialog"></a>TransactionsDialog
19692
+ ### <a id="TransferBuilderForm"></a>TransferBuilderForm
17504
19693
 
17505
19694
  [**@xyo-network/react-chain**](#../README)
17506
19695
 
17507
19696
  ***
17508
19697
 
17509
19698
  ```ts
17510
- const TransactionsDialog: React.FC<TransactionsDialogProps>;
19699
+ const TransferBuilderForm: React.FC<TransferBuilderFormProps>;
17511
19700
  ```
17512
19701
 
17513
- ### <a id="TransactionsQuickTipButton"></a>TransactionsQuickTipButton
19702
+ ### <a id="TransferRenderBoxDetails"></a>TransferRenderBoxDetails
17514
19703
 
17515
19704
  [**@xyo-network/react-chain**](#../README)
17516
19705
 
17517
19706
  ***
17518
19707
 
17519
19708
  ```ts
17520
- const TransactionsQuickTipButton: React.FC<TransactionsQuickTipButtonQuickTipButtonProps>;
19709
+ const TransferRenderBoxDetails: React.FC<TransferRenderBoxDetailsProps>;
17521
19710
  ```
17522
19711
 
17523
- ### <a id="TransferBuilderFlexbox"></a>TransferBuilderFlexbox
19712
+ ### <a id="TransferRenderCard"></a>TransferRenderCard
17524
19713
 
17525
19714
  [**@xyo-network/react-chain**](#../README)
17526
19715
 
17527
19716
  ***
17528
19717
 
17529
19718
  ```ts
17530
- const TransferBuilderFlexbox: React.FC<PayloadBuilderComponentProps>;
19719
+ const TransferRenderCard: React.FC<TransferRenderCardProps>;
17531
19720
  ```
17532
19721
 
17533
- ### <a id="TransferBuilderForm"></a>TransferBuilderForm
19722
+ ### <a id="TransferRenderPlugin"></a>TransferRenderPlugin
17534
19723
 
17535
19724
  [**@xyo-network/react-chain**](#../README)
17536
19725
 
17537
19726
  ***
17538
19727
 
17539
19728
  ```ts
17540
- const TransferBuilderForm: React.FC<TransferBuilderFormProps>;
19729
+ const TransferRenderPlugin: PayloadRenderPlugin;
17541
19730
  ```
17542
19731
 
17543
19732
  ### <a id="XyoAddressTextField"></a>XyoAddressTextField
@@ -17622,7 +19811,7 @@ const asSmartContractDeploy: AsTypeFunction;
17622
19811
  ***
17623
19812
 
17624
19813
  ```ts
17625
- const blockProducer: (block) => Lowercase<string>;
19814
+ const blockProducer: (block) => Brand;
17626
19815
  ```
17627
19816
 
17628
19817
  ## Parameters
@@ -17633,7 +19822,7 @@ const blockProducer: (block) => Lowercase<string>;
17633
19822
 
17634
19823
  ## Returns
17635
19824
 
17636
- `Lowercase`\<`string`\>
19825
+ `Brand`
17637
19826
 
17638
19827
  ### <a id="buildBlockChainRenderComponent"></a>buildBlockChainRenderComponent
17639
19828
 
@@ -17803,6 +19992,30 @@ const isSmartContractDeploy: (x?) => x is SmartContractDeploy;
17803
19992
 
17804
19993
  `x is SmartContractDeploy`
17805
19994
 
19995
+ ### <a id="listenForClientInjection"></a>listenForClientInjection
19996
+
19997
+ [**@xyo-network/react-chain**](#../README)
19998
+
19999
+ ***
20000
+
20001
+ ```ts
20002
+ const listenForClientInjection: (onClientReady, onTimeout) => void;
20003
+ ```
20004
+
20005
+ ## Parameters
20006
+
20007
+ ### onClientReady
20008
+
20009
+ () => `void`
20010
+
20011
+ ### onTimeout
20012
+
20013
+ () => `void`
20014
+
20015
+ ## Returns
20016
+
20017
+ `void`
20018
+
17806
20019
  ### <a id="payloadCountsFromBlock"></a>payloadCountsFromBlock
17807
20020
 
17808
20021
  [**@xyo-network/react-chain**](#../README)
@@ -17970,7 +20183,7 @@ const useAddressBalance: (address?, viewer?, refresh?) => object;
17970
20183
  ### address
17971
20184
 
17972
20185
  ```ts
17973
- address: Lowercase<string> | undefined;
20186
+ address: Brand | undefined;
17974
20187
  ```
17975
20188
 
17976
20189
  ### balanceForAddress
@@ -18094,7 +20307,7 @@ const useBlockHeadingEvents: <TElement>(...args) => [RefObject, EventDispatch];
18094
20307
  ***
18095
20308
 
18096
20309
  ```ts
18097
- const useBlockProducer: (block?) => Lowercase<string> | undefined;
20310
+ const useBlockProducer: (block?) => Brand | undefined;
18098
20311
  ```
18099
20312
 
18100
20313
  ## Parameters
@@ -18105,7 +20318,7 @@ const useBlockProducer: (block?) => Lowercase<string> | undefined;
18105
20318
 
18106
20319
  ## Returns
18107
20320
 
18108
- `Lowercase`\<`string`\> \| `undefined`
20321
+ `Brand` \| `undefined`
18109
20322
 
18110
20323
  ### <a id="useChainIteratorParams"></a>useChainIteratorParams
18111
20324
 
@@ -18117,23 +20330,8 @@ const useBlockProducer: (block?) => Lowercase<string> | undefined;
18117
20330
  const useChainIteratorParams: ({ chainArchivist, chainId, head, name, }) => [
18118
20331
  | {
18119
20332
  chainArchivist: ArchivistInstance;
18120
- chainId: Lowercase<string>;
20333
+ chainId: Chain;
18121
20334
  config: {
18122
- chain: {
18123
- id?: string;
18124
- };
18125
- logLevel: "error" | "warn" | "info" | "log" | "debug" | "trace";
18126
- storage: {
18127
- root?: string;
18128
- mongo?: {
18129
- connectionString?: string;
18130
- database?: string;
18131
- domain?: string;
18132
- password?: string;
18133
- username?: string;
18134
- };
18135
- };
18136
- silent: boolean;
18137
20335
  api: {
18138
20336
  host: string;
18139
20337
  port: number;
@@ -18142,6 +20340,9 @@ const useChainIteratorParams: ({ chainArchivist, chainId, head, name, }) => [
18142
20340
  app: {
18143
20341
  port: number;
18144
20342
  };
20343
+ chain: {
20344
+ id?: string;
20345
+ };
18145
20346
  evm: {
18146
20347
  chainId?: string;
18147
20348
  infura?: {
@@ -18153,21 +20354,35 @@ const useChainIteratorParams: ({ chainArchivist, chainId, head, name, }) => [
18153
20354
  };
18154
20355
  };
18155
20356
  producer: {
18156
- port: number;
20357
+ heartbeatInterval: number;
18157
20358
  minStake: number;
18158
- mnemonic?: string;
18159
- healthCheckPort?: number;
20359
+ port: number;
20360
+ allowlist?: Brand[];
18160
20361
  disableIntentRedeclaration?: boolean;
20362
+ healthCheckPort?: number;
20363
+ mnemonic?: string;
18161
20364
  rewardAddress?: string;
18162
20365
  };
20366
+ storage: {
20367
+ mongo?: {
20368
+ connectionString?: string;
20369
+ database?: string;
20370
+ domain?: string;
20371
+ password?: string;
20372
+ username?: string;
20373
+ };
20374
+ root?: string;
20375
+ };
18163
20376
  telemetry: {
18164
20377
  otel?: {
18165
20378
  otlpEndpoint?: string;
18166
20379
  };
18167
20380
  };
20381
+ logLevel: "error" | "warn" | "info" | "log" | "debug" | "trace";
20382
+ silent: boolean;
18168
20383
  };
18169
- head: DeepRestrictToStringKeys & Partial<PayloadMetaFields> & StorageMeta & DeepRestrictToStringKeys & BoundWitnessMeta & object;
18170
- name: string;
20384
+ head: SchemaFields & PayloadFields & object & Partial<PayloadMetaFields> & StorageMeta & BoundWitnessFields & BlockBoundWitnessFields & BlockBoundWitnessMeta & object & BoundWitnessMeta & object;
20385
+ name: CreatableName;
18171
20386
  }
18172
20387
  | undefined, Error | undefined, UsePromiseState | undefined];
18173
20388
  ```
@@ -18183,23 +20398,8 @@ const useChainIteratorParams: ({ chainArchivist, chainId, head, name, }) => [
18183
20398
  \[
18184
20399
  \| \{
18185
20400
  `chainArchivist`: `ArchivistInstance`;
18186
- `chainId`: `Lowercase`\<`string`\>;
20401
+ `chainId`: `Chain`;
18187
20402
  `config`: \{
18188
- `chain`: \{
18189
- `id?`: `string`;
18190
- \};
18191
- `logLevel`: `"error"` \| `"warn"` \| `"info"` \| `"log"` \| `"debug"` \| `"trace"`;
18192
- `storage`: \{
18193
- `root?`: `string`;
18194
- `mongo?`: \{
18195
- `connectionString?`: `string`;
18196
- `database?`: `string`;
18197
- `domain?`: `string`;
18198
- `password?`: `string`;
18199
- `username?`: `string`;
18200
- \};
18201
- \};
18202
- `silent`: `boolean`;
18203
20403
  `api`: \{
18204
20404
  `host`: `string`;
18205
20405
  `port`: `number`;
@@ -18208,6 +20408,9 @@ const useChainIteratorParams: ({ chainArchivist, chainId, head, name, }) => [
18208
20408
  `app`: \{
18209
20409
  `port`: `number`;
18210
20410
  \};
20411
+ `chain`: \{
20412
+ `id?`: `string`;
20413
+ \};
18211
20414
  `evm`: \{
18212
20415
  `chainId?`: `string`;
18213
20416
  `infura?`: \{
@@ -18219,21 +20422,35 @@ const useChainIteratorParams: ({ chainArchivist, chainId, head, name, }) => [
18219
20422
  \};
18220
20423
  \};
18221
20424
  `producer`: \{
18222
- `port`: `number`;
20425
+ `heartbeatInterval`: `number`;
18223
20426
  `minStake`: `number`;
18224
- `mnemonic?`: `string`;
18225
- `healthCheckPort?`: `number`;
20427
+ `port`: `number`;
20428
+ `allowlist?`: `Brand`[];
18226
20429
  `disableIntentRedeclaration?`: `boolean`;
20430
+ `healthCheckPort?`: `number`;
20431
+ `mnemonic?`: `string`;
18227
20432
  `rewardAddress?`: `string`;
18228
20433
  \};
20434
+ `storage`: \{
20435
+ `mongo?`: \{
20436
+ `connectionString?`: `string`;
20437
+ `database?`: `string`;
20438
+ `domain?`: `string`;
20439
+ `password?`: `string`;
20440
+ `username?`: `string`;
20441
+ \};
20442
+ `root?`: `string`;
20443
+ \};
18229
20444
  `telemetry`: \{
18230
20445
  `otel?`: \{
18231
20446
  `otlpEndpoint?`: `string`;
18232
20447
  \};
18233
20448
  \};
20449
+ `logLevel`: `"error"` \| `"warn"` \| `"info"` \| `"log"` \| `"debug"` \| `"trace"`;
20450
+ `silent`: `boolean`;
18234
20451
  \};
18235
- `head`: `DeepRestrictToStringKeys` & `Partial`\<`PayloadMetaFields`\> & `StorageMeta` & `DeepRestrictToStringKeys` & `BoundWitnessMeta` & `object`;
18236
- `name`: `string`;
20452
+ `head`: `SchemaFields` & `PayloadFields` & `object` & `Partial`\<`PayloadMetaFields`\> & `StorageMeta` & `BoundWitnessFields` & `BlockBoundWitnessFields` & `BlockBoundWitnessMeta` & `object` & `BoundWitnessMeta` & `object`;
20453
+ `name`: `CreatableName`;
18237
20454
  \}
18238
20455
  \| `undefined`, `Error` \| `undefined`, `UsePromiseState` \| `undefined`\]
18239
20456
 
@@ -18354,6 +20571,146 @@ page: number;
18354
20571
 
18355
20572
  ```ts
18356
20573
  paginatedBlockComponents: BlockChainRenderComponent[] | undefined;
20574
+ ```
20575
+
20576
+ ### <a id="useCheckLocalRpc"></a>useCheckLocalRpc
20577
+
20578
+ [**@xyo-network/react-chain**](#../README)
20579
+
20580
+ ***
20581
+
20582
+ ```ts
20583
+ const useCheckLocalRpc: () => object;
20584
+ ```
20585
+
20586
+ ## Returns
20587
+
20588
+ `object`
20589
+
20590
+ ### isLocalProducer
20591
+
20592
+ ```ts
20593
+ isLocalProducer: boolean;
20594
+ ```
20595
+
20596
+ ### error
20597
+
20598
+ ```ts
20599
+ error: Error | undefined;
20600
+ ```
20601
+
20602
+ ### <a id="useCheckRpc"></a>useCheckRpc
20603
+
20604
+ [**@xyo-network/react-chain**](#../README)
20605
+
20606
+ ***
20607
+
20608
+ ```ts
20609
+ const useCheckRpc: (endpoint?) => object;
20610
+ ```
20611
+
20612
+ ## Parameters
20613
+
20614
+ ### endpoint?
20615
+
20616
+ `string`
20617
+
20618
+ ## Returns
20619
+
20620
+ `object`
20621
+
20622
+ ### isLocalProducer
20623
+
20624
+ ```ts
20625
+ isLocalProducer: boolean;
20626
+ ```
20627
+
20628
+ ### error
20629
+
20630
+ ```ts
20631
+ error: Error | undefined;
20632
+ ```
20633
+
20634
+ ### <a id="useCheckSequenceRpc"></a>useCheckSequenceRpc
20635
+
20636
+ [**@xyo-network/react-chain**](#../README)
20637
+
20638
+ ***
20639
+
20640
+ ```ts
20641
+ const useCheckSequenceRpc: () => object;
20642
+ ```
20643
+
20644
+ ## Returns
20645
+
20646
+ `object`
20647
+
20648
+ ### isLocalProducer
20649
+
20650
+ ```ts
20651
+ isLocalProducer: boolean;
20652
+ ```
20653
+
20654
+ ### error
20655
+
20656
+ ```ts
20657
+ error: Error | undefined;
20658
+ ```
20659
+
20660
+ ### <a id="useClient"></a>useClient
20661
+
20662
+ [**@xyo-network/react-chain**](#../README)
20663
+
20664
+ ***
20665
+
20666
+ ```ts
20667
+ const useClient: () => ClientState;
20668
+ ```
20669
+
20670
+ ## Returns
20671
+
20672
+ `ClientState`
20673
+
20674
+ ### <a id="useConnectAccount"></a>useConnectAccount
20675
+
20676
+ [**@xyo-network/react-chain**](#../README)
20677
+
20678
+ ***
20679
+
20680
+ ```ts
20681
+ const useConnectAccount: (gatewayName?) => object;
20682
+ ```
20683
+
20684
+ ## Parameters
20685
+
20686
+ ### gatewayName?
20687
+
20688
+ `GatewayName`
20689
+
20690
+ ## Returns
20691
+
20692
+ `object`
20693
+
20694
+ ### address
20695
+
20696
+ ```ts
20697
+ address: string | undefined;
20698
+ ```
20699
+
20700
+ ### connectSigner()
20701
+
20702
+ ```ts
20703
+ connectSigner: () => Promise<Brand>;
20704
+ ```
20705
+
20706
+ ### Returns
20707
+
20708
+ `Promise`\<`Brand`\>
20709
+
20710
+ ### error
20711
+
20712
+ ```ts
20713
+ error: Error | null;
18357
20714
  ```
18358
20715
 
18359
20716
  ### <a id="useContractConnect"></a>useContractConnect
@@ -18373,7 +20730,7 @@ const useContractConnect: () => object;
18373
20730
  ### address
18374
20731
 
18375
20732
  ```ts
18376
- address: Lowercase<string> | undefined;
20733
+ address: EthAddress | undefined;
18377
20734
  ```
18378
20735
 
18379
20736
  ### handleConnectContract()
@@ -18389,7 +20746,7 @@ handleConnectContract: () => void;
18389
20746
  ### addressField
18390
20747
 
18391
20748
  ```ts
18392
- addressField: Lowercase<string> | undefined;
20749
+ addressField: EthAddress | undefined;
18393
20750
  ```
18394
20751
 
18395
20752
  ### handleAddressChange()
@@ -18600,7 +20957,7 @@ const useEvmContractChainStake: (address?, runner?, refresh?) => [EvmChainServic
18600
20957
 
18601
20958
  ### address?
18602
20959
 
18603
- `Address`
20960
+ `EthAddress`
18604
20961
 
18605
20962
  ### runner?
18606
20963
 
@@ -18614,6 +20971,44 @@ const useEvmContractChainStake: (address?, runner?, refresh?) => [EvmChainServic
18614
20971
 
18615
20972
  \[`EvmChainService` \| `undefined`, `Error` \| `undefined`, `UsePromiseState` \| `undefined`\]
18616
20973
 
20974
+ ### <a id="useGateway"></a>useGateway
20975
+
20976
+ [**@xyo-network/react-chain**](#../README)
20977
+
20978
+ ***
20979
+
20980
+ ```ts
20981
+ const useGateway: (gatewayName?) => object;
20982
+ ```
20983
+
20984
+ ## Parameters
20985
+
20986
+ ### gatewayName?
20987
+
20988
+ `GatewayName`
20989
+
20990
+ ## Returns
20991
+
20992
+ `object`
20993
+
20994
+ ### gateway
20995
+
20996
+ ```ts
20997
+ gateway: XyoGatewayProvider | undefined;
20998
+ ```
20999
+
21000
+ ### isLoading
21001
+
21002
+ ```ts
21003
+ isLoading: boolean;
21004
+ ```
21005
+
21006
+ ### error
21007
+
21008
+ ```ts
21009
+ error: Error | null;
21010
+ ```
21011
+
18617
21012
  ### <a id="useHttpRpcRunner"></a>useHttpRpcRunner
18618
21013
 
18619
21014
  [**@xyo-network/react-chain**](#../README)
@@ -18798,7 +21193,7 @@ const useSigner: (_provider?, account?) => XyoSigner | undefined;
18798
21193
 
18799
21194
  ### \_provider?
18800
21195
 
18801
- `XyoConnectionProvider`
21196
+ `XyoConnection`
18802
21197
 
18803
21198
  ### account?
18804
21199
 
@@ -18875,7 +21270,7 @@ readonly \[`number` \| `undefined`, (`_`, `newValue`) => `void`\]
18875
21270
  ***
18876
21271
 
18877
21272
  ```ts
18878
- const useTxsFromBlock: (block?) => [[WithStorageMeta, Lowercase<string>][] | undefined, Error | undefined, UsePromiseState | undefined];
21273
+ const useTxsFromBlock: (block?) => [[WithStorageMeta, Brand][] | undefined, Error | undefined, UsePromiseState | undefined];
18879
21274
  ```
18880
21275
 
18881
21276
  ## Parameters
@@ -18886,7 +21281,7 @@ const useTxsFromBlock: (block?) => [[WithStorageMeta, Lowercase<string>][] | und
18886
21281
 
18887
21282
  ## Returns
18888
21283
 
18889
- \[\[`WithStorageMeta`, `Lowercase`\<`string`\>\][] \| `undefined`, `Error` \| `undefined`, `UsePromiseState` \| `undefined`\]
21284
+ \[\[`WithStorageMeta`, `Brand`\][] \| `undefined`, `Error` \| `undefined`, `UsePromiseState` \| `undefined`\]
18890
21285
 
18891
21286
  ### <a id="useViewerFromWallet"></a>useViewerFromWallet
18892
21287
 
@@ -18895,7 +21290,7 @@ const useTxsFromBlock: (block?) => [[WithStorageMeta, Lowercase<string>][] | und
18895
21290
  ***
18896
21291
 
18897
21292
  ```ts
18898
- const useViewerFromWallet: (networkId?) => JsonRpcXyoViewer | undefined;
21293
+ const useViewerFromWallet: (networkId?) => XyoViewer | undefined;
18899
21294
  ```
18900
21295
 
18901
21296
  Creates a JsonRpcXyoViewer instance based on the provided networkId.
@@ -18904,15 +21299,15 @@ Creates a JsonRpcXyoViewer instance based on the provided networkId.
18904
21299
 
18905
21300
  ### networkId?
18906
21301
 
18907
- `string`
21302
+ `GatewayName`
18908
21303
 
18909
21304
  a network id like 'sequence', 'local', etc.
18910
21305
 
18911
21306
  ## Returns
18912
21307
 
18913
- `JsonRpcXyoViewer` \| `undefined`
21308
+ `XyoViewer` \| `undefined`
18914
21309
 
18915
- An instance of JsonRpcXyoViewer if the networkId is found in walletConnections,
21310
+ An instance of XyoViewer if the networkId is found in wallet gateways
18916
21311
  otherwise undefined.
18917
21312
 
18918
21313
  ### <a id="useViewerInPage"></a>useViewerInPage
@@ -18922,14 +21317,14 @@ otherwise undefined.
18922
21317
  ***
18923
21318
 
18924
21319
  ```ts
18925
- const useViewerInPage: () => JsonRpcXyoViewer | undefined;
21320
+ const useViewerInPage: () => XyoViewer | undefined;
18926
21321
  ```
18927
21322
 
18928
21323
  Get the viewer for the active network, first from the wallet or fallback to HTTP RPC
18929
21324
 
18930
21325
  ## Returns
18931
21326
 
18932
- `JsonRpcXyoViewer` \| `undefined`
21327
+ `XyoViewer` \| `undefined`
18933
21328
 
18934
21329
  - XyoViewer for the active network
18935
21330