@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.js CHANGED
@@ -808,331 +808,331 @@ var ContentEditable = function ContentEditable(_ref) {
808
808
  };
809
809
 
810
810
  var UNFilter = [{
811
- "API_KEY": "ETHERSCAN_API_KEY",
812
- "LOGO": "https://etherscan.io/images/favicon3.ico",
813
- "BRAND_COLOR": "#F6F7F8",
814
- "BRAND_SECONDARY_COLOR": "#21325B",
815
- "n": "EOA",
816
- "t": 20,
817
- "d": "Fetches address data like transactions, balances, or portfolio info from multiple supported chains.",
818
- "a": "Dynamically queries blockchain data such as transactions and balances by resolving time ranges to block ranges and supporting pagination.",
819
- "p": [{
820
- "name": "addresses",
821
- "detail": "One or more addresses (comma-separated) to query.",
822
- "example": "\"vitalik.eth\"",
823
- "require": "m",
824
- "type": "string"
811
+ API_KEY: "ETHERSCAN_API_KEY",
812
+ LOGO: "https://etherscan.io/images/favicon3.ico",
813
+ BRAND_COLOR: "#F6F7F8",
814
+ BRAND_SECONDARY_COLOR: "#21325B",
815
+ n: "EOA",
816
+ t: 20,
817
+ d: "Fetches address data like transactions, balances, or portfolio info from multiple supported chains.",
818
+ a: "Dynamically queries blockchain data such as transactions and balances by resolving time ranges to block ranges and supporting pagination.",
819
+ p: [{
820
+ name: "addresses",
821
+ detail: "One or more addresses (comma-separated) to query.",
822
+ example: '"vitalik.eth"',
823
+ require: "m",
824
+ type: "string"
825
825
  }, {
826
- "name": "categories",
827
- "detail": "Type of data to fetch. Supported values: \"txns\", \"balance\".",
828
- "example": "\"txns\"",
829
- "require": "m",
830
- "type": "string"
826
+ name: "categories",
827
+ detail: 'Type of data to fetch. Supported values: "txns", "balance".',
828
+ example: '"txns"',
829
+ require: "m",
830
+ type: "string"
831
831
  }, {
832
- "name": "chain",
833
- "detail": "Blockchain network(s) to query. Supported values: \"ethereum\", \"gnosis\", \"base\". Accepts comma-separated values.",
834
- "example": "\"ethereum\"",
835
- "require": "m",
836
- "type": "string"
832
+ name: "chain",
833
+ detail: 'Blockchain network(s) to query. Supported values: "ethereum", "gnosis", "base". Accepts comma-separated values.',
834
+ example: '"ethereum"',
835
+ require: "m",
836
+ type: "string"
837
837
  }, {
838
- "name": "startTime",
839
- "detail": "Used to calculate starting block for transaction queries.",
840
- "example": "\"01/01/2024\"",
841
- "require": "m",
842
- "type": "string"
838
+ name: "startTime",
839
+ detail: "Used to calculate starting block for transaction queries.",
840
+ example: '"01/01/2024"',
841
+ require: "m",
842
+ type: "string"
843
843
  }, {
844
- "name": "endTime",
845
- "detail": "Used to calculate ending block for transaction queries.",
846
- "example": "\"01/06/2024\"",
847
- "require": "m",
848
- "type": "string"
844
+ name: "endTime",
845
+ detail: "Used to calculate ending block for transaction queries.",
846
+ example: '"01/06/2024"',
847
+ require: "m",
848
+ type: "string"
849
849
  }, {
850
- "name": "page",
851
- "detail": "The page number for paginated transaction results. Only used when category is 'txns'. Default is 1",
852
- "example": "1",
853
- "require": "o",
854
- "type": "number"
850
+ name: "page",
851
+ detail: "The page number for paginated transaction results. Only used when category is 'txns'. Default is 1",
852
+ example: "1",
853
+ require: "o",
854
+ type: "number"
855
855
  }, {
856
- "name": "offset",
857
- "detail": "The number of results to return per page (limit). Only used when category is 'txns'. Default is 10",
858
- "example": "10",
859
- "require": "o",
860
- "type": "number"
856
+ name: "offset",
857
+ detail: "The number of results to return per page (limit). Only used when category is 'txns'. Default is 10",
858
+ example: "10",
859
+ require: "o",
860
+ type: "number"
861
861
  }]
862
862
  }, {
863
- "LOGO": "https://files.readme.io/06394e687778e238a6cd43de6e1d7d339043aa50054703f64606369352ef1864-VariantCG-Symbol-Color.png",
864
- "BRAND_COLOR": "#f8fdf8",
865
- "BRAND_SECONDARY_COLOR": "#4bc63d",
866
- "n": "COINGECKO",
867
- "t": 20,
868
- "API_KEY": "COINGECKO_API_KEY",
869
- "d": "Query crypto prices, ecosystem market data, stablecoins, or derivatives from CoinGecko.",
870
- "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.",
871
- "p": [{
872
- "name": "category",
873
- "detail": "Query type: \"price\", \"market\", \"stablecoins\", or \"derivatives\".",
874
- "example": "\"stablecoins\"",
875
- "require": "m"
863
+ LOGO: "https://files.readme.io/06394e687778e238a6cd43de6e1d7d339043aa50054703f64606369352ef1864-VariantCG-Symbol-Color.png",
864
+ BRAND_COLOR: "#f8fdf8",
865
+ BRAND_SECONDARY_COLOR: "#4bc63d",
866
+ n: "COINGECKO",
867
+ t: 20,
868
+ API_KEY: "COINGECKO_API_KEY",
869
+ d: "Query crypto prices, ecosystem market data, stablecoins, or derivatives from CoinGecko.",
870
+ 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.',
871
+ p: [{
872
+ name: "category",
873
+ detail: 'Query type: "price", "market", "stablecoins", or "derivatives".',
874
+ example: '"stablecoins"',
875
+ require: "m"
876
876
  }, {
877
- "name": "param1",
878
- "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\").",
879
- "example": "\"yield-bearing-stablecoins\"",
880
- "require": "m"
877
+ name: "param1",
878
+ 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").',
879
+ example: '"yield-bearing-stablecoins"',
880
+ require: "m"
881
881
  }, {
882
- "name": "param2",
883
- "detail": "If \"market\" and \"stablecoins\" then eg. \"1h\", \"24h\", \"7d\".",
884
- "example": "\"1h,24h,7d\"",
885
- "require": "o"
882
+ name: "param2",
883
+ detail: 'If "market" and "stablecoins" then eg. "1h", "24h", "7d".',
884
+ example: '"1h,24h,7d"',
885
+ require: "o"
886
886
  }]
887
887
  }, {
888
- "API_KEY": "DEFILLAMA_API_KEY",
889
- "LOGO": "https://defillama.com/favicon-32x32.png",
890
- "BRAND_COLOR": "#f8f5fc",
891
- "BRAND_SECONDARY_COLOR": "#855dcd",
892
- "n": "DEFILLAMA",
893
- "t": 20,
894
- "d": "Fetches content from Defillama.",
895
- "a": "Retrieves data from Defillama.",
896
- "p": [{
897
- "name": "category",
898
- "detail": "Type of content to fetch. Supports 'protocols', 'yields', 'dex', or 'fees'.",
899
- "example": "\"protocols\"",
900
- "require": "m",
901
- "type": "string"
888
+ API_KEY: "DEFILLAMA_API_KEY",
889
+ LOGO: "https://defillama.com/favicon-32x32.png",
890
+ BRAND_COLOR: "#f8f5fc",
891
+ BRAND_SECONDARY_COLOR: "#855dcd",
892
+ n: "DEFILLAMA",
893
+ t: 20,
894
+ d: "Fetches content from Defillama.",
895
+ a: "Retrieves data from Defillama.",
896
+ p: [{
897
+ name: "category",
898
+ detail: "Type of content to fetch. Supports 'protocols', 'yields', 'dex', or 'fees'.",
899
+ example: '"protocols"',
900
+ require: "m",
901
+ type: "string"
902
902
  }]
903
903
  }, {
904
- "API_KEY": "BASESCAN_API_KEY",
905
- "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",
906
- "BRAND_COLOR": "#f1f5ff",
907
- "BRAND_SECONDARY_COLOR": "#2752ff",
908
- "n": "BASE",
909
- "t": 20,
910
- "d": "Fetches Base network data via Basescan: native txns, ERC-20 transfers, ERC-721 transfers, and gas metrics.",
911
- "a": "Pulls on-chain activity for Base (chainid 8453) using Basescan’s API — supports full tx history, token/NFT transfers, gas prices, and pagination.",
912
- "p": [{
913
- "name": "type",
914
- "detail": "Data category: 'all-txns' | 'token-txns' | 'nft-txns' | 'gas'.",
915
- "example": "\"token-txns\"",
916
- "require": "m",
917
- "type": "string"
904
+ API_KEY: "BASESCAN_API_KEY",
905
+ 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",
906
+ BRAND_COLOR: "#f1f5ff",
907
+ BRAND_SECONDARY_COLOR: "#2752ff",
908
+ n: "BASE",
909
+ t: 20,
910
+ d: "Fetches Base network data via Basescan: native txns, ERC-20 transfers, ERC-721 transfers, and gas metrics.",
911
+ a: "Pulls on-chain activity for Base (chainid 8453) using Basescan’s API — supports full tx history, token/NFT transfers, gas prices, and pagination.",
912
+ p: [{
913
+ name: "type",
914
+ detail: "Data category: 'all-txns' | 'token-txns' | 'nft-txns' | 'gas'.",
915
+ example: '"token-txns"',
916
+ require: "m",
917
+ type: "string"
918
918
  }, {
919
- "name": "chain",
920
- "detail": "Must be 'base'.",
921
- "example": "\"base\"",
922
- "require": "m",
923
- "type": "string"
919
+ name: "chain",
920
+ detail: "Must be 'base'.",
921
+ example: '"base"',
922
+ require: "m",
923
+ type: "string"
924
924
  }, {
925
- "name": "address",
926
- "detail": "Target wallet address (only required for txns, token, and nft queries). Not needed for 'gas'.",
927
- "example": "\"0x7FD624f3f97A7dd36195E8379F28dB6147C270ff\"",
928
- "require": "o",
929
- "type": "string"
925
+ name: "address",
926
+ detail: "Target wallet address (only required for txns, token, and nft queries). Not needed for 'gas'.",
927
+ example: '"0x7FD624f3f97A7dd36195E8379F28dB6147C270ff"',
928
+ require: "o",
929
+ type: "string"
930
930
  }, {
931
- "name": "startDate",
932
- "detail": "Start date (used to resolve block range). Optional, only applies to txns.",
933
- "example": "\"01/01/2024\"",
934
- "require": "o",
935
- "type": "string"
931
+ name: "startDate",
932
+ detail: "Start date (used to resolve block range). Optional, only applies to txns.",
933
+ example: '"01/01/2024"',
934
+ require: "o",
935
+ type: "string"
936
936
  }, {
937
- "name": "endDate",
938
- "detail": "End date (used to resolve block range). Optional, only applies to txns.",
939
- "example": "\"07/07/2024\"",
940
- "require": "o",
941
- "type": "string"
937
+ name: "endDate",
938
+ detail: "End date (used to resolve block range). Optional, only applies to txns.",
939
+ example: '"07/07/2024"',
940
+ require: "o",
941
+ type: "string"
942
942
  }, {
943
- "name": "page",
944
- "detail": "Page number for paginated results. Only applies to txns/token/nft queries.",
945
- "example": "1",
946
- "require": "o",
947
- "type": "number"
943
+ name: "page",
944
+ detail: "Page number for paginated results. Only applies to txns/token/nft queries.",
945
+ example: "1",
946
+ require: "o",
947
+ type: "number"
948
948
  }, {
949
- "name": "offset",
950
- "detail": "Number of items per page (limit). Only applies to txns/token/nft queries.",
951
- "example": "2",
952
- "require": "o",
953
- "type": "number"
949
+ name: "offset",
950
+ detail: "Number of items per page (limit). Only applies to txns/token/nft queries.",
951
+ example: "2",
952
+ require: "o",
953
+ type: "number"
954
954
  }]
955
955
  }, {
956
- "API_KEY": "GNOSIS_API_KEY",
957
- "LOGO": "https://gnosisscan.io/assets/generic/html/favicon-light.ico",
958
- "BRAND_COLOR": "#f6f7f6",
959
- "BRAND_SECONDARY_COLOR": "#133629",
960
- "n": "GNOSIS",
961
- "t": 20,
962
- "d": "Fetches Gnosis Chain data via Gnosisscan: native transactions, ERC-20 token transfers, ERC-721 NFT transfers, and gas metrics.",
963
- "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.",
964
- "p": [{
965
- "name": "type",
966
- "detail": "Data category to fetch. Options: 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
967
- "example": "\"nft-txns\"",
968
- "require": "m",
969
- "type": "string"
956
+ API_KEY: "GNOSIS_API_KEY",
957
+ LOGO: "https://gnosisscan.io/assets/generic/html/favicon-light.ico",
958
+ BRAND_COLOR: "#f6f7f6",
959
+ BRAND_SECONDARY_COLOR: "#133629",
960
+ n: "GNOSIS",
961
+ t: 20,
962
+ d: "Fetches Gnosis Chain data via Gnosisscan: native transactions, ERC-20 token transfers, ERC-721 NFT transfers, and gas metrics.",
963
+ 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.",
964
+ p: [{
965
+ name: "type",
966
+ detail: "Data category to fetch. Options: 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
967
+ example: '"nft-txns"',
968
+ require: "m",
969
+ type: "string"
970
970
  }, {
971
- "name": "chain",
972
- "detail": "Must be 'gnosis'.",
973
- "example": "\"gnosis\"",
974
- "require": "m",
975
- "type": "string"
971
+ name: "chain",
972
+ detail: "Must be 'gnosis'.",
973
+ example: '"gnosis"',
974
+ require: "m",
975
+ type: "string"
976
976
  }, {
977
- "name": "address",
978
- "detail": "Wallet address to query. Required for all types except 'gas'.",
979
- "example": "\"0x90830Ed558f12D826370DC52E9D87947A7F18De9\"",
980
- "require": "o",
981
- "type": "string"
977
+ name: "address",
978
+ detail: "Wallet address to query. Required for all types except 'gas'.",
979
+ example: '"0x90830Ed558f12D826370DC52E9D87947A7F18De9"',
980
+ require: "o",
981
+ type: "string"
982
982
  }, {
983
- "name": "startDate",
984
- "detail": "Used to resolve starting block for txns.",
985
- "example": "\"01/01/2024\"",
986
- "require": "o",
987
- "type": "string"
983
+ name: "startDate",
984
+ detail: "Used to resolve starting block for txns.",
985
+ example: '"01/01/2024"',
986
+ require: "o",
987
+ type: "string"
988
988
  }, {
989
- "name": "endDate",
990
- "detail": "Used to resolve ending block for txns.",
991
- "example": "\"14/06/2025\"",
992
- "require": "o",
993
- "type": "string"
989
+ name: "endDate",
990
+ detail: "Used to resolve ending block for txns.",
991
+ example: '"14/06/2025"',
992
+ require: "o",
993
+ type: "string"
994
994
  }, {
995
- "name": "page",
996
- "detail": "Page number for paginated transaction results. Applies only to 'txns', 'token-txns', and 'nft-txns'.",
997
- "example": "\"1\"",
998
- "require": "o",
999
- "type": "number"
995
+ name: "page",
996
+ detail: "Page number for paginated transaction results. Applies only to 'txns', 'token-txns', and 'nft-txns'.",
997
+ example: '"1"',
998
+ require: "o",
999
+ type: "number"
1000
1000
  }, {
1001
- "name": "offset",
1002
- "detail": "Number of results per page (limit). Applies only to 'txns', 'token-txns', and 'nft-txns'.",
1003
- "example": "\"50\"",
1004
- "require": "o",
1005
- "type": "number"
1001
+ name: "offset",
1002
+ detail: "Number of results per page (limit). Applies only to 'txns', 'token-txns', and 'nft-txns'.",
1003
+ example: '"50"',
1004
+ require: "o",
1005
+ type: "number"
1006
1006
  }]
1007
1007
  }, {
1008
- "API_KEY": "ETHERSCAN_API_KEY",
1009
- "LOGO": "https://etherscan.io/images/favicon3.ico",
1010
- "BRAND_COLOR": "#F6F7F8",
1011
- "BRAND_SECONDARY_COLOR": "#21325B",
1012
- "n": "ETHERSCAN",
1013
- "t": 20,
1014
- "d": "Returns blockchain transaction history for the given address",
1015
- "a": "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
1016
- "p": [{
1017
- "name": "type",
1018
- "detail": "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
1019
- "example": "\"all-txns\"",
1020
- "require": "m",
1021
- "type": "string"
1008
+ API_KEY: "ETHERSCAN_API_KEY",
1009
+ LOGO: "https://etherscan.io/images/favicon3.ico",
1010
+ BRAND_COLOR: "#F6F7F8",
1011
+ BRAND_SECONDARY_COLOR: "#21325B",
1012
+ n: "ETHERSCAN",
1013
+ t: 20,
1014
+ d: "Returns blockchain transaction history for the given address",
1015
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
1016
+ p: [{
1017
+ name: "type",
1018
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
1019
+ example: '"all-txns"',
1020
+ require: "m",
1021
+ type: "string"
1022
1022
  }, {
1023
- "name": "chain",
1024
- "detail": "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
1025
- "example": "\"ethereum\"",
1026
- "require": "m",
1027
- "type": "string"
1023
+ name: "chain",
1024
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
1025
+ example: '"ethereum"',
1026
+ require: "m",
1027
+ type: "string"
1028
1028
  }, {
1029
- "name": "address",
1030
- "detail": "Wallet address / Ens name to query",
1031
- "example": "\"vitalik.eth\"",
1032
- "require": "o",
1033
- "type": "string"
1029
+ name: "address",
1030
+ detail: "Wallet address / Ens name to query",
1031
+ example: '"vitalik.eth"',
1032
+ require: "o",
1033
+ type: "string"
1034
1034
  }, {
1035
- "name": "startDate",
1036
- "detail": "Used to filter block range.",
1037
- "example": "\"01/01/2024\"",
1038
- "require": "o",
1039
- "type": "string"
1035
+ name: "startDate",
1036
+ detail: "Used to filter block range.",
1037
+ example: '"01/01/2024"',
1038
+ require: "o",
1039
+ type: "string"
1040
1040
  }, {
1041
- "name": "endDate",
1042
- "detail": "Used to filter block range.",
1043
- "example": "\"01/07/2025\"",
1044
- "require": "o",
1045
- "type": "string"
1041
+ name: "endDate",
1042
+ detail: "Used to filter block range.",
1043
+ example: '"01/07/2025"',
1044
+ require: "o",
1045
+ type: "string"
1046
1046
  }]
1047
1047
  }, {
1048
- "API_KEY": "SAFE_API_KEY",
1049
- "LOGO": "https://safe-transaction-mainnet.safe.global/static/safe/favicon.png",
1050
- "BRAND_COLOR": "#ebf9f3",
1051
- "BRAND_SECONDARY_COLOR": "#00B460",
1052
- "n": "SAFE",
1053
- "t": 20,
1054
- "d": "Query the list of transactions performed by a Safe address, with optional pagination.",
1055
- "a": "Query the list of transactions performed by a Safe address, with optional pagination.",
1056
- "p": [{
1057
- "name": "address",
1058
- "detail": "The address to query, in hexadecimal format.",
1059
- "example": "\"0xe9A6378d8FD4983C2999DB0735f258397E8C2253\"",
1060
- "require": "m"
1048
+ API_KEY: "SAFE_API_KEY",
1049
+ LOGO: "https://safe-transaction-mainnet.safe.global/static/safe/favicon.png",
1050
+ BRAND_COLOR: "#ebf9f3",
1051
+ BRAND_SECONDARY_COLOR: "#00B460",
1052
+ n: "SAFE",
1053
+ t: 20,
1054
+ d: "Query the list of transactions performed by a Safe address, with optional pagination.",
1055
+ a: "Query the list of transactions performed by a Safe address, with optional pagination.",
1056
+ p: [{
1057
+ name: "address",
1058
+ detail: "The address to query, in hexadecimal format.",
1059
+ example: '"0xe9A6378d8FD4983C2999DB0735f258397E8C2253"',
1060
+ require: "m"
1061
1061
  }, {
1062
- "name": "utility",
1063
- "detail": "The utility to query, supported values: 'txns'.",
1064
- "example": "\"txns\"",
1065
- "require": "m"
1062
+ name: "utility",
1063
+ detail: "The utility to query, supported values: 'txns'.",
1064
+ example: '"txns"',
1065
+ require: "m"
1066
1066
  }, {
1067
- "name": "chain",
1068
- "detail": "The chain to query, supported values: 'ethereum', 'gnosis'.",
1069
- "example": "\"gnosis\"",
1070
- "require": "m"
1067
+ name: "chain",
1068
+ detail: "The chain to query, supported values: 'ethereum', 'gnosis'.",
1069
+ example: '"gnosis"',
1070
+ require: "m"
1071
1071
  }, {
1072
- "name": "limit",
1073
- "detail": "The number of transactions to return, default is 100.",
1074
- "example": "10",
1075
- "require": "o",
1076
- "repeat": "n"
1072
+ name: "limit",
1073
+ detail: "The number of transactions to return, default is 100.",
1074
+ example: "10",
1075
+ require: "o",
1076
+ repeat: "n"
1077
1077
  }, {
1078
- "name": "offset",
1079
- "detail": "The number of transactions to skip, default is 0.",
1080
- "example": "0",
1081
- "require": "o",
1082
- "repeat": "n"
1078
+ name: "offset",
1079
+ detail: "The number of transactions to skip, default is 0.",
1080
+ example: "0",
1081
+ require: "o",
1082
+ repeat: "n"
1083
1083
  }]
1084
1084
  }, {
1085
- "LOGO": "https://cdn.prod.website-files.com/65f94dfd53db8b337c808067/68485baa72714ae58f350ce2_bs-logo.png",
1086
- "BRAND_COLOR": "#f8f8fd",
1087
- "BRAND_SECONDARY_COLOR": "#5353D3",
1088
- "n": "BLOCKSCOUT",
1089
- "t": 20,
1090
- "d": "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
1091
- "a": "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
1092
- "p": [{
1093
- "name": "address",
1094
- "detail": "The address string representing the addresses to check for balance",
1095
- "example": "\"vitalik.eth\"",
1096
- "require": "m",
1097
- "type": "string"
1085
+ LOGO: "https://cdn.prod.website-files.com/65f94dfd53db8b337c808067/68485baa72714ae58f350ce2_bs-logo.png",
1086
+ BRAND_COLOR: "#f8f8fd",
1087
+ BRAND_SECONDARY_COLOR: "#5353D3",
1088
+ n: "BLOCKSCOUT",
1089
+ t: 20,
1090
+ d: "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
1091
+ a: "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
1092
+ p: [{
1093
+ name: "address",
1094
+ detail: "The address string representing the addresses to check for balance",
1095
+ example: '"vitalik.eth"',
1096
+ require: "m",
1097
+ type: "string"
1098
1098
  }, {
1099
- "name": "type",
1100
- "detail": "The type of data to query.",
1101
- "example": "\"txns\"",
1102
- "require": "m",
1103
- "type": "string"
1099
+ name: "type",
1100
+ detail: "The type of data to query.",
1101
+ example: '"txns"',
1102
+ require: "m",
1103
+ type: "string"
1104
1104
  }, {
1105
- "name": "chain",
1106
- "detail": "The blockchain to query. By default on Ethereum mainnet.",
1107
- "example": "\"ethereum\"",
1108
- "require": "o",
1109
- "type": "string"
1105
+ name: "chain",
1106
+ detail: "The blockchain to query. By default on Ethereum mainnet.",
1107
+ example: '"ethereum"',
1108
+ require: "o",
1109
+ type: "string"
1110
1110
  }, {
1111
- "name": "startTimestamp",
1112
- "detail": "Start date marking the start of the transaction search range. Work with type === \"txns\"",
1113
- "example": "\"01/01/2023\"",
1114
- "require": "o",
1115
- "type": "string"
1111
+ name: "startTimestamp",
1112
+ detail: 'Start date marking the start of the transaction search range. Work with type === "txns"',
1113
+ example: '"01/01/2023"',
1114
+ require: "o",
1115
+ type: "string"
1116
1116
  }, {
1117
- "name": "endTimestamp",
1118
- "detail": "End date marking the end of the transaction search range. Work with type === \"txns\"",
1119
- "example": "\"01/05/2024\"",
1120
- "require": "o",
1121
- "type": "string"
1117
+ name: "endTimestamp",
1118
+ detail: 'End date marking the end of the transaction search range. Work with type === "txns"',
1119
+ example: '"01/05/2024"',
1120
+ require: "o",
1121
+ type: "string"
1122
1122
  }, {
1123
- "name": "page",
1124
- "detail": "The page number to return. Work with type === \"txns\"",
1125
- "example": "1",
1126
- "require": "o",
1127
- "repeat": "n",
1128
- "type": "rangenumber"
1123
+ name: "page",
1124
+ detail: 'The page number to return. Work with type === "txns"',
1125
+ example: "1",
1126
+ require: "o",
1127
+ repeat: "n",
1128
+ type: "rangenumber"
1129
1129
  }, {
1130
- "name": "offset",
1131
- "detail": "The number of transactions to return per page. Work with type === \"txns\"",
1132
- "example": "2",
1133
- "require": "o",
1134
- "repeat": "n",
1135
- "type": "rangenumber"
1130
+ name: "offset",
1131
+ detail: 'The number of transactions to return per page. Work with type === "txns"',
1132
+ example: "2",
1133
+ require: "o",
1134
+ repeat: "n",
1135
+ type: "rangenumber"
1136
1136
  }]
1137
1137
  }];
1138
1138
 
@@ -1141,12 +1141,12 @@ var FormulaSearch = function FormulaSearch(props) {
1141
1141
  var _useContext = React.useContext(WorkbookContext),
1142
1142
  context = _useContext.context,
1143
1143
  isAuthorized = _useContext.settings.isAuthorized;
1144
- var authedFunction = ['COINGECKO', 'ETHERSCAN', 'DEFILLAMA', 'GNOSIS', 'BASE', 'EOA', 'PNL', 'SAFE', 'BLOCKSCOUT', 'GNOSIS', 'LENS', 'FARCASTER', 'Ethereum'];
1144
+ var authedFunction = ["COINGECKO", "ETHERSCAN", "DEFILLAMA", "GNOSIS", "BASE", "EOA", "PNL", "SAFE", "BLOCKSCOUT", "GNOSIS", "LENS", "FARCASTER", "Ethereum"];
1145
1145
  var filteredDefaultCandidates = context.defaultCandidates.filter(function (item) {
1146
1146
  return !authedFunction.includes(item.n);
1147
1147
  });
1148
1148
  var unfilteredDefaultCandidates = UNFilter.filter(function (item) {
1149
- return item.n !== 'PNL';
1149
+ return item.n !== "PNL";
1150
1150
  });
1151
1151
  var finalDefaultCandidates = !isAuthorized ? filteredDefaultCandidates : context.defaultCandidates.slice(0, 10);
1152
1152
  var finalFunctionCandidates = isAuthorized ? context.functionCandidates : context.functionCandidates.filter(function (item) {
@@ -1189,20 +1189,17 @@ var FormulaSearch = function FormulaSearch(props) {
1189
1189
  className: "text-helper-sm-bold color-text-secondary"
1190
1190
  }, "Onchain functions"), /*#__PURE__*/React__default['default'].createElement("p", {
1191
1191
  className: "text-helper-text-sm color-text-secondary"
1192
- }, "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", {
1192
+ }, "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", {
1193
1193
  style: {
1194
1194
  marginBottom: "8px",
1195
1195
  backgroundColor: "#F8F9FA"
1196
1196
  },
1197
1197
  className: "w-full flex flex-col p-2 gap-1"
1198
1198
  }, /*#__PURE__*/React__default['default'].createElement("h4", {
1199
- className: "text-helper-sm-bold",
1200
- style: {
1201
- fontWeight: "bold"
1202
- }
1199
+ className: "font-semibold"
1203
1200
  }, "dSheets account required"), /*#__PURE__*/React__default['default'].createElement("p", {
1204
1201
  className: "text-helper-text-sm color-text-secondary"
1205
- }, "Use more onchain functions by creating a dSheets account. ", /*#__PURE__*/React__default['default'].createElement("span", {
1202
+ }, "Use more onchain functions by creating a dSheets account.", " ", /*#__PURE__*/React__default['default'].createElement("span", {
1206
1203
  className: "sign-fortune",
1207
1204
  style: {
1208
1205
  color: "#5C0AFF",
@@ -1212,13 +1209,14 @@ var FormulaSearch = function FormulaSearch(props) {
1212
1209
  var _document$getElementB;
1213
1210
  e.stopPropagation();
1214
1211
  e.preventDefault();
1215
- console.log('click');
1216
- (_document$getElementB = document.getElementById('triggerAuth')) === null || _document$getElementB === void 0 ? void 0 : _document$getElementB.click();
1212
+ console.log("click");
1213
+ (_document$getElementB = document.getElementById("triggerAuth")) === null || _document$getElementB === void 0 ? void 0 : _document$getElementB.click();
1217
1214
  }
1218
1215
  }, "Signup/Login")), /*#__PURE__*/React__default['default'].createElement("div", {
1219
1216
  className: "flex gap-2 mt-2 mb-2"
1220
1217
  }, unfilteredDefaultCandidates.map(function (v, index) {
1221
1218
  return /*#__PURE__*/React__default['default'].createElement("img", {
1219
+ key: index,
1222
1220
  src: v.LOGO,
1223
1221
  alt: "Service Logo",
1224
1222
  style: {
@@ -1226,7 +1224,7 @@ var FormulaSearch = function FormulaSearch(props) {
1226
1224
  height: "16px"
1227
1225
  }
1228
1226
  });
1229
- }))))), context.defaultCandidates.length > 0 ? (/*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, finalDefaultCandidates.map(function (v, index) {
1227
+ })))))), context.defaultCandidates.length > 0 ? (/*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, finalDefaultCandidates.map(function (v, index) {
1230
1228
  return /*#__PURE__*/React__default['default'].createElement("div", {
1231
1229
  key: v.n,
1232
1230
  "data-func": v.n,
@@ -1333,7 +1331,7 @@ var FormulaSearch = function FormulaSearch(props) {
1333
1331
  })))))), /*#__PURE__*/React__default['default'].createElement("div", {
1334
1332
  className: "luckysheet-formula-search-detail mt-1 text-helper-text-sm color-text-secondary"
1335
1333
  }, v.d));
1336
- }), finalFunctionCandidates.length === 0 && (/*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, !isAuthorized && /*#__PURE__*/React__default['default'].createElement("div", {
1334
+ }), finalFunctionCandidates.length === 0 && (/*#__PURE__*/React__default['default'].createElement("span", null, !isAuthorized && (/*#__PURE__*/React__default['default'].createElement("div", {
1337
1335
  style: {
1338
1336
  marginBottom: "8px",
1339
1337
  backgroundColor: "#F8F9FA"
@@ -1346,7 +1344,7 @@ var FormulaSearch = function FormulaSearch(props) {
1346
1344
  }
1347
1345
  }, "dSheets account required"), /*#__PURE__*/React__default['default'].createElement("p", {
1348
1346
  className: "text-helper-text-sm color-text-secondary"
1349
- }, "Use more onchain functions by creating a dSheets account. ", /*#__PURE__*/React__default['default'].createElement("span", {
1347
+ }, "Use more onchain functions by creating a dSheets account.", " ", /*#__PURE__*/React__default['default'].createElement("span", {
1350
1348
  className: "sign-fortune",
1351
1349
  style: {
1352
1350
  color: "#5C0AFF",
@@ -1356,13 +1354,14 @@ var FormulaSearch = function FormulaSearch(props) {
1356
1354
  var _document$getElementB2;
1357
1355
  e.stopPropagation();
1358
1356
  e.preventDefault();
1359
- console.log('click');
1360
- (_document$getElementB2 = document.getElementById('triggerAuth')) === null || _document$getElementB2 === void 0 ? void 0 : _document$getElementB2.click();
1357
+ console.log("click");
1358
+ (_document$getElementB2 = document.getElementById("triggerAuth")) === null || _document$getElementB2 === void 0 ? void 0 : _document$getElementB2.click();
1361
1359
  }
1362
1360
  }, "Signup/Login")), /*#__PURE__*/React__default['default'].createElement("div", {
1363
1361
  className: "flex gap-2 mt-2 mb-2"
1364
1362
  }, unfilteredDefaultCandidates.map(function (v, index) {
1365
1363
  return /*#__PURE__*/React__default['default'].createElement("img", {
1364
+ key: index,
1366
1365
  src: v.LOGO,
1367
1366
  alt: "Service Logo",
1368
1367
  style: {
@@ -1370,7 +1369,7 @@ var FormulaSearch = function FormulaSearch(props) {
1370
1369
  height: "16px"
1371
1370
  }
1372
1371
  });
1373
- }))))))), /*#__PURE__*/React__default['default'].createElement("hr", {
1372
+ })))))))), /*#__PURE__*/React__default['default'].createElement("hr", {
1374
1373
  className: "color-border-default mb-2 mt-4 "
1375
1374
  }), /*#__PURE__*/React__default['default'].createElement("div", {
1376
1375
  style: {