@fileverse-dev/fortune-react 1.0.2-mod-115 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. package/dist/index.esm.js +292 -293
  2. package/dist/index.js +292 -293
  3. package/dist/index.umd.js +345 -346
  4. package/dist/index.umd.min.js +7 -7
  5. package/dist/packages/core/src/api/cell.d.ts +10 -0
  6. package/dist/packages/core/src/api/common.d.ts +66 -0
  7. package/dist/packages/core/src/api/errors.d.ts +2 -0
  8. package/dist/packages/core/src/api/index.d.ts +9 -0
  9. package/dist/packages/core/src/api/merge.d.ts +5 -0
  10. package/dist/packages/core/src/api/range.d.ts +22 -0
  11. package/dist/packages/core/src/api/rowcol.d.ts +14 -0
  12. package/dist/packages/core/src/api/sheet.d.ts +10 -0
  13. package/dist/packages/core/src/api/workbook.d.ts +15 -0
  14. package/dist/packages/core/src/canvas.d.ts +46 -0
  15. package/dist/packages/core/src/context.d.ts +197 -0
  16. package/dist/packages/core/src/events/copy.d.ts +2 -0
  17. package/dist/packages/core/src/events/index.d.ts +4 -0
  18. package/dist/packages/core/src/events/keyboard.d.ts +6 -0
  19. package/dist/packages/core/src/events/mouse.d.ts +22 -0
  20. package/dist/packages/core/src/events/paste.d.ts +3 -0
  21. package/dist/packages/core/src/index.d.ts +10 -0
  22. package/dist/packages/core/src/locale/en.d.ts +992 -0
  23. package/dist/packages/core/src/locale/es.d.ts +1134 -0
  24. package/dist/packages/core/src/locale/hi.d.ts +1030 -0
  25. package/dist/packages/core/src/locale/index.d.ts +1049 -0
  26. package/dist/packages/core/src/locale/zh.d.ts +1048 -0
  27. package/dist/packages/core/src/locale/zh_tw.d.ts +1187 -0
  28. package/dist/packages/core/src/modules/ConditionFormat.d.ts +17 -0
  29. package/dist/packages/core/src/modules/border.d.ts +3 -0
  30. package/dist/packages/core/src/modules/cell.d.ts +32 -0
  31. package/dist/packages/core/src/modules/clipboard.d.ts +3 -0
  32. package/dist/packages/core/src/modules/color.d.ts +1 -0
  33. package/dist/packages/core/src/modules/comment.d.ts +97 -0
  34. package/dist/packages/core/src/modules/conditionalFormat.d.ts +2 -0
  35. package/dist/packages/core/src/modules/cursor.d.ts +3 -0
  36. package/dist/packages/core/src/modules/dataVerification.d.ts +11 -0
  37. package/dist/packages/core/src/modules/dropCell.d.ts +10 -0
  38. package/dist/packages/core/src/modules/filter.d.ts +45 -0
  39. package/dist/packages/core/src/modules/format.d.ts +6 -0
  40. package/dist/packages/core/src/modules/formula.d.ts +54 -0
  41. package/dist/packages/core/src/modules/freeze.d.ts +5 -0
  42. package/dist/packages/core/src/modules/hyperlink.d.ts +21 -0
  43. package/dist/packages/core/src/modules/iframe.d.ts +12 -0
  44. package/dist/packages/core/src/modules/image.d.ts +31 -0
  45. package/dist/packages/core/src/modules/index.d.ts +36 -0
  46. package/dist/packages/core/src/modules/inline-string.d.ts +36 -0
  47. package/dist/packages/core/src/modules/location.d.ts +6 -0
  48. package/dist/packages/core/src/modules/locationCondition.d.ts +21 -0
  49. package/dist/packages/core/src/modules/merge.d.ts +3 -0
  50. package/dist/packages/core/src/modules/mobile.d.ts +5 -0
  51. package/dist/packages/core/src/modules/moveCells.d.ts +5 -0
  52. package/dist/packages/core/src/modules/protection.d.ts +5 -0
  53. package/dist/packages/core/src/modules/refresh.d.ts +3 -0
  54. package/dist/packages/core/src/modules/rowcol.d.ts +19 -0
  55. package/dist/packages/core/src/modules/screenshot.d.ts +2 -0
  56. package/dist/packages/core/src/modules/searchReplace.d.ts +36 -0
  57. package/dist/packages/core/src/modules/selection.d.ts +46 -0
  58. package/dist/packages/core/src/modules/sheet.d.ts +10 -0
  59. package/dist/packages/core/src/modules/sort.d.ts +7 -0
  60. package/dist/packages/core/src/modules/splitColumn.d.ts +5 -0
  61. package/dist/packages/core/src/modules/text.d.ts +10 -0
  62. package/dist/packages/core/src/modules/toolbar.d.ts +32 -0
  63. package/dist/packages/core/src/modules/validation.d.ts +19 -0
  64. package/dist/packages/core/src/modules/zoom.d.ts +3 -0
  65. package/dist/packages/core/src/settings.d.ts +100 -0
  66. package/dist/packages/core/src/types.d.ts +371 -0
  67. package/dist/packages/core/src/utils/freeze.d.ts +7 -0
  68. package/dist/packages/core/src/utils/index.d.ts +18 -0
  69. package/dist/packages/core/src/utils/patch.d.ts +37 -0
  70. package/dist/{components → packages/react/src/components}/Workbook/index.d.ts +22 -22
  71. package/dist/stories/API.stories.d.ts +1210 -0
  72. package/dist/stories/Collabration.stories.d.ts +2359 -0
  73. package/dist/stories/Features.stories.d.ts +9430 -0
  74. package/dist/stories/data/cell.d.ts +983 -0
  75. package/dist/stories/data/dataVerification.d.ts +131 -0
  76. package/dist/stories/data/empty.d.ts +10 -0
  77. package/dist/stories/data/formula.d.ts +362 -0
  78. package/dist/stories/data/freeze.d.ts +34 -0
  79. package/dist/stories/data/protected.d.ts +40 -0
  80. package/dist/stories/utils.d.ts +1 -0
  81. package/package.json +4 -2
  82. /package/dist/{components → packages/react/src/components}/ChangeColor/index.d.ts +0 -0
  83. /package/dist/{components → packages/react/src/components}/ConditionFormat/ConditionRules.d.ts +0 -0
  84. /package/dist/{components → packages/react/src/components}/ConditionFormat/index.d.ts +0 -0
  85. /package/dist/{components → packages/react/src/components}/ContextMenu/Divider.d.ts +0 -0
  86. /package/dist/{components → packages/react/src/components}/ContextMenu/FilterMenu.d.ts +0 -0
  87. /package/dist/{components → packages/react/src/components}/ContextMenu/Menu.d.ts +0 -0
  88. /package/dist/{components → packages/react/src/components}/ContextMenu/SheetTab.d.ts +0 -0
  89. /package/dist/{components → packages/react/src/components}/ContextMenu/index.d.ts +0 -0
  90. /package/dist/{components → packages/react/src/components}/CustomSort/index.d.ts +0 -0
  91. /package/dist/{components → packages/react/src/components}/DataVerification/DropdownList.d.ts +0 -0
  92. /package/dist/{components → packages/react/src/components}/DataVerification/RangeDialog.d.ts +0 -0
  93. /package/dist/{components → packages/react/src/components}/DataVerification/getDisplayedRangeTxt.d.ts +0 -0
  94. /package/dist/{components → packages/react/src/components}/DataVerification/index.d.ts +0 -0
  95. /package/dist/{components → packages/react/src/components}/Dialog/index.d.ts +0 -0
  96. /package/dist/{components → packages/react/src/components}/DuneChartsInputModal/DuneChartsInputModal.d.ts +0 -0
  97. /package/dist/{components → packages/react/src/components}/DunePreview/DunePreview.d.ts +0 -0
  98. /package/dist/{components → packages/react/src/components}/FilterOption/index.d.ts +0 -0
  99. /package/dist/{components → packages/react/src/components}/FormatSearch/index.d.ts +0 -0
  100. /package/dist/{components → packages/react/src/components}/FormulaSearch/index.d.ts +0 -0
  101. /package/dist/{components → packages/react/src/components}/FxEditor/NameBox.d.ts +0 -0
  102. /package/dist/{components → packages/react/src/components}/FxEditor/index.d.ts +0 -0
  103. /package/dist/{components → packages/react/src/components}/IFrameBoxs/iFrameBoxs.d.ts +0 -0
  104. /package/dist/{components → packages/react/src/components}/ImgBoxs/index.d.ts +0 -0
  105. /package/dist/{components → packages/react/src/components}/LinkEidtCard/index.d.ts +0 -0
  106. /package/dist/{components → packages/react/src/components}/LocationCondition/index.d.ts +0 -0
  107. /package/dist/{components → packages/react/src/components}/MessageBox/index.d.ts +0 -0
  108. /package/dist/{components → packages/react/src/components}/NotationBoxes/index.d.ts +0 -0
  109. /package/dist/{components → packages/react/src/components}/ResetColumnWidth/index.d.ts +0 -0
  110. /package/dist/{components → packages/react/src/components}/SVGDefines.d.ts +0 -0
  111. /package/dist/{components → packages/react/src/components}/SVGIcon.d.ts +0 -0
  112. /package/dist/{components → packages/react/src/components}/SearchReplace/index.d.ts +0 -0
  113. /package/dist/{components → packages/react/src/components}/Sheet/index.d.ts +0 -0
  114. /package/dist/{components → packages/react/src/components}/SheetList/SheetHiddenButton.d.ts +0 -0
  115. /package/dist/{components → packages/react/src/components}/SheetList/SheetListItem.d.ts +0 -0
  116. /package/dist/{components → packages/react/src/components}/SheetList/index.d.ts +0 -0
  117. /package/dist/{components → packages/react/src/components}/SheetOverlay/ColumnHeader.d.ts +0 -0
  118. /package/dist/{components → packages/react/src/components}/SheetOverlay/ContentEditable.d.ts +0 -0
  119. /package/dist/{components → packages/react/src/components}/SheetOverlay/FormulaHint/index.d.ts +0 -0
  120. /package/dist/{components → packages/react/src/components}/SheetOverlay/FormulaSearch/constant.d.ts +0 -0
  121. /package/dist/{components → packages/react/src/components}/SheetOverlay/FormulaSearch/index.d.ts +0 -0
  122. /package/dist/{components → packages/react/src/components}/SheetOverlay/InputBox.d.ts +0 -0
  123. /package/dist/{components → packages/react/src/components}/SheetOverlay/RowHeader.d.ts +0 -0
  124. /package/dist/{components → packages/react/src/components}/SheetOverlay/ScrollBar/index.d.ts +0 -0
  125. /package/dist/{components → packages/react/src/components}/SheetOverlay/index.d.ts +0 -0
  126. /package/dist/{components → packages/react/src/components}/SheetTab/SheetItem.d.ts +0 -0
  127. /package/dist/{components → packages/react/src/components}/SheetTab/index.d.ts +0 -0
  128. /package/dist/{components → packages/react/src/components}/SplitColumn/index.d.ts +0 -0
  129. /package/dist/{components → packages/react/src/components}/Toolbar/Button.d.ts +0 -0
  130. /package/dist/{components → packages/react/src/components}/Toolbar/ColorPicker.d.ts +0 -0
  131. /package/dist/{components → packages/react/src/components}/Toolbar/Combo.d.ts +0 -0
  132. /package/dist/{components → packages/react/src/components}/Toolbar/CustomBorder.d.ts +0 -0
  133. /package/dist/{components → packages/react/src/components}/Toolbar/CustomButton.d.ts +0 -0
  134. /package/dist/{components → packages/react/src/components}/Toolbar/CustomColor.d.ts +0 -0
  135. /package/dist/{components → packages/react/src/components}/Toolbar/CustomIcon.d.ts +0 -0
  136. /package/dist/{components → packages/react/src/components}/Toolbar/Divider.d.ts +0 -0
  137. /package/dist/{components → packages/react/src/components}/Toolbar/MoreItemsContainer.d.ts +0 -0
  138. /package/dist/{components → packages/react/src/components}/Toolbar/Select.d.ts +0 -0
  139. /package/dist/{components → packages/react/src/components}/Toolbar/index.d.ts +0 -0
  140. /package/dist/{components → packages/react/src/components}/Workbook/api.d.ts +0 -0
  141. /package/dist/{components → packages/react/src/components}/ZoomControl/index.d.ts +0 -0
  142. /package/dist/{components → packages/react/src/components}/index.d.ts +0 -0
  143. /package/dist/{constants.d.ts → packages/react/src/constants.d.ts} +0 -0
  144. /package/dist/{context → packages/react/src/context}/index.d.ts +0 -0
  145. /package/dist/{context → packages/react/src/context}/modal.d.ts +0 -0
  146. /package/dist/{hooks → packages/react/src/hooks}/useAlert.d.ts +0 -0
  147. /package/dist/{hooks → packages/react/src/hooks}/useDialog.d.ts +0 -0
  148. /package/dist/{hooks → packages/react/src/hooks}/useOutsideClick.d.ts +0 -0
  149. /package/dist/{hooks → packages/react/src/hooks}/usePrevious.d.ts +0 -0
  150. /package/dist/{index.d.ts → packages/react/src/index.d.ts} +0 -0
  151. /package/dist/{utils → packages/react/src/utils}/datepickerStyles.d.ts +0 -0
package/dist/index.umd.js CHANGED
@@ -37622,7 +37622,7 @@
37622
37622
  base: 'base-ecosystem',
37623
37623
  solana: 'solana-ecosystem',
37624
37624
  gnosis: 'gnosis-chain',
37625
- hyperliquid: 'hyperliquid-ecosystem',
37625
+ hyperliquid: 'hyperliquid',
37626
37626
  bitcoin: 'bitcoin-ecosystem',
37627
37627
  pump: 'pump-ecosystem',
37628
37628
  aiagents: 'ai-agents',
@@ -41303,335 +41303,6 @@
41303
41303
  }));
41304
41304
  };
41305
41305
 
41306
- var UNFilter = [{
41307
- "API_KEY": "ETHERSCAN_API_KEY",
41308
- "LOGO": "https://etherscan.io/images/favicon3.ico",
41309
- "BRAND_COLOR": "#F6F7F8",
41310
- "BRAND_SECONDARY_COLOR": "#21325B",
41311
- "n": "EOA",
41312
- "t": 20,
41313
- "d": "Fetches address data like transactions, balances, or portfolio info from multiple supported chains.",
41314
- "a": "Dynamically queries blockchain data such as transactions and balances by resolving time ranges to block ranges and supporting pagination.",
41315
- "p": [{
41316
- "name": "addresses",
41317
- "detail": "One or more addresses (comma-separated) to query.",
41318
- "example": "\"vitalik.eth\"",
41319
- "require": "m",
41320
- "type": "string"
41321
- }, {
41322
- "name": "categories",
41323
- "detail": "Type of data to fetch. Supported values: \"txns\", \"balance\".",
41324
- "example": "\"txns\"",
41325
- "require": "m",
41326
- "type": "string"
41327
- }, {
41328
- "name": "chain",
41329
- "detail": "Blockchain network(s) to query. Supported values: \"ethereum\", \"gnosis\", \"base\". Accepts comma-separated values.",
41330
- "example": "\"ethereum\"",
41331
- "require": "m",
41332
- "type": "string"
41333
- }, {
41334
- "name": "startTime",
41335
- "detail": "Used to calculate starting block for transaction queries.",
41336
- "example": "\"01/01/2024\"",
41337
- "require": "m",
41338
- "type": "string"
41339
- }, {
41340
- "name": "endTime",
41341
- "detail": "Used to calculate ending block for transaction queries.",
41342
- "example": "\"01/06/2024\"",
41343
- "require": "m",
41344
- "type": "string"
41345
- }, {
41346
- "name": "page",
41347
- "detail": "The page number for paginated transaction results. Only used when category is 'txns'. Default is 1",
41348
- "example": "1",
41349
- "require": "o",
41350
- "type": "number"
41351
- }, {
41352
- "name": "offset",
41353
- "detail": "The number of results to return per page (limit). Only used when category is 'txns'. Default is 10",
41354
- "example": "10",
41355
- "require": "o",
41356
- "type": "number"
41357
- }]
41358
- }, {
41359
- "LOGO": "https://files.readme.io/06394e687778e238a6cd43de6e1d7d339043aa50054703f64606369352ef1864-VariantCG-Symbol-Color.png",
41360
- "BRAND_COLOR": "#f8fdf8",
41361
- "BRAND_SECONDARY_COLOR": "#4bc63d",
41362
- "n": "COINGECKO",
41363
- "t": 20,
41364
- "API_KEY": "COINGECKO_API_KEY",
41365
- "d": "Query crypto prices, ecosystem market data, stablecoins, or derivatives from CoinGecko.",
41366
- "a": "Supports querying: \"price\" for specific tokens \"market\" for ecosystem categories (ETH, BASE, SOL, GNOSIS, HYPERLIQUID, BITCOIN, PUMP)\n- \"stablecoins\" for stablecoin categories like \"crypto-backed-stablecoin\"\n- \"derivatives\" globally or per exchange.\nPagination is supported for all except single-exchange derivatives.",
41367
- "p": [{
41368
- "name": "category",
41369
- "detail": "Query type: \"price\", \"market\", \"stablecoins\", or \"derivatives\".",
41370
- "example": "\"stablecoins\"",
41371
- "require": "m"
41372
- }, {
41373
- "name": "param1",
41374
- "detail": "If \"price\" then - eg. \"BTC\", \"ETH\", OR any token on coingecko\n\nIf \"market\": one of \"all\", \"base\", \"meme\", \"aiagents\", \"bitcoin\", \"ethereum\", \"hyperliquid\", \"pump\", \"solana\".\n\nIf \"stablecoins\": one of \"all\", \"yield-bearing-stablecoins\", \"crypto-backed-stablecoin\".\n\nIf \"derivatives\": exchange name (e.g., \"binance_futures\").",
41375
- "example": "\"yield-bearing-stablecoins\"",
41376
- "require": "m"
41377
- }, {
41378
- "name": "param2",
41379
- "detail": "If \"market\" and \"stablecoins\" then eg. \"1h\", \"24h\", \"7d\".",
41380
- "example": "\"1h,24h,7d\"",
41381
- "require": "o"
41382
- }]
41383
- }, {
41384
- "API_KEY": "DEFILLAMA_API_KEY",
41385
- "LOGO": "https://defillama.com/favicon-32x32.png",
41386
- "BRAND_COLOR": "#f8f5fc",
41387
- "BRAND_SECONDARY_COLOR": "#855dcd",
41388
- "n": "DEFILLAMA",
41389
- "t": 20,
41390
- "d": "Fetches content from Defillama.",
41391
- "a": "Retrieves data from Defillama.",
41392
- "p": [{
41393
- "name": "category",
41394
- "detail": "Type of content to fetch. Supports 'protocols', 'yields', 'dex', or 'fees'.",
41395
- "example": "\"protocols\"",
41396
- "require": "m",
41397
- "type": "string"
41398
- }]
41399
- }, {
41400
- "API_KEY": "BASESCAN_API_KEY",
41401
- "LOGO": "https://2064089921-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FevP3L0cUvP9xmRefuzCm%2Fuploads%2F2K1pvFsE7JAfcI3LAxYl%2Fbase-logo-in-blue.webp?alt=media&token=32c80439-dbdc-432a-b199-220e012efc3c",
41402
- "BRAND_COLOR": "#f1f5ff",
41403
- "BRAND_SECONDARY_COLOR": "#2752ff",
41404
- "n": "BASE",
41405
- "t": 20,
41406
- "d": "Fetches Base network data via Basescan: native txns, ERC-20 transfers, ERC-721 transfers, and gas metrics.",
41407
- "a": "Pulls on-chain activity for Base (chainid 8453) using Basescan’s API — supports full tx history, token/NFT transfers, gas prices, and pagination.",
41408
- "p": [{
41409
- "name": "type",
41410
- "detail": "Data category: 'all-txns' | 'token-txns' | 'nft-txns' | 'gas'.",
41411
- "example": "\"token-txns\"",
41412
- "require": "m",
41413
- "type": "string"
41414
- }, {
41415
- "name": "chain",
41416
- "detail": "Must be 'base'.",
41417
- "example": "\"base\"",
41418
- "require": "m",
41419
- "type": "string"
41420
- }, {
41421
- "name": "address",
41422
- "detail": "Target wallet address (only required for txns, token, and nft queries). Not needed for 'gas'.",
41423
- "example": "\"0x7FD624f3f97A7dd36195E8379F28dB6147C270ff\"",
41424
- "require": "o",
41425
- "type": "string"
41426
- }, {
41427
- "name": "startDate",
41428
- "detail": "Start date (used to resolve block range). Optional, only applies to txns.",
41429
- "example": "\"01/01/2024\"",
41430
- "require": "o",
41431
- "type": "string"
41432
- }, {
41433
- "name": "endDate",
41434
- "detail": "End date (used to resolve block range). Optional, only applies to txns.",
41435
- "example": "\"07/07/2024\"",
41436
- "require": "o",
41437
- "type": "string"
41438
- }, {
41439
- "name": "page",
41440
- "detail": "Page number for paginated results. Only applies to txns/token/nft queries.",
41441
- "example": "1",
41442
- "require": "o",
41443
- "type": "number"
41444
- }, {
41445
- "name": "offset",
41446
- "detail": "Number of items per page (limit). Only applies to txns/token/nft queries.",
41447
- "example": "2",
41448
- "require": "o",
41449
- "type": "number"
41450
- }]
41451
- }, {
41452
- "API_KEY": "GNOSIS_API_KEY",
41453
- "LOGO": "https://gnosisscan.io/assets/generic/html/favicon-light.ico",
41454
- "BRAND_COLOR": "#f6f7f6",
41455
- "BRAND_SECONDARY_COLOR": "#133629",
41456
- "n": "GNOSIS",
41457
- "t": 20,
41458
- "d": "Fetches Gnosis Chain data via Gnosisscan: native transactions, ERC-20 token transfers, ERC-721 NFT transfers, and gas metrics.",
41459
- "a": "Queries Gnosis Chain (chainid 100) through Gnosisscan’s API to return transaction history, token/NFT transfers, or gas price information. Supports pagination and time-based filtering for transaction types.",
41460
- "p": [{
41461
- "name": "type",
41462
- "detail": "Data category to fetch. Options: 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
41463
- "example": "\"nft-txns\"",
41464
- "require": "m",
41465
- "type": "string"
41466
- }, {
41467
- "name": "chain",
41468
- "detail": "Must be 'gnosis'.",
41469
- "example": "\"gnosis\"",
41470
- "require": "m",
41471
- "type": "string"
41472
- }, {
41473
- "name": "address",
41474
- "detail": "Wallet address to query. Required for all types except 'gas'.",
41475
- "example": "\"0x90830Ed558f12D826370DC52E9D87947A7F18De9\"",
41476
- "require": "o",
41477
- "type": "string"
41478
- }, {
41479
- "name": "startDate",
41480
- "detail": "Used to resolve starting block for txns.",
41481
- "example": "\"01/01/2024\"",
41482
- "require": "o",
41483
- "type": "string"
41484
- }, {
41485
- "name": "endDate",
41486
- "detail": "Used to resolve ending block for txns.",
41487
- "example": "\"14/06/2025\"",
41488
- "require": "o",
41489
- "type": "string"
41490
- }, {
41491
- "name": "page",
41492
- "detail": "Page number for paginated transaction results. Applies only to 'txns', 'token-txns', and 'nft-txns'.",
41493
- "example": "\"1\"",
41494
- "require": "o",
41495
- "type": "number"
41496
- }, {
41497
- "name": "offset",
41498
- "detail": "Number of results per page (limit). Applies only to 'txns', 'token-txns', and 'nft-txns'.",
41499
- "example": "\"50\"",
41500
- "require": "o",
41501
- "type": "number"
41502
- }]
41503
- }, {
41504
- "API_KEY": "ETHERSCAN_API_KEY",
41505
- "LOGO": "https://etherscan.io/images/favicon3.ico",
41506
- "BRAND_COLOR": "#F6F7F8",
41507
- "BRAND_SECONDARY_COLOR": "#21325B",
41508
- "n": "ETHERSCAN",
41509
- "t": 20,
41510
- "d": "Returns blockchain transaction history for the given address",
41511
- "a": "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
41512
- "p": [{
41513
- "name": "type",
41514
- "detail": "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
41515
- "example": "\"all-txns\"",
41516
- "require": "m",
41517
- "type": "string"
41518
- }, {
41519
- "name": "chain",
41520
- "detail": "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
41521
- "example": "\"ethereum\"",
41522
- "require": "m",
41523
- "type": "string"
41524
- }, {
41525
- "name": "address",
41526
- "detail": "Wallet address / Ens name to query",
41527
- "example": "\"vitalik.eth\"",
41528
- "require": "o",
41529
- "type": "string"
41530
- }, {
41531
- "name": "startDate",
41532
- "detail": "Used to filter block range.",
41533
- "example": "\"01/01/2024\"",
41534
- "require": "o",
41535
- "type": "string"
41536
- }, {
41537
- "name": "endDate",
41538
- "detail": "Used to filter block range.",
41539
- "example": "\"01/07/2025\"",
41540
- "require": "o",
41541
- "type": "string"
41542
- }]
41543
- }, {
41544
- "API_KEY": "SAFE_API_KEY",
41545
- "LOGO": "https://safe-transaction-mainnet.safe.global/static/safe/favicon.png",
41546
- "BRAND_COLOR": "#ebf9f3",
41547
- "BRAND_SECONDARY_COLOR": "#00B460",
41548
- "n": "SAFE",
41549
- "t": 20,
41550
- "d": "Query the list of transactions performed by a Safe address, with optional pagination.",
41551
- "a": "Query the list of transactions performed by a Safe address, with optional pagination.",
41552
- "p": [{
41553
- "name": "address",
41554
- "detail": "The address to query, in hexadecimal format.",
41555
- "example": "\"0xe9A6378d8FD4983C2999DB0735f258397E8C2253\"",
41556
- "require": "m"
41557
- }, {
41558
- "name": "utility",
41559
- "detail": "The utility to query, supported values: 'txns'.",
41560
- "example": "\"txns\"",
41561
- "require": "m"
41562
- }, {
41563
- "name": "chain",
41564
- "detail": "The chain to query, supported values: 'ethereum', 'gnosis'.",
41565
- "example": "\"gnosis\"",
41566
- "require": "m"
41567
- }, {
41568
- "name": "limit",
41569
- "detail": "The number of transactions to return, default is 100.",
41570
- "example": "10",
41571
- "require": "o",
41572
- "repeat": "n"
41573
- }, {
41574
- "name": "offset",
41575
- "detail": "The number of transactions to skip, default is 0.",
41576
- "example": "0",
41577
- "require": "o",
41578
- "repeat": "n"
41579
- }]
41580
- }, {
41581
- "LOGO": "https://cdn.prod.website-files.com/65f94dfd53db8b337c808067/68485baa72714ae58f350ce2_bs-logo.png",
41582
- "BRAND_COLOR": "#f8f8fd",
41583
- "BRAND_SECONDARY_COLOR": "#5353D3",
41584
- "n": "BLOCKSCOUT",
41585
- "t": 20,
41586
- "d": "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
41587
- "a": "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
41588
- "p": [{
41589
- "name": "address",
41590
- "detail": "The address string representing the addresses to check for balance",
41591
- "example": "\"vitalik.eth\"",
41592
- "require": "m",
41593
- "type": "string"
41594
- }, {
41595
- "name": "type",
41596
- "detail": "The type of data to query.",
41597
- "example": "\"txns\"",
41598
- "require": "m",
41599
- "type": "string"
41600
- }, {
41601
- "name": "chain",
41602
- "detail": "The blockchain to query. By default on Ethereum mainnet.",
41603
- "example": "\"ethereum\"",
41604
- "require": "o",
41605
- "type": "string"
41606
- }, {
41607
- "name": "startTimestamp",
41608
- "detail": "Start date marking the start of the transaction search range. Work with type === \"txns\"",
41609
- "example": "\"01/01/2023\"",
41610
- "require": "o",
41611
- "type": "string"
41612
- }, {
41613
- "name": "endTimestamp",
41614
- "detail": "End date marking the end of the transaction search range. Work with type === \"txns\"",
41615
- "example": "\"01/05/2024\"",
41616
- "require": "o",
41617
- "type": "string"
41618
- }, {
41619
- "name": "page",
41620
- "detail": "The page number to return. Work with type === \"txns\"",
41621
- "example": "1",
41622
- "require": "o",
41623
- "repeat": "n",
41624
- "type": "rangenumber"
41625
- }, {
41626
- "name": "offset",
41627
- "detail": "The number of transactions to return per page. Work with type === \"txns\"",
41628
- "example": "2",
41629
- "require": "o",
41630
- "repeat": "n",
41631
- "type": "rangenumber"
41632
- }]
41633
- }];
41634
-
41635
41306
  var So = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
41636
41307
  function y8(e) {
41637
41308
  return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
@@ -105929,17 +105600,346 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
105929
105600
  };
105930
105601
  };
105931
105602
 
105603
+ var UNFilter = [{
105604
+ API_KEY: "ETHERSCAN_API_KEY",
105605
+ LOGO: "https://etherscan.io/images/favicon3.ico",
105606
+ BRAND_COLOR: "#F6F7F8",
105607
+ BRAND_SECONDARY_COLOR: "#21325B",
105608
+ n: "EOA",
105609
+ t: 20,
105610
+ d: "Fetches address data like transactions, balances, or portfolio info from multiple supported chains.",
105611
+ a: "Dynamically queries blockchain data such as transactions and balances by resolving time ranges to block ranges and supporting pagination.",
105612
+ p: [{
105613
+ name: "addresses",
105614
+ detail: "One or more addresses (comma-separated) to query.",
105615
+ example: '"vitalik.eth"',
105616
+ require: "m",
105617
+ type: "string"
105618
+ }, {
105619
+ name: "categories",
105620
+ detail: 'Type of data to fetch. Supported values: "txns", "balance".',
105621
+ example: '"txns"',
105622
+ require: "m",
105623
+ type: "string"
105624
+ }, {
105625
+ name: "chain",
105626
+ detail: 'Blockchain network(s) to query. Supported values: "ethereum", "gnosis", "base". Accepts comma-separated values.',
105627
+ example: '"ethereum"',
105628
+ require: "m",
105629
+ type: "string"
105630
+ }, {
105631
+ name: "startTime",
105632
+ detail: "Used to calculate starting block for transaction queries.",
105633
+ example: '"01/01/2024"',
105634
+ require: "m",
105635
+ type: "string"
105636
+ }, {
105637
+ name: "endTime",
105638
+ detail: "Used to calculate ending block for transaction queries.",
105639
+ example: '"01/06/2024"',
105640
+ require: "m",
105641
+ type: "string"
105642
+ }, {
105643
+ name: "page",
105644
+ detail: "The page number for paginated transaction results. Only used when category is 'txns'. Default is 1",
105645
+ example: "1",
105646
+ require: "o",
105647
+ type: "number"
105648
+ }, {
105649
+ name: "offset",
105650
+ detail: "The number of results to return per page (limit). Only used when category is 'txns'. Default is 10",
105651
+ example: "10",
105652
+ require: "o",
105653
+ type: "number"
105654
+ }]
105655
+ }, {
105656
+ LOGO: "https://files.readme.io/06394e687778e238a6cd43de6e1d7d339043aa50054703f64606369352ef1864-VariantCG-Symbol-Color.png",
105657
+ BRAND_COLOR: "#f8fdf8",
105658
+ BRAND_SECONDARY_COLOR: "#4bc63d",
105659
+ n: "COINGECKO",
105660
+ t: 20,
105661
+ API_KEY: "COINGECKO_API_KEY",
105662
+ d: "Query crypto prices, ecosystem market data, stablecoins, or derivatives from CoinGecko.",
105663
+ a: 'Supports querying: "price" for specific tokens "market" for ecosystem categories (ETH, BASE, SOL, GNOSIS, HYPERLIQUID, BITCOIN, PUMP)\n- "stablecoins" for stablecoin categories like "crypto-backed-stablecoin"\n- "derivatives" globally or per exchange.\nPagination is supported for all except single-exchange derivatives.',
105664
+ p: [{
105665
+ name: "category",
105666
+ detail: 'Query type: "price", "market", "stablecoins", or "derivatives".',
105667
+ example: '"stablecoins"',
105668
+ require: "m"
105669
+ }, {
105670
+ name: "param1",
105671
+ detail: 'If "price" then - eg. "BTC", "ETH", OR any token on coingecko\n\nIf "market": one of "all", "base", "meme", "aiagents", "bitcoin", "ethereum", "hyperliquid", "pump", "solana".\n\nIf "stablecoins": one of "all", "yield-bearing-stablecoins", "crypto-backed-stablecoin".\n\nIf "derivatives": exchange name (e.g., "binance_futures").',
105672
+ example: '"yield-bearing-stablecoins"',
105673
+ require: "m"
105674
+ }, {
105675
+ name: "param2",
105676
+ detail: 'If "market" and "stablecoins" then eg. "1h", "24h", "7d".',
105677
+ example: '"1h,24h,7d"',
105678
+ require: "o"
105679
+ }]
105680
+ }, {
105681
+ API_KEY: "DEFILLAMA_API_KEY",
105682
+ LOGO: "https://defillama.com/favicon-32x32.png",
105683
+ BRAND_COLOR: "#f8f5fc",
105684
+ BRAND_SECONDARY_COLOR: "#855dcd",
105685
+ n: "DEFILLAMA",
105686
+ t: 20,
105687
+ d: "Fetches content from Defillama.",
105688
+ a: "Retrieves data from Defillama.",
105689
+ p: [{
105690
+ name: "category",
105691
+ detail: "Type of content to fetch. Supports 'protocols', 'yields', 'dex', or 'fees'.",
105692
+ example: '"protocols"',
105693
+ require: "m",
105694
+ type: "string"
105695
+ }]
105696
+ }, {
105697
+ API_KEY: "BASESCAN_API_KEY",
105698
+ LOGO: "https://2064089921-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FevP3L0cUvP9xmRefuzCm%2Fuploads%2F2K1pvFsE7JAfcI3LAxYl%2Fbase-logo-in-blue.webp?alt=media&token=32c80439-dbdc-432a-b199-220e012efc3c",
105699
+ BRAND_COLOR: "#f1f5ff",
105700
+ BRAND_SECONDARY_COLOR: "#2752ff",
105701
+ n: "BASE",
105702
+ t: 20,
105703
+ d: "Fetches Base network data via Basescan: native txns, ERC-20 transfers, ERC-721 transfers, and gas metrics.",
105704
+ a: "Pulls on-chain activity for Base (chainid 8453) using Basescan’s API — supports full tx history, token/NFT transfers, gas prices, and pagination.",
105705
+ p: [{
105706
+ name: "type",
105707
+ detail: "Data category: 'all-txns' | 'token-txns' | 'nft-txns' | 'gas'.",
105708
+ example: '"token-txns"',
105709
+ require: "m",
105710
+ type: "string"
105711
+ }, {
105712
+ name: "chain",
105713
+ detail: "Must be 'base'.",
105714
+ example: '"base"',
105715
+ require: "m",
105716
+ type: "string"
105717
+ }, {
105718
+ name: "address",
105719
+ detail: "Target wallet address (only required for txns, token, and nft queries). Not needed for 'gas'.",
105720
+ example: '"0x7FD624f3f97A7dd36195E8379F28dB6147C270ff"',
105721
+ require: "o",
105722
+ type: "string"
105723
+ }, {
105724
+ name: "startDate",
105725
+ detail: "Start date (used to resolve block range). Optional, only applies to txns.",
105726
+ example: '"01/01/2024"',
105727
+ require: "o",
105728
+ type: "string"
105729
+ }, {
105730
+ name: "endDate",
105731
+ detail: "End date (used to resolve block range). Optional, only applies to txns.",
105732
+ example: '"07/07/2024"',
105733
+ require: "o",
105734
+ type: "string"
105735
+ }, {
105736
+ name: "page",
105737
+ detail: "Page number for paginated results. Only applies to txns/token/nft queries.",
105738
+ example: "1",
105739
+ require: "o",
105740
+ type: "number"
105741
+ }, {
105742
+ name: "offset",
105743
+ detail: "Number of items per page (limit). Only applies to txns/token/nft queries.",
105744
+ example: "2",
105745
+ require: "o",
105746
+ type: "number"
105747
+ }]
105748
+ }, {
105749
+ API_KEY: "GNOSIS_API_KEY",
105750
+ LOGO: "https://gnosisscan.io/assets/generic/html/favicon-light.ico",
105751
+ BRAND_COLOR: "#f6f7f6",
105752
+ BRAND_SECONDARY_COLOR: "#133629",
105753
+ n: "GNOSIS",
105754
+ t: 20,
105755
+ d: "Fetches Gnosis Chain data via Gnosisscan: native transactions, ERC-20 token transfers, ERC-721 NFT transfers, and gas metrics.",
105756
+ a: "Queries Gnosis Chain (chainid 100) through Gnosisscan’s API to return transaction history, token/NFT transfers, or gas price information. Supports pagination and time-based filtering for transaction types.",
105757
+ p: [{
105758
+ name: "type",
105759
+ detail: "Data category to fetch. Options: 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
105760
+ example: '"nft-txns"',
105761
+ require: "m",
105762
+ type: "string"
105763
+ }, {
105764
+ name: "chain",
105765
+ detail: "Must be 'gnosis'.",
105766
+ example: '"gnosis"',
105767
+ require: "m",
105768
+ type: "string"
105769
+ }, {
105770
+ name: "address",
105771
+ detail: "Wallet address to query. Required for all types except 'gas'.",
105772
+ example: '"0x90830Ed558f12D826370DC52E9D87947A7F18De9"',
105773
+ require: "o",
105774
+ type: "string"
105775
+ }, {
105776
+ name: "startDate",
105777
+ detail: "Used to resolve starting block for txns.",
105778
+ example: '"01/01/2024"',
105779
+ require: "o",
105780
+ type: "string"
105781
+ }, {
105782
+ name: "endDate",
105783
+ detail: "Used to resolve ending block for txns.",
105784
+ example: '"14/06/2025"',
105785
+ require: "o",
105786
+ type: "string"
105787
+ }, {
105788
+ name: "page",
105789
+ detail: "Page number for paginated transaction results. Applies only to 'txns', 'token-txns', and 'nft-txns'.",
105790
+ example: '"1"',
105791
+ require: "o",
105792
+ type: "number"
105793
+ }, {
105794
+ name: "offset",
105795
+ detail: "Number of results per page (limit). Applies only to 'txns', 'token-txns', and 'nft-txns'.",
105796
+ example: '"50"',
105797
+ require: "o",
105798
+ type: "number"
105799
+ }]
105800
+ }, {
105801
+ API_KEY: "ETHERSCAN_API_KEY",
105802
+ LOGO: "https://etherscan.io/images/favicon3.ico",
105803
+ BRAND_COLOR: "#F6F7F8",
105804
+ BRAND_SECONDARY_COLOR: "#21325B",
105805
+ n: "ETHERSCAN",
105806
+ t: 20,
105807
+ d: "Returns blockchain transaction history for the given address",
105808
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
105809
+ p: [{
105810
+ name: "type",
105811
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
105812
+ example: '"all-txns"',
105813
+ require: "m",
105814
+ type: "string"
105815
+ }, {
105816
+ name: "chain",
105817
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
105818
+ example: '"ethereum"',
105819
+ require: "m",
105820
+ type: "string"
105821
+ }, {
105822
+ name: "address",
105823
+ detail: "Wallet address / Ens name to query",
105824
+ example: '"vitalik.eth"',
105825
+ require: "o",
105826
+ type: "string"
105827
+ }, {
105828
+ name: "startDate",
105829
+ detail: "Used to filter block range.",
105830
+ example: '"01/01/2024"',
105831
+ require: "o",
105832
+ type: "string"
105833
+ }, {
105834
+ name: "endDate",
105835
+ detail: "Used to filter block range.",
105836
+ example: '"01/07/2025"',
105837
+ require: "o",
105838
+ type: "string"
105839
+ }]
105840
+ }, {
105841
+ API_KEY: "SAFE_API_KEY",
105842
+ LOGO: "https://safe-transaction-mainnet.safe.global/static/safe/favicon.png",
105843
+ BRAND_COLOR: "#ebf9f3",
105844
+ BRAND_SECONDARY_COLOR: "#00B460",
105845
+ n: "SAFE",
105846
+ t: 20,
105847
+ d: "Query the list of transactions performed by a Safe address, with optional pagination.",
105848
+ a: "Query the list of transactions performed by a Safe address, with optional pagination.",
105849
+ p: [{
105850
+ name: "address",
105851
+ detail: "The address to query, in hexadecimal format.",
105852
+ example: '"0xe9A6378d8FD4983C2999DB0735f258397E8C2253"',
105853
+ require: "m"
105854
+ }, {
105855
+ name: "utility",
105856
+ detail: "The utility to query, supported values: 'txns'.",
105857
+ example: '"txns"',
105858
+ require: "m"
105859
+ }, {
105860
+ name: "chain",
105861
+ detail: "The chain to query, supported values: 'ethereum', 'gnosis'.",
105862
+ example: '"gnosis"',
105863
+ require: "m"
105864
+ }, {
105865
+ name: "limit",
105866
+ detail: "The number of transactions to return, default is 100.",
105867
+ example: "10",
105868
+ require: "o",
105869
+ repeat: "n"
105870
+ }, {
105871
+ name: "offset",
105872
+ detail: "The number of transactions to skip, default is 0.",
105873
+ example: "0",
105874
+ require: "o",
105875
+ repeat: "n"
105876
+ }]
105877
+ }, {
105878
+ LOGO: "https://cdn.prod.website-files.com/65f94dfd53db8b337c808067/68485baa72714ae58f350ce2_bs-logo.png",
105879
+ BRAND_COLOR: "#f8f8fd",
105880
+ BRAND_SECONDARY_COLOR: "#5353D3",
105881
+ n: "BLOCKSCOUT",
105882
+ t: 20,
105883
+ d: "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
105884
+ a: "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
105885
+ p: [{
105886
+ name: "address",
105887
+ detail: "The address string representing the addresses to check for balance",
105888
+ example: '"vitalik.eth"',
105889
+ require: "m",
105890
+ type: "string"
105891
+ }, {
105892
+ name: "type",
105893
+ detail: "The type of data to query.",
105894
+ example: '"txns"',
105895
+ require: "m",
105896
+ type: "string"
105897
+ }, {
105898
+ name: "chain",
105899
+ detail: "The blockchain to query. By default on Ethereum mainnet.",
105900
+ example: '"ethereum"',
105901
+ require: "o",
105902
+ type: "string"
105903
+ }, {
105904
+ name: "startTimestamp",
105905
+ detail: 'Start date marking the start of the transaction search range. Work with type === "txns"',
105906
+ example: '"01/01/2023"',
105907
+ require: "o",
105908
+ type: "string"
105909
+ }, {
105910
+ name: "endTimestamp",
105911
+ detail: 'End date marking the end of the transaction search range. Work with type === "txns"',
105912
+ example: '"01/05/2024"',
105913
+ require: "o",
105914
+ type: "string"
105915
+ }, {
105916
+ name: "page",
105917
+ detail: 'The page number to return. Work with type === "txns"',
105918
+ example: "1",
105919
+ require: "o",
105920
+ repeat: "n",
105921
+ type: "rangenumber"
105922
+ }, {
105923
+ name: "offset",
105924
+ detail: 'The number of transactions to return per page. Work with type === "txns"',
105925
+ example: "2",
105926
+ require: "o",
105927
+ repeat: "n",
105928
+ type: "rangenumber"
105929
+ }]
105930
+ }];
105931
+
105932
105932
  var FormulaSearch = function FormulaSearch(props) {
105933
105933
  var _context$luckysheet_s;
105934
105934
  var _useContext = React.useContext(WorkbookContext),
105935
105935
  context = _useContext.context,
105936
105936
  isAuthorized = _useContext.settings.isAuthorized;
105937
- var authedFunction = ['COINGECKO', 'ETHERSCAN', 'DEFILLAMA', 'GNOSIS', 'BASE', 'EOA', 'PNL', 'SAFE', 'BLOCKSCOUT', 'GNOSIS', 'LENS', 'FARCASTER', 'Ethereum'];
105937
+ var authedFunction = ["COINGECKO", "ETHERSCAN", "DEFILLAMA", "GNOSIS", "BASE", "EOA", "PNL", "SAFE", "BLOCKSCOUT", "GNOSIS", "LENS", "FARCASTER", "Ethereum"];
105938
105938
  var filteredDefaultCandidates = context.defaultCandidates.filter(function (item) {
105939
105939
  return !authedFunction.includes(item.n);
105940
105940
  });
105941
105941
  var unfilteredDefaultCandidates = UNFilter.filter(function (item) {
105942
- return item.n !== 'PNL';
105942
+ return item.n !== "PNL";
105943
105943
  });
105944
105944
  var finalDefaultCandidates = !isAuthorized ? filteredDefaultCandidates : context.defaultCandidates.slice(0, 10);
105945
105945
  var finalFunctionCandidates = isAuthorized ? context.functionCandidates : context.functionCandidates.filter(function (item) {
@@ -105982,20 +105982,17 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
105982
105982
  className: "text-helper-sm-bold color-text-secondary"
105983
105983
  }, "Onchain functions"), /*#__PURE__*/React__default['default'].createElement("p", {
105984
105984
  className: "text-helper-text-sm color-text-secondary"
105985
- }, "A datablock is a native data structure allowing dSheets to read and structure any data coming from smart contracts or APIs. Anyone can contribute to datablocks to make new data sources supported on dSheets.")), !isAuthorized && /*#__PURE__*/React__default['default'].createElement("div", {
105985
+ }, "Every onchain function is a native data structure allowing dSheets to read and structure data from smart contracts and APIs.")), !isAuthorized && (/*#__PURE__*/React__default['default'].createElement("div", {
105986
105986
  style: {
105987
105987
  marginBottom: "8px",
105988
105988
  backgroundColor: "#F8F9FA"
105989
105989
  },
105990
105990
  className: "w-full flex flex-col p-2 gap-1"
105991
105991
  }, /*#__PURE__*/React__default['default'].createElement("h4", {
105992
- className: "text-helper-sm-bold",
105993
- style: {
105994
- fontWeight: "bold"
105995
- }
105992
+ className: "font-semibold"
105996
105993
  }, "dSheets account required"), /*#__PURE__*/React__default['default'].createElement("p", {
105997
105994
  className: "text-helper-text-sm color-text-secondary"
105998
- }, "Use more onchain functions by creating a dSheets account. ", /*#__PURE__*/React__default['default'].createElement("span", {
105995
+ }, "Use more onchain functions by creating a dSheets account.", " ", /*#__PURE__*/React__default['default'].createElement("span", {
105999
105996
  className: "sign-fortune",
106000
105997
  style: {
106001
105998
  color: "#5C0AFF",
@@ -106005,13 +106002,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
106005
106002
  var _document$getElementB;
106006
106003
  e.stopPropagation();
106007
106004
  e.preventDefault();
106008
- console.log('click');
106009
- (_document$getElementB = document.getElementById('triggerAuth')) === null || _document$getElementB === void 0 ? void 0 : _document$getElementB.click();
106005
+ console.log("click");
106006
+ (_document$getElementB = document.getElementById("triggerAuth")) === null || _document$getElementB === void 0 ? void 0 : _document$getElementB.click();
106010
106007
  }
106011
106008
  }, "Signup/Login")), /*#__PURE__*/React__default['default'].createElement("div", {
106012
106009
  className: "flex gap-2 mt-2 mb-2"
106013
106010
  }, unfilteredDefaultCandidates.map(function (v, index) {
106014
106011
  return /*#__PURE__*/React__default['default'].createElement("img", {
106012
+ key: index,
106015
106013
  src: v.LOGO,
106016
106014
  alt: "Service Logo",
106017
106015
  style: {
@@ -106019,7 +106017,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
106019
106017
  height: "16px"
106020
106018
  }
106021
106019
  });
106022
- }))))), context.defaultCandidates.length > 0 ? (/*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, finalDefaultCandidates.map(function (v, index) {
106020
+ })))))), context.defaultCandidates.length > 0 ? (/*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, finalDefaultCandidates.map(function (v, index) {
106023
106021
  return /*#__PURE__*/React__default['default'].createElement("div", {
106024
106022
  key: v.n,
106025
106023
  "data-func": v.n,
@@ -106126,7 +106124,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
106126
106124
  })))))), /*#__PURE__*/React__default['default'].createElement("div", {
106127
106125
  className: "luckysheet-formula-search-detail mt-1 text-helper-text-sm color-text-secondary"
106128
106126
  }, v.d));
106129
- }), finalFunctionCandidates.length === 0 && (/*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, !isAuthorized && /*#__PURE__*/React__default['default'].createElement("div", {
106127
+ }), finalFunctionCandidates.length === 0 && (/*#__PURE__*/React__default['default'].createElement("span", null, !isAuthorized && (/*#__PURE__*/React__default['default'].createElement("div", {
106130
106128
  style: {
106131
106129
  marginBottom: "8px",
106132
106130
  backgroundColor: "#F8F9FA"
@@ -106139,7 +106137,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
106139
106137
  }
106140
106138
  }, "dSheets account required"), /*#__PURE__*/React__default['default'].createElement("p", {
106141
106139
  className: "text-helper-text-sm color-text-secondary"
106142
- }, "Use more onchain functions by creating a dSheets account. ", /*#__PURE__*/React__default['default'].createElement("span", {
106140
+ }, "Use more onchain functions by creating a dSheets account.", " ", /*#__PURE__*/React__default['default'].createElement("span", {
106143
106141
  className: "sign-fortune",
106144
106142
  style: {
106145
106143
  color: "#5C0AFF",
@@ -106149,13 +106147,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
106149
106147
  var _document$getElementB2;
106150
106148
  e.stopPropagation();
106151
106149
  e.preventDefault();
106152
- console.log('click');
106153
- (_document$getElementB2 = document.getElementById('triggerAuth')) === null || _document$getElementB2 === void 0 ? void 0 : _document$getElementB2.click();
106150
+ console.log("click");
106151
+ (_document$getElementB2 = document.getElementById("triggerAuth")) === null || _document$getElementB2 === void 0 ? void 0 : _document$getElementB2.click();
106154
106152
  }
106155
106153
  }, "Signup/Login")), /*#__PURE__*/React__default['default'].createElement("div", {
106156
106154
  className: "flex gap-2 mt-2 mb-2"
106157
106155
  }, unfilteredDefaultCandidates.map(function (v, index) {
106158
106156
  return /*#__PURE__*/React__default['default'].createElement("img", {
106157
+ key: index,
106159
106158
  src: v.LOGO,
106160
106159
  alt: "Service Logo",
106161
106160
  style: {
@@ -106163,7 +106162,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
106163
106162
  height: "16px"
106164
106163
  }
106165
106164
  });
106166
- }))))))), /*#__PURE__*/React__default['default'].createElement("hr", {
106165
+ })))))))), /*#__PURE__*/React__default['default'].createElement("hr", {
106167
106166
  className: "color-border-default mb-2 mt-4 "
106168
106167
  }), /*#__PURE__*/React__default['default'].createElement("div", {
106169
106168
  style: {