@nhattest1/eaera-widgets-v2 0.0.0-test.1

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 (1695) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +77 -0
  3. package/dist/App.d.ts +3 -0
  4. package/dist/assets/css/icon-color.utilities.scss +32 -0
  5. package/dist/assets/css/style.scss +14 -0
  6. package/dist/assets/css/tailwind.scss +3 -0
  7. package/dist/assets/icons/currencies/cryptos/_component.d.ts +3 -0
  8. package/dist/assets/icons/currencies/cryptos/_url.d.ts +4 -0
  9. package/dist/assets/icons/currencies/cryptos/index.d.ts +3 -0
  10. package/dist/assets/icons/currencies/fiats/_component.d.ts +3 -0
  11. package/dist/assets/icons/currencies/fiats/_url.d.ts +4 -0
  12. package/dist/assets/icons/currencies/fiats/index.d.ts +3 -0
  13. package/dist/components/base/EaeraAutoComplete.d.ts +52 -0
  14. package/dist/components/base/EaeraAutoComplete.mjs +1 -0
  15. package/dist/components/base/EaeraAvatar.d.ts +38 -0
  16. package/dist/components/base/EaeraAvatar.mjs +1 -0
  17. package/dist/components/base/EaeraAvatarGroup.d.ts +20 -0
  18. package/dist/components/base/EaeraAvatarGroup.mjs +1 -0
  19. package/dist/components/base/EaeraBacktop.d.ts +29 -0
  20. package/dist/components/base/EaeraBacktop.mjs +1 -0
  21. package/dist/components/base/EaeraBadge.d.ts +41 -0
  22. package/dist/components/base/EaeraBadge.mjs +1 -0
  23. package/dist/components/base/EaeraBreadcrumb.d.ts +38 -0
  24. package/dist/components/base/EaeraBreadcrumb.mjs +1 -0
  25. package/dist/components/base/EaeraButton.d.ts +47 -0
  26. package/dist/components/base/EaeraButton.mjs +1 -0
  27. package/dist/components/base/EaeraCard.d.ts +33 -0
  28. package/dist/components/base/EaeraCard.mjs +1 -0
  29. package/dist/components/base/EaeraCarousel.d.ts +256 -0
  30. package/dist/components/base/EaeraCarousel.mjs +1 -0
  31. package/dist/components/base/EaeraCascadeSelect.d.ts +55 -0
  32. package/dist/components/base/EaeraCascadeSelect.mjs +1 -0
  33. package/dist/components/base/EaeraCheckBoxList.d.ts +90 -0
  34. package/dist/components/base/EaeraCheckBoxList.mjs +1 -0
  35. package/dist/components/base/EaeraCheckbox.d.ts +42 -0
  36. package/dist/components/base/EaeraCheckbox.mjs +1 -0
  37. package/dist/components/base/EaeraCollapse.d.ts +207 -0
  38. package/dist/components/base/EaeraCollapse.mjs +1 -0
  39. package/dist/components/base/EaeraColorPicker.d.ts +96 -0
  40. package/dist/components/base/EaeraColorPicker.mjs +1 -0
  41. package/dist/components/base/EaeraDatePicker.d.ts +529 -0
  42. package/dist/components/base/EaeraDatePicker.mjs +1 -0
  43. package/dist/components/base/EaeraDateTimePicker.d.ts +42 -0
  44. package/dist/components/base/EaeraDateTimePicker.mjs +1 -0
  45. package/dist/components/base/EaeraDescriptions.d.ts +54 -0
  46. package/dist/components/base/EaeraDescriptions.mjs +1 -0
  47. package/dist/components/base/EaeraDialog.d.ts +63 -0
  48. package/dist/components/base/EaeraDialog.mjs +1 -0
  49. package/dist/components/base/EaeraDivider.d.ts +30 -0
  50. package/dist/components/base/EaeraDivider.mjs +1 -0
  51. package/dist/components/base/EaeraDrawer.d.ts +60 -0
  52. package/dist/components/base/EaeraDrawer.mjs +1 -0
  53. package/dist/components/base/EaeraDropdown.d.ts +52 -0
  54. package/dist/components/base/EaeraDropdown.mjs +1 -0
  55. package/dist/components/base/EaeraEmpty.d.ts +25 -0
  56. package/dist/components/base/EaeraEmpty.mjs +1 -0
  57. package/dist/components/base/EaeraImage.d.ts +17 -0
  58. package/dist/components/base/EaeraImage.mjs +1 -0
  59. package/dist/components/base/EaeraInput.d.ts +57 -0
  60. package/dist/components/base/EaeraInput.mjs +1 -0
  61. package/dist/components/base/EaeraInputCode.d.ts +31 -0
  62. package/dist/components/base/EaeraInputCode.mjs +1 -0
  63. package/dist/components/base/EaeraInputNumber.d.ts +57 -0
  64. package/dist/components/base/EaeraInputNumber.mjs +1 -0
  65. package/dist/components/base/EaeraInputTag.d.ts +50 -0
  66. package/dist/components/base/EaeraInputTag.mjs +1 -0
  67. package/dist/components/base/EaeraLink.d.ts +40 -0
  68. package/dist/components/base/EaeraLink.mjs +1 -0
  69. package/dist/components/base/EaeraMenu.d.ts +81 -0
  70. package/dist/components/base/EaeraMenu.mjs +1 -0
  71. package/dist/components/base/EaeraMenuItem.d.ts +26 -0
  72. package/dist/components/base/EaeraMenuItem.mjs +1 -0
  73. package/dist/components/base/EaeraMenuV2.d.ts +50 -0
  74. package/dist/components/base/EaeraMenuV2.mjs +1 -0
  75. package/dist/components/base/EaeraPagination.d.ts +50 -0
  76. package/dist/components/base/EaeraPagination.mjs +1 -0
  77. package/dist/components/base/EaeraPopconfirm.d.ts +49 -0
  78. package/dist/components/base/EaeraPopconfirm.mjs +1 -0
  79. package/dist/components/base/EaeraPopover.d.ts +34 -0
  80. package/dist/components/base/EaeraPopover.mjs +1 -0
  81. package/dist/components/base/EaeraProgress.d.ts +51 -0
  82. package/dist/components/base/EaeraProgress.mjs +1 -0
  83. package/dist/components/base/EaeraRadio.d.ts +77 -0
  84. package/dist/components/base/EaeraRadio.mjs +1 -0
  85. package/dist/components/base/EaeraRadioButton.d.ts +36 -0
  86. package/dist/components/base/EaeraRadioButton.mjs +1 -0
  87. package/dist/components/base/EaeraRate.d.ts +23 -0
  88. package/dist/components/base/EaeraRate.mjs +1 -0
  89. package/dist/components/base/EaeraRow.d.ts +55 -0
  90. package/dist/components/base/EaeraRow.mjs +1 -0
  91. package/dist/components/base/EaeraScrollbar.d.ts +545 -0
  92. package/dist/components/base/EaeraScrollbar.mjs +1 -0
  93. package/dist/components/base/EaeraSegmented.d.ts +80 -0
  94. package/dist/components/base/EaeraSegmented.mjs +1 -0
  95. package/dist/components/base/EaeraSelect.d.ts +111 -0
  96. package/dist/components/base/EaeraSelect.mjs +1 -0
  97. package/dist/components/base/EaeraSelectStatus.d.ts +28 -0
  98. package/dist/components/base/EaeraSelectStatus.mjs +1 -0
  99. package/dist/components/base/EaeraSelectTag.d.ts +28 -0
  100. package/dist/components/base/EaeraSelectTag.mjs +1 -0
  101. package/dist/components/base/EaeraSelectV2.d.ts +68 -0
  102. package/dist/components/base/EaeraSelectV2.mjs +1 -0
  103. package/dist/components/base/EaeraSkeleton.d.ts +40 -0
  104. package/dist/components/base/EaeraSkeleton.mjs +1 -0
  105. package/dist/components/base/EaeraSlider.d.ts +33 -0
  106. package/dist/components/base/EaeraSlider.mjs +1 -0
  107. package/dist/components/base/EaeraSpinner.d.ts +8 -0
  108. package/dist/components/base/EaeraSpinner.mjs +1 -0
  109. package/dist/components/base/EaeraSteps.d.ts +54 -0
  110. package/dist/components/base/EaeraSteps.mjs +1 -0
  111. package/dist/components/base/EaeraSwitch.d.ts +41 -0
  112. package/dist/components/base/EaeraSwitch.mjs +1 -0
  113. package/dist/components/base/EaeraTab.d.ts +48 -0
  114. package/dist/components/base/EaeraTab.mjs +1 -0
  115. package/dist/components/base/EaeraTag.d.ts +47 -0
  116. package/dist/components/base/EaeraTag.mjs +1 -0
  117. package/dist/components/base/EaeraText.d.ts +26 -0
  118. package/dist/components/base/EaeraText.mjs +1 -0
  119. package/dist/components/base/EaeraTimePicker.d.ts +19 -0
  120. package/dist/components/base/EaeraTimePicker.mjs +1 -0
  121. package/dist/components/base/EaeraTimeSelect.d.ts +31 -0
  122. package/dist/components/base/EaeraTimeSelect.mjs +1 -0
  123. package/dist/components/base/EaeraTimeline.d.ts +14 -0
  124. package/dist/components/base/EaeraTimeline.mjs +1 -0
  125. package/dist/components/base/EaeraTooltip.d.ts +1037 -0
  126. package/dist/components/base/EaeraTooltip.mjs +1 -0
  127. package/dist/components/base/EaeraTransfer.d.ts +42 -0
  128. package/dist/components/base/EaeraTransfer.mjs +1 -0
  129. package/dist/components/base/EaeraTree.d.ts +5879 -0
  130. package/dist/components/base/EaeraTree.mjs +1 -0
  131. package/dist/components/base/EaeraTreeSelect.d.ts +36 -0
  132. package/dist/components/base/EaeraTreeSelect.mjs +1 -0
  133. package/dist/components/base/EaeraUploadDefault.d.ts +48 -0
  134. package/dist/components/base/EaeraUploadDefault.mjs +1 -0
  135. package/dist/components/chunks/0xbtc-Cm5u0XQ1.mjs +1 -0
  136. package/dist/components/chunks/10set-BLMgwL48.mjs +1 -0
  137. package/dist/components/chunks/1flr-Bbg0jkEg.mjs +1 -0
  138. package/dist/components/chunks/1inch-DcB5o9FZ.mjs +1 -0
  139. package/dist/components/chunks/1st-BEcspVh9.mjs +1 -0
  140. package/dist/components/chunks/AED-zwBa9lC9.mjs +1 -0
  141. package/dist/components/chunks/AFN-BfayEO-A.mjs +1 -0
  142. package/dist/components/chunks/ALL-CTdWSh9T.mjs +1 -0
  143. package/dist/components/chunks/AMD-BUquJvfZ.mjs +1 -0
  144. package/dist/components/chunks/AOA-TcURtymt.mjs +1 -0
  145. package/dist/components/chunks/ARS-qwdw0duZ.mjs +1 -0
  146. package/dist/components/chunks/AUD-BtzWPqYb.mjs +1 -0
  147. package/dist/components/chunks/AZN-CqurmQCf.mjs +1 -0
  148. package/dist/components/chunks/BAM-BIzKn9hv.mjs +1 -0
  149. package/dist/components/chunks/BBD-MRoimplF.mjs +1 -0
  150. package/dist/components/chunks/BDT-Bee7cTPN.mjs +1 -0
  151. package/dist/components/chunks/BGN-CVwX6ENX.mjs +1 -0
  152. package/dist/components/chunks/BHD-BrhlWJhi.mjs +1 -0
  153. package/dist/components/chunks/BIF-BIihak1H.mjs +1 -0
  154. package/dist/components/chunks/BND-BgzHIIPb.mjs +1 -0
  155. package/dist/components/chunks/BOB-IXc-Q5Py.mjs +1 -0
  156. package/dist/components/chunks/BRL-dmJj0Yw7.mjs +1 -0
  157. package/dist/components/chunks/BSD-BI_ATcno.mjs +1 -0
  158. package/dist/components/chunks/BTN-BtPF0ivS.mjs +1 -0
  159. package/dist/components/chunks/BWP-CBgAie6p.mjs +1 -0
  160. package/dist/components/chunks/BYN-CcIFCeWI.mjs +1 -0
  161. package/dist/components/chunks/BZD-CoV6F5a3.mjs +1 -0
  162. package/dist/components/chunks/CAD-BQsAFoy_.mjs +1 -0
  163. package/dist/components/chunks/CHF-pyfkDghD.mjs +1 -0
  164. package/dist/components/chunks/CLP-Cyxppaj5.mjs +1 -0
  165. package/dist/components/chunks/CNY-BCJMo0sJ.mjs +1 -0
  166. package/dist/components/chunks/COP-Da1VJY76.mjs +1 -0
  167. package/dist/components/chunks/CRC-1uRmq_z3.mjs +1 -0
  168. package/dist/components/chunks/CUP-DqXeIInL.mjs +1 -0
  169. package/dist/components/chunks/CVE-BNNdxf8k.mjs +1 -0
  170. package/dist/components/chunks/CZK-BZ7RZgKh.mjs +1 -0
  171. package/dist/components/chunks/DJF-BvypQBIg.mjs +1 -0
  172. package/dist/components/chunks/DKK-B5TXhns9.mjs +1 -0
  173. package/dist/components/chunks/DOP-6cJjwUZV.mjs +1 -0
  174. package/dist/components/chunks/DZD-DBfSN25h.mjs +1 -0
  175. package/dist/components/chunks/EGP-CmqHBFw5.mjs +1 -0
  176. package/dist/components/chunks/ERN-BScYvIjb.mjs +1 -0
  177. package/dist/components/chunks/ETB-CSNiupv-.mjs +1 -0
  178. package/dist/components/chunks/EUR-DOrR3B7Q.mjs +1 -0
  179. package/dist/components/chunks/EaeraAutoComplete-DLjCHpAH.mjs +1 -0
  180. package/dist/components/chunks/EaeraAvatar-DzLNFZoA.mjs +1 -0
  181. package/dist/components/chunks/EaeraButton-DGfjUoa6.mjs +1 -0
  182. package/dist/components/chunks/EaeraButtonGroup-B5wTBG3Y.mjs +1 -0
  183. package/dist/components/chunks/EaeraCascadeSelect-CoSX_ACV.mjs +1 -0
  184. package/dist/components/chunks/EaeraCheckBoxList-ZKnHu1T9.mjs +1 -0
  185. package/dist/components/chunks/EaeraCheckbox-C_faN0pV.mjs +1 -0
  186. package/dist/components/chunks/EaeraColorPicker-iHdlgiAL.mjs +1 -0
  187. package/dist/components/chunks/EaeraCountryField-CHH7M7V-.mjs +1 -0
  188. package/dist/components/chunks/EaeraDataCard-Di8lwlRJ.mjs +1 -0
  189. package/dist/components/chunks/EaeraDatePicker-Cf58Nwsl.mjs +1 -0
  190. package/dist/components/chunks/EaeraDateTimePicker-B6M5r2xN.mjs +1 -0
  191. package/dist/components/chunks/EaeraDialog-uLsXC20k.mjs +1 -0
  192. package/dist/components/chunks/EaeraDivider-Dggvc36a.mjs +1 -0
  193. package/dist/components/chunks/EaeraDropdown-B00Ns2OY.mjs +1 -0
  194. package/dist/components/chunks/EaeraEmailSuggestion-DyhqpIEZ.mjs +1 -0
  195. package/dist/components/chunks/EaeraEmpty-CnGp7eaH.mjs +1 -0
  196. package/dist/components/chunks/EaeraForm-DZDIJnrX.mjs +1 -0
  197. package/dist/components/chunks/EaeraInput-CkbcAxy0.mjs +1 -0
  198. package/dist/components/chunks/EaeraInputNumber-CT5nnbWb.mjs +1 -0
  199. package/dist/components/chunks/EaeraInputPhone-BnmWwVX8.mjs +1 -0
  200. package/dist/components/chunks/EaeraInputPhoneNumber-CKLV2wUa.mjs +1 -0
  201. package/dist/components/chunks/EaeraInputTag-0b2arstP.mjs +1 -0
  202. package/dist/components/chunks/EaeraLink-aQ6798iE.mjs +1 -0
  203. package/dist/components/chunks/EaeraMenu-weWgU3ck.mjs +1 -0
  204. package/dist/components/chunks/EaeraPagination-D5_CjSZy.mjs +1 -0
  205. package/dist/components/chunks/EaeraRadio-Dz6nSJu0.mjs +1 -0
  206. package/dist/components/chunks/EaeraSegmented-DUUK7Sj9.mjs +1 -0
  207. package/dist/components/chunks/EaeraSelect-C25XUlir.mjs +1 -0
  208. package/dist/components/chunks/EaeraSelectGroup-DxK2CWYf.mjs +1 -0
  209. package/dist/components/chunks/EaeraSelectOther-BICVMrjI.mjs +1 -0
  210. package/dist/components/chunks/EaeraSelectStatus-D_6vpant.mjs +1 -0
  211. package/dist/components/chunks/EaeraSelectTag-Cien4ohI.mjs +1 -0
  212. package/dist/components/chunks/EaeraSelectV2-C8auhaRC.mjs +1 -0
  213. package/dist/components/chunks/EaeraSpinner-DzMwUlR7.mjs +1 -0
  214. package/dist/components/chunks/EaeraSwitch-BI3E0zPf.mjs +1 -0
  215. package/dist/components/chunks/EaeraTableV2-brB-3CB3.mjs +1 -0
  216. package/dist/components/chunks/EaeraTag-ChGPYV8x.mjs +1 -0
  217. package/dist/components/chunks/EaeraTimePicker-B4e4R3pD.mjs +1 -0
  218. package/dist/components/chunks/EaeraTooltip-BIlULHv4.mjs +1 -0
  219. package/dist/components/chunks/EaeraTree-CwZK7lqG.mjs +1 -0
  220. package/dist/components/chunks/EaeraTreeSelect-mLNgcoOv.mjs +1 -0
  221. package/dist/components/chunks/FJD-B9oZ7f-S.mjs +1 -0
  222. package/dist/components/chunks/GBP-BSLT1BNi.mjs +1 -0
  223. package/dist/components/chunks/GEL-Dos6LpKt.mjs +1 -0
  224. package/dist/components/chunks/GHS-CmzsxhJZ.mjs +1 -0
  225. package/dist/components/chunks/GMD-BeKZl_7g.mjs +1 -0
  226. package/dist/components/chunks/GNF-IrZIMErh.mjs +1 -0
  227. package/dist/components/chunks/GTQ-DQi-V-wb.mjs +1 -0
  228. package/dist/components/chunks/GYD-BBIjxvJz.mjs +1 -0
  229. package/dist/components/chunks/HNL-BnPsZNhz.mjs +1 -0
  230. package/dist/components/chunks/HRK-PaCUgLf3.mjs +1 -0
  231. package/dist/components/chunks/HTG-wpjfb2jf.mjs +1 -0
  232. package/dist/components/chunks/HUF-lBz2Mjsn.mjs +1 -0
  233. package/dist/components/chunks/IDR-DPpoJZmh.mjs +1 -0
  234. package/dist/components/chunks/ILS-DZNJcT8X.mjs +1 -0
  235. package/dist/components/chunks/INR-BGJqOBhi.mjs +1 -0
  236. package/dist/components/chunks/IQD-VqQj-GJ0.mjs +1 -0
  237. package/dist/components/chunks/IRR-SjCyxvU4.mjs +1 -0
  238. package/dist/components/chunks/ISK-h02F9sBU.mjs +1 -0
  239. package/dist/components/chunks/JMD-Ay7tPBzq.mjs +1 -0
  240. package/dist/components/chunks/JOD-C6Xjfj0H.mjs +1 -0
  241. package/dist/components/chunks/JPY-DWkWuy_V.mjs +1 -0
  242. package/dist/components/chunks/KES-DMYY135i.mjs +1 -0
  243. package/dist/components/chunks/KGS-DTbesm0V.mjs +1 -0
  244. package/dist/components/chunks/KHR-CSJP4KkF.mjs +1 -0
  245. package/dist/components/chunks/KMF-CzXUehHr.mjs +1 -0
  246. package/dist/components/chunks/KPW-Da6CjzIi.mjs +1 -0
  247. package/dist/components/chunks/KRW-BFSmJfql.mjs +1 -0
  248. package/dist/components/chunks/KWD-CRfxDJyT.mjs +1 -0
  249. package/dist/components/chunks/KZT-yi3iX7Do.mjs +1 -0
  250. package/dist/components/chunks/LAK-TWrDmK_h.mjs +1 -0
  251. package/dist/components/chunks/LBP-sgDsUbTG.mjs +1 -0
  252. package/dist/components/chunks/LKR-C3iqrhtV.mjs +1 -0
  253. package/dist/components/chunks/LRD-Cik03G-n.mjs +1 -0
  254. package/dist/components/chunks/LSL-BSXzO5yZ.mjs +1 -0
  255. package/dist/components/chunks/LYD-DAqi2GE4.mjs +1 -0
  256. package/dist/components/chunks/MAD-DEigxwp5.mjs +1 -0
  257. package/dist/components/chunks/MDL-DT1dqLKz.mjs +1 -0
  258. package/dist/components/chunks/MGA-rILnbyBm.mjs +1 -0
  259. package/dist/components/chunks/MMK-pU0TpUvj.mjs +1 -0
  260. package/dist/components/chunks/MNT-C0UCWb1g.mjs +1 -0
  261. package/dist/components/chunks/MRU-C6n-Fioc.mjs +1 -0
  262. package/dist/components/chunks/MUR-DLdek62O.mjs +1 -0
  263. package/dist/components/chunks/MVR-D9npw7LP.mjs +1 -0
  264. package/dist/components/chunks/MWK-DJcKanRw.mjs +1 -0
  265. package/dist/components/chunks/MXN-20XF5m8J.mjs +1 -0
  266. package/dist/components/chunks/MYR-BBDwda8m.mjs +1 -0
  267. package/dist/components/chunks/MZN-trA3AzEc.mjs +1 -0
  268. package/dist/components/chunks/NAD-hWeuTCbN.mjs +1 -0
  269. package/dist/components/chunks/NGN-Db0kMv-x.mjs +1 -0
  270. package/dist/components/chunks/NIO-CB-rojQd.mjs +1 -0
  271. package/dist/components/chunks/NOK-41x6vmMG.mjs +1 -0
  272. package/dist/components/chunks/NPR-DKhChlsa.mjs +1 -0
  273. package/dist/components/chunks/NZD-v4E2GiWK.mjs +1 -0
  274. package/dist/components/chunks/OMR-RnzKe0x4.mjs +1 -0
  275. package/dist/components/chunks/PAB-CBfpJule.mjs +1 -0
  276. package/dist/components/chunks/PEN-bcdVP6Aj.mjs +1 -0
  277. package/dist/components/chunks/PGK-aoM842N1.mjs +1 -0
  278. package/dist/components/chunks/PHP-FZaJdrGv.mjs +1 -0
  279. package/dist/components/chunks/PKR-CuYDrCz7.mjs +1 -0
  280. package/dist/components/chunks/PLN-BNgcI103.mjs +1 -0
  281. package/dist/components/chunks/PYG-Dw45d0mq.mjs +1 -0
  282. package/dist/components/chunks/QAR-CHNbgHH2.mjs +1 -0
  283. package/dist/components/chunks/RON-0XpqV8GU.mjs +1 -0
  284. package/dist/components/chunks/RSD-CC33Nxk8.mjs +1 -0
  285. package/dist/components/chunks/RUB-BakjQMSL.mjs +1 -0
  286. package/dist/components/chunks/RWF-Biv_MunL.mjs +1 -0
  287. package/dist/components/chunks/SAR-CTslh-Pr.mjs +1 -0
  288. package/dist/components/chunks/SDG-Cwo2Gd3L.mjs +1 -0
  289. package/dist/components/chunks/SEK-r1-5Owmp.mjs +1 -0
  290. package/dist/components/chunks/SGD-BLXsQmha.mjs +1 -0
  291. package/dist/components/chunks/SOS-CtPk73aT.mjs +1 -0
  292. package/dist/components/chunks/SRD-Cd7Ofpfs.mjs +1 -0
  293. package/dist/components/chunks/SYP-Dg41lI66.mjs +1 -0
  294. package/dist/components/chunks/THB-DSXbO5KY.mjs +1 -0
  295. package/dist/components/chunks/TJS-DRNZ7mzF.mjs +1 -0
  296. package/dist/components/chunks/TMT-CIwrSxkV.mjs +1 -0
  297. package/dist/components/chunks/TND-Bx-m3AIU.mjs +1 -0
  298. package/dist/components/chunks/TRY-DlhUsvbA.mjs +1 -0
  299. package/dist/components/chunks/TTD-pPNqknH1.mjs +1 -0
  300. package/dist/components/chunks/TWD-CROgIO6_.mjs +1 -0
  301. package/dist/components/chunks/TZS-B6I3_d4c.mjs +1 -0
  302. package/dist/components/chunks/UAH-BEkkWreD.mjs +1 -0
  303. package/dist/components/chunks/UGX-RV6UjVTI.mjs +1 -0
  304. package/dist/components/chunks/USD-CkraS8If.mjs +1 -0
  305. package/dist/components/chunks/UYU-CoRRcVFy.mjs +1 -0
  306. package/dist/components/chunks/VES-ulpGVLpY.mjs +1 -0
  307. package/dist/components/chunks/VND-D-EHXKOT.mjs +1 -0
  308. package/dist/components/chunks/XAF-CjoNMgYx.mjs +1 -0
  309. package/dist/components/chunks/XCD-DZw52c7T.mjs +1 -0
  310. package/dist/components/chunks/XOF-Cm_2RUYU.mjs +1 -0
  311. package/dist/components/chunks/ZAR-CAW3BT2s.mjs +1 -0
  312. package/dist/components/chunks/ZMW-sYazti42.mjs +1 -0
  313. package/dist/components/chunks/ZWL-DwYHbtIE.mjs +1 -0
  314. package/dist/components/chunks/_based-BgzDeRyu.mjs +1 -0
  315. package/dist/components/chunks/_plugin-vue_export-helper-BCo6x5W8.mjs +1 -0
  316. package/dist/components/chunks/_read-gORfN-NO.mjs +1 -0
  317. package/dist/components/chunks/_snow-BTzITEWw.mjs +1 -0
  318. package/dist/components/chunks/aave-nZOdSEB6.mjs +1 -0
  319. package/dist/components/chunks/abat-C59rB7Pq.mjs +1 -0
  320. package/dist/components/chunks/abbc-b5Ahsqqu.mjs +1 -0
  321. package/dist/components/chunks/abt-BGym5n-G.mjs +1 -0
  322. package/dist/components/chunks/abusd-CU5oI-Mg.mjs +1 -0
  323. package/dist/components/chunks/ac3-BLQOa64q.mjs +1 -0
  324. package/dist/components/chunks/aca-B4OFog9q.mjs +1 -0
  325. package/dist/components/chunks/act-DZBgzlSK.mjs +1 -0
  326. package/dist/components/chunks/ada-CkiWP_IZ.mjs +1 -0
  327. package/dist/components/chunks/adai-CORmkhF7.mjs +1 -0
  328. package/dist/components/chunks/adb-8zGpXdgQ.mjs +1 -0
  329. package/dist/components/chunks/adx-jSAM3imA.mjs +1 -0
  330. package/dist/components/chunks/ae-C8YzPj6w.mjs +1 -0
  331. package/dist/components/chunks/aenj-CsnE586r.mjs +1 -0
  332. package/dist/components/chunks/aeon-CKi-ZR_j.mjs +1 -0
  333. package/dist/components/chunks/aergo-WGNGvhYC.mjs +1 -0
  334. package/dist/components/chunks/aeth-DyPUH2K3.mjs +1 -0
  335. package/dist/components/chunks/agi-BVKU6Pkw.mjs +1 -0
  336. package/dist/components/chunks/aidoge-CPHY2QJK.mjs +1 -0
  337. package/dist/components/chunks/aion-xkSbA43w.mjs +1 -0
  338. package/dist/components/chunks/ait-DDrSB8Wc.mjs +1 -0
  339. package/dist/components/chunks/aknc-DfVltZ4x.mjs +1 -0
  340. package/dist/components/chunks/akro-Cfbx4EOq.mjs +1 -0
  341. package/dist/components/chunks/akt-CsvJu7Wd.mjs +1 -0
  342. package/dist/components/chunks/alcx-DljIzQ3e.mjs +1 -0
  343. package/dist/components/chunks/alend-ByXdt-Og.mjs +1 -0
  344. package/dist/components/chunks/aleph-BwmRyLpz.mjs +1 -0
  345. package/dist/components/chunks/aleth-BpEPE1nv.mjs +1 -0
  346. package/dist/components/chunks/algo-CZXOcpFt.mjs +1 -0
  347. package/dist/components/chunks/ali-d6RbTxrW.mjs +1 -0
  348. package/dist/components/chunks/alink-Ik_9bfl0.mjs +1 -0
  349. package/dist/components/chunks/alis-BfRl0S3r.mjs +1 -0
  350. package/dist/components/chunks/alpha-CwbZJwcx.mjs +1 -0
  351. package/dist/components/chunks/alusd-QlOuy8Pg.mjs +1 -0
  352. package/dist/components/chunks/alx-C7dcpghG.mjs +1 -0
  353. package/dist/components/chunks/amana-BWbLJCFh.mjs +1 -0
  354. package/dist/components/chunks/amb-Cna5XLmM.mjs +1 -0
  355. package/dist/components/chunks/amkr-CustBP6q.mjs +1 -0
  356. package/dist/components/chunks/amkt-B1Wuz0IW.mjs +1 -0
  357. package/dist/components/chunks/amlt-BE9_CKeB.mjs +1 -0
  358. package/dist/components/chunks/amp-BDVvMXN8.mjs +1 -0
  359. package/dist/components/chunks/ampl-ClpdLREW.mjs +1 -0
  360. package/dist/components/chunks/anc-CSwT5z0Y.mjs +1 -0
  361. package/dist/components/chunks/anj-CWTnOyoK.mjs +1 -0
  362. package/dist/components/chunks/ankr-DgKI0Nqp.mjs +1 -0
  363. package/dist/components/chunks/ant-CvK619U2.mjs +1 -0
  364. package/dist/components/chunks/ape-DXtNZkeY.mjs +1 -0
  365. package/dist/components/chunks/aph-Coh88Ku2.mjs +1 -0
  366. package/dist/components/chunks/apl-Dthv00el.mjs +1 -0
  367. package/dist/components/chunks/appc-CA6Q_nie.mjs +1 -0
  368. package/dist/components/chunks/apt-DDNyS8AM.mjs +1 -0
  369. package/dist/components/chunks/apw-CDqjcIt8.mjs +1 -0
  370. package/dist/components/chunks/apy-De_9GG_p.mjs +1 -0
  371. package/dist/components/chunks/ar-DxeG4CEi.mjs +1 -0
  372. package/dist/components/chunks/arb-D-RJqGoB.mjs +1 -0
  373. package/dist/components/chunks/arbs-xXlSfXfo.mjs +1 -0
  374. package/dist/components/chunks/archive-3itC7tsW.mjs +1 -0
  375. package/dist/components/chunks/ardr-Dv1onIVW.mjs +1 -0
  376. package/dist/components/chunks/aren-DxFZIxlv.mjs +1 -0
  377. package/dist/components/chunks/ark-WtK6eMyG.mjs +1 -0
  378. package/dist/components/chunks/arkm-BlTsYDKg.mjs +1 -0
  379. package/dist/components/chunks/armor-DojA8Lft.mjs +1 -0
  380. package/dist/components/chunks/arn-DRNnds4c.mjs +1 -0
  381. package/dist/components/chunks/aro-BdGogDcU.mjs +1 -0
  382. package/dist/components/chunks/arrr-BqKo1Tb-.mjs +1 -0
  383. package/dist/components/chunks/asm-cRUWBpCg.mjs +1 -0
  384. package/dist/components/chunks/asnx-DrJOy8k4.mjs +1 -0
  385. package/dist/components/chunks/ast-CHKKqHCZ.mjs +1 -0
  386. package/dist/components/chunks/astro-mqthXwR7.mjs +1 -0
  387. package/dist/components/chunks/asusd-D38gsS1z.mjs +1 -0
  388. package/dist/components/chunks/atmi-DyijbX6L.mjs +1 -0
  389. package/dist/components/chunks/atom-CEdu12Vr.mjs +1 -0
  390. package/dist/components/chunks/atusd-DvblgjuH.mjs +1 -0
  391. package/dist/components/chunks/auc-C8YL2_Ju.mjs +1 -0
  392. package/dist/components/chunks/audio-BIHP1LVr.mjs +1 -0
  393. package/dist/components/chunks/aura-CIPgbb0f.mjs +1 -0
  394. package/dist/components/chunks/ausdc-Dkc_xFL5.mjs +1 -0
  395. package/dist/components/chunks/ausdt-CzU64p0Z.mjs +1 -0
  396. package/dist/components/chunks/auto-CFPN8X14.mjs +1 -0
  397. package/dist/components/chunks/avax-BmegoB7d.mjs +1 -0
  398. package/dist/components/chunks/avinoc-Bxoo0m20.mjs +1 -0
  399. package/dist/components/chunks/awbtc-CNV8xMJd.mjs +1 -0
  400. package/dist/components/chunks/awc-BxUu3jIZ.mjs +1 -0
  401. package/dist/components/chunks/aweth-Bn5aQLH5.mjs +1 -0
  402. package/dist/components/chunks/axp-DYiO7Ydl.mjs +1 -0
  403. package/dist/components/chunks/axs-D84sLChr.mjs +1 -0
  404. package/dist/components/chunks/ayfi-CE-Yg6y_.mjs +1 -0
  405. package/dist/components/chunks/azero-BpToIlCQ.mjs +1 -0
  406. package/dist/components/chunks/azrx-i8XIE5Dg.mjs +1 -0
  407. package/dist/components/chunks/babydoge-BrayVnE4.mjs +1 -0
  408. package/dist/components/chunks/bac-Dbnjv4hr.mjs +1 -0
  409. package/dist/components/chunks/badger-BfVSYozJ.mjs +1 -0
  410. package/dist/components/chunks/bal-DoR2QRkP.mjs +1 -0
  411. package/dist/components/chunks/bam-C6Y5ZYMg.mjs +1 -0
  412. package/dist/components/chunks/band-BeKIa4Hm.mjs +1 -0
  413. package/dist/components/chunks/bao-DTWBoPMd.mjs +1 -0
  414. package/dist/components/chunks/bat-DbPh8QoZ.mjs +1 -0
  415. package/dist/components/chunks/bay-DVFp847J.mjs +1 -0
  416. package/dist/components/chunks/bbr-C8WVlsBH.mjs +1 -0
  417. package/dist/components/chunks/bcd-CjfrRyNw.mjs +1 -0
  418. package/dist/components/chunks/bch-BPjtefiD.mjs +1 -0
  419. package/dist/components/chunks/bcha-D0Ib4SP6.mjs +1 -0
  420. package/dist/components/chunks/bcn-68XyXBlx.mjs +1 -0
  421. package/dist/components/chunks/bco-DzYpwC76.mjs +1 -0
  422. package/dist/components/chunks/bel-BAdh5dqv.mjs +1 -0
  423. package/dist/components/chunks/beta-UTnBZcBd.mjs +1 -0
  424. package/dist/components/chunks/bf-BbYgDH4z.mjs +1 -0
  425. package/dist/components/chunks/bfc-Bu2w2nvU.mjs +1 -0
  426. package/dist/components/chunks/bgb-Btj5kO47.mjs +1 -0
  427. package/dist/components/chunks/bico-B55jqhcL.mjs +1 -0
  428. package/dist/components/chunks/bifi-DLlKauaA.mjs +1 -0
  429. package/dist/components/chunks/birb-CXzOKFFZ.mjs +1 -0
  430. package/dist/components/chunks/bit-2-D7gomBiP.mjs +1 -0
  431. package/dist/components/chunks/bit-U7qtJpkE.mjs +1 -0
  432. package/dist/components/chunks/bitcoin-Bw8EZ2ma.mjs +1 -0
  433. package/dist/components/chunks/bix-BeIgubhi.mjs +1 -0
  434. package/dist/components/chunks/blank-CYsgMafR.mjs +1 -0
  435. package/dist/components/chunks/bld-B3NRdzT-.mjs +1 -0
  436. package/dist/components/chunks/blk-fvVMbrvC.mjs +1 -0
  437. package/dist/components/chunks/block-Cl7R9wTk.mjs +1 -0
  438. package/dist/components/chunks/blt-6bHxiw-3.mjs +1 -0
  439. package/dist/components/chunks/blue-gdB1PIqe.mjs +1 -0
  440. package/dist/components/chunks/blur-BdWA7kP2.mjs +1 -0
  441. package/dist/components/chunks/blz-BKfYReRT.mjs +1 -0
  442. package/dist/components/chunks/bmda-BmIXfSJj.mjs +1 -0
  443. package/dist/components/chunks/bnb-Wd7APC0q.mjs +1 -0
  444. package/dist/components/chunks/bnc-XmRYTemx.mjs +1 -0
  445. package/dist/components/chunks/bnt-Cm_RdCQO.mjs +1 -0
  446. package/dist/components/chunks/bnx-CYngYPRS.mjs +1 -0
  447. package/dist/components/chunks/bob-BtUslqIr.mjs +1 -0
  448. package/dist/components/chunks/bond-2-BrCg2egl.mjs +1 -0
  449. package/dist/components/chunks/bond-S95UApPo.mjs +1 -0
  450. package/dist/components/chunks/bondly-YHmfOH8u.mjs +1 -0
  451. package/dist/components/chunks/bora-C4bz0aCy.mjs +1 -0
  452. package/dist/components/chunks/botto-CVlJ1tjT.mjs +1 -0
  453. package/dist/components/chunks/box-CZ4C1SxN.mjs +1 -0
  454. package/dist/components/chunks/bpt-DiOHDP0G.mjs +1 -0
  455. package/dist/components/chunks/bqx-CHlI4wtk.mjs +1 -0
  456. package/dist/components/chunks/brd-CMRCKLyr.mjs +1 -0
  457. package/dist/components/chunks/brise-CL7Vlujv.mjs +1 -0
  458. package/dist/components/chunks/brock-BHdRGBBu.mjs +1 -0
  459. package/dist/components/chunks/bsw-B1QUf1BE.mjs +1 -0
  460. package/dist/components/chunks/btc-C0ACyBQO.mjs +1 -0
  461. package/dist/components/chunks/btc__-DgNTi6F2.mjs +1 -0
  462. package/dist/components/chunks/btcd-BRZ7_5jC.mjs +1 -0
  463. package/dist/components/chunks/btcp-B85PrRi2.mjs +1 -0
  464. package/dist/components/chunks/btg-DHeYVQ8p.mjs +1 -0
  465. package/dist/components/chunks/btmx-B1qqhzzg.mjs +1 -0
  466. package/dist/components/chunks/bto-JH7RzqyT.mjs +1 -0
  467. package/dist/components/chunks/btr-DwIRc8Dd.mjs +1 -0
  468. package/dist/components/chunks/bts-CXkMbm7q.mjs +1 -0
  469. package/dist/components/chunks/btt-B6RWsiW6.mjs +1 -0
  470. package/dist/components/chunks/btu-DlfO0Wur.mjs +1 -0
  471. package/dist/components/chunks/bu-lq2Jl3Ei.mjs +1 -0
  472. package/dist/components/chunks/bunny-DEQDKcG2.mjs +1 -0
  473. package/dist/components/chunks/busd-BqVmzNXl.mjs +1 -0
  474. package/dist/components/chunks/bwajna-g5VAtlQE.mjs +1 -0
  475. package/dist/components/chunks/bwt-BJkWguKP.mjs +1 -0
  476. package/dist/components/chunks/bz-D6mRGigD.mjs +1 -0
  477. package/dist/components/chunks/bznt-DVfruaPf.mjs +1 -0
  478. package/dist/components/chunks/bzrx-CoY9Ngss.mjs +1 -0
  479. package/dist/components/chunks/c20-DZbObTao.mjs +1 -0
  480. package/dist/components/chunks/c98-C2zpm3Bh.mjs +1 -0
  481. package/dist/components/chunks/cake-CeHYWOoy.mjs +1 -0
  482. package/dist/components/chunks/canto-B2NztAU9.mjs +1 -0
  483. package/dist/components/chunks/cap-hYQ-YhKu.mjs +1 -0
  484. package/dist/components/chunks/capp-CkM0hvJu.mjs +1 -0
  485. package/dist/components/chunks/car-CLS0KAJC.mjs +1 -0
  486. package/dist/components/chunks/card-PLx8-Am-.mjs +1 -0
  487. package/dist/components/chunks/cbat-Bnt3RVx-.mjs +1 -0
  488. package/dist/components/chunks/cbc-lVpSv-b-.mjs +1 -0
  489. package/dist/components/chunks/cbeth-DbpIIDjq.mjs +1 -0
  490. package/dist/components/chunks/cbt-Cs9NUQqp.mjs +1 -0
  491. package/dist/components/chunks/cccx-DaoEyjNn.mjs +1 -0
  492. package/dist/components/chunks/cdai-DzMCIGI2.mjs +1 -0
  493. package/dist/components/chunks/cdt-B1Zf0XVq.mjs +1 -0
  494. package/dist/components/chunks/ceek-BR31UL-s.mjs +1 -0
  495. package/dist/components/chunks/cel-DS_HlJqF.mjs +1 -0
  496. package/dist/components/chunks/celo-CGBFxB9p.mjs +1 -0
  497. package/dist/components/chunks/celr-DJuDtdQP.mjs +1 -0
  498. package/dist/components/chunks/cennz-3DMLNy0f.mjs +1 -0
  499. package/dist/components/chunks/cet-C7lpaVne.mjs +1 -0
  500. package/dist/components/chunks/ceth-Tn3f2X_5.mjs +1 -0
  501. package/dist/components/chunks/cfg-VOMh5vVc.mjs +1 -0
  502. package/dist/components/chunks/cfx-CrPAKRAM.mjs +1 -0
  503. package/dist/components/chunks/chai-BAUnjbAU.mjs +1 -0
  504. package/dist/components/chunks/chain-BRsrxZjN.mjs +1 -0
  505. package/dist/components/chunks/chat-CacunNar.mjs +1 -0
  506. package/dist/components/chunks/chia-KEfg6tuU.mjs +1 -0
  507. package/dist/components/chunks/cho-Cagejgod.mjs +1 -0
  508. package/dist/components/chunks/chr-C7pSUdcB.mjs +1 -0
  509. package/dist/components/chunks/chsb-BLA3WUO3.mjs +1 -0
  510. package/dist/components/chunks/chz-BBsLngbc.mjs +1 -0
  511. package/dist/components/chunks/cirus-C04mlaUt.mjs +1 -0
  512. package/dist/components/chunks/ckb-C7-7XOPL.mjs +1 -0
  513. package/dist/components/chunks/clo-DEKyhF5i.mjs +1 -0
  514. package/dist/components/chunks/cloak-C1aE5sBY.mjs +1 -0
  515. package/dist/components/chunks/clout-BeXEZIjn.mjs +1 -0
  516. package/dist/components/chunks/cmt-DPjIsfRl.mjs +1 -0
  517. package/dist/components/chunks/cnc-Cza0YB05.mjs +1 -0
  518. package/dist/components/chunks/cnd-B0whIdxM.mjs +1 -0
  519. package/dist/components/chunks/cnx-DR5Zto1C.mjs +1 -0
  520. package/dist/components/chunks/coc-D8JgDiOV.mjs +1 -0
  521. package/dist/components/chunks/cocn-BxzBzkR0.mjs +1 -0
  522. package/dist/components/chunks/comai-C-PFDFB7.mjs +1 -0
  523. package/dist/components/chunks/comp-DD1rJWBc.mjs +1 -0
  524. package/dist/components/chunks/coni-w2zXocSm.mjs +1 -0
  525. package/dist/components/chunks/core-BVxb9Jm8.mjs +1 -0
  526. package/dist/components/chunks/cosm-B393f6Uz.mjs +1 -0
  527. package/dist/components/chunks/coti-YeYQf9rB.mjs +1 -0
  528. package/dist/components/chunks/country-flag.esm-DgNn8eAH.mjs +1 -0
  529. package/dist/components/chunks/cov-DHbCKDOK.mjs +1 -0
  530. package/dist/components/chunks/cova-DpuP4KyP.mjs +1 -0
  531. package/dist/components/chunks/cover-k7ZC-kjj.mjs +1 -0
  532. package/dist/components/chunks/cpc-BDNIBEFd.mjs +1 -0
  533. package/dist/components/chunks/cpx-CaoblZyU.mjs +1 -0
  534. package/dist/components/chunks/crd-BBOlVF87.mjs +1 -0
  535. package/dist/components/chunks/cre-2-Citr92so.mjs +1 -0
  536. package/dist/components/chunks/cre-BGgTOTiN.mjs +1 -0
  537. package/dist/components/chunks/cream--C7vsGsR.mjs +1 -0
  538. package/dist/components/chunks/cred-D1AXq5HN.mjs +1 -0
  539. package/dist/components/chunks/crep-DpyXkE7s.mjs +1 -0
  540. package/dist/components/chunks/cro-CngrOLVo.mjs +1 -0
  541. package/dist/components/chunks/crpt-Bx_XPqvA.mjs +1 -0
  542. package/dist/components/chunks/crv-BIo6K-C6.mjs +1 -0
  543. package/dist/components/chunks/crvusd-DTfFfEe8.mjs +1 -0
  544. package/dist/components/chunks/cs-B2soFfbe.mjs +1 -0
  545. package/dist/components/chunks/csai-BQ98W1PT.mjs +1 -0
  546. package/dist/components/chunks/csc-jS8Q6kc6.mjs +1 -0
  547. package/dist/components/chunks/cspr-BnT75TjK.mjs +1 -0
  548. package/dist/components/chunks/ctc-DUzd1gjo.mjs +1 -0
  549. package/dist/components/chunks/ctsi-DsBAn-1i.mjs +1 -0
  550. package/dist/components/chunks/ctxc-BK67aSI_.mjs +1 -0
  551. package/dist/components/chunks/cube-8IyS-ahr.mjs +1 -0
  552. package/dist/components/chunks/cusdc-bRXB63SS.mjs +1 -0
  553. package/dist/components/chunks/cv-cWyyd2wY.mjs +1 -0
  554. package/dist/components/chunks/cvc-CQjn-gzY.mjs +1 -0
  555. package/dist/components/chunks/cvp-D-U9jLDO.mjs +1 -0
  556. package/dist/components/chunks/cvt-x8Cud5gJ.mjs +1 -0
  557. package/dist/components/chunks/cvx-CGyk5LDi.mjs +1 -0
  558. package/dist/components/chunks/cwbtc-CpRYVMNI.mjs +1 -0
  559. package/dist/components/chunks/cyber-BBCL7gm4.mjs +1 -0
  560. package/dist/components/chunks/czrx-BsouJLGX.mjs +1 -0
  561. package/dist/components/chunks/d2-DA0AZhPm.mjs +1 -0
  562. package/dist/components/chunks/dadi-BljmeL4u.mjs +1 -0
  563. package/dist/components/chunks/dafi-b0aR7MN6.mjs +1 -0
  564. package/dist/components/chunks/dag-BLZUILjo.mjs +1 -0
  565. package/dist/components/chunks/dai-C1IwRKpi.mjs +1 -0
  566. package/dist/components/chunks/dao-0JHriOU2.mjs +1 -0
  567. package/dist/components/chunks/dasc-Z8wTmQoY.mjs +1 -0
  568. package/dist/components/chunks/dash-DWxMAXc_.mjs +1 -0
  569. package/dist/components/chunks/dat-DrR1QEL-.mjs +1 -0
  570. package/dist/components/chunks/data-X7zKxjOl.mjs +1 -0
  571. package/dist/components/chunks/datx-BKziMa41.mjs +1 -0
  572. package/dist/components/chunks/dbc-BsIg6-_O.mjs +1 -0
  573. package/dist/components/chunks/dcb-DQHM-EF1.mjs +1 -0
  574. package/dist/components/chunks/dcc-BXoMwbGl.mjs +1 -0
  575. package/dist/components/chunks/dck-DJakzStI.mjs +1 -0
  576. package/dist/components/chunks/dcn-CtIcBa_s.mjs +1 -0
  577. package/dist/components/chunks/dcr-BD3lN-Ra.mjs +1 -0
  578. package/dist/components/chunks/dct-2J99OKM9.mjs +1 -0
  579. package/dist/components/chunks/ddd-4nCDDfzQ.mjs +1 -0
  580. package/dist/components/chunks/del-DB00PuVK.mjs +1 -0
  581. package/dist/components/chunks/dent-BQP3MzGT.mjs +1 -0
  582. package/dist/components/chunks/dep-DyP5Prkv.mjs +1 -0
  583. package/dist/components/chunks/deri-BY58ZSvf.mjs +1 -0
  584. package/dist/components/chunks/deso-NJrVIiG_.mjs +1 -0
  585. package/dist/components/chunks/dexe-2-APuMnywi.mjs +1 -0
  586. package/dist/components/chunks/dexe-BHFq38dz.mjs +1 -0
  587. package/dist/components/chunks/df-D_w7FpDV.mjs +1 -0
  588. package/dist/components/chunks/dfi-Bl753kQs.mjs +1 -0
  589. package/dist/components/chunks/dft-BvrQ4wq6.mjs +1 -0
  590. package/dist/components/chunks/dfyn-B3tMB0AC.mjs +1 -0
  591. package/dist/components/chunks/dgb-CWaY8WQl.mjs +1 -0
  592. package/dist/components/chunks/dgd-BDyLS796.mjs +1 -0
  593. package/dist/components/chunks/dgtx-DrFdWtVC.mjs +1 -0
  594. package/dist/components/chunks/dht-C28u3QbP.mjs +1 -0
  595. package/dist/components/chunks/dia-gN4uoqT0.mjs +1 -0
  596. package/dist/components/chunks/dinero-COGAgRb-.mjs +1 -0
  597. package/dist/components/chunks/divi-BFWz0c8z.mjs +1 -0
  598. package/dist/components/chunks/dlt-QgRhYbKU.mjs +1 -0
  599. package/dist/components/chunks/dmt-DHbwII4K.mjs +1 -0
  600. package/dist/components/chunks/dmtr-BIAH8i_1.mjs +1 -0
  601. package/dist/components/chunks/dnt-SI0d8yAA.mjs +1 -0
  602. package/dist/components/chunks/dock-W-xV_b-4.mjs +1 -0
  603. package/dist/components/chunks/dodo-B_0XohbE.mjs +1 -0
  604. package/dist/components/chunks/doge-CXf-ul-8.mjs +1 -0
  605. package/dist/components/chunks/dojo-JhPY76ev.mjs +1 -0
  606. package/dist/components/chunks/dome-BheFLaa8.mjs +1 -0
  607. package/dist/components/chunks/dor-DMG5eQN_.mjs +1 -0
  608. package/dist/components/chunks/dot-CH8U8iMa.mjs +1 -0
  609. package/dist/components/chunks/drgn-0IBbVVyk.mjs +1 -0
  610. package/dist/components/chunks/drop-C5hoVC-s.mjs +1 -0
  611. package/dist/components/chunks/dta-BmdVTKo2.mjs +1 -0
  612. package/dist/components/chunks/dtr-D8ldd5Lp.mjs +1 -0
  613. package/dist/components/chunks/dtx-CSdKmcLm.mjs +1 -0
  614. package/dist/components/chunks/dvf-uC8bBra0.mjs +1 -0
  615. package/dist/components/chunks/dxd-CZ1GGRGK.mjs +1 -0
  616. package/dist/components/chunks/dxt-D2AYbJp_.mjs +1 -0
  617. package/dist/components/chunks/dydx-Cn2katbB.mjs +1 -0
  618. package/dist/components/chunks/eco-D7aPNuUW.mjs +1 -0
  619. package/dist/components/chunks/edg-DFRgBYmP.mjs +1 -0
  620. package/dist/components/chunks/edo-2Gk8oTUK.mjs +1 -0
  621. package/dist/components/chunks/edu-DcLWmuvu.mjs +1 -0
  622. package/dist/components/chunks/efi-BaawbPnf.mjs +1 -0
  623. package/dist/components/chunks/efx-IOF8nYn0.mjs +1 -0
  624. package/dist/components/chunks/egld-D4i9uYxx.mjs +1 -0
  625. package/dist/components/chunks/egt-mjkI3xrb.mjs +1 -0
  626. package/dist/components/chunks/ekg-CwCIkW-E.mjs +1 -0
  627. package/dist/components/chunks/ekt-d-alaZpV.mjs +1 -0
  628. package/dist/components/chunks/ela-CtwWPxda.mjs +1 -0
  629. package/dist/components/chunks/elan-lJE8DIgW.mjs +1 -0
  630. package/dist/components/chunks/elec-Ck5hmZ9Q.mjs +1 -0
  631. package/dist/components/chunks/elf-CGt8TK0n.mjs +1 -0
  632. package/dist/components/chunks/elg-CBoJOv9k.mjs +1 -0
  633. package/dist/components/chunks/emc-BMF-ad0F.mjs +1 -0
  634. package/dist/components/chunks/emc2-CtENckKa.mjs +1 -0
  635. package/dist/components/chunks/eng-DNyREAj0.mjs +1 -0
  636. package/dist/components/chunks/enix-DTSPD0KZ.mjs +1 -0
  637. package/dist/components/chunks/enj-B2k9ufCA.mjs +1 -0
  638. package/dist/components/chunks/ens-SrpNiP5e.mjs +1 -0
  639. package/dist/components/chunks/ents-DXxn7LZr.mjs +1 -0
  640. package/dist/components/chunks/eos-az4wECLn.mjs +1 -0
  641. package/dist/components/chunks/eosdac-Cab1d40r.mjs +1 -0
  642. package/dist/components/chunks/eqb-Dfb5cRfs.mjs +1 -0
  643. package/dist/components/chunks/erg-Bo1mXYu_.mjs +1 -0
  644. package/dist/components/chunks/ern-90TNnxwT.mjs +1 -0
  645. package/dist/components/chunks/esd-BdScTsMF.mjs +1 -0
  646. package/dist/components/chunks/esp-C4jEux3K.mjs +1 -0
  647. package/dist/components/chunks/ess-Toa5XVqc.mjs +1 -0
  648. package/dist/components/chunks/etc-FBV00dJ-.mjs +1 -0
  649. package/dist/components/chunks/eth-MwDeJCgh.mjs +1 -0
  650. package/dist/components/chunks/ethw-kwILB5xZ.mjs +1 -0
  651. package/dist/components/chunks/etn-CDzhD957.mjs +1 -0
  652. package/dist/components/chunks/etp-uAOPhh8Q.mjs +1 -0
  653. package/dist/components/chunks/etz-BIGahGEA.mjs +1 -0
  654. package/dist/components/chunks/euroc-_JbnTGOt.mjs +1 -0
  655. package/dist/components/chunks/eventListener-o1XlgLVq.mjs +1 -0
  656. package/dist/components/chunks/ever-nER400a-.mjs +1 -0
  657. package/dist/components/chunks/evmos-BRLW_mfw.mjs +1 -0
  658. package/dist/components/chunks/evx-ClLc_1D4.mjs +1 -0
  659. package/dist/components/chunks/ewt-BVdLauRE.mjs +1 -0
  660. package/dist/components/chunks/exrn-BapsqHqW.mjs +1 -0
  661. package/dist/components/chunks/exy-CRcyWyX2.mjs +1 -0
  662. package/dist/components/chunks/ezy-DCcYn8II.mjs +1 -0
  663. package/dist/components/chunks/fab-CDRng0tk.mjs +1 -0
  664. package/dist/components/chunks/fame-Bien1qtE.mjs +1 -0
  665. package/dist/components/chunks/farm-njCA32xw.mjs +1 -0
  666. package/dist/components/chunks/fct-D5hxdJWC.mjs +1 -0
  667. package/dist/components/chunks/feed-CQogPZ_f.mjs +1 -0
  668. package/dist/components/chunks/fei-Ay5S28DD.mjs +1 -0
  669. package/dist/components/chunks/fet-DbAAnZAA.mjs +1 -0
  670. package/dist/components/chunks/fida-CmnyvvN5.mjs +1 -0
  671. package/dist/components/chunks/fidu-Dy5bDfyq.mjs +1 -0
  672. package/dist/components/chunks/fil-C9T_YoMH.mjs +1 -0
  673. package/dist/components/chunks/filda-WuRSmF2B.mjs +1 -0
  674. package/dist/components/chunks/fis-BiSPCfUG.mjs +1 -0
  675. package/dist/components/chunks/flash-BKAAmhe3.mjs +1 -0
  676. package/dist/components/chunks/flex-DRSqST9y.mjs +1 -0
  677. package/dist/components/chunks/floki-C9w9Gvz1.mjs +1 -0
  678. package/dist/components/chunks/flow-wiwCcEDN.mjs +1 -0
  679. package/dist/components/chunks/flux-CvBGr0BP.mjs +1 -0
  680. package/dist/components/chunks/fnsa-D5cJNmfM.mjs +1 -0
  681. package/dist/components/chunks/foam-5uYEz981.mjs +1 -0
  682. package/dist/components/chunks/fold-9Xxf05WC.mjs +1 -0
  683. package/dist/components/chunks/formatMoney-CbiPk6ER.mjs +1 -0
  684. package/dist/components/chunks/fota-Ch6upn8J.mjs +1 -0
  685. package/dist/components/chunks/fox-Bj18xt27.mjs +1 -0
  686. package/dist/components/chunks/fpi-CEzbNWLw.mjs +1 -0
  687. package/dist/components/chunks/fpis-shDxeHIK.mjs +1 -0
  688. package/dist/components/chunks/frax-pKMsyRVF.mjs +1 -0
  689. package/dist/components/chunks/frm-DWP7ChWm.mjs +1 -0
  690. package/dist/components/chunks/front-C78IdRSf.mjs +1 -0
  691. package/dist/components/chunks/frxeth-D4zygxTz.mjs +1 -0
  692. package/dist/components/chunks/fsn-6yfRYldF.mjs +1 -0
  693. package/dist/components/chunks/fst-Dm1d2g2j.mjs +1 -0
  694. package/dist/components/chunks/ft-atCaqzyn.mjs +1 -0
  695. package/dist/components/chunks/ftc-E7PffNgy.mjs +1 -0
  696. package/dist/components/chunks/ftm-DSnnAhQp.mjs +1 -0
  697. package/dist/components/chunks/ftt-CNcKidKi.mjs +1 -0
  698. package/dist/components/chunks/fuel-D9r1_gb_.mjs +1 -0
  699. package/dist/components/chunks/fun-XUd7dUSE.mjs +1 -0
  700. package/dist/components/chunks/fx-gCvvIYHw.mjs +1 -0
  701. package/dist/components/chunks/fxc-Bka4sOkg.mjs +1 -0
  702. package/dist/components/chunks/fxs-CVQk6pEt.mjs +1 -0
  703. package/dist/components/chunks/fxt-Ds4p1rRz.mjs +1 -0
  704. package/dist/components/chunks/gal-D6ogV7Sm.mjs +1 -0
  705. package/dist/components/chunks/gala-dvN-r2yP.mjs +1 -0
  706. package/dist/components/chunks/gamma-sNZtArGq.mjs +1 -0
  707. package/dist/components/chunks/gb-CRfdvdN1.mjs +1 -0
  708. package/dist/components/chunks/gdc-NfCkN-K6.mjs +1 -0
  709. package/dist/components/chunks/gem-DOphEmsn.mjs +1 -0
  710. package/dist/components/chunks/gen-CWi4zphV.mjs +1 -0
  711. package/dist/components/chunks/generic-C2GUAPI4.mjs +1 -0
  712. package/dist/components/chunks/giv-CMBmWB0m.mjs +1 -0
  713. package/dist/components/chunks/glmr-Cb8WA9HX.mjs +1 -0
  714. package/dist/components/chunks/gmee-CNcgKY2y.mjs +1 -0
  715. package/dist/components/chunks/gmt-2-W-JlNa1_.mjs +1 -0
  716. package/dist/components/chunks/gmt-CmKpmREK.mjs +1 -0
  717. package/dist/components/chunks/gmx-BgY4OU4v.mjs +1 -0
  718. package/dist/components/chunks/gno-BwYGz5JN.mjs +1 -0
  719. package/dist/components/chunks/gns-K_uzcO0Z.mjs +1 -0
  720. package/dist/components/chunks/gnt-zXfMzZl7.mjs +1 -0
  721. package/dist/components/chunks/gnx-CMOYi8tX.mjs +1 -0
  722. package/dist/components/chunks/go-DA5LtaMU.mjs +1 -0
  723. package/dist/components/chunks/goc-CeW9bNBS.mjs +1 -0
  724. package/dist/components/chunks/got-CefxySbS.mjs +1 -0
  725. package/dist/components/chunks/govi-BnXenNmJ.mjs +1 -0
  726. package/dist/components/chunks/grail-CPcYBagB.mjs +1 -0
  727. package/dist/components/chunks/grin-BVHr1avA.mjs +1 -0
  728. package/dist/components/chunks/grow-C6ywZ51u.mjs +1 -0
  729. package/dist/components/chunks/grp-B3vSnh0F.mjs +1 -0
  730. package/dist/components/chunks/grs-C6a0frvb.mjs +1 -0
  731. package/dist/components/chunks/grt-Bpo4CNyr.mjs +1 -0
  732. package/dist/components/chunks/gsc-DN8MKXRa.mjs +1 -0
  733. package/dist/components/chunks/gswap-BZ44JSkQ.mjs +1 -0
  734. package/dist/components/chunks/gt-Cka5_hGt.mjs +1 -0
  735. package/dist/components/chunks/gtai-CQRQwXul.mjs +1 -0
  736. package/dist/components/chunks/gtc-2-W2nZwO-L.mjs +1 -0
  737. package/dist/components/chunks/gtc-d_aMGIav.mjs +1 -0
  738. package/dist/components/chunks/gto-T9zmJaYw.mjs +1 -0
  739. package/dist/components/chunks/gusd-Bi1Umwi5.mjs +1 -0
  740. package/dist/components/chunks/gvt-D61FEHcd.mjs +1 -0
  741. package/dist/components/chunks/gxs-DZxzO0SS.mjs +1 -0
  742. package/dist/components/chunks/gyen-rLl9L9kS.mjs +1 -0
  743. package/dist/components/chunks/hair-G5e23Gx-.mjs +1 -0
  744. package/dist/components/chunks/hakka-DwxNObSs.mjs +1 -0
  745. package/dist/components/chunks/han-d0QkIEhZ.mjs +1 -0
  746. package/dist/components/chunks/hanep-CKmelMde.mjs +1 -0
  747. package/dist/components/chunks/hav-Bd72lgxR.mjs +1 -0
  748. package/dist/components/chunks/hbar-CNFPguBY.mjs +1 -0
  749. package/dist/components/chunks/hc-D0X4XMcZ.mjs +1 -0
  750. package/dist/components/chunks/heart-rHDQE7r3.mjs +1 -0
  751. package/dist/components/chunks/hedg-D78urIRK.mjs +1 -0
  752. package/dist/components/chunks/hegic-mbdN8KRY.mjs +1 -0
  753. package/dist/components/chunks/her-BTs0w5TQ.mjs +1 -0
  754. package/dist/components/chunks/hex-DFhD2cTr.mjs +1 -0
  755. package/dist/components/chunks/hft-Bwc4xmXJ.mjs +1 -0
  756. package/dist/components/chunks/high-CxMpiRdj.mjs +1 -0
  757. package/dist/components/chunks/hive-BG9wK-UV.mjs +1 -0
  758. package/dist/components/chunks/hnt-G0K3hfxL.mjs +1 -0
  759. package/dist/components/chunks/hot-CbifYBOH.mjs +1 -0
  760. package/dist/components/chunks/hot-x-DY-GI0q_.mjs +1 -0
  761. package/dist/components/chunks/hpb-D8j5b5Ni.mjs +1 -0
  762. package/dist/components/chunks/hsr-B2JzRoYF.mjs +1 -0
  763. package/dist/components/chunks/ht-DHT6FYC8.mjs +1 -0
  764. package/dist/components/chunks/hum-FoB4G_Bv.mjs +1 -0
  765. package/dist/components/chunks/husd-oiIqKsoh.mjs +1 -0
  766. package/dist/components/chunks/hvn-fPe9ob-n.mjs +1 -0
  767. package/dist/components/chunks/hxro-DvcD9WHF.mjs +1 -0
  768. package/dist/components/chunks/hydro-C3D1nAkM.mjs +1 -0
  769. package/dist/components/chunks/hyn-D265ePGZ.mjs +1 -0
  770. package/dist/components/chunks/hzn-DOwKusS6.mjs +1 -0
  771. package/dist/components/chunks/ibat-CPrhT9xb.mjs +1 -0
  772. package/dist/components/chunks/ice-D9xl8y9p.mjs +1 -0
  773. package/dist/components/chunks/icn-D5Uf4xb-.mjs +1 -0
  774. package/dist/components/chunks/iconSvg-DuOI5Yho.mjs +7 -0
  775. package/dist/components/chunks/icp-QElaBEhQ.mjs +1 -0
  776. package/dist/components/chunks/icx-F4eZ75gU.mjs +1 -0
  777. package/dist/components/chunks/id-DkUt32nJ.mjs +1 -0
  778. package/dist/components/chunks/idai-Be5fF9II.mjs +1 -0
  779. package/dist/components/chunks/idex-Di8B77Au.mjs +1 -0
  780. package/dist/components/chunks/ieth-DWjG-Ocm.mjs +1 -0
  781. package/dist/components/chunks/ifarm-teWl1UJp.mjs +1 -0
  782. package/dist/components/chunks/ignis-DvOcIHCi.mjs +1 -0
  783. package/dist/components/chunks/iknc-BtbkbOky.mjs +1 -0
  784. package/dist/components/chunks/ilink-DE7dKpmc.mjs +1 -0
  785. package/dist/components/chunks/ilv-D-mn-770.mjs +1 -0
  786. package/dist/components/chunks/imx-DIqXFd0o.mjs +1 -0
  787. package/dist/components/chunks/inb-roTcv4_D.mjs +1 -0
  788. package/dist/components/chunks/index-BnZsZnAN.mjs +1 -0
  789. package/dist/components/chunks/index-KWU67jID.mjs +1 -0
  790. package/dist/components/chunks/inj-CMyplJiA.mjs +1 -0
  791. package/dist/components/chunks/ins-QYVrhkXW.mjs +1 -0
  792. package/dist/components/chunks/instar-CTIsPFEf.mjs +1 -0
  793. package/dist/components/chunks/iost-B4sf-AA0.mjs +1 -0
  794. package/dist/components/chunks/iota-pVCPk56S.mjs +1 -0
  795. package/dist/components/chunks/iotx-Dk0ww3VI.mjs +1 -0
  796. package/dist/components/chunks/iq-2-BMWYIXDH.mjs +1 -0
  797. package/dist/components/chunks/iq-CtG6E8LE.mjs +1 -0
  798. package/dist/components/chunks/irep-CaX-PKpq.mjs +1 -0
  799. package/dist/components/chunks/iris-CBAA_FRv.mjs +1 -0
  800. package/dist/components/chunks/isai-l3icHkO0.mjs +1 -0
  801. package/dist/components/chunks/ist-B6GHKYrZ.mjs +1 -0
  802. package/dist/components/chunks/isusd-CurJ5F4a.mjs +1 -0
  803. package/dist/components/chunks/iusdc-D6OPJaEk.mjs +1 -0
  804. package/dist/components/chunks/iwbtc-DKVuk8Q-.mjs +1 -0
  805. package/dist/components/chunks/ixt-CK4mp9jd.mjs +1 -0
  806. package/dist/components/chunks/izrx-B0qfUlk3.mjs +1 -0
  807. package/dist/components/chunks/jnt-D5SL_WnG.mjs +1 -0
  808. package/dist/components/chunks/jrt-Cc04Z41H.mjs +1 -0
  809. package/dist/components/chunks/jst-B54XvsnA.mjs +1 -0
  810. package/dist/components/chunks/jto-BMfr5ioy.mjs +1 -0
  811. package/dist/components/chunks/juno-CDwHcMbI.mjs +1 -0
  812. package/dist/components/chunks/kas-DKvi6kRs.mjs +1 -0
  813. package/dist/components/chunks/kava-gipZlTTO.mjs +1 -0
  814. package/dist/components/chunks/kcs-CM7v2lwn.mjs +1 -0
  815. package/dist/components/chunks/kda-BBuNJmvO.mjs +1 -0
  816. package/dist/components/chunks/keep-BGss4iIj.mjs +1 -0
  817. package/dist/components/chunks/key-Dl-75lX8.mjs +1 -0
  818. package/dist/components/chunks/kick-B0UK4r_b.mjs +1 -0
  819. package/dist/components/chunks/kin-CoGolO3J.mjs +1 -0
  820. package/dist/components/chunks/kira-BtdAdYBE.mjs +1 -0
  821. package/dist/components/chunks/kiro-_5JSC6zs.mjs +1 -0
  822. package/dist/components/chunks/kiwi-L3IC4i2-.mjs +1 -0
  823. package/dist/components/chunks/klay-CFm12xwy.mjs +1 -0
  824. package/dist/components/chunks/klv-CkE8E1rO.mjs +1 -0
  825. package/dist/components/chunks/kmd-BlzFLt6E.mjs +1 -0
  826. package/dist/components/chunks/knc-CGR4w1Qe.mjs +1 -0
  827. package/dist/components/chunks/ksm-AR20WrRF.mjs +1 -0
  828. package/dist/components/chunks/ktn-DCOC3aLb.mjs +1 -0
  829. package/dist/components/chunks/kub-fpDs3MEH.mjs +1 -0
  830. package/dist/components/chunks/kuji-CUx0mnO8.mjs +1 -0
  831. package/dist/components/chunks/lamb-DkRtXU_e.mjs +1 -0
  832. package/dist/components/chunks/land-CYusYYir.mjs +1 -0
  833. package/dist/components/chunks/lba-CDd5wjFe.mjs +1 -0
  834. package/dist/components/chunks/lcx-B0Q_ORc8.mjs +1 -0
  835. package/dist/components/chunks/ldo-BSfV31fp.mjs +1 -0
  836. package/dist/components/chunks/lend-BwRB5Qxv.mjs +1 -0
  837. package/dist/components/chunks/leo-Bpq-1Um2.mjs +1 -0
  838. package/dist/components/chunks/lien-DpS2nu6Y.mjs +1 -0
  839. package/dist/components/chunks/link-37L-3kDS.mjs +1 -0
  840. package/dist/components/chunks/lit-C3QVtmK3.mjs +1 -0
  841. package/dist/components/chunks/lky-DDEZdo6N.mjs +1 -0
  842. package/dist/components/chunks/ln-tZSRr1i_.mjs +1 -0
  843. package/dist/components/chunks/lode-B-r6_VSm.mjs +1 -0
  844. package/dist/components/chunks/loki-DzX-3xH1.mjs +1 -0
  845. package/dist/components/chunks/lon-C5804yD4.mjs +1 -0
  846. package/dist/components/chunks/looks-CaoVS-hO.mjs +1 -0
  847. package/dist/components/chunks/loom-CeOX2p0a.mjs +1 -0
  848. package/dist/components/chunks/lpf-BMFZDIP9.mjs +1 -0
  849. package/dist/components/chunks/lpt-L5_nKsid.mjs +1 -0
  850. package/dist/components/chunks/lqd-Bj13cFOZ.mjs +1 -0
  851. package/dist/components/chunks/lqty-DtIymoy7.mjs +1 -0
  852. package/dist/components/chunks/lrc-B67NfPZz.mjs +1 -0
  853. package/dist/components/chunks/lsk-C7cSGF3k.mjs +1 -0
  854. package/dist/components/chunks/ltc-BBOgh6vh.mjs +1 -0
  855. package/dist/components/chunks/lto-B0I_nOFE.mjs +1 -0
  856. package/dist/components/chunks/luca-BAvkdL61.mjs +1 -0
  857. package/dist/components/chunks/lun-Bpa7Ub-e.mjs +1 -0
  858. package/dist/components/chunks/luna-CpY1l21V.mjs +1 -0
  859. package/dist/components/chunks/lusd-Dvq67dRA.mjs +1 -0
  860. package/dist/components/chunks/lxt-Ckxh2NoA.mjs +1 -0
  861. package/dist/components/chunks/lym-B_WM-Bqy.mjs +1 -0
  862. package/dist/components/chunks/magic-DOFRssct.mjs +1 -0
  863. package/dist/components/chunks/maha-NXFmkirV.mjs +1 -0
  864. package/dist/components/chunks/maid-DX0CXp4q.mjs +1 -0
  865. package/dist/components/chunks/man-CSZgMkw5.mjs +1 -0
  866. package/dist/components/chunks/mana-iS3pxVSB.mjs +1 -0
  867. package/dist/components/chunks/manta-3llymq6q.mjs +1 -0
  868. package/dist/components/chunks/mask-DTMfEVb_.mjs +1 -0
  869. package/dist/components/chunks/math-B2vr-QlH.mjs +1 -0
  870. package/dist/components/chunks/matic-DUjhPTa8.mjs +1 -0
  871. package/dist/components/chunks/matter-DZpu8otZ.mjs +1 -0
  872. package/dist/components/chunks/mav-C3HYP32l.mjs +1 -0
  873. package/dist/components/chunks/mbc-C8hIcAyp.mjs +1 -0
  874. package/dist/components/chunks/mbox-DtQCuVXO.mjs +1 -0
  875. package/dist/components/chunks/mc-FffLefq_.mjs +1 -0
  876. package/dist/components/chunks/mcb-SXFifgX1.mjs +1 -0
  877. package/dist/components/chunks/mco-Dxph1sUF.mjs +1 -0
  878. package/dist/components/chunks/mcx-D0TTQJ3a.mjs +1 -0
  879. package/dist/components/chunks/mda-5jUjoSG0.mjs +1 -0
  880. package/dist/components/chunks/mdao-D13QMakI.mjs +1 -0
  881. package/dist/components/chunks/mds-cEXycmNh.mjs +1 -0
  882. package/dist/components/chunks/med-DJD2NhAt.mjs +1 -0
  883. package/dist/components/chunks/medx-BVRy77Ub.mjs +1 -0
  884. package/dist/components/chunks/meme-MkHlYys7.mjs +1 -0
  885. package/dist/components/chunks/met-C2jPPkJD.mjs +1 -0
  886. package/dist/components/chunks/metano-lijQHG_y.mjs +1 -0
  887. package/dist/components/chunks/metis-BqxSjLkO.mjs +1 -0
  888. package/dist/components/chunks/mex-u20gGVmW.mjs +1 -0
  889. package/dist/components/chunks/mfg-hxp2OFOA.mjs +1 -0
  890. package/dist/components/chunks/mft-CZbpmEq1.mjs +1 -0
  891. package/dist/components/chunks/mim-DdflxlOc.mjs +1 -0
  892. package/dist/components/chunks/mimatic-Cvuqrp1d.mjs +1 -0
  893. package/dist/components/chunks/mina-CAVx91ot.mjs +1 -0
  894. package/dist/components/chunks/mir-B15ne4BF.mjs +1 -0
  895. package/dist/components/chunks/mith-Ca4NqELT.mjs +1 -0
  896. package/dist/components/chunks/mkr-BXqGBuX2.mjs +1 -0
  897. package/dist/components/chunks/mln-BInl6NT0.mjs +1 -0
  898. package/dist/components/chunks/mngo-DanVj0nE.mjs +1 -0
  899. package/dist/components/chunks/mnt-BRCJ-ZGm.mjs +1 -0
  900. package/dist/components/chunks/mntl-CE2ABr-p.mjs +1 -0
  901. package/dist/components/chunks/mnw-BmY3cH1R.mjs +1 -0
  902. package/dist/components/chunks/mochi-DX4FJJHk.mjs +1 -0
  903. package/dist/components/chunks/mod-BKFgOUAu.mjs +1 -0
  904. package/dist/components/chunks/mom-DZV9NQ6A.mjs +1 -0
  905. package/dist/components/chunks/moons-6rfmq5I2.mjs +1 -0
  906. package/dist/components/chunks/mot-_opVkhzI.mjs +1 -0
  907. package/dist/components/chunks/mpl-B91CEgGs.mjs +1 -0
  908. package/dist/components/chunks/mta-bXsu9pye.mjs +1 -0
  909. package/dist/components/chunks/mth-my0M8cYk.mjs +1 -0
  910. package/dist/components/chunks/mtl-DxZgnsUc.mjs +1 -0
  911. package/dist/components/chunks/mtn-n4RdRD85.mjs +1 -0
  912. package/dist/components/chunks/mura-DOI8Wa4U.mjs +1 -0
  913. package/dist/components/chunks/mvc-C4ahFOw-.mjs +1 -0
  914. package/dist/components/chunks/mvl-DP2mrozn.mjs +1 -0
  915. package/dist/components/chunks/mvp-BEzCK6L4.mjs +1 -0
  916. package/dist/components/chunks/mwat-CtPgrMEu.mjs +1 -0
  917. package/dist/components/chunks/mwc-DSzkN3Hv.mjs +1 -0
  918. package/dist/components/chunks/mxc-CMS3RYw5.mjs +1 -0
  919. package/dist/components/chunks/mxm-DwKR-Htg.mjs +1 -0
  920. package/dist/components/chunks/myb-GdnQBqq9.mjs +1 -0
  921. package/dist/components/chunks/nano-CWdYKQgs.mjs +1 -0
  922. package/dist/components/chunks/nas-CbQLbAzn.mjs +1 -0
  923. package/dist/components/chunks/nav-BL_SKfF5.mjs +1 -0
  924. package/dist/components/chunks/ncash-BzAh4VB5.mjs +1 -0
  925. package/dist/components/chunks/nct-DXzt_UVy.mjs +1 -0
  926. package/dist/components/chunks/near-C3cMRqrD.mjs +1 -0
  927. package/dist/components/chunks/nebl-YSXZjaot.mjs +1 -0
  928. package/dist/components/chunks/nec-4gqhVwIn.mjs +1 -0
  929. package/dist/components/chunks/neo-Chv19sgZ.mjs +1 -0
  930. package/dist/components/chunks/neox-BmCjgJvz.mjs +1 -0
  931. package/dist/components/chunks/nest-KKGn-B_C.mjs +1 -0
  932. package/dist/components/chunks/new-BEwcnPTm.mjs +1 -0
  933. package/dist/components/chunks/nex-CYaHAmIF.mjs +1 -0
  934. package/dist/components/chunks/nexo-BgMDD-Mw.mjs +1 -0
  935. package/dist/components/chunks/nexus-_FeYaVvy.mjs +1 -0
  936. package/dist/components/chunks/nexxo-CvLOmC1o.mjs +1 -0
  937. package/dist/components/chunks/nft-DW_peu4X.mjs +1 -0
  938. package/dist/components/chunks/nftb-DbnoDgfD.mjs +1 -0
  939. package/dist/components/chunks/ngc-0dC9EOfG.mjs +1 -0
  940. package/dist/components/chunks/niox-q6IG4px4.mjs +1 -0
  941. package/dist/components/chunks/nkn-hL47f3F-.mjs +1 -0
  942. package/dist/components/chunks/nlg-DOUuDOiN.mjs +1 -0
  943. package/dist/components/chunks/nmr-B6RCRBw7.mjs +1 -0
  944. package/dist/components/chunks/noia-GLo0JcMo.mjs +1 -0
  945. package/dist/components/chunks/nos-CZJJepZ6.mjs +1 -0
  946. package/dist/components/chunks/nper-Db-9PghJ.mjs +1 -0
  947. package/dist/components/chunks/npxs-D-OeSFwn.mjs +1 -0
  948. package/dist/components/chunks/nrg-B7tI3F4c.mjs +1 -0
  949. package/dist/components/chunks/nrv-CNv722E5.mjs +1 -0
  950. package/dist/components/chunks/nrve-B0W2N6n9.mjs +1 -0
  951. package/dist/components/chunks/ntic-Bj8n6Ipz.mjs +1 -0
  952. package/dist/components/chunks/ntl-V49ehyhz.mjs +1 -0
  953. package/dist/components/chunks/ntrn-Ch9vVAWj.mjs +1 -0
  954. package/dist/components/chunks/nu-DuZ-28ak.mjs +1 -0
  955. package/dist/components/chunks/nuls-CHtxFmvn.mjs +1 -0
  956. package/dist/components/chunks/nxm-B9YlVCTS.mjs +1 -0
  957. package/dist/components/chunks/nxra-CczER8Mo.mjs +1 -0
  958. package/dist/components/chunks/nxs-DD8-1c0T.mjs +1 -0
  959. package/dist/components/chunks/nxt-D89w3xG6.mjs +1 -0
  960. package/dist/components/chunks/oag-DrgsnDSo.mjs +1 -0
  961. package/dist/components/chunks/oax-DlgtSI-8.mjs +1 -0
  962. package/dist/components/chunks/ocean-HQGXiNUR.mjs +1 -0
  963. package/dist/components/chunks/ocn-DrLkDhKK.mjs +1 -0
  964. package/dist/components/chunks/ode-D4ScuCB0.mjs +1 -0
  965. package/dist/components/chunks/ogn-BIag0i3A.mjs +1 -0
  966. package/dist/components/chunks/ohm-BCUYW6y6.mjs +1 -0
  967. package/dist/components/chunks/oil-CFkwBxul.mjs +1 -0
  968. package/dist/components/chunks/okb-CrWxMcq6.mjs +1 -0
  969. package/dist/components/chunks/oks-D6egECim.mjs +1 -0
  970. package/dist/components/chunks/olt-SfLHnkCF.mjs +1 -0
  971. package/dist/components/chunks/omg-WrmBst6a.mjs +1 -0
  972. package/dist/components/chunks/ondo-BIJC8XYW.mjs +1 -0
  973. package/dist/components/chunks/one-CTk0kL6Y.mjs +1 -0
  974. package/dist/components/chunks/onion-DkBty2Bk.mjs +1 -0
  975. package/dist/components/chunks/ont-CDu_DnlE.mjs +1 -0
  976. package/dist/components/chunks/op-DGs4Sisg.mjs +1 -0
  977. package/dist/components/chunks/open-D4Qp3cMi.mjs +1 -0
  978. package/dist/components/chunks/opium-CnSPmBlT.mjs +1 -0
  979. package/dist/components/chunks/opul-BeCfAS44.mjs +1 -0
  980. package/dist/components/chunks/opx-CRQaUo_g.mjs +1 -0
  981. package/dist/components/chunks/orai-BvFBpMoK.mjs +1 -0
  982. package/dist/components/chunks/orbs-C34YP0hi.mjs +1 -0
  983. package/dist/components/chunks/orc-B0BjQ0RQ.mjs +1 -0
  984. package/dist/components/chunks/orn-XpQByoy0.mjs +1 -0
  985. package/dist/components/chunks/osmo-dI2tcNq_.mjs +1 -0
  986. package/dist/components/chunks/ost-BzNBoJ0a.mjs +1 -0
  987. package/dist/components/chunks/ovc-I3T2XXYZ.mjs +1 -0
  988. package/dist/components/chunks/ox-BT13aaG-.mjs +1 -0
  989. package/dist/components/chunks/oxt-C9ZspkxE.mjs +1 -0
  990. package/dist/components/chunks/pBTC-nLgPO1DA.mjs +1 -0
  991. package/dist/components/chunks/pai-BfxHEgv7.mjs +1 -0
  992. package/dist/components/chunks/paint-CagZEe-B.mjs +1 -0
  993. package/dist/components/chunks/pal-Bv8UyKcK.mjs +1 -0
  994. package/dist/components/chunks/palm-2-BX4QBRTi.mjs +1 -0
  995. package/dist/components/chunks/palm-lcxMjux6.mjs +1 -0
  996. package/dist/components/chunks/paper-huMErQN5.mjs +1 -0
  997. package/dist/components/chunks/par-Daysl5bv.mjs +1 -0
  998. package/dist/components/chunks/part-D8bhxFMj.mjs +1 -0
  999. package/dist/components/chunks/pasg-CFpgo2Ek.mjs +1 -0
  1000. package/dist/components/chunks/pax-XwbyEkgT.mjs +1 -0
  1001. package/dist/components/chunks/paxg-BEOwKThZ.mjs +1 -0
  1002. package/dist/components/chunks/pay-CCWxrwEK.mjs +1 -0
  1003. package/dist/components/chunks/pbirb-CuEW6d7e.mjs +1 -0
  1004. package/dist/components/chunks/pbr-B_5CFz0Y.mjs +1 -0
  1005. package/dist/components/chunks/pendle-y9pHrVbG.mjs +1 -0
  1006. package/dist/components/chunks/pepe-uzfaJ3o6.mjs +1 -0
  1007. package/dist/components/chunks/perl-DkAfcg-u.mjs +1 -0
  1008. package/dist/components/chunks/perp-AsPYhWdP.mjs +1 -0
  1009. package/dist/components/chunks/pha-Dxdin_FA.mjs +1 -0
  1010. package/dist/components/chunks/phoneNumbers-Bmtkxd5J.mjs +1 -0
  1011. package/dist/components/chunks/phtk-D5TjcI1k.mjs +1 -0
  1012. package/dist/components/chunks/phx-DiKSK_wQ.mjs +1 -0
  1013. package/dist/components/chunks/pickle-DoaW6WCG.mjs +1 -0
  1014. package/dist/components/chunks/pika-CKwTtlQf.mjs +1 -0
  1015. package/dist/components/chunks/pip-DTbw6wb-.mjs +1 -0
  1016. package/dist/components/chunks/pivx-CnvoHwOk.mjs +1 -0
  1017. package/dist/components/chunks/plDAI-nwXoIFut.mjs +1 -0
  1018. package/dist/components/chunks/plUSDC-CySMyL2Q.mjs +1 -0
  1019. package/dist/components/chunks/pla-BzhAPsOY.mjs +1 -0
  1020. package/dist/components/chunks/play-PgNcwoLd.mjs +1 -0
  1021. package/dist/components/chunks/plr-kqBco35C.mjs +1 -0
  1022. package/dist/components/chunks/pltc-0nRJq-Eg.mjs +1 -0
  1023. package/dist/components/chunks/pnb-hLZ7IPvy.mjs +1 -0
  1024. package/dist/components/chunks/png-BtsYLXHi.mjs +1 -0
  1025. package/dist/components/chunks/pnk-BxwOMYMz.mjs +1 -0
  1026. package/dist/components/chunks/pnt-DrgAerY-.mjs +1 -0
  1027. package/dist/components/chunks/poa-lJHH3lUk.mjs +1 -0
  1028. package/dist/components/chunks/poe-Bmz9Rye2.mjs +1 -0
  1029. package/dist/components/chunks/pokt-CZUaXcJ_.mjs +1 -0
  1030. package/dist/components/chunks/pols-DDtG5C4K.mjs +1 -0
  1031. package/dist/components/chunks/poly-2-4MmxuOoY.mjs +1 -0
  1032. package/dist/components/chunks/poly-B0QLi05S.mjs +1 -0
  1033. package/dist/components/chunks/polyx-C8kOB3hp.mjs +1 -0
  1034. package/dist/components/chunks/pom-DhnJ3CzA.mjs +1 -0
  1035. package/dist/components/chunks/pond-ClUGhyfJ.mjs +1 -0
  1036. package/dist/components/chunks/pool-C_u0uBOa.mjs +1 -0
  1037. package/dist/components/chunks/pop-CQIlehZ9.mjs +1 -0
  1038. package/dist/components/chunks/powr-CxDzCqV5.mjs +1 -0
  1039. package/dist/components/chunks/ppay-C8kVUV6u.mjs +1 -0
  1040. package/dist/components/chunks/ppc-BRm4UqW0.mjs +1 -0
  1041. package/dist/components/chunks/ppp-Da4_rrZp.mjs +1 -0
  1042. package/dist/components/chunks/ppt-C2GJrttw.mjs +1 -0
  1043. package/dist/components/chunks/pre-Da1hv0gr.mjs +1 -0
  1044. package/dist/components/chunks/premia-MBudiAn1.mjs +1 -0
  1045. package/dist/components/chunks/prime-WDISSGXm.mjs +1 -0
  1046. package/dist/components/chunks/prl-VmyhozKG.mjs +1 -0
  1047. package/dist/components/chunks/pro--Fg3rTEn.mjs +1 -0
  1048. package/dist/components/chunks/prom-BXSTrYkL.mjs +1 -0
  1049. package/dist/components/chunks/pros-C2kQfMp3.mjs +1 -0
  1050. package/dist/components/chunks/prq-DNPIvCb2.mjs +1 -0
  1051. package/dist/components/chunks/psp-CDTuducG.mjs +1 -0
  1052. package/dist/components/chunks/pst-DpS88YoF.mjs +1 -0
  1053. package/dist/components/chunks/pxp-iipN3qlz.mjs +1 -0
  1054. package/dist/components/chunks/pyr-SrCylOiF.mjs +1 -0
  1055. package/dist/components/chunks/pyth-D8hMHy32.mjs +1 -0
  1056. package/dist/components/chunks/qash-BejnED4Q.mjs +1 -0
  1057. package/dist/components/chunks/qbit-Dlxl56u0.mjs +1 -0
  1058. package/dist/components/chunks/qi-DHPc3JwZ.mjs +1 -0
  1059. package/dist/components/chunks/qkc-B4QzrCw2.mjs +1 -0
  1060. package/dist/components/chunks/qlc-DlyPTXiI.mjs +1 -0
  1061. package/dist/components/chunks/qnt-DSEIx9Qn.mjs +1 -0
  1062. package/dist/components/chunks/qrdo-DrZltj7b.mjs +1 -0
  1063. package/dist/components/chunks/qsp-qjDNXAQw.mjs +1 -0
  1064. package/dist/components/chunks/qtcon-dIPwwvdN.mjs +1 -0
  1065. package/dist/components/chunks/qtum-B3FjBbqV.mjs +1 -0
  1066. package/dist/components/chunks/quick-C_jfCcWd.mjs +1 -0
  1067. package/dist/components/chunks/r-rjsHRpkI.mjs +1 -0
  1068. package/dist/components/chunks/raca-CMJ431yj.mjs +1 -0
  1069. package/dist/components/chunks/rae-W76Ga-XL.mjs +1 -0
  1070. package/dist/components/chunks/rai-_nzRfvPm.mjs +1 -0
  1071. package/dist/components/chunks/rari-BnJ6urVz.mjs +1 -0
  1072. package/dist/components/chunks/ray-BhUelEd2.mjs +1 -0
  1073. package/dist/components/chunks/rbn-CLe8KZrt.mjs +1 -0
  1074. package/dist/components/chunks/rbx-D3Ss-cdi.mjs +1 -0
  1075. package/dist/components/chunks/rcn-I3x9u68c.mjs +1 -0
  1076. package/dist/components/chunks/rdai-MJ4HOwcX.mjs +1 -0
  1077. package/dist/components/chunks/rdd-BuhMWn0H.mjs +1 -0
  1078. package/dist/components/chunks/rdn-9HrMHE9m.mjs +1 -0
  1079. package/dist/components/chunks/rdnt-Cxpd2rN7.mjs +1 -0
  1080. package/dist/components/chunks/ren-Cv8kTjUd.mjs +1 -0
  1081. package/dist/components/chunks/rep-DorqX8O_.mjs +1 -0
  1082. package/dist/components/chunks/req-urDAd52b.mjs +1 -0
  1083. package/dist/components/chunks/reth-2-Ce36PkuJ.mjs +1 -0
  1084. package/dist/components/chunks/reth-WtK5Oowy.mjs +1 -0
  1085. package/dist/components/chunks/rev-Bp94o7zU.mjs +1 -0
  1086. package/dist/components/chunks/rfox-DKoQHiPY.mjs +1 -0
  1087. package/dist/components/chunks/rfwsteth-C1uUPgDZ.mjs +1 -0
  1088. package/dist/components/chunks/rgt-Pcxhvnat.mjs +1 -0
  1089. package/dist/components/chunks/rhoc-BhdRaqUX.mjs +1 -0
  1090. package/dist/components/chunks/rif-BYc8XiuJ.mjs +1 -0
  1091. package/dist/components/chunks/rlc-DzSC0CwK.mjs +1 -0
  1092. package/dist/components/chunks/rly-DweoV6pB.mjs +1 -0
  1093. package/dist/components/chunks/rndr-rNDl1eq4.mjs +1 -0
  1094. package/dist/components/chunks/rook-DLFXOSyd.mjs +1 -0
  1095. package/dist/components/chunks/rose-BYKl_yPL.mjs +1 -0
  1096. package/dist/components/chunks/rpl-C9ItAeuu.mjs +1 -0
  1097. package/dist/components/chunks/rpx-kVLMN-CC.mjs +1 -0
  1098. package/dist/components/chunks/rsr-AhU5_b8q.mjs +1 -0
  1099. package/dist/components/chunks/rsv-BfxPQ18B.mjs +1 -0
  1100. package/dist/components/chunks/rune-CiDCuLR0.mjs +1 -0
  1101. package/dist/components/chunks/rvn-DizUm6_U.mjs +1 -0
  1102. package/dist/components/chunks/s-CCw9_5B5.mjs +1 -0
  1103. package/dist/components/chunks/sai-Dt39ka4d.mjs +1 -0
  1104. package/dist/components/chunks/salt-BdrPKmej.mjs +1 -0
  1105. package/dist/components/chunks/san-wlk9D467.mjs +1 -0
  1106. package/dist/components/chunks/sand-DdIP_z8R.mjs +1 -0
  1107. package/dist/components/chunks/sapp-CkPHl7OJ.mjs +1 -0
  1108. package/dist/components/chunks/sar-CtdRGmgX.mjs +1 -0
  1109. package/dist/components/chunks/scrl-CS5_14IC.mjs +1 -0
  1110. package/dist/components/chunks/scrt-D5Ur8AKh.mjs +1 -0
  1111. package/dist/components/chunks/scs-zv2vdXPO.mjs +1 -0
  1112. package/dist/components/chunks/sdex-CsAQtTLv.mjs +1 -0
  1113. package/dist/components/chunks/sdl-pyEJqof5.mjs +1 -0
  1114. package/dist/components/chunks/sdt-4Z3t6_YS.mjs +1 -0
  1115. package/dist/components/chunks/seele-Dq2wOb9O.mjs +1 -0
  1116. package/dist/components/chunks/sefi-B302aUzq.mjs +1 -0
  1117. package/dist/components/chunks/sei-DUPGQUwH.mjs +1 -0
  1118. package/dist/components/chunks/sem-DIGBaKHW.mjs +1 -0
  1119. package/dist/components/chunks/seth-sifJf3xf.mjs +1 -0
  1120. package/dist/components/chunks/seth2-DwxEqUGm.mjs +1 -0
  1121. package/dist/components/chunks/sfi-Kk2I2fuS.mjs +1 -0
  1122. package/dist/components/chunks/sfm-DKLT9uQj.mjs +1 -0
  1123. package/dist/components/chunks/sfp-2-B7rcgkd9.mjs +1 -0
  1124. package/dist/components/chunks/sfp-BDok0xy6.mjs +1 -0
  1125. package/dist/components/chunks/sha-DBTWf0uK.mjs +1 -0
  1126. package/dist/components/chunks/shib-DYsgiwjM.mjs +1 -0
  1127. package/dist/components/chunks/shr-BOSPyc8x.mjs +1 -0
  1128. package/dist/components/chunks/shuf-Bqp6Cqdw.mjs +1 -0
  1129. package/dist/components/chunks/si-Sbqv0OdJ.mjs +1 -0
  1130. package/dist/components/chunks/sia-DL5Wecvg.mjs +1 -0
  1131. package/dist/components/chunks/sidus-C5LGcxJC.mjs +1 -0
  1132. package/dist/components/chunks/silo-oPMUjDBK.mjs +1 -0
  1133. package/dist/components/chunks/skl-RqosE1aU.mjs +1 -0
  1134. package/dist/components/chunks/sky-o-nsi5DD.mjs +1 -0
  1135. package/dist/components/chunks/sld-BL2wTYoZ.mjs +1 -0
  1136. package/dist/components/chunks/slex-Ctxkedsy.mjs +1 -0
  1137. package/dist/components/chunks/slp-D44C9MqL.mjs +1 -0
  1138. package/dist/components/chunks/slt-DuxT5zNF.mjs +1 -0
  1139. package/dist/components/chunks/smart-BU62RHF9.mjs +1 -0
  1140. package/dist/components/chunks/snail-BG8W-zA1.mjs +1 -0
  1141. package/dist/components/chunks/snc-D38gvCmF.mjs +1 -0
  1142. package/dist/components/chunks/sngls-aUeLP5pS.mjs +1 -0
  1143. package/dist/components/chunks/snm-D9sl-sgj.mjs +1 -0
  1144. package/dist/components/chunks/snt-CXLqSW2z.mjs +1 -0
  1145. package/dist/components/chunks/snx-CcSYNkfh.mjs +1 -0
  1146. package/dist/components/chunks/soaps-CuvXCz5o.mjs +1 -0
  1147. package/dist/components/chunks/socks-CK-pKN1I.mjs +1 -0
  1148. package/dist/components/chunks/sofi-WFS9QLHP.mjs +1 -0
  1149. package/dist/components/chunks/sol-tkKM_0CU.mjs +1 -0
  1150. package/dist/components/chunks/solch-BhJag1Xx.mjs +1 -0
  1151. package/dist/components/chunks/soul-D3eGr9_u.mjs +1 -0
  1152. package/dist/components/chunks/sov-6TOtH3Ne.mjs +1 -0
  1153. package/dist/components/chunks/spank-20UI-Z0T.mjs +1 -0
  1154. package/dist/components/chunks/spike-0U2THtpd.mjs +1 -0
  1155. package/dist/components/chunks/spn-BTTAZwho.mjs +1 -0
  1156. package/dist/components/chunks/sqr-BHictv8i.mjs +1 -0
  1157. package/dist/components/chunks/srm-BjOu8XlW.mjs +1 -0
  1158. package/dist/components/chunks/ssv-DLJPc_MO.mjs +1 -0
  1159. package/dist/components/chunks/stake-B5eTIQoW.mjs +1 -0
  1160. package/dist/components/chunks/steem-qLujqZ46.mjs +1 -0
  1161. package/dist/components/chunks/step-Dk1OQnvn.mjs +1 -0
  1162. package/dist/components/chunks/steth-BTmZv8BH.mjs +1 -0
  1163. package/dist/components/chunks/stg-DzQH5Bka.mjs +1 -0
  1164. package/dist/components/chunks/stmx-BsVd478D.mjs +1 -0
  1165. package/dist/components/chunks/storj-DZ7LNKZR.mjs +1 -0
  1166. package/dist/components/chunks/storm-Chnzu-5x.mjs +1 -0
  1167. package/dist/components/chunks/stpt-BvF2JXdF.mjs +1 -0
  1168. package/dist/components/chunks/strat-uIoV_Yej.mjs +1 -0
  1169. package/dist/components/chunks/strdy-h4G5Kc4K.mjs +1 -0
  1170. package/dist/components/chunks/strk-D3GQ-XBr.mjs +1 -0
  1171. package/dist/components/chunks/strx-DF_xZtr5.mjs +1 -0
  1172. package/dist/components/chunks/stx-D9bj640u.mjs +1 -0
  1173. package/dist/components/chunks/stz-DUX7tE5n.mjs +1 -0
  1174. package/dist/components/chunks/sub-CfU6fFrM.mjs +1 -0
  1175. package/dist/components/chunks/sui-eBmnj_sQ.mjs +1 -0
  1176. package/dist/components/chunks/sun-B-aOcIhO.mjs +1 -0
  1177. package/dist/components/chunks/super-BFV29a3l.mjs +1 -0
  1178. package/dist/components/chunks/suqa-JJ7qWkLM.mjs +1 -0
  1179. package/dist/components/chunks/susd-2-Drgq57Jk.mjs +1 -0
  1180. package/dist/components/chunks/susd-Cn-yAcxr.mjs +1 -0
  1181. package/dist/components/chunks/sushi-o8ogf4QT.mjs +1 -0
  1182. package/dist/components/chunks/suter-BSiXo9Dt.mjs +1 -0
  1183. package/dist/components/chunks/swap-DCIPXb4Y.mjs +1 -0
  1184. package/dist/components/chunks/sweat-CCbfZxmC.mjs +1 -0
  1185. package/dist/components/chunks/sweth-C4raduXT.mjs +1 -0
  1186. package/dist/components/chunks/swth-Cy-S-p4H.mjs +1 -0
  1187. package/dist/components/chunks/sxdt-Deqzd_kN.mjs +1 -0
  1188. package/dist/components/chunks/sxp-D9W2SIas.mjs +1 -0
  1189. package/dist/components/chunks/syn-C2spysDY.mjs +1 -0
  1190. package/dist/components/chunks/sys-BcEJmU8P.mjs +1 -0
  1191. package/dist/components/chunks/t-DquUEDol.mjs +1 -0
  1192. package/dist/components/chunks/tbtc-2-Cx5QeisG.mjs +1 -0
  1193. package/dist/components/chunks/tbtc-pNGsBKl6.mjs +1 -0
  1194. package/dist/components/chunks/tct-CwFIPiup.mjs +1 -0
  1195. package/dist/components/chunks/tel-HlGlOnjA.mjs +1 -0
  1196. package/dist/components/chunks/tet-D48TqpIa.mjs +1 -0
  1197. package/dist/components/chunks/tfuel-CsbnxkdI.mjs +1 -0
  1198. package/dist/components/chunks/thales-Cz3dXurL.mjs +1 -0
  1199. package/dist/components/chunks/thc-D9HP7r_G.mjs +1 -0
  1200. package/dist/components/chunks/thedao-BAIqo_Mn.mjs +1 -0
  1201. package/dist/components/chunks/theta-CqoXk3wq.mjs +1 -0
  1202. package/dist/components/chunks/thr-CtbQuzRq.mjs +1 -0
  1203. package/dist/components/chunks/tia-D_461DJO.mjs +1 -0
  1204. package/dist/components/chunks/tio-BLXDKnyW.mjs +1 -0
  1205. package/dist/components/chunks/titan-CzKwU43V.mjs +1 -0
  1206. package/dist/components/chunks/tkn-CwFAfpZY.mjs +1 -0
  1207. package/dist/components/chunks/tko-CnmRZQ6h.mjs +1 -0
  1208. package/dist/components/chunks/tky-DiGyzjdt.mjs +1 -0
  1209. package/dist/components/chunks/tnb-Ci-EOU9o.mjs +1 -0
  1210. package/dist/components/chunks/tnc-RCARJKbH.mjs +1 -0
  1211. package/dist/components/chunks/tnd-BjtjPEX8.mjs +1 -0
  1212. package/dist/components/chunks/tnt-CR3htMrF.mjs +1 -0
  1213. package/dist/components/chunks/token-C1uIvuNc.mjs +1 -0
  1214. package/dist/components/chunks/tomi-DawSR_p0.mjs +1 -0
  1215. package/dist/components/chunks/tomo-DXQ3bv0A.mjs +1 -0
  1216. package/dist/components/chunks/ton-DqKn0UJk.mjs +1 -0
  1217. package/dist/components/chunks/torn-DNFzuQ_t.mjs +1 -0
  1218. package/dist/components/chunks/tower-B5pTubQ5.mjs +1 -0
  1219. package/dist/components/chunks/tpay-ChyzJkaO.mjs +1 -0
  1220. package/dist/components/chunks/trac-CYi1qALd.mjs +1 -0
  1221. package/dist/components/chunks/trb-KRoWP_cx.mjs +1 -0
  1222. package/dist/components/chunks/tribe-Bjn7Q0Fb.mjs +1 -0
  1223. package/dist/components/chunks/trig-CxTAix4Y.mjs +1 -0
  1224. package/dist/components/chunks/trtl-Cfr6W7Gu.mjs +1 -0
  1225. package/dist/components/chunks/tru-yUcMZn__.mjs +1 -0
  1226. package/dist/components/chunks/trx-QAMfjW69.mjs +1 -0
  1227. package/dist/components/chunks/tryb-CYb9eEgk.mjs +1 -0
  1228. package/dist/components/chunks/ttc-CBidOHAi.mjs +1 -0
  1229. package/dist/components/chunks/tube-SC-EETj2.mjs +1 -0
  1230. package/dist/components/chunks/tusd-CfQxEg3L.mjs +1 -0
  1231. package/dist/components/chunks/twt-ilqb3ZkJ.mjs +1 -0
  1232. package/dist/components/chunks/tyzen-BKPopG7Q.mjs +1 -0
  1233. package/dist/components/chunks/ubi-D0q_Xmry.mjs +1 -0
  1234. package/dist/components/chunks/ubq-CKwV9wrN.mjs +1 -0
  1235. package/dist/components/chunks/ubt-BbYSJDo7.mjs +1 -0
  1236. package/dist/components/chunks/uft-CErYLYpK.mjs +1 -0
  1237. package/dist/components/chunks/ult-2-mAbEPZgh.mjs +1 -0
  1238. package/dist/components/chunks/ult-B9sg1sCO.mjs +1 -0
  1239. package/dist/components/chunks/uma-DgG04DyW.mjs +1 -0
  1240. package/dist/components/chunks/uncx-DltwheYf.mjs +1 -0
  1241. package/dist/components/chunks/unfi-BWpcvm6v.mjs +1 -0
  1242. package/dist/components/chunks/uni-ISkMetTs.mjs +1 -0
  1243. package/dist/components/chunks/unibot-ibprOW5i.mjs +1 -0
  1244. package/dist/components/chunks/uniqo-BfT0dSlc.mjs +1 -0
  1245. package/dist/components/chunks/unn-kaDSbims.mjs +1 -0
  1246. package/dist/components/chunks/uos-BYfqH982.mjs +1 -0
  1247. package/dist/components/chunks/upp-Ch0APIWe.mjs +1 -0
  1248. package/dist/components/chunks/usdc-CScadAi8.mjs +1 -0
  1249. package/dist/components/chunks/usdd-D0E_bOpu.mjs +1 -0
  1250. package/dist/components/chunks/usdn-D_JVIAwp.mjs +1 -0
  1251. package/dist/components/chunks/usdp-DIHpRWZG.mjs +1 -0
  1252. package/dist/components/chunks/usds-BRispmxg.mjs +1 -0
  1253. package/dist/components/chunks/usdt-chf5c8bE.mjs +1 -0
  1254. package/dist/components/chunks/useEaeraInputPhoneNumber-CKXimj-u.mjs +1 -0
  1255. package/dist/components/chunks/usx-GPdi6yyS.mjs +1 -0
  1256. package/dist/components/chunks/utk-YmFOjuUL.mjs +1 -0
  1257. package/dist/components/chunks/uuu-BZd5lkR4.mjs +1 -0
  1258. package/dist/components/chunks/uxp-BZHqJpAr.mjs +1 -0
  1259. package/dist/components/chunks/vai-B5BUIq1q.mjs +1 -0
  1260. package/dist/components/chunks/value-RU0KV7CI.mjs +1 -0
  1261. package/dist/components/chunks/vekwenta-BMH4s2oy.mjs +1 -0
  1262. package/dist/components/chunks/vela-DuUq32_i.mjs +1 -0
  1263. package/dist/components/chunks/velo-Dd2ePkov.mjs +1 -0
  1264. package/dist/components/chunks/vendor-currency-symbol-map-C-1fEG2R.mjs +1 -0
  1265. package/dist/components/chunks/vendor-dayjs-D8w0D2To.mjs +1 -0
  1266. package/dist/components/chunks/vendor-email-misspelled-0hsXkSSK.mjs +1 -0
  1267. package/dist/components/chunks/vendor-es-toolkit-D-WXci__.mjs +1 -0
  1268. package/dist/components/chunks/vendor-html-to-image-DzdJgLib.mjs +1 -0
  1269. package/dist/components/chunks/vendor-libphonenumber-js-bhez_Ujn.mjs +1 -0
  1270. package/dist/components/chunks/vendor-lodash-es-DUTj3yNB.mjs +1 -0
  1271. package/dist/components/chunks/vendor-sortablejs-D3DyHO5Y.mjs +7 -0
  1272. package/dist/components/chunks/vendor-unorm-Degftfa1.mjs +1 -0
  1273. package/dist/components/chunks/vendor-vueuse-core-B96HGhR7.mjs +1 -0
  1274. package/dist/components/chunks/veri-Cj_yzGXl.mjs +1 -0
  1275. package/dist/components/chunks/vest-sL4CQj3H.mjs +1 -0
  1276. package/dist/components/chunks/vet-BdxtSlbQ.mjs +1 -0
  1277. package/dist/components/chunks/vgx-C1K2aERp.mjs +1 -0
  1278. package/dist/components/chunks/via-C_toZovx.mjs +1 -0
  1279. package/dist/components/chunks/vib-Dj-bB55d.mjs +1 -0
  1280. package/dist/components/chunks/vibe-AuuIayv_.mjs +1 -0
  1281. package/dist/components/chunks/vidt-CmCAMgXe.mjs +1 -0
  1282. package/dist/components/chunks/vikky-DD6e6CWo.mjs +1 -0
  1283. package/dist/components/chunks/vin-DBteTwpG.mjs +1 -0
  1284. package/dist/components/chunks/vina-BQazja1a.mjs +1 -0
  1285. package/dist/components/chunks/vita-D3XGo7mw.mjs +1 -0
  1286. package/dist/components/chunks/vite-BnJpKhol.mjs +1 -0
  1287. package/dist/components/chunks/viu-DkqJIfgE.mjs +1 -0
  1288. package/dist/components/chunks/vlx-CHHtBqE7.mjs +1 -0
  1289. package/dist/components/chunks/vrs-Cwm77dpo.mjs +1 -0
  1290. package/dist/components/chunks/vs-CW9yBFGb.mjs +1 -0
  1291. package/dist/components/chunks/vsp-DPv36qfs.mjs +1 -0
  1292. package/dist/components/chunks/vsys-DybUjeL0.mjs +1 -0
  1293. package/dist/components/chunks/vtc-078er3If.mjs +1 -0
  1294. package/dist/components/chunks/vvs-C2VDdK4J.mjs +1 -0
  1295. package/dist/components/chunks/wabi-CbEiv2Oz.mjs +1 -0
  1296. package/dist/components/chunks/wagmigames-BN0Uwx9K.mjs +1 -0
  1297. package/dist/components/chunks/wan-BJQbSodM.mjs +1 -0
  1298. package/dist/components/chunks/warp-DIz8hQXZ.mjs +1 -0
  1299. package/dist/components/chunks/wassie-oeGzqUtV.mjs +1 -0
  1300. package/dist/components/chunks/waves-Beo6yBQz.mjs +1 -0
  1301. package/dist/components/chunks/wbt-BnPoPavf.mjs +1 -0
  1302. package/dist/components/chunks/wbtc-CHJE5m70.mjs +1 -0
  1303. package/dist/components/chunks/wck-DQbeJoQa.mjs +1 -0
  1304. package/dist/components/chunks/wct-ClF1sN5b.mjs +1 -0
  1305. package/dist/components/chunks/weco-BnQnTmwx.mjs +1 -0
  1306. package/dist/components/chunks/wemix-dBp7MMaA.mjs +1 -0
  1307. package/dist/components/chunks/weth-D_mVeYXB.mjs +1 -0
  1308. package/dist/components/chunks/wexpoly-Dxm2Zhqt.mjs +1 -0
  1309. package/dist/components/chunks/whale-2NSLRQQf.mjs +1 -0
  1310. package/dist/components/chunks/wib-DFF-wkwy.mjs +1 -0
  1311. package/dist/components/chunks/wild-CIvMK_VS.mjs +1 -0
  1312. package/dist/components/chunks/win-BmWgbl_d.mjs +1 -0
  1313. package/dist/components/chunks/wing-CZye6PDZ.mjs +1 -0
  1314. package/dist/components/chunks/wings-BvdwQ5Mk.mjs +1 -0
  1315. package/dist/components/chunks/wld-Bwc6uMCb.mjs +1 -0
  1316. package/dist/components/chunks/wmt-CInqfSOE.mjs +1 -0
  1317. package/dist/components/chunks/woo-DTHaAqNj.mjs +1 -0
  1318. package/dist/components/chunks/wopenx-f9SDIkRN.mjs +1 -0
  1319. package/dist/components/chunks/wpr-CXBOlLdI.mjs +1 -0
  1320. package/dist/components/chunks/wrx-9ju9D9uk.mjs +1 -0
  1321. package/dist/components/chunks/wsteth-b05wjCaO.mjs +1 -0
  1322. package/dist/components/chunks/wtbt-C5_0WPb5.mjs +1 -0
  1323. package/dist/components/chunks/wtc-Fxt-Y0Sf.mjs +1 -0
  1324. package/dist/components/chunks/wxt-CiIomR2T.mjs +1 -0
  1325. package/dist/components/chunks/x2y2-SOvTRy2V.mjs +1 -0
  1326. package/dist/components/chunks/xai-D8pUFgmC.mjs +1 -0
  1327. package/dist/components/chunks/xas-DC7e5thf.mjs +1 -0
  1328. package/dist/components/chunks/xaut-BCBVxuyA.mjs +1 -0
  1329. package/dist/components/chunks/xch-DO1RL9Em.mjs +1 -0
  1330. package/dist/components/chunks/xchf-Cb6yj-1N.mjs +1 -0
  1331. package/dist/components/chunks/xcm-JQwhbhBt.mjs +1 -0
  1332. package/dist/components/chunks/xcn-COvrxgY8.mjs +1 -0
  1333. package/dist/components/chunks/xdc-BxZGIBNh.mjs +1 -0
  1334. package/dist/components/chunks/xec-CQ5I5vKp.mjs +1 -0
  1335. package/dist/components/chunks/xem-Csj0Mc77.mjs +1 -0
  1336. package/dist/components/chunks/xhv-DZxVTL_8.mjs +1 -0
  1337. package/dist/components/chunks/xido-D9koH9kG.mjs +1 -0
  1338. package/dist/components/chunks/xin-DT4Li2pb.mjs +1 -0
  1339. package/dist/components/chunks/xlm-D4zitIXS.mjs +1 -0
  1340. package/dist/components/chunks/xln-CSBDhpYM.mjs +1 -0
  1341. package/dist/components/chunks/xlq-DjDAQ-Q9.mjs +1 -0
  1342. package/dist/components/chunks/xmark-8QRaN0Ow.mjs +1 -0
  1343. package/dist/components/chunks/xmr-C4lYOEka.mjs +1 -0
  1344. package/dist/components/chunks/xmt-B_EWX13q.mjs +1 -0
  1345. package/dist/components/chunks/xmx-BDvqujk7.mjs +1 -0
  1346. package/dist/components/chunks/xnk-B7IUwoMx.mjs +1 -0
  1347. package/dist/components/chunks/xno-B2vYy9wr.mjs +1 -0
  1348. package/dist/components/chunks/xns-B9b5iDS_.mjs +1 -0
  1349. package/dist/components/chunks/xor-B4mLprfl.mjs +1 -0
  1350. package/dist/components/chunks/xpr-CREwtn70.mjs +1 -0
  1351. package/dist/components/chunks/xprt-DW0njBQ7.mjs +1 -0
  1352. package/dist/components/chunks/xrd-ZWwZJ2wD.mjs +1 -0
  1353. package/dist/components/chunks/xrgb-BYrN5sd0.mjs +1 -0
  1354. package/dist/components/chunks/xrp-DdgCWLJk.mjs +1 -0
  1355. package/dist/components/chunks/xsn-DAz0RGAp.mjs +1 -0
  1356. package/dist/components/chunks/xsr-DYPoKflP.mjs +1 -0
  1357. package/dist/components/chunks/xtz-Cqr7gEVh.mjs +1 -0
  1358. package/dist/components/chunks/xvg-BINcXWe3.mjs +1 -0
  1359. package/dist/components/chunks/xym-9GjCALKC.mjs +1 -0
  1360. package/dist/components/chunks/xyo-DHo9xSq-.mjs +1 -0
  1361. package/dist/components/chunks/xzc-CxFwO4Y8.mjs +1 -0
  1362. package/dist/components/chunks/yfi-CPvCVM3w.mjs +1 -0
  1363. package/dist/components/chunks/yfii-pay5UrcQ.mjs +1 -0
  1364. package/dist/components/chunks/yld-4QOjLcdA.mjs +1 -0
  1365. package/dist/components/chunks/yoyo-BhPMciXv.mjs +1 -0
  1366. package/dist/components/chunks/zai-Bu8iZ1hW.mjs +1 -0
  1367. package/dist/components/chunks/zb-BJqqrjDk.mjs +1 -0
  1368. package/dist/components/chunks/zco-Cos-RVoL.mjs +1 -0
  1369. package/dist/components/chunks/zec-CU-AhzqX.mjs +1 -0
  1370. package/dist/components/chunks/zel-DrJR0qba.mjs +1 -0
  1371. package/dist/components/chunks/zen-CB7E3xP8.mjs +1 -0
  1372. package/dist/components/chunks/zeph-BIdAhpm-.mjs +1 -0
  1373. package/dist/components/chunks/zil-BysPBX4P.mjs +1 -0
  1374. package/dist/components/chunks/zks-CJhqnBtu.mjs +1 -0
  1375. package/dist/components/chunks/zksp-DdPG2pfH.mjs +1 -0
  1376. package/dist/components/chunks/zpay-BPvp2VkO.mjs +1 -0
  1377. package/dist/components/chunks/zrx-BWi3YM-M.mjs +1 -0
  1378. package/dist/components/chunks/zusd-CHYC504b.mjs +1 -0
  1379. package/dist/components/composite/EaeraCalendar.d.ts +300 -0
  1380. package/dist/components/composite/EaeraCalendar.mjs +1 -0
  1381. package/dist/components/composite/EaeraDataCard.d.ts +51 -0
  1382. package/dist/components/composite/EaeraDataCard.mjs +1 -0
  1383. package/dist/components/composite/EaeraDropdownV2.d.ts +2062 -0
  1384. package/dist/components/composite/EaeraDropdownV2.mjs +1 -0
  1385. package/dist/components/composite/EaeraDynamicFieldRow.d.ts +67 -0
  1386. package/dist/components/composite/EaeraDynamicFieldRow.mjs +1 -0
  1387. package/dist/components/composite/EaeraEmailSuggestion.d.ts +15 -0
  1388. package/dist/components/composite/EaeraEmailSuggestion.mjs +1 -0
  1389. package/dist/components/composite/EaeraForm.d.ts +87 -0
  1390. package/dist/components/composite/EaeraForm.mjs +1 -0
  1391. package/dist/components/composite/EaeraTableV2.d.ts +1421 -0
  1392. package/dist/components/composite/EaeraTableV2.mjs +1 -0
  1393. package/dist/components/custom/EaeraBarChart.mjs +1 -0
  1394. package/dist/components/custom/EaeraButtonGroup.d.ts +56 -0
  1395. package/dist/components/custom/EaeraButtonGroup.mjs +1 -0
  1396. package/dist/components/custom/EaeraCountryField.d.ts +64 -0
  1397. package/dist/components/custom/EaeraCountryField.mjs +1 -0
  1398. package/dist/components/custom/EaeraCurrencyIcon.d.ts +12 -0
  1399. package/dist/components/custom/EaeraCurrencyIcon.mjs +1 -0
  1400. package/dist/components/custom/EaeraDonutChart.d.ts +16 -0
  1401. package/dist/components/custom/EaeraDonutChart.mjs +1 -0
  1402. package/dist/components/custom/EaeraInputPhone.d.ts +22 -0
  1403. package/dist/components/custom/EaeraInputPhone.mjs +1 -0
  1404. package/dist/components/custom/EaeraInputPhoneNumber.d.ts +572 -0
  1405. package/dist/components/custom/EaeraInputPhoneNumber.mjs +1 -0
  1406. package/dist/components/custom/EaeraLanguageCurrencyMenu.d.ts +32 -0
  1407. package/dist/components/custom/EaeraLanguageCurrencyMenu.mjs +1 -0
  1408. package/dist/components/custom/EaeraLineChart.d.ts +15 -0
  1409. package/dist/components/custom/EaeraLineChart.mjs +1 -0
  1410. package/dist/components/custom/EaeraMixBalanceProfitEChart.mjs +1 -0
  1411. package/dist/components/custom/EaeraMixEChart.mjs +1 -0
  1412. package/dist/components/custom/EaeraSelectGroup.d.ts +72 -0
  1413. package/dist/components/custom/EaeraSelectGroup.mjs +1 -0
  1414. package/dist/components/custom/EaeraSelectOther.d.ts +76 -0
  1415. package/dist/components/custom/EaeraSelectOther.mjs +1 -0
  1416. package/dist/components/custom/EaeraStatisticsCard.d.ts +42 -0
  1417. package/dist/components/custom/EaeraStatisticsCard.mjs +1 -0
  1418. package/dist/components/custom/EaeraThemeSwitcher.mjs +1 -0
  1419. package/dist/components/custom/EaeraTopbarMenu.d.ts +30 -0
  1420. package/dist/components/custom/EaeraTopbarMenu.mjs +1 -0
  1421. package/dist/components/custom/EaeraTreeV2.d.ts +5887 -0
  1422. package/dist/components/custom/EaeraTreeV2.mjs +1 -0
  1423. package/dist/components/custom/EaeraWidgetBarRace.d.ts +36 -0
  1424. package/dist/components/custom/EaeraWidgetBarRace.mjs +1 -0
  1425. package/dist/components/custom/EaeraWidgetBasicTradingStatistics.d.ts +43 -0
  1426. package/dist/components/custom/EaeraWidgetBasicTradingStatistics.mjs +1 -0
  1427. package/dist/components/custom/EaeraWidgetEconomicInsight.d.ts +25 -0
  1428. package/dist/components/custom/EaeraWidgetEconomicInsight.mjs +1 -0
  1429. package/dist/components/custom/EaeraWidgetGrowthBalanceProfitChart.d.ts +39 -0
  1430. package/dist/components/custom/EaeraWidgetGrowthBalanceProfitChart.mjs +1 -0
  1431. package/dist/components/custom/EaeraWidgetHeader.d.ts +35 -0
  1432. package/dist/components/custom/EaeraWidgetHeader.mjs +1 -0
  1433. package/dist/components/custom/EaeraWidgetIframe.d.ts +38 -0
  1434. package/dist/components/custom/EaeraWidgetIframe.mjs +1 -0
  1435. package/dist/components/custom/EaeraWidgetMarginCalculator.d.ts +376 -0
  1436. package/dist/components/custom/EaeraWidgetMarginCalculator.mjs +1 -0
  1437. package/dist/components/custom/EaeraWidgetMetricsStaticCard.d.ts +14 -0
  1438. package/dist/components/custom/EaeraWidgetMetricsStaticCard.mjs +1 -0
  1439. package/dist/components/custom/EaeraWidgetMonthlyGainChart.d.ts +34 -0
  1440. package/dist/components/custom/EaeraWidgetMonthlyGainChart.mjs +1 -0
  1441. package/dist/components/custom/EaeraWidgetPLCalendar.d.ts +20 -0
  1442. package/dist/components/custom/EaeraWidgetPLCalendar.mjs +1 -0
  1443. package/dist/components/custom/EaeraWidgetPLTime.d.ts +35 -0
  1444. package/dist/components/custom/EaeraWidgetPLTime.mjs +1 -0
  1445. package/dist/components/custom/EaeraWidgetPieChart.d.ts +34 -0
  1446. package/dist/components/custom/EaeraWidgetPieChart.mjs +1 -0
  1447. package/dist/components/custom/EaeraWidgetPositionCalculator.d.ts +376 -0
  1448. package/dist/components/custom/EaeraWidgetPositionCalculator.mjs +1 -0
  1449. package/dist/components/custom/EaeraWidgetProfitLossCard.d.ts +10 -0
  1450. package/dist/components/custom/EaeraWidgetProfitLossCard.mjs +1 -0
  1451. package/dist/components/custom/EaeraWidgetScoreChart.d.ts +33 -0
  1452. package/dist/components/custom/EaeraWidgetScoreChart.mjs +1 -0
  1453. package/dist/components/custom/EaeraWidgetStrategyOverView.d.ts +14 -0
  1454. package/dist/components/custom/EaeraWidgetStrategyOverView.mjs +1 -0
  1455. package/dist/components/custom/EaeraWidgetStrategyPerformance.d.ts +33 -0
  1456. package/dist/components/custom/EaeraWidgetStrategyPerformance.mjs +1 -0
  1457. package/dist/components/custom/EaeraWidgetTechnicalViews.d.ts +25 -0
  1458. package/dist/components/custom/EaeraWidgetTechnicalViews.mjs +1 -0
  1459. package/dist/components/custom/EaeraWidgetTimeLineBar.d.ts +20 -0
  1460. package/dist/components/custom/EaeraWidgetTimeLineBar.mjs +1 -0
  1461. package/dist/components/custom/EaeraWidgetTimeLineTable.d.ts +11 -0
  1462. package/dist/components/custom/EaeraWidgetTimeLineTable.mjs +1 -0
  1463. package/dist/components/custom/EaeraWidgetTradeVolumeStatistics.d.ts +33 -0
  1464. package/dist/components/custom/EaeraWidgetTradeVolumeStatistics.mjs +1 -0
  1465. package/dist/components/fonts/PPMori-Extralight.otf +0 -0
  1466. package/dist/components/fonts/PPMori-ExtralightItalic.otf +0 -0
  1467. package/dist/components/fonts/PPMori-Regular.otf +0 -0
  1468. package/dist/components/fonts/PPMori-RegularItalic.otf +0 -0
  1469. package/dist/components/fonts/PPMori-SemiBold.otf +0 -0
  1470. package/dist/components/fonts/PPMori-SemiBoldItalic.otf +0 -0
  1471. package/dist/components/vite.svg +1 -0
  1472. package/dist/components/webtrade/EaeraCfdOrderPlacement/index.d.ts +29 -0
  1473. package/dist/components/webtrade/EaeraCfdOrderPlacement/type.d.ts +21 -0
  1474. package/dist/components/webtrade/EaeraCfdOrderPlacement/useEaeraOrderPlacement.d.ts +23 -0
  1475. package/dist/components/webtrade/EaeraCfdOrderPlacement.d.ts +3 -0
  1476. package/dist/components/webtrade/EaeraCfdOrderPlacement.mjs +1 -0
  1477. package/dist/components/webtrade/EaeraCfdWatchlist/index.d.ts +14 -0
  1478. package/dist/components/webtrade/EaeraCfdWatchlist/type.d.ts +13 -0
  1479. package/dist/components/webtrade/EaeraCfdWatchlist/useEaeraWatchlist.d.ts +131 -0
  1480. package/dist/components/webtrade/EaeraCfdWatchlist.d.ts +3 -0
  1481. package/dist/components/webtrade/EaeraCfdWatchlist.mjs +1 -0
  1482. package/dist/components/webtrade/EaeraDrawingOverlay/constants.d.ts +3 -0
  1483. package/dist/components/webtrade/EaeraDrawingOverlay/core/base/plugin-base.d.ts +116 -0
  1484. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/brush/brush.drawing-tool.d.ts +70 -0
  1485. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/brush/brush.model.d.ts +66 -0
  1486. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/brush/brush.pane-view.d.ts +11 -0
  1487. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/brush/brush.renderer.d.ts +31 -0
  1488. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/brush/brush.utils.d.ts +14 -0
  1489. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/brush/index.d.ts +6 -0
  1490. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/drawing-bridge.d.ts +17 -0
  1491. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/line/line.drawing-tool.d.ts +77 -0
  1492. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/line/line.model.d.ts +57 -0
  1493. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/line/line.pane-view.d.ts +15 -0
  1494. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/line/line.renderer.d.ts +19 -0
  1495. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/text/index.d.ts +5 -0
  1496. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/text/text.drawing-tool.d.ts +76 -0
  1497. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/text/text.model.d.ts +40 -0
  1498. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/text/text.pane-view.d.ts +11 -0
  1499. package/dist/components/webtrade/EaeraDrawingOverlay/core/draws/text/text.renderer.d.ts +10 -0
  1500. package/dist/components/webtrade/EaeraDrawingOverlay/core/helpers/assertions.d.ts +1 -0
  1501. package/dist/components/webtrade/EaeraDrawingOverlay/core/helpers/performance.d.ts +13 -0
  1502. package/dist/components/webtrade/EaeraDrawingOverlay/core/helpers/positions.d.ts +30 -0
  1503. package/dist/components/webtrade/EaeraDrawingOverlay/core/helpers/tool-drawing.d.ts +24 -0
  1504. package/dist/components/webtrade/EaeraDrawingOverlay/core/helpers/tool-events.d.ts +18 -0
  1505. package/dist/components/webtrade/EaeraDrawingOverlay/core/helpers/tool-interactions.d.ts +17 -0
  1506. package/dist/components/webtrade/EaeraDrawingOverlay/core/helpers/tool-pointer.d.ts +9 -0
  1507. package/dist/components/webtrade/EaeraDrawingOverlay/core/helpers/tool-primitives.d.ts +18 -0
  1508. package/dist/components/webtrade/EaeraDrawingOverlay/core/runtime/runtime-guards.d.ts +3 -0
  1509. package/dist/components/webtrade/EaeraDrawingOverlay/index.d.ts +17 -0
  1510. package/dist/components/webtrade/EaeraDrawingOverlay/useEaeraDrawingOverlay.d.ts +23 -0
  1511. package/dist/components/webtrade/EaeraDrawingOverlay/useEaeraDrawingOverlayController.d.ts +32 -0
  1512. package/dist/components/webtrade/EaeraDrawingOverlay/utils/chart.d.ts +6 -0
  1513. package/dist/components/webtrade/EaeraDrawingOverlay.d.ts +3 -0
  1514. package/dist/components/webtrade/EaeraDrawingOverlay.mjs +1 -0
  1515. package/dist/components/webtrade/EaeraLightweightChart/components/index.d.ts +2 -0
  1516. package/dist/components/webtrade/EaeraLightweightChart/constants.d.ts +156 -0
  1517. package/dist/components/webtrade/EaeraLightweightChart/index.d.ts +2 -0
  1518. package/dist/components/webtrade/EaeraLightweightChart/useEaeraLightweightChart.d.ts +80 -0
  1519. package/dist/components/webtrade/EaeraLightweightChart/utils.d.ts +6 -0
  1520. package/dist/components/webtrade/EaeraLightweightChart.d.ts +2 -0
  1521. package/dist/components/webtrade/EaeraLightweightChart.mjs +1 -0
  1522. package/dist/components/webtrade/EaeraMarketDepth/components/index.d.ts +3 -0
  1523. package/dist/components/webtrade/EaeraMarketDepth/index.d.ts +47 -0
  1524. package/dist/components/webtrade/EaeraMarketDepth/useEaeraMarketDepth.d.ts +30 -0
  1525. package/dist/components/webtrade/EaeraMarketDepth.d.ts +2 -0
  1526. package/dist/components/webtrade/EaeraMarketDepth.mjs +1 -0
  1527. package/dist/components/webtrade/EaeraOrderPlacement/components/index.d.ts +3 -0
  1528. package/dist/components/webtrade/EaeraOrderPlacement/index.d.ts +36 -0
  1529. package/dist/components/webtrade/EaeraOrderPlacement/useEaeraOrderPlacement.d.ts +26 -0
  1530. package/dist/components/webtrade/EaeraOrderPlacement/utils.d.ts +2 -0
  1531. package/dist/components/webtrade/EaeraOrderPlacement.d.ts +2 -0
  1532. package/dist/components/webtrade/EaeraOrderPlacement.mjs +1 -0
  1533. package/dist/components/webtrade/EaeraOrderlineOverlay/constants.d.ts +16 -0
  1534. package/dist/components/webtrade/EaeraOrderlineOverlay/index.d.ts +39 -0
  1535. package/dist/components/webtrade/EaeraOrderlineOverlay/useEaeraOrderlineOverlay.d.ts +24 -0
  1536. package/dist/components/webtrade/EaeraOrderlineOverlay.d.ts +2 -0
  1537. package/dist/components/webtrade/EaeraOrderlineOverlay.mjs +1 -0
  1538. package/dist/components/webtrade/EaeraSymbolSpec/index.d.ts +4 -0
  1539. package/dist/components/webtrade/EaeraSymbolSpec/type.d.ts +12 -0
  1540. package/dist/components/webtrade/EaeraSymbolSpec.d.ts +2 -0
  1541. package/dist/components/webtrade/EaeraSymbolSpec.mjs +1 -0
  1542. package/dist/components/webtrade/EaeraTimeNSales/components/index.d.ts +2 -0
  1543. package/dist/components/webtrade/EaeraTimeNSales/index.d.ts +47 -0
  1544. package/dist/components/webtrade/EaeraTimeNSales/useEaeraTimeNSales.d.ts +27 -0
  1545. package/dist/components/webtrade/EaeraTimeNSales.d.ts +2 -0
  1546. package/dist/components/webtrade/EaeraTimeNSales.mjs +1 -0
  1547. package/dist/components/webtrade/EaeraTradingTable/components/index.d.ts +9 -0
  1548. package/dist/components/webtrade/EaeraTradingTable/index.d.ts +90 -0
  1549. package/dist/components/webtrade/EaeraTradingTable/useEaeraTradingTable.d.ts +154 -0
  1550. package/dist/components/webtrade/EaeraTradingTable/utils.d.ts +24 -0
  1551. package/dist/components/webtrade/EaeraTradingTable.d.ts +2 -0
  1552. package/dist/components/webtrade/EaeraTradingTable.mjs +1 -0
  1553. package/dist/components/webtrade/EaeraWatchlist/components/index.d.ts +4 -0
  1554. package/dist/components/webtrade/EaeraWatchlist/index.d.ts +31 -0
  1555. package/dist/components/webtrade/EaeraWatchlist/useEaeraWatchlist.d.ts +49 -0
  1556. package/dist/components/webtrade/EaeraWatchlist.d.ts +2 -0
  1557. package/dist/components/webtrade/EaeraWatchlist.mjs +1 -0
  1558. package/dist/composables/eventListener.d.ts +1 -0
  1559. package/dist/composables/form/useEaeraForm.d.ts +119 -0
  1560. package/dist/composables/inputPhoneNumber/useEaeraInputPhoneNumber.d.ts +72 -0
  1561. package/dist/constants/dateRangeFilterKeys.d.ts +1 -0
  1562. package/dist/data/balaceGrowthChartSampleData.d.ts +49 -0
  1563. package/dist/data/mothlyGrowthSampleData.d.ts +2 -0
  1564. package/dist/data/phoneNumbers.d.ts +16 -0
  1565. package/dist/data/regions.d.ts +16 -0
  1566. package/dist/eaera-widgets-v2.es.js +87501 -0
  1567. package/dist/eaera-widgets-v2.umd.cjs +73 -0
  1568. package/dist/fonts/PPMori-Extralight.otf +0 -0
  1569. package/dist/fonts/PPMori-ExtralightItalic.otf +0 -0
  1570. package/dist/fonts/PPMori-Regular.otf +0 -0
  1571. package/dist/fonts/PPMori-RegularItalic.otf +0 -0
  1572. package/dist/fonts/PPMori-SemiBold.otf +0 -0
  1573. package/dist/fonts/PPMori-SemiBoldItalic.otf +0 -0
  1574. package/dist/index.d.ts +12 -0
  1575. package/dist/main.d.ts +0 -0
  1576. package/dist/stories/Description/showcase/Basic.d.ts +3 -0
  1577. package/dist/stories/Description/showcase/Colspan.d.ts +3 -0
  1578. package/dist/stories/Description/showcase/Rowspan.d.ts +3 -0
  1579. package/dist/stories/Description/showcase/Size.d.ts +3 -0
  1580. package/dist/stories/Description/showcase/Vertical.d.ts +3 -0
  1581. package/dist/stories/Description/showcase/index.d.ts +6 -0
  1582. package/dist/stories/Divider/showcase/CustomContent.d.ts +3 -0
  1583. package/dist/stories/Divider/showcase/DashedLine.d.ts +3 -0
  1584. package/dist/stories/Divider/showcase/Vertical.d.ts +3 -0
  1585. package/dist/stories/Divider/showcase/index.d.ts +4 -0
  1586. package/dist/stories/Image/showcase/Fit.d.ts +3 -0
  1587. package/dist/stories/Image/showcase/LazyLoading.d.ts +3 -0
  1588. package/dist/stories/Image/showcase/index.d.ts +3 -0
  1589. package/dist/stories/Input/showcase/input/Basic.d.ts +3 -0
  1590. package/dist/stories/Input/showcase/input/WithPrefixSuffix.d.ts +3 -0
  1591. package/dist/stories/Input/showcase/input/index.d.ts +3 -0
  1592. package/dist/stories/Input/showcase/input-phone-number/InputPhoneNumberBasic.d.ts +3 -0
  1593. package/dist/stories/Input/showcase/input-phone-number/index.d.ts +2 -0
  1594. package/dist/stories/Menu/eaera-menu.d.ts +3 -0
  1595. package/dist/stories/Popover/showcase/Basic.d.ts +78 -0
  1596. package/dist/stories/Popover/showcase/Placement.d.ts +3 -0
  1597. package/dist/stories/Popover/showcase/index.d.ts +3 -0
  1598. package/dist/stories/Rate/showcase/AllowHalf.d.ts +3 -0
  1599. package/dist/stories/Rate/showcase/Max.d.ts +3 -0
  1600. package/dist/stories/Rate/showcase/Readonly.d.ts +3 -0
  1601. package/dist/stories/Rate/showcase/Size.d.ts +3 -0
  1602. package/dist/stories/Rate/showcase/index.d.ts +5 -0
  1603. package/dist/stories/Row/showcase/Row/Align.d.ts +3 -0
  1604. package/dist/stories/Row/showcase/Row/Justify.d.ts +3 -0
  1605. package/dist/stories/Row/showcase/Row/index.d.ts +3 -0
  1606. package/dist/stories/Select/eaera-select.d.ts +7 -0
  1607. package/dist/stories/Select/showcase/country-field/Filterable.d.ts +3 -0
  1608. package/dist/stories/Select/showcase/country-field/Multiple.d.ts +3 -0
  1609. package/dist/stories/Select/showcase/country-field/Size.d.ts +3 -0
  1610. package/dist/stories/Select/showcase/country-field/index.d.ts +4 -0
  1611. package/dist/stories/Select/showcase/select-group/Clearable.d.ts +3 -0
  1612. package/dist/stories/Select/showcase/select-group/CollapseTag.d.ts +3 -0
  1613. package/dist/stories/Select/showcase/select-group/Loading.d.ts +3 -0
  1614. package/dist/stories/Select/showcase/select-group/Multiple.d.ts +3 -0
  1615. package/dist/stories/Select/showcase/select-group/index.d.ts +5 -0
  1616. package/dist/stories/Select/showcase/selectv2/Clearable.d.ts +3 -0
  1617. package/dist/stories/Select/showcase/selectv2/CustomSlot.d.ts +5 -0
  1618. package/dist/stories/Select/showcase/selectv2/Filterable.d.ts +3 -0
  1619. package/dist/stories/Select/showcase/selectv2/Loading.d.ts +3 -0
  1620. package/dist/stories/Select/showcase/selectv2/ObjectSelect.d.ts +3 -0
  1621. package/dist/stories/Select/showcase/selectv2/index.d.ts +6 -0
  1622. package/dist/stories/Text/showcase/Size.d.ts +3 -0
  1623. package/dist/stories/Text/showcase/Tag.d.ts +3 -0
  1624. package/dist/stories/Text/showcase/Truncated.d.ts +3 -0
  1625. package/dist/stories/Text/showcase/Type.d.ts +3 -0
  1626. package/dist/stories/Text/showcase/index.d.ts +5 -0
  1627. package/dist/stories/Tree/eaera-tree.d.ts +22 -0
  1628. package/dist/stories/Upload/showcase/IsShowNoteUpload.d.ts +3 -0
  1629. package/dist/stories/Upload/showcase/index.d.ts +2 -0
  1630. package/dist/stories/Widget/EaeraWidgetBarRace/eaera-widget-bar-race.d.ts +40 -0
  1631. package/dist/stories/Widget/EaeraWidgetGrowthBalanceProfitChart/eaera-widget-growth-balance-profit-chart.d.ts +42 -0
  1632. package/dist/stories/Widget/EaeraWidgetMarginCalculator/eaera-widget-margin-calculator.d.ts +20 -0
  1633. package/dist/stories/Widget/EaeraWidgetMetricsStaticCard/eaera-widget-metrics-static-card.d.ts +7 -0
  1634. package/dist/stories/Widget/EaeraWidgetMonthlyGainChart/eaera-widget-monthly-gain-chart.d.ts +14 -0
  1635. package/dist/stories/Widget/EaeraWidgetPLTimeChart/eaera-widget-pl-time-chart.d.ts +12 -0
  1636. package/dist/stories/Widget/EaeraWidgetPieChart/eaera-widget-pie-chart.d.ts +12 -0
  1637. package/dist/stories/Widget/EaeraWidgetProfitLossCard/eaera-widget-profit-loss-card.d.ts +7 -0
  1638. package/dist/stories/Widget/EaeraWidgetScoreChart/eaera-widget-score-chart.d.ts +3 -0
  1639. package/dist/stories/Widget/EaeraWidgetStrategyPerformance/eaera-widget-strategy-performance.d.ts +14 -0
  1640. package/dist/stories/Widget/EaeraWidgetTimeLineBar/eaera-widget-time-line-bar.d.ts +16 -0
  1641. package/dist/stories/Widget/EaeraWidgetTimeLineTable/eaera-widget-time-line-table.d.ts +12 -0
  1642. package/dist/stories/Widget/EaerraWidgetStrategyOverview/eaera-widget-strategy-overview.d.ts +7 -0
  1643. package/dist/stories/Widget/showcase/basic-trading-statistics/Loading.d.ts +3 -0
  1644. package/dist/stories/Widget/showcase/basic-trading-statistics/ShowFilter.d.ts +3 -0
  1645. package/dist/stories/Widget/showcase/basic-trading-statistics/index.d.ts +3 -0
  1646. package/dist/stories/Widget/showcase/growth-balance-profit-chart/Loading.d.ts +3 -0
  1647. package/dist/stories/Widget/showcase/growth-balance-profit-chart/ShowFilter.d.ts +3 -0
  1648. package/dist/stories/Widget/showcase/growth-balance-profit-chart/ShowHeader.d.ts +3 -0
  1649. package/dist/stories/Widget/showcase/growth-balance-profit-chart/index.d.ts +4 -0
  1650. package/dist/stories/Widget/showcase/margin-calculator/Loading.d.ts +3 -0
  1651. package/dist/stories/Widget/showcase/margin-calculator/index.d.ts +2 -0
  1652. package/dist/stories/Widget/showcase/monthly-gain-chart/Loading.d.ts +3 -0
  1653. package/dist/stories/Widget/showcase/monthly-gain-chart/ShowFilter.d.ts +3 -0
  1654. package/dist/stories/Widget/showcase/monthly-gain-chart/ShowHeader.d.ts +3 -0
  1655. package/dist/stories/Widget/showcase/monthly-gain-chart/index.d.ts +4 -0
  1656. package/dist/stories/Widget/showcase/pl-calendar/Loading.d.ts +3 -0
  1657. package/dist/stories/Widget/showcase/pl-calendar/ShowFilter.d.ts +3 -0
  1658. package/dist/stories/Widget/showcase/pl-calendar/ShowHeader.d.ts +3 -0
  1659. package/dist/stories/Widget/showcase/pl-calendar/index.d.ts +4 -0
  1660. package/dist/stories/Widget/showcase/position-calculator/Loading.d.ts +3 -0
  1661. package/dist/stories/Widget/showcase/position-calculator/index.d.ts +2 -0
  1662. package/dist/stories/Widget/showcase/statistics-card/CustomTitle.d.ts +3 -0
  1663. package/dist/stories/Widget/showcase/statistics-card/IconType.d.ts +3 -0
  1664. package/dist/stories/Widget/showcase/statistics-card/index.d.ts +3 -0
  1665. package/dist/stories/Widget/showcase/strategy-performance/Loading.d.ts +3 -0
  1666. package/dist/stories/Widget/showcase/strategy-performance/index.d.ts +2 -0
  1667. package/dist/stories/Widget/showcase/trade-volumn-statistics/Loading.d.ts +3 -0
  1668. package/dist/stories/Widget/showcase/trade-volumn-statistics/index.d.ts +2 -0
  1669. package/dist/stories/Widget/showcase/widget-header/ShowFilter.d.ts +3 -0
  1670. package/dist/stories/Widget/showcase/widget-header/index.d.ts +2 -0
  1671. package/dist/style.css +1 -0
  1672. package/dist/types/EaeraCfdOrderPlacement.d.ts +51 -0
  1673. package/dist/types/EaeraCfdWatchlist.d.ts +34 -0
  1674. package/dist/types/EaeraDrawingOverlay/chart.d.ts +91 -0
  1675. package/dist/types/EaeraDrawingOverlay/drawings.d.ts +36 -0
  1676. package/dist/types/EaeraDrawingOverlay/index.d.ts +127 -0
  1677. package/dist/types/EaeraFilter.d.ts +22 -0
  1678. package/dist/types/EaeraLightweightChart.d.ts +118 -0
  1679. package/dist/types/EaeraMarketDepth.d.ts +70 -0
  1680. package/dist/types/EaeraOrderPlacement.d.ts +93 -0
  1681. package/dist/types/EaeraOrderlineOverlay.d.ts +60 -0
  1682. package/dist/types/EaeraSymbolSpec.d.ts +43 -0
  1683. package/dist/types/EaeraTimeNSales.d.ts +58 -0
  1684. package/dist/types/EaeraTradingTable.d.ts +263 -0
  1685. package/dist/types/EaeraWatchlist.d.ts +39 -0
  1686. package/dist/types/EaeraWatchlistWidget.d.ts +59 -0
  1687. package/dist/types/MetaWithDescription.d.ts +4 -0
  1688. package/dist/types/index.d.ts +13 -0
  1689. package/dist/utils/colorCss.d.ts +3 -0
  1690. package/dist/utils/formatDate.d.ts +3 -0
  1691. package/dist/utils/formatMoney.d.ts +6 -0
  1692. package/dist/utils/iconSvg.d.ts +3 -0
  1693. package/dist/utils/validate.d.ts +2 -0
  1694. package/dist/vite.svg +1 -0
  1695. package/package.json +164 -0
@@ -0,0 +1,2 @@
1
+ export { default as EaeraLightweightChartHeader } from './EaeraLightweightChartHeader';
2
+ export { default as EaeraLightweightChartFooter } from './EaeraLightweightChartFooter';
@@ -0,0 +1,156 @@
1
+ import { ColorType, LineWidth, Time } from 'lightweight-charts';
2
+ export declare const chartColor: (isDark?: boolean) => {
3
+ surfacePrimary: string;
4
+ surfacePositive: string;
5
+ surfaceNegative: string;
6
+ surfaceElevated: string;
7
+ textPrimary: string;
8
+ textSecondary: string;
9
+ borderPrimary: string;
10
+ borderPrimaryInverse: string;
11
+ borderAction: string;
12
+ areaTop: string;
13
+ areaBottom: string;
14
+ };
15
+ export declare const chartSize: (width: number, height: number) => {
16
+ width: number;
17
+ height: number;
18
+ };
19
+ export declare const chartLayout: (isDark?: boolean) => {
20
+ background: {
21
+ type: ColorType;
22
+ color: string;
23
+ };
24
+ textColor: string;
25
+ };
26
+ export declare const chartGrid: (isDark?: boolean) => {
27
+ vertLines: {
28
+ color: string;
29
+ visible: boolean;
30
+ style: number;
31
+ };
32
+ horzLines: {
33
+ color: string;
34
+ visible: boolean;
35
+ style: number;
36
+ };
37
+ };
38
+ export declare const chartCrosshair: (isDark?: boolean) => {
39
+ mode: number;
40
+ vertLine: {
41
+ color: string;
42
+ width: LineWidth;
43
+ style: LineWidth;
44
+ visible: boolean;
45
+ labelVisible: boolean;
46
+ labelBackgroundColor: string;
47
+ };
48
+ horzLine: {
49
+ color: string;
50
+ width: LineWidth;
51
+ style: LineWidth;
52
+ visible: boolean;
53
+ labelVisible: boolean;
54
+ labelBackgroundColor: string;
55
+ };
56
+ };
57
+ export declare const chartScale: (isDark?: boolean) => {
58
+ rightPriceScale: {
59
+ borderColor: string;
60
+ scaleMargins: {
61
+ top: number;
62
+ bottom: number;
63
+ };
64
+ textColor: string;
65
+ };
66
+ timeScale: {
67
+ borderColor: string;
68
+ timeVisible: boolean;
69
+ rightOffsetPixels: number;
70
+ allowShiftVisibleRangeOnWhitespaceReplacement: boolean;
71
+ textColor: string;
72
+ };
73
+ };
74
+ export declare const chartDefaultOption: (isDark?: boolean) => {
75
+ rightPriceScale: {
76
+ borderColor: string;
77
+ scaleMargins: {
78
+ top: number;
79
+ bottom: number;
80
+ };
81
+ textColor: string;
82
+ };
83
+ timeScale: {
84
+ borderColor: string;
85
+ timeVisible: boolean;
86
+ rightOffsetPixels: number;
87
+ allowShiftVisibleRangeOnWhitespaceReplacement: boolean;
88
+ textColor: string;
89
+ };
90
+ layout: {
91
+ background: {
92
+ type: ColorType;
93
+ color: string;
94
+ };
95
+ textColor: string;
96
+ };
97
+ grid: {
98
+ vertLines: {
99
+ color: string;
100
+ visible: boolean;
101
+ style: number;
102
+ };
103
+ horzLines: {
104
+ color: string;
105
+ visible: boolean;
106
+ style: number;
107
+ };
108
+ };
109
+ crosshair: {
110
+ mode: number;
111
+ vertLine: {
112
+ color: string;
113
+ width: LineWidth;
114
+ style: LineWidth;
115
+ visible: boolean;
116
+ labelVisible: boolean;
117
+ labelBackgroundColor: string;
118
+ };
119
+ horzLine: {
120
+ color: string;
121
+ width: LineWidth;
122
+ style: LineWidth;
123
+ visible: boolean;
124
+ labelVisible: boolean;
125
+ labelBackgroundColor: string;
126
+ };
127
+ };
128
+ localization: {
129
+ timeFormatter: (time: Time) => string;
130
+ };
131
+ width: number;
132
+ height: number;
133
+ };
134
+ export declare const candlestickSeriesOptions: (isDark?: boolean) => {
135
+ upColor: string;
136
+ downColor: string;
137
+ borderVisible: boolean;
138
+ wickUpColor: string;
139
+ wickDownColor: string;
140
+ };
141
+ export declare const lineSeriesOptions: (isDark?: boolean) => {
142
+ color: string;
143
+ lineWidth: LineWidth;
144
+ lineStyle: LineWidth;
145
+ crosshairMarkerVisible: boolean;
146
+ crosshairMarkerRadius: LineWidth;
147
+ };
148
+ export declare const areaSeriesOptions: (isDark?: boolean) => {
149
+ lineColor: string;
150
+ topColor: string;
151
+ bottomColor: string;
152
+ lineWidth: LineWidth;
153
+ lineStyle: LineWidth;
154
+ crosshairMarkerVisible: boolean;
155
+ crosshairMarkerRadius: LineWidth;
156
+ };
@@ -0,0 +1,2 @@
1
+ export { default } from './index';
2
+ export * from './useEaeraLightweightChart';
@@ -0,0 +1,80 @@
1
+ import { ComputedRef, Ref } from 'vue';
2
+ import { ChartTypes, TimeFrames, TimeRanges, ChartMultiViewLayout, ChartData, EaeraLightweightChartChartTypeOption, EaeraLightweightChartCustomRange, EaeraLightweightChartDrawingPluginConfig, EaeraLightweightChartOrderlinePluginConfig, EaeraLightweightChartPlugin, EaeraLightweightChartSnapshotAction, EaeraLightweightChartSnapshotOption, EaeraLightweightChartState, EaeraLightweightChartTimeFrameOption, EaeraLightweightChartTimeRangeOption } from '../../../types/EaeraLightweightChart';
3
+ export interface EaeraLightweightChartProps {
4
+ symbol?: string;
5
+ chartData?: ChartData[];
6
+ selectedTimeFrame?: TimeFrames;
7
+ selectedTimeRange?: TimeRanges;
8
+ selectedChartType?: ChartTypes;
9
+ customTimeRange?: EaeraLightweightChartCustomRange | null;
10
+ timeFrameOptions?: EaeraLightweightChartTimeFrameOption[];
11
+ timeRangeOptions?: EaeraLightweightChartTimeRangeOption[];
12
+ chartTypeOptions?: EaeraLightweightChartChartTypeOption[];
13
+ snapshotOptions?: EaeraLightweightChartSnapshotOption[];
14
+ isLoading?: boolean;
15
+ isExpanded?: boolean;
16
+ multiChartLayout?: ChartMultiViewLayout;
17
+ dataBarCount?: number;
18
+ tickSize?: number | string | null;
19
+ dark?: boolean;
20
+ chartDomId?: string;
21
+ overlayTitle?: string;
22
+ overlaySubtitle?: string;
23
+ openLabel?: string;
24
+ highLabel?: string;
25
+ lowLabel?: string;
26
+ closeLabel?: string;
27
+ plugins?: EaeraLightweightChartPlugin[];
28
+ drawingPlugin?: EaeraLightweightChartDrawingPluginConfig | null;
29
+ orderlinePlugin?: EaeraLightweightChartOrderlinePluginConfig | null;
30
+ }
31
+ export type EaeraLightweightChartEmits = (e: string, ...args: unknown[]) => void;
32
+ export interface EaeraLightweightChartContext {
33
+ symbol: ComputedRef<string>;
34
+ overlaySubtitle: ComputedRef<string>;
35
+ chartData: ComputedRef<ChartData[]>;
36
+ selectedTimeFrame: ComputedRef<TimeFrames>;
37
+ selectedTimeRange: ComputedRef<TimeRanges>;
38
+ selectedChartType: ComputedRef<ChartTypes>;
39
+ customTimeRange: ComputedRef<EaeraLightweightChartCustomRange | null>;
40
+ timeFrameOptions: ComputedRef<EaeraLightweightChartTimeFrameOption[]>;
41
+ timeRangeOptions: ComputedRef<EaeraLightweightChartTimeRangeOption[]>;
42
+ chartTypeOptions: ComputedRef<EaeraLightweightChartChartTypeOption[]>;
43
+ snapshotOptions: ComputedRef<EaeraLightweightChartSnapshotOption[]>;
44
+ isLoading: ComputedRef<boolean>;
45
+ isExpanded: ComputedRef<boolean>;
46
+ isMultiChart: ComputedRef<boolean>;
47
+ multiChartLayout: ComputedRef<ChartMultiViewLayout>;
48
+ chartIds: ComputedRef<string[]>;
49
+ selectedChartId: ComputedRef<string>;
50
+ activeChartLastPrice: ComputedRef<number | null>;
51
+ tickSize: ComputedRef<number | string | null | undefined>;
52
+ dark: ComputedRef<boolean | undefined>;
53
+ chartDomId: ComputedRef<string>;
54
+ overlayTitle: ComputedRef<string>;
55
+ state: ComputedRef<EaeraLightweightChartState>;
56
+ getTimeFrameForChart: (id: string) => TimeFrames;
57
+ getChartTypeForChart: (id: string) => ChartTypes;
58
+ getChartDataForChart: (id: string) => ChartData[];
59
+ getSymbolForChart: (id: string) => string;
60
+ getSymbolDescriptionForChart: (id: string) => string;
61
+ onChangeMultiChartLayout: (layout: ChartMultiViewLayout) => void;
62
+ onSelectChart: (id: string) => void;
63
+ confirmLayoutSwitch: (selectedChartIds: string[]) => void;
64
+ cancelLayoutSwitch: () => void;
65
+ pendingLayoutSwitch: ComputedRef<ChartMultiViewLayout | null>;
66
+ onResize: (width: number, height: number) => void;
67
+ onChangeTimeFrame: (timeFrame: TimeFrames) => void;
68
+ onChangeTimeRange: (timeRange: TimeRanges) => void;
69
+ onChangeChartType: (chartType: ChartTypes) => void;
70
+ onChangeCustomRange: (range: EaeraLightweightChartCustomRange) => void;
71
+ onLoadMoreLeft: () => void;
72
+ onSnapshot: (action: EaeraLightweightChartSnapshotAction) => Promise<void>;
73
+ onToggleExpanded: () => void;
74
+ }
75
+ interface ProvideEaeraLightweightChartOptions {
76
+ snapshotTargetRef?: Ref<HTMLElement | null>;
77
+ }
78
+ export declare const provideEaeraLightweightChart: (props: EaeraLightweightChartProps, emit: EaeraLightweightChartEmits, options?: ProvideEaeraLightweightChartOptions) => EaeraLightweightChartContext;
79
+ export declare const useEaeraLightweightChart: (context: EaeraLightweightChartContext) => EaeraLightweightChartContext;
80
+ export {};
@@ -0,0 +1,6 @@
1
+ import { Time } from 'lightweight-charts';
2
+ import { ChartData, ChartSeriesData, TimeFrames } from '../../../types/EaeraLightweightChart';
3
+ export declare const timeframeToMs: (timeframe: TimeFrames) => number;
4
+ export declare const appendTrailingWhitespace: (data: ChartData[], timeframe: TimeFrames, count?: number) => ChartSeriesData[];
5
+ export declare const formatChartDateTimeLocal: (time: Time | string | number | null | undefined) => string;
6
+ export declare const chartTimeToDate: (time: Time | string | number | null | undefined) => Date | null;
@@ -0,0 +1,2 @@
1
+ export { default } from './EaeraLightweightChart/index';
2
+ export * from './EaeraLightweightChart/useEaeraLightweightChart';
@@ -0,0 +1 @@
1
+ import{ElLoadingDirective as e}from"element-plus/es";import{ref as t,computed as a,watch as r,defineComponent as l,onMounted as o,onUnmounted as i,openBlock as n,createElementBlock as s,createElementVNode as c,unref as u,toDisplayString as d,Fragment as m,createCommentVNode as p,createVNode as v,withCtx as g,renderList as y,normalizeClass as b,createBlock as f,resolveDynamicComponent as w,shallowRef as x,nextTick as k,normalizeStyle as C,Teleport as L,Transition as T,withModifiers as S,createTextVNode as D,withDirectives as F,renderSlot as P}from"vue";import{b as M,a as _}from"../chunks/vendor-vueuse-core-B96HGhR7.mjs";import{isBusinessDay as R,ColorType as j,CandlestickSeries as E,AreaSeries as $,LineSeries as z,createChart as I}from"lightweight-charts";import{ElNotification as O}from"element-plus";import{Square as B,Columns2 as N,Rows2 as A,Columns3 as V,Rows3 as K,Grid2X2 as U,ChartCandlestick as H,Camera as Y,Table as q,Scan as W,CalendarDays as Z}from"@lucide/vue";import"../chunks/vendor-email-misspelled-0hsXkSSK.mjs";import"../chunks/vendor-unorm-Degftfa1.mjs";import"../chunks/useEaeraInputPhoneNumber-CKXimj-u.mjs";import"@element-plus/icons-vue";import"../chunks/iconSvg-DuOI5Yho.mjs";import"echarts/core";import"echarts/renderers";import"echarts/charts";import"echarts/components";import"vue-echarts";import"../chunks/vendor-currency-symbol-map-C-1fEG2R.mjs";import{useI18n as G}from"vue-i18n";import"../chunks/vendor-sortablejs-D3DyHO5Y.mjs";import{_ as X}from"../chunks/index-KWU67jID.mjs";import{_ as J,O as Q}from"../chunks/index-BnZsZnAN.mjs";import{_ as ee}from"../chunks/_plugin-vue_export-helper-BCo6x5W8.mjs";import{_ as te}from"../chunks/EaeraDialog-uLsXC20k.mjs";import{_ as ae}from"../chunks/EaeraButton-DGfjUoa6.mjs";import{t as re,a as le}from"../chunks/vendor-html-to-image-DzdJgLib.mjs";import{_ as oe}from"../chunks/EaeraDivider-Dggvc36a.mjs";import ie from"../composite/EaeraDropdownV2.mjs";import{_ as ne}from"../chunks/EaeraTooltip-BIlULHv4.mjs";import{_ as se}from"../chunks/EaeraDatePicker-Cf58Nwsl.mjs";import"../chunks/phoneNumbers-Bmtkxd5J.mjs";import"../chunks/vendor-libphonenumber-js-bhez_Ujn.mjs";import"../chunks/EaeraColorPicker-iHdlgiAL.mjs";import"../chunks/vendor-es-toolkit-D-WXci__.mjs";import"../chunks/vendor-lodash-es-DUTj3yNB.mjs";import"../chunks/EaeraInput-CkbcAxy0.mjs";import"../chunks/eventListener-o1XlgLVq.mjs";import"../chunks/EaeraCheckbox-C_faN0pV.mjs";import"../chunks/EaeraSwitch-BI3E0zPf.mjs";import"../chunks/EaeraInputNumber-CT5nnbWb.mjs";import"../chunks/EaeraTag-ChGPYV8x.mjs";const ce="candlestick",ue="line",de="area",me="single",he="two-rows",pe="two-cols",ve="three-rows",ge="three-cols",ye="four",be=e=>{switch(e){case me:return 1;case he:case pe:return 2;case ve:case ge:return 3;case ye:return 4;default:return 1}},fe="1m",we="5m",xe="15m",ke="30m",Ce="1h",Le="4h",Te="1d",Se="1w",De="1mn",Fe="1D",Pe="1W",Me="1M",_e="3M",Re="6M",je="CUSTOM",Ee="drawing",$e="orderline",ze=[fe,we,xe,ke,Ce,Le,Te,Se,De],Ie=[Fe,Pe,Me,_e,Re,"1Y","ALL",je],Oe=[{value:ce,icon:"Candle3"},{value:ue,icon:"LineChart2"},{value:de,icon:"AreaChart"}],Be=["download-image","copy-image-to-clipboard","open-image-in-new-tab"],Ne={[fe]:60,[we]:300,[xe]:900,[ke]:1800,[Ce]:3600,[Le]:14400,[Te]:86400,[Se]:604800,[De]:2592e3},Ae=(e,t=100,a=1.272)=>{const r=[],l=Math.floor(Date.now()/1e3),o=Ne[e]??900;let i=a;for(let n=t-1;n>=0;n--){const e=2e-4,t=i,a=t+15e-5*(Math.random()-.48)+(Math.random()-.5)*e,s=Math.max(t,a)+Math.random()*e*.6,c=Math.min(t,a)-Math.random()*e*.6,u=l-n*o;r.push({time:u,open:+t.toFixed(5),high:+s.toFixed(5),low:+c.toFixed(5),close:+a.toFixed(5)}),i=a}return r},Ve=(e,l,o={})=>{const{t:i}=G(),n=t(e.selectedTimeRange??Fe),s=t(e.customTimeRange??null),c=t(e.isExpanded??!1),u=M("multi-chart:layout",e.multiChartLayout??me),d=t("chart-0"),m=e.selectedTimeFrame??fe,p=e.selectedChartType??ce,v=e.dataBarCount??100,g=M("multi-chart:configs",{"chart-0":{timeFrame:m,chartType:p}}),y=e.symbol??"",b=e.overlaySubtitle??"",f=M("multi-chart:symbols",{"chart-0":y}),w=M("multi-chart:descriptions",{"chart-0":b}),x=t(null),k=a(()=>{const e=be(u.value);return Array.from({length:e},(e,t)=>`chart-${t}`)});r(k,e=>{const t=u.value,a={...g.value},r={...w.value},l={...f.value};try{const t={...a},o={...r},i={...l},n=t["chart-0"]??{timeFrame:m,chartType:p},s=o["chart-0"]??b,c=i["chart-0"]??y;e.forEach(e=>{const a=t[e];a&&a.timeFrame&&a.chartType||(t[e]={...n}),o[e]||(o[e]=s),i[e]||(i[e]=c)});const u={},d={},v={};e.forEach(e=>{if(!t[e]||!o[e]||!i[e])throw new Error(`Incomplete config for chart pane "${e}"`);u[e]=t[e],d[e]=o[e],v[e]=i[e]}),g.value=u,w.value=d,f.value=v}catch(o){console.error("Failed to expand chart layout:",o),u.value=t,g.value=a,w.value=r,f.value=l,O.error({message:i("chart.multi-chart.error.expansion-failed"),duration:5e3})}},{immediate:!0}),r(()=>e.selectedTimeFrame,e=>{if(e){const t=d.value;g.value[t]&&(g.value[t]={...g.value[t],timeFrame:e})}}),r(()=>e.selectedChartType,e=>{if(e){const t=d.value;g.value[t]&&(g.value[t]={...g.value[t],chartType:e})}}),r(()=>e.selectedTimeRange,e=>{e&&(n.value=e)}),r(()=>e.customTimeRange,e=>{void 0!==e&&(s.value=e??null)}),r(()=>e.isExpanded,e=>{"boolean"==typeof e&&(c.value=e)}),r(()=>e.multiChartLayout,e=>{e&&(u.value=e)}),r(()=>e.symbol,e=>{const t=d.value;if(void 0!==e&&f.value[t]!==e){f.value={...f.value,[t]:e};const{[t]:a,...r}=j.value;j.value=r}}),r(d,t=>{const a=f.value[t];void 0!==a&&a!==e.symbol&&l("activeSymbolChange",a)}),r(()=>e.overlaySubtitle,e=>{const t=d.value,a=e??"";w.value[t]!==a&&(w.value={...w.value,[t]:a})});const C=(e,t)=>{const a=i(e);return"string"==typeof a&&a.trim().length>0?a:t},L=a(()=>ze.map(e=>({label:C(`chart.time-frame.${e}`,e),value:e}))),T=a(()=>Ie.map(e=>({label:C(`chart.time-range.${e}`,e),value:e}))),S=a(()=>Oe.map(e=>({label:C(`chart.type.${e.value}`,e.value),value:e.value,icon:e.icon,chartIcon:e.icon}))),D=a(()=>Be.map(e=>"download-image"===e?{value:e,label:C("chart.snapshot.download-image","Download image"),desc:C("chart.snapshot.download-image-shortcut","Ctrl + Alt + S")}:"copy-image-to-clipboard"===e?{value:e,label:C("chart.snapshot.copy-image-to-clipboard","Copy image"),desc:C("chart.snapshot.copy-image-to-clipboard-shortcut","Ctrl + Shift + S")}:{value:e,label:C("chart.snapshot.open-in-new-tab","Open in new tab"),desc:C("chart.snapshot.open-in-new-tab-shortcut","Alt + S")})),F=a(()=>g.value[d.value]??{timeFrame:m,chartType:p}),P=a(()=>e.chartData&&e.chartData.length>0?e.chartData:Ae(F.value.timeFrame,v)),_=a(()=>{const e=P.value;return e.length>0?e[e.length-1].close:null}),R=a(()=>({selectedTimeFrame:F.value.timeFrame,selectedTimeRange:n.value,selectedChartType:F.value.chartType,customTimeRange:s.value,isExpanded:c.value,isLoading:e.isLoading??!1}));r(R,e=>{l("stateChange",e)},{immediate:!0});const j=t({}),E=e=>g.value[e]?.timeFrame??m,$=async e=>{const t=o.snapshotTargetRef?.value;if(t)switch(e){case"download-image":await(async e=>{try{const t=await re(e,{quality:1,pixelRatio:2}),a=document.createElement("a");a.href=t,a.download=`chart-snapshot-${Date.now()}.png`,a.click()}catch(t){console.error("Failed to download chart image:",t),O.error({message:i("chart.snapshot.error.download"),duration:5e3})}})(t);break;case"copy-image-to-clipboard":await(async e=>{try{const t=await le(e,{quality:1,pixelRatio:2});if(!t?.type||"undefined"==typeof ClipboardItem)throw new Error("Failed to generate image blob");const a=new ClipboardItem({[t.type]:t});await navigator.clipboard.write([a])}catch(t){console.error("Failed to copy chart image to clipboard:",t),O.error({message:i("chart.snapshot.error.copy"),duration:5e3})}})(t);break;case"open-image-in-new-tab":await(async e=>{try{const t=await re(e,{quality:1,pixelRatio:2}),a=window.open();a&&(a.document.write(`\n <html>\n <head><title>Chart Snapshot</title></head>\n <body style="margin:0;display:flex;justify-content:center;align-items:center;min-height:100vh;background:#000;">\n <img src="${t}" style="max-width:100%;max-height:100vh;" />\n </body>\n </html>\n `),a.document.close())}catch(t){console.error("Failed to open chart image in new tab:",t),O.error({message:i("chart.snapshot.error.open"),duration:5e3})}})(t)}};return{symbol:a(()=>e.symbol??""),overlaySubtitle:a(()=>e.overlaySubtitle??""),chartData:P,selectedTimeFrame:a(()=>F.value.timeFrame),selectedTimeRange:a(()=>n.value),selectedChartType:a(()=>F.value.chartType),customTimeRange:a(()=>s.value),timeFrameOptions:a(()=>e.timeFrameOptions&&e.timeFrameOptions.length>0?e.timeFrameOptions:L.value),timeRangeOptions:a(()=>e.timeRangeOptions&&e.timeRangeOptions.length>0?e.timeRangeOptions:T.value),chartTypeOptions:a(()=>e.chartTypeOptions&&e.chartTypeOptions.length>0?e.chartTypeOptions:S.value),snapshotOptions:a(()=>void 0!==e.snapshotOptions?e.snapshotOptions:D.value),isLoading:a(()=>e.isLoading??!1),isExpanded:a(()=>c.value),isMultiChart:a(()=>u.value!==me),multiChartLayout:a(()=>u.value),chartIds:k,selectedChartId:a(()=>d.value),activeChartLastPrice:_,tickSize:a(()=>e.tickSize),dark:a(()=>e.dark),chartDomId:a(()=>e.chartDomId??"eaera-lightweight-chart-canvas"),overlayTitle:a(()=>e.overlayTitle??""),state:R,getTimeFrameForChart:E,getChartTypeForChart:e=>g.value[e]?.chartType??p,getChartDataForChart:t=>{if(e.chartData&&e.chartData.length>0)return e.chartData;const a=E(t),r=j.value[t];if(r&&r.length>0){const e=Ne[a],t=r[r.length-1].time,l=Math.floor(Date.now()/1e3)-e;if(Math.abs(t-l)<2*e)return r}const l=Ae(a,v);return j.value={...j.value,[t]:l},l},getSymbolForChart:e=>f.value[e]??y,getSymbolDescriptionForChart:e=>w.value[e]??b,onResize:(e,t)=>l("resize",e,t),onChangeTimeFrame:e=>{const t=d.value;g.value[t]&&(g.value[t]={...g.value[t],timeFrame:e}),l("changeTimeFrame",e)},onChangeTimeRange:e=>{n.value=e,l("changeTimeRange",e)},onChangeChartType:e=>{const t=d.value;g.value[t]&&(g.value[t]={...g.value[t],chartType:e}),l("changeChartType",e)},onChangeCustomRange:e=>{s.value=e,l("changeCustomRange",e)},onLoadMoreLeft:()=>l("loadMoreLeft"),onSnapshot:async e=>{await $(e)},onToggleExpanded:()=>{c.value=!c.value,l("toggleExpanded")},onChangeMultiChartLayout:e=>{const t=u.value,a=be(t),r=be(e);if(r<a)return void(x.value=e);if(r>a){const e={...g.value},t={...w.value},l={...f.value},o=d.value,i=e[o]??e["chart-0"],n=t[o]??b,s=l[o]??y;for(let c=a;c<r;c++){const a=`chart-${c}`;e[a]||(e[a]={...i}),t[a]||(t[a]=n),l[a]||(l[a]=s)}g.value=e,w.value=t,f.value=l}u.value=e;parseInt(d.value.split("-")[1]??"0",10)>=r&&(d.value="chart-0"),l("changeMultiChartLayout",e)},onSelectChart:e=>{d.value=e},confirmLayoutSwitch:e=>{const t=x.value;if(!t)return;const a=be(t),r={},o={},i={};e.slice(0,a).forEach((e,t)=>{const a=`chart-${t}`;r[a]=g.value[e]??{timeFrame:m,chartType:p},o[a]=w.value[e]??b,i[a]=f.value[e]??y}),g.value=r,w.value=o,f.value=i,d.value="chart-0",u.value=t,x.value=null,l("changeMultiChartLayout",t)},cancelLayoutSwitch:()=>{x.value=null},pendingLayoutSwitch:a(()=>x.value)}},Ke=e=>e,Ue={class:"p-2.5"},He={class:"w-full h-8 flex items-center justify-between"},Ye={class:"h-full flex items-center gap-1"},qe={key:0,class:"flex items-center gap-1 text-label-lg text-[var(--er-text-primary)]"},We={class:"whitespace-nowrap"},Ze={class:"text-[var(--er-text-secondary)] whitespace-nowrap"},Ge={class:"flex items-center"},Xe={type:"button",class:"flex items-center justify-center h-8 px-3 border-none rounded-lg bg-transparent text-label-lg text-[var(--er-text-primary)] cursor-pointer hover:bg-[var(--er-surface-hover)]"},Je={class:"flex items-center"},Qe={type:"button",class:"flex items-center justify-center w-8 h-8 p-0 border-none rounded-lg bg-transparent text-[var(--er-icon-primary)] cursor-pointer hover:bg-[var(--er-surface-hover)]"},et={class:"h-full flex items-center gap-1"},tt={class:"flex items-center"},at={type:"button",class:"flex items-center justify-center h-8 px-3 border-none rounded-lg bg-transparent text-label-lg text-[var(--er-text-primary)] cursor-pointer hover:bg-[var(--er-surface-hover)]"},rt={class:"flex items-center"},lt={type:"button",class:"flex items-center justify-center w-8 h-8 p-0 border-none rounded-lg bg-transparent text-[var(--er-icon-primary)] cursor-pointer hover:bg-[var(--er-surface-hover)]"},ot={key:1,class:"flex items-center"},it={type:"button",class:"flex items-center justify-center w-8 h-8 p-0 border-none rounded-lg bg-transparent text-[var(--er-icon-primary)] cursor-pointer hover:bg-[var(--er-surface-hover)]"},nt={key:0,class:"text-body-xs text-[var(--er-text-secondary)]"},st={class:"flex items-center"},ct={type:"button",class:"flex items-center justify-center w-8 h-8 p-0 border-none rounded-lg bg-transparent text-[var(--er-icon-primary)] cursor-pointer hover:bg-[var(--er-surface-hover)]"},ut={class:"flex flex-col gap-2 py-4 px-3 min-w-[150px]"},dt={class:"flex items-center gap-3"},mt={class:"w-4"},ht=["onClick"],pt=l({__name:"EaeraLightweightChartHeader",props:{context:{}},setup(e){const t=e,{t:r}=G(),{symbol:l,overlayTitle:x,overlaySubtitle:k,selectedTimeFrame:C,timeFrameOptions:L,chartTypeOptions:T,snapshotOptions:S,isExpanded:D,isMultiChart:F,multiChartLayout:P,onChangeTimeFrame:M,onChangeChartType:_,onSnapshot:R,onToggleExpanded:j,onChangeMultiChartLayout:E}=t.context,$=a(()=>L.value.map(e=>({label:e.label,value:e.value,itemClick:()=>M(e.value)}))),z=a(()=>T.value.map(e=>({label:e.label,value:e.value,itemClick:()=>_(e.value)}))),I=a(()=>S.value.map(e=>({label:e.label,value:e.value,desc:e.desc,itemClick:()=>R(e.value)}))),O=a(()=>[{order:1,options:[{icon:B,id:me}]},{order:2,options:[{icon:N,id:pe},{icon:A,id:he}]},{order:3,options:[{icon:V,id:ge},{icon:K,id:ve}]},{order:4,options:[{icon:U,id:ye}]}]),Z=a(()=>k.value||x.value||""),X=a(()=>{const e=`chart.time-frame.sc.${C.value}`,t=r(e);if("string"==typeof t&&t.trim().length>0&&t!==e)return t;const a=L.value.find(e=>e.value===C.value);return a?.label??C.value}),J=e=>{const t=e.key.toLowerCase();return"escape"===t&&D.value?(e.preventDefault(),void j()):"s"===t?e.ctrlKey&&e.altKey&&!e.shiftKey?(e.preventDefault(),void R("download-image")):e.ctrlKey&&e.shiftKey&&!e.altKey?(e.preventDefault(),void R("copy-image-to-clipboard")):void(!e.altKey||e.ctrlKey||e.shiftKey||(e.preventDefault(),R("open-image-in-new-tab"))):void 0};return o(()=>window.addEventListener("keydown",J)),i(()=>window.removeEventListener("keydown",J)),(e,t)=>{const a=ne,r=ie,o=oe;return n(),s("div",Ue,[c("div",He,[c("div",Ye,[u(F)?(n(),s(m,{key:1},[c("div",Ge,[v(r,{"use-menu":"","dropdown-options":$.value},{menu_item:g(({data:e})=>[c("div",null,d(e.label),1)]),default:g(()=>[c("button",Xe,[v(a,{placement:"right",content:e.$t("chart.tools.tooltip.time-frame")},{default:g(()=>[c("span",null,d(X.value),1)]),_:1},8,["content"])])]),_:1},8,["dropdown-options"])]),v(o,{direction:"vertical"}),c("div",Je,[v(r,{"use-menu":"","dropdown-options":z.value},{menu_item:g(({data:e})=>[c("div",null,d(e.label),1)]),default:g(()=>[c("button",Qe,[v(a,{placement:"right",content:e.$t("chart.tools.tooltip.chart-type-selector")},{default:g(()=>[v(u(H),{size:20,"stroke-width":"1.2","absolute-stroke-width":""})]),_:1},8,["content"])])]),_:1},8,["dropdown-options"])])],64)):(n(),s("div",qe,[c("span",We,d(u(l)),1),Z.value?(n(),s(m,{key:0},[t[1]||(t[1]=c("span",{class:"text-[var(--er-text-secondary)]"},"/",-1)),c("span",Ze,d(Z.value),1)],64)):p("",!0)]))]),c("div",et,[u(F)?p("",!0):(n(),s(m,{key:0},[c("div",tt,[v(r,{"use-menu":"","dropdown-options":$.value},{menu_item:g(({data:e})=>[c("div",null,d(e.label),1)]),default:g(()=>[c("button",at,[v(a,{placement:"right",content:e.$t("chart.tools.tooltip.time-frame")},{default:g(()=>[c("span",null,d(X.value),1)]),_:1},8,["content"])])]),_:1},8,["dropdown-options"])]),v(o,{direction:"vertical"}),c("div",rt,[v(r,{"use-menu":"","dropdown-options":z.value},{menu_item:g(({data:e})=>[c("div",null,d(e.label),1)]),default:g(()=>[c("button",lt,[v(a,{placement:"right",content:e.$t("chart.tools.tooltip.chart-type-selector")},{default:g(()=>[v(u(H),{size:20,"stroke-width":"1.2","absolute-stroke-width":""})]),_:1},8,["content"])])]),_:1},8,["dropdown-options"])])],64)),u(S).length?(n(),s("div",ot,[v(r,{"use-menu":"","dropdown-options":I.value},{menu_item:g(({data:e})=>[c("div",null,[c("div",null,d(e.label),1),e.desc?(n(),s("div",nt,d(e.desc),1)):p("",!0)])]),default:g(()=>[c("button",it,[v(a,{placement:"right",content:e.$t("chart.tools.tooltip.snapshot")},{default:g(()=>[v(u(Y),{size:20,"stroke-width":"1.2","absolute-stroke-width":""})]),_:1},8,["content"])])]),_:1},8,["dropdown-options"])])):p("",!0),c("div",st,[v(r,null,{dropdown:g(()=>[c("div",ut,[(n(!0),s(m,null,y(O.value,(e,t)=>(n(),s("div",{key:t},[c("div",dt,[c("span",mt,d(e.order),1),(n(!0),s(m,null,y(e.options,(e,t)=>(n(),s("div",{key:t,class:b(["cursor-pointer p-[2px] border rounded-xs transition-colors",u(P)===e.id?"border-[var(--er-border-action)] bg-[var(--er-surface-elevated)] text-[var(--er-text-brand)]":"border-[var(--er-border-default)] hover:bg-[var(--er-surface-muted)]"]),onClick:t=>u(E)(e.id)},[(n(),f(w(e.icon),{size:20}))],10,ht))),128))])]))),128))])]),default:g(()=>[c("button",ct,[v(a,{placement:"right",content:e.$t("chart.tools.tooltip.multi-chart")},{default:g(()=>[v(u(q),{size:20,"stroke-width":"1.2","absolute-stroke-width":""})]),_:1},8,["content"])])]),_:1})]),c("button",{type:"button",class:"flex items-center justify-center w-8 h-8 p-0 border-none rounded-lg bg-transparent text-[var(--er-icon-primary)] cursor-pointer hover:bg-[var(--er-surface-hover)]",onClick:t[0]||(t[0]=(...e)=>u(j)&&u(j)(...e))},[v(a,{placement:"bottom",content:e.$t("chart.tools.tooltip.fullscreen")},{default:g(()=>[v(u(W),{size:20,"stroke-width":"1.2","absolute-stroke-width":""})]),_:1},8,["content"])])])])])}}}),vt={class:"border-t border-[var(--er-border-default)] px-3 py-2"},gt={class:"flex justify-between items-center h-6"},yt={class:"h-full flex items-center gap-2 select-none"},bt={class:"h-full flex items-center gap-0.5"},ft=["onClick"],wt={class:"h-full flex items-center select-none"},xt={class:"text-label-md text-[var(--er-text-primary)] whitespace-nowrap","aria-live":"polite"},kt=l({__name:"EaeraLightweightChartFooter",props:{context:{}},setup(e){const r=e,{selectedTimeRange:l,timeRangeOptions:p,onChangeTimeRange:g,onChangeTimeFrame:f,onChangeCustomRange:w}=r.context,x=t(null),k=a(()=>p.value.filter(e=>e.value!==je)),C=(e,t)=>{g(e),f(t)},L=()=>{x.value?.handleOpen()},T=e=>{if(!e||2!==e.length)return;const t={startDate:e[0],endDate:e[1]};w(t),C(je,ke)},S=e=>{const t=Intl.DateTimeFormat().resolvedOptions().timeZone||"UTC",a=-e.getTimezoneOffset(),r=`UTC${a>=0?"+":"-"}${String(Math.floor(Math.abs(a)/60)).padStart(2,"0")}:${String(Math.abs(a)%60).padStart(2,"0")}`;return`${new Intl.DateTimeFormat("en-US",{timeZone:t,year:"numeric",month:"long",day:"numeric"}).format(e)} ${new Intl.DateTimeFormat("en-US",{timeZone:t,hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1}).format(e)} ${r}`},D=t("");let F;const P=()=>{D.value=S(new Date)};return o(()=>{P(),F=window.setInterval(P,1e3)}),i(()=>{void 0!==F&&clearInterval(F)}),(e,t)=>{const a=oe;return n(),s("div",vt,[c("div",gt,[c("div",yt,[c("div",bt,[(n(!0),s(m,null,y(k.value,e=>(n(),s("button",{key:e.value,type:"button",class:b(["h-full flex items-center px-1 border-none rounded text-label-md text-[var(--er-text-primary)] cursor-pointer whitespace-nowrap bg-transparent hover:bg-[var(--er-surface-elevated)]",{"bg-[var(--er-surface-elevated)]":u(l)===e.value}]),onClick:t=>(e=>{switch(e){case Fe:C(Fe,fe);break;case Pe:C(Pe,ke);break;case Me:C(Me,ke);break;case _e:C(_e,Te);break;case Re:C(Re,Se);break;default:C(e,Se)}})(e.value)},d(e.label),11,ft))),128)),v(a,{direction:"vertical",class:"mx-1"}),c("button",{type:"button",class:"flex items-center justify-center w-6 h-6 p-0 border-none rounded bg-transparent text-[var(--er-icon-primary)] cursor-pointer hover:bg-[var(--er-surface-hover)]",onClick:L},[v(u(Z),{size:20,"absolute-stroke-width":"","stroke-width":"1.2"})]),v(u(se),{ref_key:"customDateRef",ref:x,"value-format":"YYYY-MM-DD",type:"daterange",class:"hidden",onChange:T},null,512)])]),c("div",wt,[c("span",xt,d(D.value),1)])])])}}}),Ct=(e,t,a=6)=>{if(!e.length||a<=0)return e;const r=Math.max(1,Math.floor((e=>({[fe]:6e4,[we]:3e5,[xe]:9e5,[ke]:18e5,[Ce]:36e5,[Le]:144e5,[Te]:864e5,[Se]:6048e5,[De]:2592e6}[e]))(t)/1e3)),l=e[e.length-1]?.time;if("number"!=typeof l||Number.isNaN(l))return e;const o=Array.from({length:a},(e,t)=>({time:l+r*(t+1)}));return[...e,...o]},Lt=e=>{const t=Tt(e);return t?((e,t)=>new Intl.DateTimeFormat(void 0,{timeZone:"UTC",...t}).format(e))(t,{day:"2-digit",month:"2-digit",year:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1}):""},Tt=e=>{if(null==e)return null;if("number"==typeof e)return new Date(1e3*e);if("string"==typeof e){const t=new Date(e);return Number.isNaN(t.getTime())?null:t}return R(e)?new Date(e.year,e.month-1,e.day):null},St=e=>e?{surfacePrimary:"#191D23",surfacePositive:"#16c784",surfaceNegative:"#ef4444",surfaceElevated:"#323A45",textPrimary:"#F0F1F3",textSecondary:"#B1B9C5",borderPrimary:"#323A45",borderPrimaryInverse:"#D8DCE2",borderAction:"#A259FB",areaTop:"#A259FB4D",areaBottom:"#A259FB0D"}:{surfacePrimary:"white",surfacePositive:"#16c784",surfaceNegative:"#ef4444",surfaceElevated:"#d8dce2",textPrimary:"#0f1115",textSecondary:"#4b5768",borderPrimary:"#d8dce2",borderPrimaryInverse:"#323a45",borderAction:"#A259FB",areaTop:"#A259FB4D",areaBottom:"#A259FB0D"},Dt=e=>{const t={width:0,height:0};const a=(e=>{const t=St(e);return{background:{type:j.Solid,color:t.surfacePrimary},textColor:t.textSecondary}})(e),r=(e=>{const t=St(e);return{vertLines:{color:t.borderPrimary,visible:!0,style:0},horzLines:{color:t.borderPrimary,visible:!0,style:0}}})(e),l=(e=>{const t=St(e);return{mode:0,vertLine:{color:t.borderPrimaryInverse,width:1,style:3,visible:!0,labelVisible:!0,labelBackgroundColor:t.surfaceElevated},horzLine:{color:t.borderPrimaryInverse,width:1,style:3,visible:!0,labelVisible:!0,labelBackgroundColor:t.surfacePositive}}})(e),o=(e=>{const t=St(e);return{rightPriceScale:{borderColor:t.borderPrimary,scaleMargins:{top:.3,bottom:.1},textColor:t.textSecondary},timeScale:{borderColor:t.borderPrimary,timeVisible:!0,rightOffsetPixels:48,allowShiftVisibleRangeOnWhitespaceReplacement:!0,textColor:t.textSecondary}}})(e);return{...t,layout:a,grid:r,crosshair:l,localization:{timeFormatter:e=>Lt(e)},...o}},Ft=e=>{const t=St(e);return{upColor:t.surfacePositive,downColor:t.surfaceNegative,borderVisible:!1,wickUpColor:t.surfacePositive,wickDownColor:t.surfaceNegative}},Pt=["id"],Mt={class:"absolute top-2 left-2 z-10 flex gap-x-4 gap-y-1 flex-wrap w-full"},_t={key:0,class:"text-label-lg font-semibold max-w-[calc(100%-1rem)]"},Rt={class:"text-[var(--er-text-secondary)] whitespace-nowrap"},jt={key:1,class:"flex flex-wrap gap-x-2 gap-y-0.5 text-label-lg font-semibold max-w-[calc(100%-1rem)]"},Et={class:"text-[var(--er-text-secondary)]"},$t={class:"text-[var(--er-text-secondary)]"},zt={class:"text-[var(--er-text-secondary)]"},It={class:"text-[var(--er-text-secondary)]"},Ot=l({__name:"EaeraChartCanvas",props:{chartData:{default:()=>[]},selectedChartType:{default:ce},selectedTimeFrame:{default:fe},dark:{type:Boolean,default:!1},tickSize:{default:null},symbol:{default:""},symbolDescription:{default:""},isMultiChart:{type:Boolean,default:!1},chartDomId:{default:void 0},openLabel:{default:"O"},highLabel:{default:"H"},lowLabel:{default:"L"},closeLabel:{default:"C"}},emits:["loadMoreLeft","resize"],setup(e,{expose:l,emit:u}){const m=e,v=u,g="undefined"!=typeof crypto&&crypto.randomUUID?crypto.randomUUID().slice(0,8):Math.random().toString(36).slice(2,10),y=a(()=>m.chartDomId??`eaera-chart-canvas-${g}`),b=x(null),f=x(null),{width:w,height:L}=_(b),T=x(null),S=x(null),D=t(0),F=()=>{D.value+=1},P={openPrice:null,highPrice:null,lowPrice:null,closePrice:null,time:null,state:null,symbolLabel:m.symbol},M=x({...P}),R=a(()=>M.value.state?{color:`var(--er-text-${M.value.state})`}:{}),j=a(()=>m.dark??!1),O=a(()=>{const e=Number(m.tickSize??.01);return!Number.isFinite(e)||e<=0?.01:e}),B=e=>{if(!Number.isFinite(e)||e<=0)return 2;const t=e.toLocaleString("en-US",{useGrouping:!1,maximumFractionDigits:20}),a=(t.includes(".")?t.replace(/0+$/,"").replace(/\.$/,""):t).split(".")[1];return a?a.length:0},N=e=>Number.isFinite(e)?Number(e.toFixed(B(O.value))):e,A=a(()=>{const e=new Map;return m.chartData.forEach(t=>{e.set(t.time,t)}),e}),V=a(()=>{const e=Ct(m.chartData,m.selectedTimeFrame,30);return m.selectedChartType===ue||m.selectedChartType===de?e.map(e=>"open"in e?{time:e.time,value:e.close}:{time:e.time}):e}),K=a(()=>m.chartData.map(e=>e.time)),U=()=>{M.value={...P,symbolLabel:m.symbol}},H=()=>{S.value&&T.value&&(S.value.applyOptions({priceFormat:{type:"price",precision:B(O.value),minMove:O.value}}),T.value.priceScale("right").applyOptions({ticksVisible:!1,ensureEdgeTickMarksVisible:!0}))},Y=()=>{T.value&&S.value&&(T.value.removeSeries(S.value),S.value=null)},q=e=>{if(T.value){switch(Y(),e){case ce:S.value=T.value.addSeries(E,Ft(j.value));break;case ue:S.value=T.value.addSeries(z,(t=j.value,{color:St(t).borderAction,lineWidth:2,lineStyle:0,crosshairMarkerVisible:!0,crosshairMarkerRadius:4}));break;case de:S.value=T.value.addSeries($,(e=>{const t=St(e);return{lineColor:t.borderAction,topColor:t.areaTop,bottomColor:t.areaBottom,lineWidth:2,lineStyle:0,crosshairMarkerVisible:!0,crosshairMarkerRadius:4}})(j.value));break;default:S.value=T.value.addSeries(E,Ft(j.value))}var t;H(),F()}},W=()=>{S.value&&(S.value.setData(V.value),H(),F())};let Z=null,G=null;const X=()=>{T.value&&(Z&&(T.value.unsubscribeCrosshairMove(Z),Z=null),G&&(T.value.timeScale().unsubscribeVisibleLogicalRangeChange(G),G=null))},J=()=>{((e,t)=>{T.value&&(T.value.applyOptions({width:e,height:t}),F(),v("resize",e,t))})(Math.max(0,w.value),Math.max(0,L.value))},Q=()=>{f.value&&(T.value=I(f.value,Dt(j.value)),F(),q(m.selectedChartType),W(),T.value&&(X(),Z=e=>{const t="number"==typeof e.time?e.time:null;if(null===t)return void U();const a=A.value.get(t);a?M.value={openPrice:N(a.open),highPrice:N(a.high),lowPrice:N(a.low),closePrice:N(a.close),time:t,state:a.close>=a.open?"success":"error",symbolLabel:m.symbol}:U()},G=e=>{e&&e.from<=10&&v("loadMoreLeft")},T.value.subscribeCrosshairMove(Z),T.value.timeScale().subscribeVisibleLogicalRangeChange(G)),J())};return r([w,L],J),r(()=>m.selectedChartType,e=>{q(e),W()}),r([()=>m.chartData,()=>m.selectedTimeFrame,O],()=>{W()}),r(j,()=>{T.value&&(T.value.applyOptions(Dt(j.value)),q(m.selectedChartType),W())},{immediate:!0}),r(()=>m.symbol,e=>{M.value.symbolLabel=e}),o(async()=>{await k(),Q()}),i(()=>{X(),Y(),T.value&&(T.value.remove(),T.value=null,F()),U()}),l({chartInstance:T,currentSeries:S,chartRenderKey:D,crosshairData:M,chartDataTimes:K,roundPriceByTickSize:N,clearCrosshairData:U,syncSeriesData:W}),(t,a)=>(n(),s("div",{ref_key:"containerRef",ref:b,class:"relative w-full h-full min-h-0 min-w-0"},[c("div",{id:y.value,ref_key:"chartRef",ref:f,class:"w-full h-full"},null,8,Pt),c("div",Mt,[e.isMultiChart&&e.symbolDescription?(n(),s("div",_t,[c("span",Rt,d(e.symbolDescription),1)])):p("",!0),null!==M.value.closePrice?(n(),s("div",jt,[c("div",null,[c("span",Et,d(e.openLabel),1),c("span",{style:C(R.value)},d(M.value.openPrice),5)]),c("div",null,[c("span",$t,d(e.highLabel),1),c("span",{style:C(R.value)},d(M.value.highPrice),5)]),c("div",null,[c("span",zt,d(e.lowLabel),1),c("span",{style:C(R.value)},d(M.value.lowPrice),5)]),c("div",null,[c("span",It,d(e.closeLabel),1),c("span",{style:C(R.value)},d(M.value.closePrice),5)])])):p("",!0)])],512))}}),Bt=l({__name:"EaeraLightweightChartDrawingPlugin",props:{chart:{},series:{},symbol:{},selectedTimeFrame:{},chartDataTimes:{},isDark:{type:Boolean},floatingTarget:{},headerHeight:{},footerHeight:{},config:{}},emits:["stateChange"],setup(e,{emit:t}){const r=e,l=t,o=a(()=>r.selectedTimeFrame),i=a(()=>({position:"absolute",left:"0px",right:"0px",top:`${r.headerHeight}px`,bottom:`${r.footerHeight}px`,height:"auto",zIndex:20})),s=e=>{l("stateChange",e)};return(t,a)=>(n(),f(u(X),{chart:e.chart,series:e.series,symbol:e.symbol,"selected-time-frame":o.value,"chart-data-times":e.chartDataTimes,drawings:e.config.drawings,"is-dark":e.isDark,"create-drawing":e.config.createDrawing,"update-drawing":e.config.updateDrawing,"delete-drawing":e.config.deleteDrawing,"load-drawings":e.config.loadDrawings,"delete-all-drawings":e.config.deleteAllDrawings,"floating-target":e.floatingTarget,"floating-layer-style":i.value,"show-sidebar":e.config.showSidebar??!0,"show-floating-toolbar":e.config.showFloatingToolbar??!0,onStateChange:s},null,8,["chart","series","symbol","selected-time-frame","chart-data-times","drawings","is-dark","create-drawing","update-drawing","delete-drawing","load-drawings","delete-all-drawings","floating-target","floating-layer-style","show-sidebar","show-floating-toolbar"]))}}),Nt=l({__name:"EaeraLightweightChartOrderlinePlugin",props:{chart:{},series:{},renderKey:{},isDark:{type:Boolean},config:{}},emits:["stateChange"],setup(e,{expose:a,emit:r}){const l=e,o=r,i=t(null),s=e=>{l.config.onDeleteLine(e)},c=(e,t)=>{l.config.onLinePriceChange(e,t)},d=(e,t)=>{l.config.onLinePricePreview?.(e,t)},m=e=>{l.config.onDragStateChange?.(e)},p=(e,t,a)=>{l.config.onSLTPChange?.(e,t,a)},v=e=>{o("stateChange",e)};return a({openMenu:e=>{i.value?.openMenu?.(e)}}),(t,a)=>(n(),f(u(J),{ref_key:"overlayRef",ref:i,"order-lines":e.config.orderLines,"chart-instance":e.chart,"series-instance":e.series,"order-line-tool":e.config.orderLineTool??null,"render-key":e.renderKey,"market-price":e.config.marketPrice??null,"tick-size":e.config.tickSize??null,dark:e.isDark,onDeleteLine:s,onLinePriceChange:c,onLinePricePreview:d,onDragStateChange:m,onSlTpChange:p,onStateChange:v},null,8,["order-lines","chart-instance","series-instance","order-line-tool","render-key","market-price","tick-size","dark"]))}}),At=["onClick"],Vt=.01,Kt="text-[color:var(--er-text-success)]",Ut="text-[color:var(--er-text-danger)]",Ht="border-[color:var(--er-surface-muted)] bg-[color:var(--er-surface-elevated)]",Yt=ee(l({__name:"ChartContextMenu",props:{symbol:{},tickSize:{default:null}},emits:["action"],setup(e,{expose:r,emit:l}){const u=e,w=l,x=t(!1),k=t({x:0,y:0}),D=t(null),F=t("plot"),P=t(null),M=a(()=>({position:"fixed",zIndex:2,top:`${k.value.y}px`,left:`${k.value.x}px`})),_=["fixed","z-[2]","flex","flex-col","min-w-[240px]","py-2","border","rounded-sm","shadow-lg","surface-[var(--er-surface-page)]"],R=["flex","items-center","h-8","px-2","cursor-pointer","select-none","rounded-sm","hover:bg-[var(--er-action-neutral-subtle-hover)]"],j=["px-2","font-[family-name:var(--er-font-brand),system-ui,sans-serif]","text-[14px]","font-normal","leading-5","tracking-[0.018em]","text-[color:var(--er-action-neutral-default)]","whitespace-nowrap"];a(()=>[..._,Ht].join(" "));const E=a(()=>{const e=u.symbol||"GBPUSD",t=null!=D.value?D.value.toFixed(5):"—";return[{label:"Reset chart view",tone:"neutral",action:"reset-view"},..."plot"===F.value?[{label:`Buy Market 0.01 ${e}`,tone:"buy",action:"buy-market"},{label:`Sell Market 0.01 ${e}`,tone:"sell",action:"sell-market"},{label:`Buy Limit 0.01 ${e}`,tone:"buy",action:"buy-limit"},{label:`Sell Limit 0.01 ${e}`,tone:"sell",action:"sell-limit"},{label:`Buy Stop 0.01 ${e}`,tone:"buy",action:"buy-stop"},{label:`Buy Stop Limit 0.01 ${e}`,tone:"buy",action:"buy-stop-limit"},{label:`Sell Stop 0.01 ${e}`,tone:"sell",action:"sell-stop"},{label:`Sell Stop Limit 0.01 ${e}`,tone:"sell",action:"sell-stop-limit"},{label:"Lock vertical cursor line by time",tone:"neutral",action:"lock-cursor"}]:[],{label:`Copy price ${t}`,tone:"neutral",action:"copy-price"},{label:"Paste",tone:"neutral",action:"paste"}]}),$=new Set(["buy-limit","sell-limit","buy-stop","buy-stop-limit","sell-stop","sell-stop-limit"]),z={"buy-limit":{title:"Buy Limit",side:"buy",showStopLimitPrice:!1},"sell-limit":{title:"Sell Limit",side:"sell",showStopLimitPrice:!1},"buy-stop":{title:"Buy Stop",side:"buy",showStopLimitPrice:!1},"buy-stop-limit":{title:"Buy Stop Limit",side:"buy",showStopLimitPrice:!0},"sell-stop":{title:"Sell Stop",side:"sell",showStopLimitPrice:!1},"sell-stop-limit":{title:"Sell Stop Limit",side:"sell",showStopLimitPrice:!0}},I={"buy-market":{side:"buy",orderType:"market"},"sell-market":{side:"sell",orderType:"market"},"buy-limit":{side:"buy",orderType:"buy_limit"},"sell-limit":{side:"sell",orderType:"sell_limit"},"buy-stop":{side:"buy",orderType:"buy_stop"},"buy-stop-limit":{side:"buy",orderType:"buy_stop_limit"},"sell-stop":{side:"sell",orderType:"sell_stop"},"sell-stop-limit":{side:"sell",orderType:"sell_stop_limit"}},O=()=>{x.value=!1,P.value=null},B=()=>{P.value=null,x.value=!1},N=e=>{if(!P.value)return;const t=I[P.value.action];t&&(w("action",P.value.action,{symbol:u.symbol,price:e.price?Number(e.price):D.value,side:t.side,orderType:t.orderType,volume:e.volume?Number(e.volume):Vt,stopLimitPrice:e.stopLimitPrice?Number(e.stopLimitPrice):void 0,takeProfit:e.takeProfitEnabled&&e.takeProfit?Number(e.takeProfit):void 0,stopLoss:e.stopLossEnabled&&e.stopLoss?Number(e.stopLoss):void 0,comment:e.comment||void 0}),B())},A=e=>{(x.value||P.value)&&O()},V=e=>{"Escape"===e.key&&(x.value||P.value)&&O()};return o(()=>{document.addEventListener("mousedown",A),document.addEventListener("keydown",V)}),i(()=>{document.removeEventListener("mousedown",A),document.removeEventListener("keydown",V)}),r({open:(e,t,a,r="plot")=>{k.value={x:e,y:t},D.value=a,F.value=r,P.value=null,x.value=!0},close:O}),(t,a)=>(n(),f(L,{to:"body"},[v(T,{name:"context-menu-fade"},{default:g(()=>[P.value?(n(),s("div",{key:0,class:b("fixed z-[2]"),style:C(M.value),onMousedown:a[0]||(a[0]=S(()=>{},["stop"]))},[v(Q,{title:P.value.title,"status-tag-text":P.value.statusTagText,side:P.value.side,symbol:e.symbol,"reference-price":D.value,"tick-size":e.tickSize,"show-stop-limit-price":P.value.showStopLimitPrice,"initial-comment":P.value.initialComment,onConfirm:N,onDiscard:B,onClose:B},null,8,["title","status-tag-text","side","symbol","reference-price","tick-size","show-stop-limit-price","initial-comment"])],36)):x.value?(n(),s("div",{key:1,class:b(_),style:C({top:`${k.value.y}px`,left:`${k.value.x}px`}),onClick:a[1]||(a[1]=S(()=>{},["stop"]))},[(n(!0),s(m,null,y(E.value,(e,t)=>{return n(),s("div",{key:t,class:b((e.tone,[...R].join(" "))),onClick:t=>(e=>{if("buy-market"===e.action||"sell-market"===e.action){const t=I[e.action];return w("action",e.action,{symbol:u.symbol,price:D.value,side:t.side,orderType:t.orderType,volume:Vt}),void O()}if($.has(e.action)){const t=z[e.action];return void(P.value={action:e.action,title:t.title,statusTagText:`${t.title} 0.01`,side:t.side,showStopLimitPrice:t.showStopLimitPrice,initialComment:""})}w("action",e.action,{symbol:u.symbol,price:D.value}),O()})(e)},[c("span",{class:b((a=e.tone,"buy"===a?[...j,Kt].join(" "):"sell"===a?[...j,Ut].join(" "):j.join(" ")))},d(e.label),3)],10,At);var a}),128))],4)):p("",!0)]),_:1})]))}}),[["__scopeId","data-v-a1ce2602"]]),qt={class:"flex flex-col gap-3 py-2"},Wt={class:"text-body-sm text-[var(--er-text-secondary)]"},Zt=["onClick"],Gt={class:"flex items-center gap-1.5"},Xt={key:0,width:"10",height:"10",viewBox:"0 0 12 12",fill:"none"},Jt={class:"text-label-md font-medium text-[var(--er-text-primary)] truncate"},Qt={class:"flex justify-end gap-3"},ea=l({__name:"SwitchMultiChartDialog",props:{isVisible:{type:Boolean},sourceLayout:{},sourcePanes:{},targetCount:{}},emits:["confirm","cancel"],setup(e,{emit:l}){const o=e,i=l,u=t([]),w={width:"120px",height:"64px"},x=a(()=>{switch(o.sourceLayout){case he:case ve:return"grid-cols-1";case pe:return"grid-cols-2";case ge:return"grid-cols-3";case ye:return"grid-cols-2 grid-rows-2";default:return"grid-cols-1"}}),k=e=>u.value.includes(e),C=()=>{u.value.length===o.targetCount&&i("confirm",[...u.value])},L=()=>{i("cancel")},T=()=>{i("cancel")};return r(()=>o.isVisible,e=>{e&&(u.value=o.sourcePanes.slice(0,o.targetCount).map(e=>e.id))},{immediate:!0}),(t,a)=>{const r=ae,l=te;return n(),f(l,{"dialog-visible":e.isVisible,width:"400px","append-body":"","destroy-on-close":"","close-on-click-modal":!0,"close-on-press-escape":!0,onClose:T},{header:g(()=>[...a[0]||(a[0]=[c("span",{class:"text-title-sm"},"Switch Multi-Chart",-1)])]),default:g(()=>[c("div",qt,[c("span",Wt," Select "+d(e.targetCount)+" pane"+d(e.targetCount>1?"s":"")+" to keep* ",1),c("div",{class:b(["grid gap-1 justify-start",x.value])},[(n(!0),s(m,null,y(e.sourcePanes,e=>{return n(),s("div",{key:e.id,class:b(["flex flex-col items-center justify-center rounded-sm border cursor-pointer transition-colors p-2",k(e.id)?"border-[var(--er-border-action)] bg-[var(--er-surface-elevated)]":(t=e.id,!k(t)&&u.value.length>=o.targetCount?"border-[var(--er-border-default)] opacity-40 cursor-not-allowed":"border-[var(--er-border-default)] hover:bg-[var(--er-surface-muted)]")]),style:w,onClick:t=>(e=>{k(e)?u.value=u.value.filter(t=>t!==e):u.value.length>=o.targetCount||(u.value=[...u.value,e])})(e.id)},[c("div",Gt,[c("div",{class:b(["flex items-center justify-center w-4 h-4 rounded-sm border transition-colors shrink-0",k(e.id)?"border-[var(--er-border-action)] bg-[var(--er-border-action)]":"border-[var(--er-border-muted)]"])},[k(e.id)?(n(),s("svg",Xt,[...a[1]||(a[1]=[c("path",{d:"M10 3L4.5 8.5L2 6",stroke:"white","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"},null,-1)])])):p("",!0)],2),c("span",Jt,d(e.symbol||`Pane ${e.index+1}`),1)])],10,Zt);var t}),128))],2)])]),footer:g(()=>[c("div",Qt,[v(r,{color:"secondary",onClick:L},{default:g(()=>[...a[2]||(a[2]=[D("Cancel",-1)])]),_:1}),v(r,{color:"primary",disabled:u.value.length!==e.targetCount,onClick:C},{default:g(()=>[...a[3]||(a[3]=[D(" Confirm ",-1)])]),_:1},8,["disabled"])])]),_:1},8,["dialog-visible"])}}}),ta={key:1,class:"relative w-full flex-1 min-h-0"},aa=["onClick"],ra=l({__name:"index",props:{symbol:{},chartData:{},selectedTimeFrame:{},selectedTimeRange:{},selectedChartType:{},customTimeRange:{},timeFrameOptions:{},timeRangeOptions:{},chartTypeOptions:{},snapshotOptions:{},isLoading:{type:Boolean},isExpanded:{type:Boolean},multiChartLayout:{},dataBarCount:{},tickSize:{},dark:{type:Boolean},chartDomId:{},overlayTitle:{},overlaySubtitle:{},openLabel:{},highLabel:{},lowLabel:{},closeLabel:{},plugins:{},drawingPlugin:{},orderlinePlugin:{}},emits:["resize","changeTimeFrame","changeTimeRange","changeChartType","changeCustomRange","loadMoreLeft","toggleExpanded","changeMultiChartLayout","stateChange","drawingStateChange","orderlineStateChange","contextMenuAction","activeSymbolChange"],setup(r,{expose:l,emit:o}){const i=r,c=o,d=x(null),g=Ve(i,c,{snapshotTargetRef:d}),{isLoading:w,symbol:k,overlaySubtitle:C,chartData:L,selectedTimeFrame:T,selectedChartType:D,tickSize:M,dark:_,isMultiChart:R,multiChartLayout:j,chartIds:E,selectedChartId:$}=g,z=x(null),I=t({}),O=x(null),B=x(null),N=x(null),A=x(null),V=a(()=>_.value??!1),K=a(()=>O.value?.$el?.offsetHeight??0),U=a(()=>B.value?.$el?.offsetHeight??0),H=a(()=>E.value.map((e,t)=>({id:e,index:t,symbol:g.getSymbolForChart(e),description:g.getSymbolDescriptionForChart(e),timeFrame:g.getTimeFrameForChart(e)}))),Y=a(()=>z.value?.chartInstance??null),q=a(()=>z.value?.currentSeries??null),W=a(()=>z.value?.chartRenderKey??0),Z=a(()=>z.value?.chartDataTimes??[]),G=a(()=>i.plugins??[]),X=a(()=>i.drawingPlugin??null),J=a(()=>i.orderlinePlugin??null),Q=a(()=>G.value.includes(Ee)&&!!X.value),ee=a(()=>G.value.includes($e)&&!!J.value),te=a(()=>Q.value&&(X.value?.showSidebar??!0)),ae=e=>{c("drawingStateChange",e)},re=e=>{c("orderlineStateChange",e)},le=e=>{if(R.value)return;const t=z.value;if(!t)return;let a=t.crosshairData?.closePrice??null,r="plot";const l=t.chartInstance,o=t.currentSeries;if(l&&o){const i=l.chartElement().getBoundingClientRect(),n=e.clientY-i.top,s=o.coordinateToPrice(n);null!=s&&(a=t.roundPriceByTickSize?.(s));const c=l.priceScale("right").width(),u=l.priceScale("left").width(),d=e.clientX-i.left;(d<u||d>i.width-c)&&(r="axis")}N.value?.open(e.clientX,e.clientY,a,r)},oe=(e,t)=>{c("contextMenuAction",e,t)},ie=a(()=>["flex flex-1 flex-col min-h-0 min-w-0 h-full overflow-hidden relative rounded-xs bg-[var(--er-surface-page)]",{"rounded-l-none":te.value&&!R.value}]),ne=a(()=>{switch(j.value){case he:case ve:return"flex flex-col";case pe:case ge:return"flex flex-row";case ye:return"grid grid-cols-2 grid-rows-2";default:return"flex flex-row"}}),se=e=>["min-h-0 min-w-0 rounded-sm overflow-hidden ring-1 transition-all cursor-pointer",j.value===ye?"h-full w-full":"flex-1",$.value===e?"ring-[var(--er-border-action)]":"ring-[var(--er-border-default)]"];return l({state:g.state,selectedTimeFrame:g.selectedTimeFrame,selectedTimeRange:g.selectedTimeRange,selectedChartType:g.selectedChartType,customTimeRange:g.customTimeRange,isExpanded:g.isExpanded,isMultiChart:g.isMultiChart,multiChartLayout:g.multiChartLayout,selectedChartId:g.selectedChartId,activeChartLastPrice:g.activeChartLastPrice,chartInstance:Y,currentSeries:q,chartRenderKey:W,headerHeight:K,footerHeight:U,takeSnapshot:g.onSnapshot,openMenu:e=>{A.value?.openMenu?.(e)}}),(t,a)=>{const r=e;return n(),s("div",{class:"flex h-full w-full min-h-0 min-w-0 gap-1 overflow-hidden",onContextmenu:S(le,["prevent"])},[!u(R)&&Q.value&&X.value?(n(),f(Bt,{key:0,chart:Y.value,series:q.value,symbol:u(k),"selected-time-frame":u(T),"chart-data-times":Z.value,"is-dark":V.value,"floating-target":d.value,"header-height":K.value,"footer-height":U.value,config:X.value,onStateChange:ae},null,8,["chart","series","symbol","selected-time-frame","chart-data-times","is-dark","floating-target","header-height","footer-height","config"])):p("",!0),F((n(),s("div",{ref_key:"lightweightChartRef",ref:d,class:b(ie.value)},[!u(R)&&ee.value&&J.value?(n(),f(Nt,{key:0,ref_key:"orderlinePluginRef",ref:A,chart:Y.value,series:q.value,"render-key":W.value,"is-dark":V.value,config:J.value,onStateChange:re},null,8,["chart","series","render-key","is-dark","config"])):p("",!0),v(u(pt),{ref_key:"headerRef",ref:O,context:u(g)},null,8,["context"]),u(R)?(n(),s("div",{key:2,class:b(["w-full flex-1 min-h-0 gap-2 p-1",ne.value])},[(n(!0),s(m,null,y(u(E),e=>(n(),s("div",{key:e,class:b(se(e)),onClick:t=>u(g).onSelectChart(e)},[v(Ot,{ref_for:!0,ref:t=>((e,t)=>{I.value[e]=t??null})(e,t),"chart-data":u(g).getChartDataForChart(e),"selected-chart-type":u(g).getChartTypeForChart(e),"selected-time-frame":u(g).getTimeFrameForChart(e),dark:V.value,"tick-size":u(M),symbol:u(g).getSymbolForChart(e),"symbol-description":u(g).getSymbolDescriptionForChart(e),"is-multi-chart":!0,"open-label":i.openLabel,"high-label":i.highLabel,"low-label":i.lowLabel,"close-label":i.closeLabel,onLoadMoreLeft:u(g).onLoadMoreLeft},null,8,["chart-data","selected-chart-type","selected-time-frame","dark","tick-size","symbol","symbol-description","open-label","high-label","low-label","close-label","onLoadMoreLeft"])],10,aa))),128))],2)):(n(),s("div",ta,[v(Ot,{ref_key:"primaryCanvasRef",ref:z,"chart-data":u(L),"selected-chart-type":u(D),"selected-time-frame":u(T),dark:V.value,"tick-size":u(M),symbol:u(k),"symbol-description":u(C),"is-multi-chart":!1,"open-label":i.openLabel,"high-label":i.highLabel,"low-label":i.lowLabel,"close-label":i.closeLabel,onLoadMoreLeft:u(g).onLoadMoreLeft,onResize:u(g).onResize},null,8,["chart-data","selected-chart-type","selected-time-frame","dark","tick-size","symbol","symbol-description","open-label","high-label","low-label","close-label","onLoadMoreLeft","onResize"])])),v(u(kt),{ref_key:"footerRef",ref:B,context:u(g)},null,8,["context"]),P(t.$slots,"chart-overlay")],2)),[[r,u(w)]]),u(R)?p("",!0):(n(),f(Yt,{key:1,ref_key:"contextMenuRef",ref:N,symbol:u(k),onAction:oe},null,8,["symbol"])),u(g).pendingLayoutSwitch.value?(n(),f(ea,{key:2,"is-visible":!!u(g).pendingLayoutSwitch.value,"source-layout":u(j),"source-panes":H.value,"target-count":u(be)(u(g).pendingLayoutSwitch.value),onConfirm:u(g).confirmLayoutSwitch,onCancel:u(g).cancelLayoutSwitch},null,8,["is-visible","source-layout","source-panes","target-count","onConfirm","onCancel"])):p("",!0)],32)}}});export{ra as default,Ve as provideEaeraLightweightChart,Ke as useEaeraLightweightChart};
@@ -0,0 +1,3 @@
1
+ export { default as EaeraMarketDepthSearch } from './EaeraMarketDepthSearch';
2
+ export { default as EaeraMarketDepthTable } from './EaeraMarketDepthTable';
3
+ export { default as EaeraMarketDepthPriceRow } from './EaeraMarketDepthPriceRow';
@@ -0,0 +1,47 @@
1
+ import { EaeraMarketDepthProps, EaeraMarketDepthSearchOption, EaeraMarketDepthState } from '../../../types/EaeraMarketDepth';
2
+ import { DefineComponent, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ 'search-dropdown'?(_: {
7
+ options: EaeraMarketDepthSearchOption[];
8
+ selected: string;
9
+ minWidth: string;
10
+ loading: boolean;
11
+ fetchingSymbolLabel: string;
12
+ symbolNotFoundLabel: string;
13
+ selectOption: (value: string) => void;
14
+ }): any;
15
+ };
16
+ refs: {
17
+ searchRef: HTMLDivElement;
18
+ };
19
+ rootEl: HTMLDivElement;
20
+ };
21
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
+ declare const __VLS_component: DefineComponent<EaeraMarketDepthProps, {
23
+ state: ComputedRef<EaeraMarketDepthState>;
24
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
25
+ resize: (width: number, height: number) => any;
26
+ wheel: (deltaY: number) => any;
27
+ stateChange: (state: EaeraMarketDepthState) => any;
28
+ "update:searchValue": (value: string) => any;
29
+ "select-search-option": (value: string) => any;
30
+ "back-center": () => any;
31
+ }, string, PublicProps, Readonly<EaeraMarketDepthProps> & Readonly<{
32
+ onResize?: ((width: number, height: number) => any) | undefined;
33
+ onWheel?: ((deltaY: number) => any) | undefined;
34
+ onStateChange?: ((state: EaeraMarketDepthState) => any) | undefined;
35
+ "onUpdate:searchValue"?: ((value: string) => any) | undefined;
36
+ "onSelect-search-option"?: ((value: string) => any) | undefined;
37
+ "onBack-center"?: (() => any) | undefined;
38
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
39
+ searchRef: HTMLDivElement;
40
+ }, HTMLDivElement>;
41
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
42
+ export default _default;
43
+ type __VLS_WithTemplateSlots<T, S> = T & {
44
+ new (): {
45
+ $slots: S;
46
+ };
47
+ };
@@ -0,0 +1,30 @@
1
+ import { ComputedRef, WritableComputedRef } from 'vue';
2
+ import { EaeraMarketDepthEmitFn, EaeraMarketDepthPriceDirection, EaeraMarketDepthProps, EaeraMarketDepthRow, EaeraMarketDepthSearchOption, EaeraMarketDepthState, EaeraMarketDepthViewportVsLast } from '../../../types/EaeraMarketDepth';
3
+ interface EaeraMarketDepthContext {
4
+ searchValue: WritableComputedRef<string>;
5
+ searchPlaceholder: ComputedRef<string>;
6
+ searchOptions: ComputedRef<EaeraMarketDepthSearchOption[]>;
7
+ selectedSearchOption: ComputedRef<string>;
8
+ loadingSearchOptions: ComputedRef<boolean>;
9
+ rows: ComputedRef<EaeraMarketDepthRow[]>;
10
+ levels: ComputedRef<number>;
11
+ lastPrice: ComputedRef<number>;
12
+ previousPrice: ComputedRef<number>;
13
+ tickSize: ComputedRef<number | null | undefined>;
14
+ priceDirection: ComputedRef<EaeraMarketDepthPriceDirection>;
15
+ viewportVsLast: ComputedRef<EaeraMarketDepthViewportVsLast>;
16
+ shouldRenderEmptyState: ComputedRef<boolean>;
17
+ priceLabel: ComputedRef<string>;
18
+ sizeLabel: ComputedRef<string>;
19
+ fetchingSymbolLabel: ComputedRef<string>;
20
+ symbolNotFoundLabel: ComputedRef<string>;
21
+ showingDropdown: WritableComputedRef<boolean>;
22
+ state: ComputedRef<EaeraMarketDepthState>;
23
+ onResize: (width: number, height: number) => void;
24
+ onSelectSearchOption: (value: string) => void;
25
+ onWheel: (deltaY: number) => void;
26
+ onBackCenter: () => void;
27
+ }
28
+ export declare const provideEaeraMarketDepth: (props: EaeraMarketDepthProps, emit: EaeraMarketDepthEmitFn) => EaeraMarketDepthContext;
29
+ export declare const useEaeraMarketDepth: () => EaeraMarketDepthContext;
30
+ export {};
@@ -0,0 +1,2 @@
1
+ export { default } from './EaeraMarketDepth/index';
2
+ export * from './EaeraMarketDepth/useEaeraMarketDepth';
@@ -0,0 +1 @@
1
+ import{ref as e,watch as t,computed as s,provide as r,inject as a,defineComponent as i,shallowRef as o,openBlock as l,createElementBlock as c,createVNode as n,unref as p,createSlots as m,withCtx as u,createElementVNode as d,renderSlot as v,normalizeStyle as k,toDisplayString as y,Fragment as b,renderList as _,normalizeClass as w,createBlock as f,resolveDynamicComponent as g,createCommentVNode as S,useSlots as z,normalizeProps as L,guardReactiveProps as E}from"vue";import{a as x}from"../chunks/vendor-vueuse-core-B96HGhR7.mjs";import{useI18n as D}from"vue-i18n";import"element-plus";import"element-plus/es";import{Search as C,ArrowDown as O,ArrowUp as P,MoveUp as V}from"@lucide/vue";import"../chunks/vendor-email-misspelled-0hsXkSSK.mjs";import{_ as j}from"../chunks/EaeraInput-CkbcAxy0.mjs";import"../chunks/vendor-unorm-Degftfa1.mjs";import"../chunks/useEaeraInputPhoneNumber-CKXimj-u.mjs";import"@element-plus/icons-vue";import"../chunks/iconSvg-DuOI5Yho.mjs";import N from"../composite/EaeraDropdownV2.mjs";import"echarts/core";import"echarts/renderers";import"echarts/charts";import"echarts/components";import"vue-echarts";import"../chunks/vendor-currency-symbol-map-C-1fEG2R.mjs";import"../chunks/vendor-sortablejs-D3DyHO5Y.mjs";import"../chunks/eventListener-o1XlgLVq.mjs";import"../chunks/phoneNumbers-Bmtkxd5J.mjs";import"../chunks/vendor-libphonenumber-js-bhez_Ujn.mjs";import"../chunks/_plugin-vue_export-helper-BCo6x5W8.mjs";const A={Bid:"bid",Ask:"ask",Last:"last"},M="down",R="flat",B={Up:"Up",Down:"Down",Center:"Center"},$=Symbol("EAERA_MARKET_DEPTH_CONTEXT_KEY"),F=(a,i)=>{const{t:o}=D(),l=e(a.searchValue),c=e(!1);t(()=>a.searchValue,e=>{l.value=e});const n=(e,t)=>{const s=o(e);return"string"==typeof s&&s.trim().length>0?s:t},p=s(()=>({searchValue:l.value,showingDropdown:c.value}));t(p,e=>{i("stateChange",e)},{immediate:!0});const m={searchValue:s({get:()=>l.value,set:e=>{l.value=e,i("update:searchValue",e)}}),searchPlaceholder:s(()=>a.searchPlaceholder??""),searchOptions:s(()=>a.searchOptions??[]),selectedSearchOption:s(()=>a.selectedSearchOption??""),loadingSearchOptions:s(()=>a.loadingSearchOptions??!1),rows:s(()=>a.rows),levels:s(()=>a.levels),lastPrice:s(()=>a.lastPrice),previousPrice:s(()=>a.previousPrice),tickSize:s(()=>a.tickSize),priceDirection:s(()=>a.priceDirection??R),viewportVsLast:s(()=>a.viewportVsLast??B.Center),shouldRenderEmptyState:s(()=>a.shouldRenderEmptyState??!1),priceLabel:s(()=>a.priceLabel||n("market.depth.table.price","Price")),sizeLabel:s(()=>a.sizeLabel||n("market.depth.table.size","Size")),fetchingSymbolLabel:s(()=>a.fetchingSymbolLabel||n("market.search.fetching-symbol","Fetching symbol")),symbolNotFoundLabel:s(()=>a.symbolNotFoundLabel||n("market.search.symbol-not-found","Symbol not found")),showingDropdown:s({get:()=>c.value,set:e=>{c.value=e}}),state:p,onResize:(e,t)=>i("resize",e,t),onSelectSearchOption:e=>i("select-search-option",e),onWheel:e=>i("wheel",e),onBackCenter:()=>i("back-center")};return r($,m),m},U=()=>{const e=a($);if(!e)throw new Error("useEaeraMarketDepth must be used inside EaeraMarketDepth");return e},T={class:"custom-market-depth-search__dropdown-anchor"},W={key:0,class:"custom-market-depth-search__empty body-sm text-placeholder"},I={key:0},K={key:1},Y={key:1,class:"custom-market-depth-search__option-list"},q=["onClick"],G={class:"body-md__w"},H={class:"body-sm"},X=i({__name:"EaeraMarketDepthSearch",setup(r){const{searchValue:a,searchPlaceholder:i,searchOptions:f,selectedSearchOption:g,loadingSearchOptions:S,fetchingSymbolLabel:z,symbolNotFoundLabel:L,showingDropdown:E,onSelectSearchOption:D}=U(),O=o(null),P=e(),{width:V}=x(O),A=s(()=>`${Math.max(V.value,200)}px`),M=e(a.value),R=e(!1);t(a,e=>{M.value=e});const B=e=>{R.value||(a.value=e)},$=()=>{R.value=!0},F=e=>{a.value=e.data},X=e=>{R.value=!1;const t=e.data??M.value;a.value=t},J=e=>{D(e)},Q=e=>{E.value=e};return t(a,e=>{e?P.value?.openDropdown():P.value?.closeDropdown()},{immediate:!0}),(e,t)=>(l(),c("div",{ref_key:"searchRef",ref:O,class:"custom-market-depth-search"},[n(p(j),{modelValue:M.value,"onUpdate:modelValue":t[0]||(t[0]=e=>M.value=e),placeholder:p(i),clearable:"",class:"watchlist-input custom-market-depth-search__input",onInput:B,onCompositionstart:$,onCompositionupdate:F,onCompositionend:X},m({_:2},[p(a)?void 0:{name:"suffix",fn:u(()=>[n(p(C),{size:16,class:"icon-primary"})]),key:"0"}]),1032,["modelValue","placeholder"]),d("div",T,[n(p(N),{ref_key:"dropdownRef",ref:P,trigger:"click",placement:"bottom-start",class:"custom-market-depth-search__dropdown",onVisibleChange:Q},{dropdown:u(()=>[v(e.$slots,"dropdown",{options:p(f),selected:p(g),minWidth:A.value,loading:p(S),fetchingSymbolLabel:p(z),symbolNotFoundLabel:p(L),selectOption:J},()=>[d("div",{class:"custom-market-depth-search__dropdown-panel",style:k({minWidth:A.value})},[p(S)||!p(f).length?(l(),c("div",W,[p(S)?(l(),c("div",I,y(p(z)),1)):(l(),c("div",K,y(p(L)),1))])):(l(),c("div",Y,[(l(!0),c(b,null,_(p(f),e=>(l(),c("div",{key:e.value,class:w(["custom-market-depth-search__option",e.value===p(g)&&"is-selected"]),onClick:t=>J(e.value)},[d("div",G,y(e.label),1),d("div",H,y(e.description),1)],10,q))),128))]))],4)])]),default:u(()=>[t[1]||(t[1]=d("div",{class:"custom-market-depth-search__dropdown-trigger"},null,-1))]),_:3},512)])],512))}}),J={class:"custom-market-depth-table"},Q={class:"custom-market-depth-table__header text-primary"},Z={class:"custom-market-depth-table__header-price label-lg"},ee={class:"custom-market-depth-table__header-size label-lg"},te=i({__name:"EaeraMarketDepthTable",setup(e){const{rows:t,levels:r,lastPrice:a,tickSize:i,priceDirection:o,viewportVsLast:n,shouldRenderEmptyState:m,priceLabel:u,sizeLabel:v,onWheel:k,onBackCenter:w}=U(),z={[B.Up]:P,[B.Down]:O},L=e=>{if(null==e)return null;const t=(e=>{if("number"!=typeof e||!Number.isFinite(e)||e<=0)return 2;const t=e.toLocaleString("en-US",{useGrouping:!1,maximumFractionDigits:20}),s=(t.includes(".")?t.replace(/0+$/,"").replace(/\.$/,""):t).split(".")[1];return s?s.length:0})(i.value);return Number(e).toFixed(t)},E=(e,t,s)=>({key:`${t}-${e.price}${s?.keySuffix?`-${s.keySuffix}`:""}`,price:L(e.price),size:t===A.Last?null:s?.sizeOverride??(t===A.Ask?e.askSize:e.bidSize),type:t,isEmpty:!1}),x=s(()=>z[n.value]),D=s(()=>{const e=Math.max(r.value,0);if(!e)return[];if(m.value)return Array.from({length:e},(e,t)=>({key:`empty-${t}`,price:null,size:null,type:null,isEmpty:!0}));const s=[...t.value].reverse().flatMap(e=>{const t=(e=>e.price>a.value?A.Ask:e.price<a.value?A.Bid:A.Last)(e),s=Math.abs(e.price-a.value)<1e-10;if(t!==A.Last||!s)return[E(e,t)];const r=E(e,A.Last),i=o.value!==M,l=E(e,i?A.Bid:A.Ask,{keySuffix:"synthetic-last",sizeOverride:e.bidSize+e.askSize});return i?[r,l]:[l,r]});return s.length<=e?s:o.value===M?s.slice(s.length-e):s.slice(0,e)}),C=s(()=>Math.max(...D.value.filter(e=>!e.isEmpty&&e.type!==A.Last).map(e=>e.size??0),1));return(e,t)=>(l(),c("div",J,[d("div",Q,[d("div",Z,y(p(u)),1),d("div",ee,y(p(v)),1)]),d("div",{class:"custom-market-depth-table__rows",onWheel:t[0]||(t[0]=e=>p(k)(e.deltaY))},[(l(!0),c(b,null,_(D.value,(e,t)=>(l(),f(p(ce),{key:e.key,price:e.price,type:e.type,size:e.size,"max-size":C.value,empty:e.isEmpty,"first-child":!t},null,8,["price","type","size","max-size","empty","first-child"]))),128))],32),p(m)||p(n)===p(B).Center?S("",!0):(l(),c("div",{key:0,class:"custom-market-depth-table__back-center",onClick:t[1]||(t[1]=(...e)=>p(w)&&p(w)(...e))},[(l(),f(g(x.value),{size:16,class:"icon-secondary"}))]))]))}}),se={key:0},re={key:1},ae={class:"custom-market-depth-price-row__size text-primary"},ie={key:2},oe={class:"custom-market-depth-price-row__last-price"},le={class:"custom-market-depth-price-row__last-icon"},ce=i({__name:"EaeraMarketDepthPriceRow",props:{type:{},price:{},size:{},maxSize:{},firstChild:{type:Boolean},empty:{type:Boolean}},setup(e){const{lastPrice:t,previousPrice:r}=U(),a=e,i=s(()=>{const e=a.size??0,t=a.maxSize||1;return 100*Math.min(e/t,1)+"%"}),o=s(()=>t.value>r.value?{className:"is-increase",icon:"ArrowNarrowUp"}:t.value<r.value?{className:"is-decrease",icon:"ArrowNarrowDown"}:void 0);return(e,t)=>(l(),c("div",null,[a.empty?(l(),c("div",se,[d("div",{class:w(["custom-market-depth-price-row custom-market-depth-price-row--empty body-sm",a.firstChild&&"is-first-child"])},[...t[0]||(t[0]=[d("div",{class:"custom-market-depth-price-row__price"}," ",-1),d("div",{class:"custom-market-depth-price-row__size text-primary"}," ",-1)])],2)])):a.type===p(A).Ask||a.type===p(A).Bid?(l(),c("div",re,[d("div",{class:w(["custom-market-depth-price-row custom-market-depth-price-row--quantity body-sm",a.type===p(A).Ask?"custom-market-depth-price-row--ask":"custom-market-depth-price-row--bid",a.firstChild&&"is-first-child"]),style:k({"--size-percent":i.value})},[d("div",{class:w(["custom-market-depth-price-row__price",a.type===p(A).Ask?"is-ask":"is-bid"])},y(a.price),3),d("div",ae,y(a.size),1)],6)])):(l(),c("div",ie,[d("div",{class:w(["custom-market-depth-price-row custom-market-depth-price-row--last-price body-lg__w",a.firstChild&&"is-first-child",o.value?.className])},[d("div",oe,[d("span",null,y(a.price),1)]),d("div",le,[o.value?(l(),f(p(V),{key:0,size:16})):S("",!0)])],2)]))]))}}),ne={class:"custom-market-depth"},pe={class:"custom-market-depth__table"},me=i({__name:"index",props:{searchValue:{},searchPlaceholder:{},searchOptions:{},selectedSearchOption:{},loadingSearchOptions:{type:Boolean},rows:{},levels:{},lastPrice:{},previousPrice:{},tickSize:{},priceDirection:{},viewportVsLast:{},shouldRenderEmptyState:{type:Boolean},priceLabel:{},sizeLabel:{},fetchingSymbolLabel:{},symbolNotFoundLabel:{}},emits:["resize","update:searchValue","select-search-option","wheel","back-center","stateChange"],setup(e,{expose:s,emit:r}){const a=z(),i=o(null),{width:k,height:y}=x(i),b=F(e,r);return s({state:b.state}),t([k,y],()=>{i.value&&b.onResize(k.value,y.value)}),(e,t)=>(l(),c("div",ne,[d("div",{ref_key:"searchRef",ref:i,class:"custom-market-depth__search"},[n(p(X),null,m({_:2},[p(a)["search-dropdown"]?{name:"dropdown",fn:u(t=>[v(e.$slots,"search-dropdown",L(E(t)))]),key:"0"}:void 0]),1024)],512),d("div",pe,[n(p(te))])]))}});export{me as default,F as provideEaeraMarketDepth,U as useEaeraMarketDepth};
@@ -0,0 +1,3 @@
1
+ export { default as OrderAdvanced } from './EaeraOrderPlacementAdvanced';
2
+ export { default as OrderActions } from './EaeraOrderPlacementActions';
3
+ export { default as OrderInfo } from './EaeraOrderPlacementInfo';
@@ -0,0 +1,36 @@
1
+ import { EaeraOrderPlacementProps, EaeraOrderPlacementState, EaeraOrderType, EaeraOrderDuration, EaeraOrderPriceType, EaeraOrderSide } from '../../../types/EaeraOrderPlacement';
2
+ import { DefineComponent, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<EaeraOrderPlacementProps, {
4
+ state: ComputedRef<EaeraOrderPlacementState>;
5
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6
+ resize: (width: number, height: number) => any;
7
+ reverse: () => any;
8
+ "update:orderType": (value: EaeraOrderType) => any;
9
+ stateChange: (state: EaeraOrderPlacementState) => any;
10
+ "join-bid": (volume: number) => any;
11
+ "join-ask": (volume: number) => any;
12
+ "close-all-positions": () => any;
13
+ "flatten-all": () => any;
14
+ "cancel-orders": () => any;
15
+ "update:orderDuration": (value: EaeraOrderDuration) => any;
16
+ "update:orderPrice": (type: EaeraOrderPriceType, value: string | number) => any;
17
+ "submit-side-order": (side: EaeraOrderSide, volume: number) => any;
18
+ "symbol-info": () => any;
19
+ }, string, PublicProps, Readonly<EaeraOrderPlacementProps> & Readonly<{
20
+ onResize?: ((width: number, height: number) => any) | undefined;
21
+ onReverse?: (() => any) | undefined;
22
+ "onUpdate:orderType"?: ((value: EaeraOrderType) => any) | undefined;
23
+ onStateChange?: ((state: EaeraOrderPlacementState) => any) | undefined;
24
+ "onJoin-bid"?: ((volume: number) => any) | undefined;
25
+ "onJoin-ask"?: ((volume: number) => any) | undefined;
26
+ "onClose-all-positions"?: (() => any) | undefined;
27
+ "onFlatten-all"?: (() => any) | undefined;
28
+ "onCancel-orders"?: (() => any) | undefined;
29
+ "onUpdate:orderDuration"?: ((value: EaeraOrderDuration) => any) | undefined;
30
+ "onUpdate:orderPrice"?: ((type: EaeraOrderPriceType, value: string | number) => any) | undefined;
31
+ "onSubmit-side-order"?: ((side: EaeraOrderSide, volume: number) => any) | undefined;
32
+ "onSymbol-info"?: (() => any) | undefined;
33
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
34
+ orderRef: HTMLDivElement;
35
+ }, any>;
36
+ export default _default;
@@ -0,0 +1,26 @@
1
+ import { ComputedRef, WritableComputedRef } from 'vue';
2
+ import { EaeraOrderDuration, EaeraOrderPlacementDisabledState, EaeraOrderPlacementEmitFn, EaeraOrderPlacementInvalidPrice, EaeraOrderPlacementLoadingState, EaeraOrderPlacementOrderPrices, EaeraOrderPlacementPosition, EaeraOrderPlacementProps, EaeraOrderPlacementState, EaeraOrderPlacementSymbol, EaeraOrderPriceType, EaeraOrderSide, EaeraOrderType } from '../../../types/EaeraOrderPlacement';
3
+ interface EaeraOrderPlacementContext {
4
+ disabledState: ComputedRef<EaeraOrderPlacementDisabledState>;
5
+ viewingSymbol: ComputedRef<EaeraOrderPlacementSymbol | null>;
6
+ position: ComputedRef<EaeraOrderPlacementPosition | null>;
7
+ orderType: WritableComputedRef<EaeraOrderType>;
8
+ orderDuration: WritableComputedRef<EaeraOrderDuration>;
9
+ orderPrices: ComputedRef<EaeraOrderPlacementOrderPrices>;
10
+ invalidPrice: ComputedRef<EaeraOrderPlacementInvalidPrice>;
11
+ loading: ComputedRef<EaeraOrderPlacementLoadingState>;
12
+ state: ComputedRef<EaeraOrderPlacementState>;
13
+ setOrderPrice: (type: EaeraOrderPriceType, value: number | string) => void;
14
+ submitSideOrder: (side: EaeraOrderSide, volume: number) => void;
15
+ joinBid: (volume: number) => void;
16
+ joinAsk: (volume: number) => void;
17
+ reverse: () => void;
18
+ closeAllPositions: () => void;
19
+ flattenAll: () => void;
20
+ cancelOrders: () => void;
21
+ onSymbolInfo: () => void;
22
+ onResize: (width: number, height: number) => void;
23
+ }
24
+ export declare const provideEaeraOrderPlacement: (props: EaeraOrderPlacementProps, emit: EaeraOrderPlacementEmitFn) => EaeraOrderPlacementContext;
25
+ export declare const useEaeraOrderPlacement: () => EaeraOrderPlacementContext;
26
+ export {};
@@ -0,0 +1,2 @@
1
+ export declare const sanitizeOrderPlacementNumberInput: (value: string | number) => string;
2
+ export declare const formatOrderPlacementCurrency: (value: number | string, currency?: string) => string;
@@ -0,0 +1,2 @@
1
+ export { default } from './EaeraOrderPlacement/index';
2
+ export * from './EaeraOrderPlacement/useEaeraOrderPlacement';
@@ -0,0 +1 @@
1
+ import{ref as e,watch as o,computed as s,provide as r,inject as t,defineComponent as a,unref as i,openBlock as l,createElementBlock as d,createElementVNode as n,toDisplayString as c,createVNode as u,normalizeClass as m,withCtx as p,createCommentVNode as _,shallowRef as v,createTextVNode as b,isRef as y,resolveComponent as f,createBlock as k}from"vue";import{a as g}from"../chunks/vendor-vueuse-core-B96HGhR7.mjs";import{useI18n as S}from"vue-i18n";import"element-plus";import"element-plus/es";import{Plus as P,Minus as j,Info as C}from"@lucide/vue";import"../chunks/vendor-email-misspelled-0hsXkSSK.mjs";import{_ as w}from"../chunks/EaeraSelect-C25XUlir.mjs";import"../chunks/vendor-unorm-Degftfa1.mjs";import"../chunks/useEaeraInputPhoneNumber-CKXimj-u.mjs";import"@element-plus/icons-vue";import"../chunks/iconSvg-DuOI5Yho.mjs";import"echarts/core";import"echarts/renderers";import"echarts/charts";import"echarts/components";import"vue-echarts";import"../chunks/vendor-currency-symbol-map-C-1fEG2R.mjs";import"../chunks/vendor-sortablejs-D3DyHO5Y.mjs";import{_ as E}from"../chunks/EaeraInput-CkbcAxy0.mjs";import{_ as O}from"../chunks/EaeraButton-DGfjUoa6.mjs";import"../chunks/EaeraSpinner-DzMwUlR7.mjs";import"../chunks/EaeraCheckbox-C_faN0pV.mjs";import"../chunks/phoneNumbers-Bmtkxd5J.mjs";import"../chunks/vendor-libphonenumber-js-bhez_Ujn.mjs";import"../chunks/eventListener-o1XlgLVq.mjs";const $={Market:"MARKET",Limit:"LIMIT",Stop:"STOP",StopLimit:"STOP_LIMIT"},A={Day:"DAY",GTC:"GTC"},L={Buy:"BUY",Sell:"SELL"},T={JoinBid:"join-bid",Reverse:"reverse",JoinAsk:"join-ask",CloseAllPositions:"close-all-positions",FlattenAll:"flatten-all",CancelOrders:"cancel-orders"},z=Symbol("EAERA_ORDER_PLACEMENT_CONTEXT_KEY"),D=(t,a)=>{const i=e(t.orderType),l=e(t.orderDuration),d=e({...t.orderPrices});o(()=>t.orderType,e=>{i.value=e}),o(()=>t.orderDuration,e=>{l.value=e}),o(()=>t.orderPrices,e=>{d.value={...e}},{deep:!0});const n=s(()=>({disabledState:t.disabledState,viewingSymbol:t.viewingSymbol,position:t.position,orderType:i.value,orderDuration:l.value,orderPrices:{...d.value},invalidPrice:t.invalidPrice,loading:t.loading}));o(n,e=>{a("stateChange",e)},{immediate:!0});const c={disabledState:s(()=>t.disabledState),viewingSymbol:s(()=>t.viewingSymbol),position:s(()=>t.position),orderType:s({get:()=>i.value,set:e=>{i.value=e,a("update:orderType",e)}}),orderDuration:s({get:()=>l.value,set:e=>{l.value=e,a("update:orderDuration",e)}}),orderPrices:s(()=>d.value),invalidPrice:s(()=>t.invalidPrice),loading:s(()=>t.loading),state:n,setOrderPrice:(e,o)=>{d.value={...d.value,[e]:o},a("update:orderPrice",e,o)},submitSideOrder:(e,o)=>a("submit-side-order",e,o),joinBid:e=>a("join-bid",e),joinAsk:e=>a("join-ask",e),reverse:()=>a("reverse"),closeAllPositions:()=>a("close-all-positions"),flattenAll:()=>a("flatten-all"),cancelOrders:()=>a("cancel-orders"),onSymbolInfo:()=>a("symbol-info"),onResize:(e,o)=>a("resize",e,o)};return r(z,c),c},V=()=>{const e=t(z);if(!e)throw new Error("useEaeraOrderPlacement must be used inside EaeraOrderPlacement");return e},N={key:0,class:"custom-order-advanced"},I={class:"custom-order-advanced__price-row"},R={key:0,class:"custom-order-advanced__field"},x={class:"custom-order-advanced__label"},M={class:"custom-order-advanced__control"},B={key:0,class:"custom-order-advanced__error"},U={key:1,class:"custom-order-advanced__field"},F={class:"custom-order-advanced__label"},J={class:"custom-order-advanced__control"},G={key:0,class:"custom-order-advanced__error"},K={class:"custom-order-advanced__duration"},Y={class:"custom-order-advanced__label"},q={class:"custom-order-advanced__control"},X=a({__name:"EaeraOrderPlacementAdvanced",props:{invalidOrderPriceLabel:{}},setup(e){const o=e,{t:r}=S(),{viewingSymbol:t,orderType:a,orderDuration:v,orderPrices:b,invalidPrice:y,disabledState:f,setOrderPrice:k}=V(),g=s(()=>Object.values(A).map(e=>({label:r(`orders.durations.${e}`),value:e}))),O=s(()=>o.invalidOrderPriceLabel||r("orders.invalid-order-price")),L=s({get:()=>v.value,set:e=>{v.value=e}}),T=s({get:()=>b.value[$.Limit],set:e=>k($.Limit,e)}),z=s({get:()=>b.value[$.Stop],set:e=>k($.Stop,e)}),D=(e,o)=>{f.value.disabled||k(o,(e=>{const o=String(e??"").replace(/,/g,"").replace(/[^0-9.]/g,""),[s="",...r]=o.split("."),t=r.join("");return t.length?`${s}.${t}`:s})(e))},X=(e,o)=>{if(f.value.disabled)return;const s=Number(t.value?.tickSize)||0;if(!s)return;const r=(String(s).split(".")[1]??"").length,a=Number(b.value[e]||0),i=Number((a+o*s).toFixed(r));k(e,i)};return(e,o)=>i(a)?(l(),d("div",N,[n("div",I,[i($).Stop!==i(a)?(l(),d("div",R,[n("div",x,c(e.$t("orders.limit-price")),1),n("div",M,[u(i(E),{modelValue:T.value,"onUpdate:modelValue":o[2]||(o[2]=e=>T.value=e),class:m(["custom-order-advanced__input order-input",{"is-error":i(y).limit}]),disabled:i(f).disabled,onInput:o[3]||(o[3]=e=>D(e,i($).Limit))},{prefix:p(()=>[u(i(j),{size:20,onClick:o[0]||(o[0]=e=>X(i($).Limit,-1))})]),suffix:p(()=>[u(i(P),{size:20,onClick:o[1]||(o[1]=e=>X(i($).Limit,1))})]),_:1},8,["modelValue","class","disabled"])]),i(y).limit?(l(),d("div",B,[u(i(C),{size:18}),n("span",null,c(O.value),1)])):_("",!0)])):_("",!0),i($).Limit!==i(a)?(l(),d("div",U,[n("div",F,c(e.$t("orders.stop-price")),1),n("div",J,[u(i(E),{modelValue:z.value,"onUpdate:modelValue":o[6]||(o[6]=e=>z.value=e),class:m(["custom-order-advanced__input order-input",{"is-error":i(y).stop}]),controls:"",min:1,disabled:i(f).disabled,onInput:o[7]||(o[7]=e=>D(e,i($).Stop))},{prefix:p(()=>[u(i(j),{size:20,onClick:o[4]||(o[4]=e=>X(i($).Stop,-1))})]),suffix:p(()=>[u(i(P),{size:20,onClick:o[5]||(o[5]=e=>X(i($).Stop,1))})]),_:1},8,["modelValue","class","disabled"])]),i(y).stop?(l(),d("div",G,[u(i(C),{size:18}),n("span",null,c(O.value),1)])):_("",!0)])):_("",!0)]),n("div",K,[n("div",Y,c(e.$t("orders.duration")),1),n("div",q,[u(i(w),{modelValue:L.value,"onUpdate:modelValue":o[8]||(o[8]=e=>L.value=e),class:"custom-order-advanced__select",options:g.value,placeholder:"Select",disabled:i(f).disabled},null,8,["modelValue","options","disabled"])])])])):_("",!0)}}),H={key:0,class:"custom-order-actions__position-row"},Q={key:0,class:"custom-order-actions__position"},W={key:1,class:"custom-order-actions__empty"},Z={class:"custom-order-actions__actions"},ee={class:"custom-order-actions__row custom-order-actions__row--primary"},oe={class:"custom-order-actions__row custom-order-actions__row--secondary"},se={class:"custom-order-actions__row custom-order-actions__row--tertiary"},re=a({__name:"EaeraOrderPlacementActions",setup(o){const{t:r}=S(),{viewingSymbol:t,position:a,loading:y,orderType:f,disabledState:k,submitSideOrder:P,joinBid:j,joinAsk:C,reverse:w,closeAllPositions:A,flattenAll:z,cancelOrders:D}=V(),N=e(1),I=v(null),{width:R}=g(I),x=s(()=>r(`orders.types.${f.value||$.Market}`)),M=()=>Math.max(1,Number(N.value)||1),B=e=>{P(e,M())},U=()=>{j(M())},F=()=>{C(M())},J=e=>((e,o)=>{const s=Number(e??0);if(!Number.isFinite(s))return"0";if(!o)return s.toLocaleString();try{return new Intl.NumberFormat(void 0,{style:"currency",currency:o,currencyDisplay:"narrowSymbol",maximumFractionDigits:6}).format(s)}catch{return`${s.toLocaleString()} ${o}`}})(e,t.value?.currency),G=e=>{const o=Number(e);return o>0?"custom-order-actions__upl custom-order-actions__upl--positive":o<0?"custom-order-actions__upl custom-order-actions__upl--negative":"custom-order-actions__upl"};return(e,o)=>(l(),d("div",{ref_key:"orderActionsRef",ref:I,class:"custom-order-actions"},[i(t)?(l(),d("div",H,[i(a)?(l(),d("span",Q,[n("span",null,"+"+c(i(a).quantity),1),o[4]||(o[4]=n("span",null,"@",-1)),n("span",null,c(i(a).entryPrice),1),n("span",{class:m(G(i(a).unrealizedPnl))},[o[3]||(o[3]=b(" UP&L ",-1)),n("span",null,c(J(i(a).unrealizedPnl)),1)],2)])):(l(),d("span",W,c(e.$t("orders.no-active-position")),1))])):_("",!0),n("div",Z,[n("div",ee,[u(i(O),{class:"custom-order-actions__button custom-order-actions__button--fill custom-order-actions__button--padded",color:"success",loading:i(y)[i(L).Buy],disabled:i(k).disabled,onClick:o[0]||(o[0]=e=>B(i(L).Buy))},{default:p(()=>[n("span",{class:m(["custom-order-actions__button-label",{"is-compact":i(R)<330}])},c(e.$t("orders.actions.buy",{count:N.value,type:x.value})),3)]),_:1},8,["loading","disabled"]),u(i(E),{modelValue:N.value,"onUpdate:modelValue":o[1]||(o[1]=e=>N.value=e),modelModifiers:{number:!0},type:"number",class:"custom-order-actions__volume-input order-input-number",controls:"",min:1,step:1,"step-strictly":"",precision:0,disabled:i(k).disabled},null,8,["modelValue","disabled"]),u(i(O),{class:"custom-order-actions__button custom-order-actions__button--fill custom-order-actions__button--padded",color:"error",loading:i(y)[i(L).Sell],disabled:i(k).disabled,onClick:o[2]||(o[2]=e=>B(i(L).Sell))},{default:p(()=>[n("span",{class:m(["custom-order-actions__button-label",{"is-compact":i(R)<330}])},c(e.$t("orders.actions.sell",{count:N.value,type:x.value})),3)]),_:1},8,["loading","disabled"])]),n("div",oe,[u(i(O),{class:"custom-order-actions__button custom-order-actions__button--half",loading:i(y)[i(T).JoinBid],disabled:i(k).disabled,onClick:U},{default:p(()=>[n("span",null,c(e.$t("orders.actions.join-bid")),1)]),_:1},8,["loading","disabled"]),u(i(O),{class:"custom-order-actions__button custom-order-actions__button--third",loading:i(y)[i(T).Reverse],disabled:i(k).disabled,onClick:i(w)},{default:p(()=>[n("span",null,c(e.$t("orders.actions.reverse")),1)]),_:1},8,["loading","disabled","onClick"]),u(i(O),{class:"custom-order-actions__button custom-order-actions__button--half",loading:i(y)[i(T).JoinAsk],disabled:i(k).disabled,onClick:F},{default:p(()=>[n("span",null,c(e.$t("orders.actions.join-ask")),1)]),_:1},8,["loading","disabled"])]),n("div",se,[u(i(O),{class:"custom-order-actions__button custom-order-actions__button--fill custom-order-actions__button--padded",loading:i(y)[i(T).CloseAllPositions],disabled:i(k).disabled,onClick:i(A)},{default:p(()=>[n("span",null,c(e.$t("orders.actions.close-position")),1)]),_:1},8,["loading","disabled","onClick"]),u(i(O),{class:"custom-order-actions__button custom-order-actions__button--fill custom-order-actions__button--padded",loading:i(y)[i(T).FlattenAll],disabled:i(k).disabled,onClick:i(z)},{default:p(()=>[n("span",null,c(e.$t("orders.actions.flatten-all")),1)]),_:1},8,["loading","disabled","onClick"]),u(i(O),{class:"custom-order-actions__button custom-order-actions__button--fill custom-order-actions__button--padded",loading:i(y)[i(T).CancelOrders],disabled:i(k).disabled,onClick:i(D)},{default:p(()=>[n("span",null,c(e.$t("orders.actions.cancel-orders")),1)]),_:1},8,["loading","disabled","onClick"])])])],512))}}),te={class:"custom-order-info"},ae={class:"custom-order-info__select-type"},ie={key:0,class:"custom-order-info__symbol"},le={class:"custom-order-info__symbol-text"},de={key:1,class:"custom-order-info__inactive-message"},ne=a({__name:"EaeraOrderPlacementInfo",setup(e){const{locale:o,t:r}=S(),{disabledState:t,orderType:a,viewingSymbol:p,onSymbolInfo:v}=V(),b=s(()=>(o.value,Object.values($).filter(e=>e!==$.Market).map(e=>({label:r(`orders.types.${e}`),value:e})))),f=()=>{t.value.disabled||(a.value="")},k=()=>{p.value&&v()},g=s(()=>t.value.isMissingUser?r("watch-list.symbol-info.state.no-account-selected"):p.value&&"active"!==p.value.state?r(`watch-list.symbol-info.state.${p.value.state}`):"");return(e,o)=>(l(),d("div",te,[n("div",ae,[n("div",{class:m(["custom-order-info__select-item","custom-order-info__select-item--market",{"is-active":!i(a),"is-disabled":i(t).disabled}]),onClick:f},c(e.$t("orders.types.MARKET")),3),u(i(w),{modelValue:i(a),"onUpdate:modelValue":o[0]||(o[0]=e=>y(a)?a.value=e:null),class:m(["custom-order-info__select-item borderless-select","custom-order-info__select-item--select",{"is-active":!!i(a)}]),options:b.value,placeholder:e.$t("orders.types.PENDING_ORDER"),clearable:"",disabled:i(t).disabled},null,8,["modelValue","class","options","placeholder","disabled"])]),i(p)?(l(),d("div",ie,[n("div",{class:"custom-order-info__symbol-link",onClick:k},[n("span",le,c(i(p).tickerSymbol),1),u(i(C),{size:16,class:"custom-order-info__symbol-icon"})])])):_("",!0),g.value?(l(),d("div",de,[u(i(C),{size:16}),n("span",null,c(g.value),1)])):_("",!0)]))}}),ce={class:"custom-order-placement__content"},ue=a({__name:"index",props:{disabledState:{},viewingSymbol:{},position:{},orderType:{},orderDuration:{},orderPrices:{},invalidPrice:{},loading:{},invalidOrderPriceLabel:{}},emits:["resize","update:orderType","update:orderDuration","update:orderPrice","submit-side-order","join-bid","join-ask","reverse","close-all-positions","flatten-all","cancel-orders","symbol-info","stateChange"],setup(e,{expose:s,emit:r}){const t=v(null),{width:a,height:d}=g(t),c=e,m=D(c,r);return s({state:m.state}),o([a,d],()=>{t.value&&m.onResize(a.value,d.value)}),(e,o)=>{const s=f("client-only");return l(),k(s,null,{default:p(()=>[n("div",{ref_key:"orderRef",ref:t,class:"custom-order-placement__wrapper"},[n("div",ce,[u(i(ne)),u(i(X),{"invalid-order-price-label":c.invalidOrderPriceLabel},null,8,["invalid-order-price-label"]),u(i(re))])],512)]),_:1})}}});export{ue as default,D as provideEaeraOrderPlacement,V as useEaeraOrderPlacement};
@@ -0,0 +1,16 @@
1
+ import { EaeraOrderLineOptions, EaeraOrderLineRole, EaeraOrderLineSide, EaeraOrderLineType } from '../../../types/EaeraOrderlineOverlay';
2
+ interface EaeraOrderlineOverlayPalette {
3
+ surfacePrimary: string;
4
+ surfacePositive: string;
5
+ surfaceNegative: string;
6
+ surfaceElevated: string;
7
+ surfaceAction: string;
8
+ textPrimary: string;
9
+ textSecondary: string;
10
+ borderPrimary: string;
11
+ borderPrimaryInverse: string;
12
+ borderAction: string;
13
+ }
14
+ export declare const chartColor: (isDark?: boolean) => EaeraOrderlineOverlayPalette;
15
+ export declare const orderLineOptions: (side?: EaeraOrderLineSide, type?: EaeraOrderLineType, isDark?: boolean, lineRole?: EaeraOrderLineRole) => EaeraOrderLineOptions;
16
+ export {};